From 43e5bbdf92bcd8ab62bd7ffd0747c0bb91d2041c Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Tue, 9 Jun 2026 13:40:58 +0700 Subject: [PATCH 01/35] feat: typo --- packages/amount/src/component.tsx | 1 - packages/amount/src/pure/component.tsx | 1 - packages/card-image/package.json | 1 + packages/card-image/src/Component.tsx | 4 +- .../card-image/src/docs/Component.stories.tsx | 3 +- packages/card-image/tsconfig.build.json | 7 ++- packages/card-image/tsconfig.json | 3 ++ packages/cdn-icon/src/Component.tsx | 5 +- .../markdown/src/docs/Component.stories.tsx | 2 +- packages/product-cover/src/Component.test.tsx | 8 +-- .../src/__snapshots__/Component.test.tsx.snap | 4 +- .../src/components/image-card/Component.tsx | 1 - .../src/docs/Component.stories.tsx | 7 +-- packages/product-cover/src/typings.ts | 1 - .../shared/src/base64/decode-base64.test.ts | 17 ++++++ packages/shared/src/base64/decode-base64.ts | 52 +++++++++++++++++++ packages/shared/src/base64/index.ts | 1 + packages/shared/src/get-resource/index.ts | 15 ++++++ packages/shared/src/index.ts | 2 + yarn.lock | 1 + 20 files changed, 114 insertions(+), 22 deletions(-) create mode 100644 packages/shared/src/base64/decode-base64.test.ts create mode 100644 packages/shared/src/base64/decode-base64.ts create mode 100644 packages/shared/src/base64/index.ts create mode 100644 packages/shared/src/get-resource/index.ts diff --git a/packages/amount/src/component.tsx b/packages/amount/src/component.tsx index 65cc790067..dd1cc7a565 100644 --- a/packages/amount/src/component.tsx +++ b/packages/amount/src/component.tsx @@ -10,7 +10,6 @@ import styles from './index.module.css'; /** * Компонент для отображения суммы, согласно следующему гайдлайну: - * https://design.alfabank.ru/patterns/amount */ export const Amount: React.FC = ({ value, diff --git a/packages/amount/src/pure/component.tsx b/packages/amount/src/pure/component.tsx index 326d4d1825..eab8d35fe7 100644 --- a/packages/amount/src/pure/component.tsx +++ b/packages/amount/src/pure/component.tsx @@ -9,7 +9,6 @@ import styles from './index.module.css'; /** * Компонент для отображения суммы, согласно следующему гайдлайну: - * https://design.alfabank.ru/patterns/amount * Не содержит стилей кроме неразрывности строки * * @deprecated Используйте основной компонент. Стилизацию можно настроить через пропсы diff --git a/packages/card-image/package.json b/packages/card-image/package.json index 7120d9362d..0b2424d892 100644 --- a/packages/card-image/package.json +++ b/packages/card-image/package.json @@ -13,6 +13,7 @@ "build": "rollup -c ../../tools/rollup/rollup.config.mjs --silent" }, "dependencies": { + "@alfalab/core-components-shared": "^2.2.1", "classnames": "^2.5.1", "tslib": "^2.4.0" }, diff --git a/packages/card-image/src/Component.tsx b/packages/card-image/src/Component.tsx index 3c6f0cebb5..e8a4879699 100644 --- a/packages/card-image/src/Component.tsx +++ b/packages/card-image/src/Component.tsx @@ -1,11 +1,13 @@ import React, { type FC, type ReactEventHandler, useEffect, useRef, useState } from 'react'; import cn from 'classnames'; +import { getCardImages } from '@alfalab/core-components-shared'; + import styles from './index.module.css'; export const ASPECT_RATIO = 0.63; export const DEFAULT_WIDTH = 280; -export const DEFAULT_BASE_URL = 'https://online.alfabank.ru/cards-images/cards/'; +export const DEFAULT_BASE_URL = getCardImages(); export type CardImageProps = { /** diff --git a/packages/card-image/src/docs/Component.stories.tsx b/packages/card-image/src/docs/Component.stories.tsx index 34ce1b656a..d74cd82b6f 100644 --- a/packages/card-image/src/docs/Component.stories.tsx +++ b/packages/card-image/src/docs/Component.stories.tsx @@ -2,6 +2,7 @@ import React from 'react'; import type { Meta, StoryObj } from '@storybook/react'; import { text, boolean, number } from '@storybook/addon-knobs'; import { CardImage } from '@alfalab/core-components-card-image'; +import { getCardImages } from '@alfalab/core-components-shared'; const meta: Meta = { title: 'Components/CardImage', @@ -23,7 +24,7 @@ export const card_image: Story = { )} width={number('width', 280)} rounded={boolean('rounded', false)} - baseUrl={text('baseUrl', 'https://online.alfabank.ru/cards-images/cards/')} + baseUrl={text('baseUrl', getCardImages())} /> ); }, diff --git a/packages/card-image/tsconfig.build.json b/packages/card-image/tsconfig.build.json index bb5f633b0a..641247b12b 100644 --- a/packages/card-image/tsconfig.build.json +++ b/packages/card-image/tsconfig.build.json @@ -8,7 +8,10 @@ "outDir": "ts-dist", "paths": { "@alfalab/core-components-card-image": ["./src"], - "@alfalab/core-components-card-image/*": ["./src/*"] + "@alfalab/core-components-card-image/*": ["./src/*"], + "@alfalab/core-components-shared": ["../shared/src"], + "@alfalab/core-components-shared/*": ["../shared/src/*"] } - } + }, + "references": [{ "path": "../shared/tsconfig.build.json" }] } diff --git a/packages/card-image/tsconfig.json b/packages/card-image/tsconfig.json index 652735021a..f78d4157ed 100644 --- a/packages/card-image/tsconfig.json +++ b/packages/card-image/tsconfig.json @@ -10,12 +10,15 @@ "@alfalab/core-components-card-image/*": ["./src/*"], "@alfalab/core-components-screenshot-utils": ["../screenshot-utils/src"], "@alfalab/core-components-screenshot-utils/*": ["../screenshot-utils/src/*"], + "@alfalab/core-components-shared": ["../shared/src"], + "@alfalab/core-components-shared/*": ["../shared/src/*"], "@alfalab/core-components-test-utils": ["../test-utils/src"], "@alfalab/core-components-test-utils/*": ["../test-utils/src/*"] } }, "references": [ { "path": "../screenshot-utils/tsconfig.build.json" }, + { "path": "../shared/tsconfig.build.json" }, { "path": "../test-utils/tsconfig.build.json" } ] } diff --git a/packages/cdn-icon/src/Component.tsx b/packages/cdn-icon/src/Component.tsx index d2abfe0a55..5ceb47c3a9 100644 --- a/packages/cdn-icon/src/Component.tsx +++ b/packages/cdn-icon/src/Component.tsx @@ -1,6 +1,8 @@ import React, { type ReactNode, useEffect } from 'react'; import cn from 'classnames'; +import { getCDNIcons } from '@alfalab/core-components-shared'; + import { LoadingStatus, useIcon } from './hooks/use-icon'; import styles from './index.module.css'; @@ -20,7 +22,6 @@ interface CDNIconProps { className?: string; /** * Базовый адрес cdn хранилища c иконками - * @default https://alfabank.servicecdn.ru/icons */ baseUrl?: string; /** @@ -42,7 +43,7 @@ export const CDNIcon: React.FC = ({ color, dataTestId, className, - baseUrl = 'https://alfabank.servicecdn.ru/icons', + baseUrl = getCDNIcons(), fallback, onError, }) => { diff --git a/packages/markdown/src/docs/Component.stories.tsx b/packages/markdown/src/docs/Component.stories.tsx index b16ca75c10..680467e906 100644 --- a/packages/markdown/src/docs/Component.stories.tsx +++ b/packages/markdown/src/docs/Component.stories.tsx @@ -82,7 +82,7 @@ _Курсивный текст_ ~~Зачеркнутый текст~~ -Текст с [ссылкой](https://alfabank.ru/get-money/credit-cards/100-days/) +Текст с [ссылкой](https://www.google.com/) `} ); diff --git a/packages/product-cover/src/Component.test.tsx b/packages/product-cover/src/Component.test.tsx index 9dcbd83b63..b55208f18f 100644 --- a/packages/product-cover/src/Component.test.tsx +++ b/packages/product-cover/src/Component.test.tsx @@ -12,7 +12,7 @@ describe('ProductCover', () => { , @@ -154,11 +154,7 @@ describe('ProductCover', () => { it('renders ProductCover component with image', () => { const { container } = render( - , + , ); const imageElement = container.querySelector('img'); diff --git a/packages/product-cover/src/__snapshots__/Component.test.tsx.snap b/packages/product-cover/src/__snapshots__/Component.test.tsx.snap index 8a9466fa1a..880111013e 100644 --- a/packages/product-cover/src/__snapshots__/Component.test.tsx.snap +++ b/packages/product-cover/src/__snapshots__/Component.test.tsx.snap @@ -12,8 +12,8 @@ exports[`ProductCover Snapshots tests should match snapshots 1`] = `
= { title: 'Components/ProductCover', @@ -41,7 +42,7 @@ export const product_cover_single: Story = { return ( { + const cases: [string, string][] = [ + ['SGVsbG8=', 'Hello'], + ['V29ybGQ=', 'World'], + ['SGVsbG8sIFdvcmxkIQ==', 'Hello, World!'], + ['0J/RgNC40LLQtdGC', 'Привет'], + ['cXdlcnR5MTIzNDU2', 'qwerty123456'], + ['aHR0cHM6Ly93d3cuZXhhbXBsZS5jb20v', 'https://www.example.com/'], + ['', ''], + ]; + + it.each(cases)('decodeBase64("%s")', (input, expected) => { + expect(decodeBase64(input)).toBe(expected); + }); +}); diff --git a/packages/shared/src/base64/decode-base64.ts b/packages/shared/src/base64/decode-base64.ts new file mode 100644 index 0000000000..1161b1acd8 --- /dev/null +++ b/packages/shared/src/base64/decode-base64.ts @@ -0,0 +1,52 @@ +/** + * Декодирует строку в формате base64 в обычную строку (UTF-8). + * + * Поддерживает два окружения: + * - Node.js: через глобальный объект Buffer (доступен без импортов) + * - Браузер: через Web API atob + decodeURIComponent + * + * Простой atob не подходит для UTF-8, потому что он возвращает строку + * в Latin-1 (один байт = один символ). Кириллица и другие многобайтовые + * символы требуют явного перекодирования через percent-encoding. + * + * @param value - строка в формате base64 + * @returns декодированная строка в UTF-8 + * + * @example + * decodeBase64('SGVsbG8=') // 'Hello' + * decodeBase64('0J/RgNC40LLQtdGC') // 'Привет' + */ +export const decodeBase64 = (value: string): string => { + /* + * В Node.js глобальный Buffer всегда доступен; в браузере его нет. + * Проверяем typeof, чтобы не получить ReferenceError в браузере. + */ + if (typeof Buffer !== 'undefined') { + /* + * Buffer.from принимает base64-строку и сразу декодирует байты, + * toString('utf-8') собирает из них корректную UTF-8 строку. + */ + return Buffer.from(value, 'base64').toString('utf-8'); + } + + /* + * atob — браузерный Web API, декодирует base64 в бинарную строку Latin-1: + * каждый символ строки соответствует одному байту (charCode 0–255). + * Для ASCII это уже готовый результат, но UTF-8 символы (кириллица и др.) + * закодированы как последовательности байт, которые нужно собрать вручную. + */ + return decodeURIComponent( + atob(value) + // Разбиваем бинарную строку на массив отдельных символов (байт). + .split('') + /* + * Каждый символ превращаем в percent-encoded байт вида '%XX', + * где XX — шестнадцатеричный код символа (charCodeAt возвращает число, + * toString(16) переводит в hex, padStart добавляет ведущий ноль для однозначных кодов). + */ + .map((char) => `%${char.charCodeAt(0).toString(16).padStart(2, '0')}`) + // Соединяем массив '%XX' обратно в одну строку вида '%D0%9F%D1%80%D0%B8...' + .join(''), + // decodeURIComponent читает percent-encoding и собирает из байт правильные UTF-8 символы. + ); +}; diff --git a/packages/shared/src/base64/index.ts b/packages/shared/src/base64/index.ts new file mode 100644 index 0000000000..4fc9b108b0 --- /dev/null +++ b/packages/shared/src/base64/index.ts @@ -0,0 +1 @@ +export { decodeBase64 } from './decode-base64'; diff --git a/packages/shared/src/get-resource/index.ts b/packages/shared/src/get-resource/index.ts new file mode 100644 index 0000000000..b79f9f45e2 --- /dev/null +++ b/packages/shared/src/get-resource/index.ts @@ -0,0 +1,15 @@ +import { decodeBase64 } from '../base64'; + +/** + * /cards-images/cards/ + */ +export function getCardImages() { + return decodeBase64('aHR0cHM6Ly9vbmxpbmUuYWxmYWJhbmsucnUvY2FyZHMtaW1hZ2VzL2NhcmRzLw=='); +} + +/** + * cdn/icons + */ +export function getCDNIcons() { + return decodeBase64('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'); +} diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts index 9b11973494..c2a00f2a49 100644 --- a/packages/shared/src/index.ts +++ b/packages/shared/src/index.ts @@ -17,3 +17,5 @@ export * from './mask'; export * from './human-file-size'; export * from './icon-20-adapter'; export * from './util-components'; +export * from './base64'; +export * from './get-resource'; diff --git a/yarn.lock b/yarn.lock index 4e617d72b6..6cbdf55804 100644 --- a/yarn.lock +++ b/yarn.lock @@ -337,6 +337,7 @@ __metadata: version: 0.0.0-use.local resolution: "@alfalab/core-components-card-image@workspace:packages/card-image" dependencies: + "@alfalab/core-components-shared": "npm:^2.2.1" classnames: "npm:^2.5.1" tslib: "npm:^2.4.0" peerDependencies: From 01a9ea9847a70de28faf8bb48ce23b26391c6227 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Tue, 9 Jun 2026 17:41:54 +0700 Subject: [PATCH 02/35] feat: typo --- .changeset/early-hotels-joke.md | 7 +++++++ .storybook/main.js | 10 +++++++++- packages/card-image/package.json | 1 - packages/card-image/src/Component.tsx | 4 +--- .../src/__snapshots__/Component.test.tsx.snap | 12 ++++++------ .../card-image/src/docs/Component.stories.tsx | 3 +-- packages/card-image/tsconfig.build.json | 7 ++----- packages/card-image/tsconfig.json | 3 --- packages/cdn-icon/src/Component.tsx | 4 +--- packages/env/src/react-app.d.ts | 2 ++ packages/product-cover/src/Component.test.tsx | 8 ++++++-- .../product-cover/src/docs/Component.stories.tsx | 7 +++---- packages/shared/src/base64/index.ts | 1 - packages/shared/src/get-resource/index.ts | 15 --------------- packages/shared/src/index.ts | 2 -- .../src/__snapshots__/Component.test.tsx.snap | 8 ++++---- .../decode-base64.ts => tools/decode-base-64.js | 4 ++-- .../decode-base-64.test.ts | 2 +- tools/jest/globalSetup.ts | 1 + tools/rollup/rollup.config.mjs | 8 +++++++- yarn.lock | 1 - 21 files changed, 53 insertions(+), 57 deletions(-) create mode 100644 .changeset/early-hotels-joke.md delete mode 100644 packages/shared/src/base64/index.ts delete mode 100644 packages/shared/src/get-resource/index.ts rename packages/shared/src/base64/decode-base64.ts => tools/decode-base-64.js (98%) rename packages/shared/src/base64/decode-base64.test.ts => tools/decode-base-64.test.ts (91%) diff --git a/.changeset/early-hotels-joke.md b/.changeset/early-hotels-joke.md new file mode 100644 index 0000000000..ec8a215eae --- /dev/null +++ b/.changeset/early-hotels-joke.md @@ -0,0 +1,7 @@ +--- +'@alfalab/core-components-cdn-icon': patch +--- + +- CDNIcon +- CardImage +- ProductCover diff --git a/.storybook/main.js b/.storybook/main.js index d5506950ae..b6a842e9c7 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -10,8 +10,8 @@ const { getPackages } = require('../tools/monorepo.cjs'); const { isSamePath } = require('../tools/path.cjs'); const { resolveInternal } = require('../tools/resolve-internal.cjs'); const { readPackagesFileSync } = require('../tools/read-packages-file.cjs'); -const { globSync } = require('tinyglobby'); const { existsSync } = require('node:fs'); +const { decodeBase64 } = require('../tools/decode-base-64'); const INTERNAL_PACKAGES = readPackagesFileSync( path.resolve(__dirname, '../tools/.internal-packages'), @@ -300,6 +300,14 @@ module.exports = { 'process.env.CORE_COMPONENTS_VARIANT': JSON.stringify( process.env.CORE_COMPONENTS_VARIANT, ), + 'process.env.CARD_IMAGES_ENV': JSON.stringify( + decodeBase64( + 'aHR0cHM6Ly9vbmxpbmUuYWxmYWJhbmsucnUvY2FyZHMtaW1hZ2VzL2NhcmRzLw==', + ), + ), + 'process.env.SERVICE_CDN_ICONS_ENV': JSON.stringify( + decodeBase64('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'), + ), }), ); return config; diff --git a/packages/card-image/package.json b/packages/card-image/package.json index 0b2424d892..7120d9362d 100644 --- a/packages/card-image/package.json +++ b/packages/card-image/package.json @@ -13,7 +13,6 @@ "build": "rollup -c ../../tools/rollup/rollup.config.mjs --silent" }, "dependencies": { - "@alfalab/core-components-shared": "^2.2.1", "classnames": "^2.5.1", "tslib": "^2.4.0" }, diff --git a/packages/card-image/src/Component.tsx b/packages/card-image/src/Component.tsx index e8a4879699..110d82b820 100644 --- a/packages/card-image/src/Component.tsx +++ b/packages/card-image/src/Component.tsx @@ -1,13 +1,11 @@ import React, { type FC, type ReactEventHandler, useEffect, useRef, useState } from 'react'; import cn from 'classnames'; -import { getCardImages } from '@alfalab/core-components-shared'; - import styles from './index.module.css'; export const ASPECT_RATIO = 0.63; export const DEFAULT_WIDTH = 280; -export const DEFAULT_BASE_URL = getCardImages(); +export const DEFAULT_BASE_URL = process.env.CARD_IMAGES_ENV; export type CardImageProps = { /** diff --git a/packages/card-image/src/__snapshots__/Component.test.tsx.snap b/packages/card-image/src/__snapshots__/Component.test.tsx.snap index 2d87a62330..ba9c5c013b 100644 --- a/packages/card-image/src/__snapshots__/Component.test.tsx.snap +++ b/packages/card-image/src/__snapshots__/Component.test.tsx.snap @@ -81,8 +81,8 @@ exports[`CardImage Display tests should display with cardId and layers 1`] = ` class="image" height="176.4" role="presentation" - src="https://online.alfabank.ru/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER&width=280" - srcset="https://online.alfabank.ru/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER&width=560 2x" + src="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER&width=280" + srcset="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER&width=560 2x" width="280" />
@@ -102,8 +102,8 @@ exports[`CardImage Display tests should display with cardId correctly 1`] = ` class="image" height="176.4" role="presentation" - src="https://online.alfabank.ru/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" - srcset="https://online.alfabank.ru/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" + src="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" + srcset="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" width="280" /> @@ -118,8 +118,8 @@ exports[`CardImage Display tests should display with cardId correctly 1`] = ` class="image" height="176.4" role="presentation" - src="https://online.alfabank.ru/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" - srcset="https://online.alfabank.ru/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" + src="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" + srcset="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" width="280" /> diff --git a/packages/card-image/src/docs/Component.stories.tsx b/packages/card-image/src/docs/Component.stories.tsx index d74cd82b6f..8aaac3f270 100644 --- a/packages/card-image/src/docs/Component.stories.tsx +++ b/packages/card-image/src/docs/Component.stories.tsx @@ -2,7 +2,6 @@ import React from 'react'; import type { Meta, StoryObj } from '@storybook/react'; import { text, boolean, number } from '@storybook/addon-knobs'; import { CardImage } from '@alfalab/core-components-card-image'; -import { getCardImages } from '@alfalab/core-components-shared'; const meta: Meta = { title: 'Components/CardImage', @@ -24,7 +23,7 @@ export const card_image: Story = { )} width={number('width', 280)} rounded={boolean('rounded', false)} - baseUrl={text('baseUrl', getCardImages())} + baseUrl={text('baseUrl', process.env.CARD_IMAGES_ENV)} /> ); }, diff --git a/packages/card-image/tsconfig.build.json b/packages/card-image/tsconfig.build.json index 641247b12b..bb5f633b0a 100644 --- a/packages/card-image/tsconfig.build.json +++ b/packages/card-image/tsconfig.build.json @@ -8,10 +8,7 @@ "outDir": "ts-dist", "paths": { "@alfalab/core-components-card-image": ["./src"], - "@alfalab/core-components-card-image/*": ["./src/*"], - "@alfalab/core-components-shared": ["../shared/src"], - "@alfalab/core-components-shared/*": ["../shared/src/*"] + "@alfalab/core-components-card-image/*": ["./src/*"] } - }, - "references": [{ "path": "../shared/tsconfig.build.json" }] + } } diff --git a/packages/card-image/tsconfig.json b/packages/card-image/tsconfig.json index f78d4157ed..652735021a 100644 --- a/packages/card-image/tsconfig.json +++ b/packages/card-image/tsconfig.json @@ -10,15 +10,12 @@ "@alfalab/core-components-card-image/*": ["./src/*"], "@alfalab/core-components-screenshot-utils": ["../screenshot-utils/src"], "@alfalab/core-components-screenshot-utils/*": ["../screenshot-utils/src/*"], - "@alfalab/core-components-shared": ["../shared/src"], - "@alfalab/core-components-shared/*": ["../shared/src/*"], "@alfalab/core-components-test-utils": ["../test-utils/src"], "@alfalab/core-components-test-utils/*": ["../test-utils/src/*"] } }, "references": [ { "path": "../screenshot-utils/tsconfig.build.json" }, - { "path": "../shared/tsconfig.build.json" }, { "path": "../test-utils/tsconfig.build.json" } ] } diff --git a/packages/cdn-icon/src/Component.tsx b/packages/cdn-icon/src/Component.tsx index 5ceb47c3a9..0383100cb4 100644 --- a/packages/cdn-icon/src/Component.tsx +++ b/packages/cdn-icon/src/Component.tsx @@ -1,8 +1,6 @@ import React, { type ReactNode, useEffect } from 'react'; import cn from 'classnames'; -import { getCDNIcons } from '@alfalab/core-components-shared'; - import { LoadingStatus, useIcon } from './hooks/use-icon'; import styles from './index.module.css'; @@ -43,7 +41,7 @@ export const CDNIcon: React.FC = ({ color, dataTestId, className, - baseUrl = getCDNIcons(), + baseUrl = process.env.SERVICE_CDN_ICONS_ENV, fallback, onError, }) => { diff --git a/packages/env/src/react-app.d.ts b/packages/env/src/react-app.d.ts index 0c865dae20..f3560df102 100644 --- a/packages/env/src/react-app.d.ts +++ b/packages/env/src/react-app.d.ts @@ -8,6 +8,8 @@ declare namespace NodeJS { readonly NODE_ENV: 'development' | 'production' | 'test'; readonly CORE_COMPONENTS_ENV: 'development' | 'production' | 'test'; readonly CORE_COMPONENTS_VARIANT?: 'default' | 'alfasans'; + readonly CARD_IMAGES_ENV: string; + readonly SERVICE_CDN_ICONS_ENV: string; } } diff --git a/packages/product-cover/src/Component.test.tsx b/packages/product-cover/src/Component.test.tsx index b55208f18f..8003d05c58 100644 --- a/packages/product-cover/src/Component.test.tsx +++ b/packages/product-cover/src/Component.test.tsx @@ -12,7 +12,7 @@ describe('ProductCover', () => { , @@ -154,7 +154,11 @@ describe('ProductCover', () => { it('renders ProductCover component with image', () => { const { container } = render( - , + , ); const imageElement = container.querySelector('img'); diff --git a/packages/product-cover/src/docs/Component.stories.tsx b/packages/product-cover/src/docs/Component.stories.tsx index cbc6fc3591..e71602683b 100644 --- a/packages/product-cover/src/docs/Component.stories.tsx +++ b/packages/product-cover/src/docs/Component.stories.tsx @@ -8,7 +8,6 @@ import { import { DiamondsXxlIcon } from '@alfalab/icons-glyph/DiamondsXxlIcon'; import { ProductCover } from '@alfalab/core-components-product-cover'; -import { getCardImages } from '@alfalab/core-components-shared'; const meta: Meta = { title: 'Components/ProductCover', @@ -42,7 +41,7 @@ export const product_cover_single: Story = { return ( @@ -43,8 +43,8 @@ exports[`Space Display tests should display radio group with one child correctly class="image" height="176.4" role="presentation" - src="https://online.alfabank.ru/cards-images/cards/EG/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" - srcset="https://online.alfabank.ru/cards-images/cards/EG/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" + src="https://example.com/EG/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" + srcset="https://example.com/EG/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" width="280" /> diff --git a/packages/shared/src/base64/decode-base64.ts b/tools/decode-base-64.js similarity index 98% rename from packages/shared/src/base64/decode-base64.ts rename to tools/decode-base-64.js index 1161b1acd8..3718cbb929 100644 --- a/packages/shared/src/base64/decode-base64.ts +++ b/tools/decode-base-64.js @@ -16,7 +16,7 @@ * decodeBase64('SGVsbG8=') // 'Hello' * decodeBase64('0J/RgNC40LLQtdGC') // 'Привет' */ -export const decodeBase64 = (value: string): string => { +export function decodeBase64(value) { /* * В Node.js глобальный Buffer всегда доступен; в браузере его нет. * Проверяем typeof, чтобы не получить ReferenceError в браузере. @@ -49,4 +49,4 @@ export const decodeBase64 = (value: string): string => { .join(''), // decodeURIComponent читает percent-encoding и собирает из байт правильные UTF-8 символы. ); -}; +} diff --git a/packages/shared/src/base64/decode-base64.test.ts b/tools/decode-base-64.test.ts similarity index 91% rename from packages/shared/src/base64/decode-base64.test.ts rename to tools/decode-base-64.test.ts index a1127a6c06..55c5bcf148 100644 --- a/packages/shared/src/base64/decode-base64.test.ts +++ b/tools/decode-base-64.test.ts @@ -1,4 +1,4 @@ -import { decodeBase64 } from './decode-base64'; +import { decodeBase64 } from './decode-base-64'; describe('decodeBase64', () => { const cases: [string, string][] = [ diff --git a/tools/jest/globalSetup.ts b/tools/jest/globalSetup.ts index 4360e5da29..fe491ea557 100644 --- a/tools/jest/globalSetup.ts +++ b/tools/jest/globalSetup.ts @@ -3,5 +3,6 @@ module.exports = async () => { // need to assign readonly CORE_COMPONENTS_ENV Object.assign(process.env, { CORE_COMPONENTS_ENV: process.env.NODE_ENV, + CARD_IMAGES_ENV: 'https://example.com/', }); }; diff --git a/tools/rollup/rollup.config.mjs b/tools/rollup/rollup.config.mjs index a20d6ab6fa..045074f0da 100644 --- a/tools/rollup/rollup.config.mjs +++ b/tools/rollup/rollup.config.mjs @@ -42,7 +42,13 @@ const baseConfig = () => plugins: [ json(), replace({ - values: { 'process.env.CORE_COMPONENTS_ENV': JSON.stringify('production') }, + values: { + 'process.env.CORE_COMPONENTS_ENV': JSON.stringify('production'), + 'process.env.CARD_IMAGES_ENV': JSON.stringify(process.env.CARD_IMAGES_ENV), + 'process.env.SERVICE_CDN_ICONS_ENV': JSON.stringify( + process.env.SERVICE_CDN_ICONS_ENV, + ), + }, preventAssignment: true, }), ], diff --git a/yarn.lock b/yarn.lock index 6cbdf55804..4e617d72b6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -337,7 +337,6 @@ __metadata: version: 0.0.0-use.local resolution: "@alfalab/core-components-card-image@workspace:packages/card-image" dependencies: - "@alfalab/core-components-shared": "npm:^2.2.1" classnames: "npm:^2.5.1" tslib: "npm:^2.4.0" peerDependencies: From acb910696e7aa1455c025467ef704c1a54040e70 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Wed, 10 Jun 2026 14:58:44 +0700 Subject: [PATCH 03/35] feat: screenshot utils --- jest.screenshots.config.mjs | 5 +++++ packages/env/src/react-app.d.ts | 1 + packages/screenshot-utils/src/helpers.ts | 2 +- tools/decode-base-64.js | 4 +++- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/jest.screenshots.config.mjs b/jest.screenshots.config.mjs index f1be0d2efd..e0d6cde2e7 100644 --- a/jest.screenshots.config.mjs +++ b/jest.screenshots.config.mjs @@ -6,12 +6,17 @@ import path from 'node:path'; import { fileURLToPath } from 'node:url'; import { createJsWithTsLegacyPreset, pathsToModuleNameMapper } from 'ts-jest'; +import decodePkg from './tools/decode-base-64.js'; + +const { decodeBase64 } = decodePkg; const dirname = path.dirname(fileURLToPath(import.meta.url)); const tsconfig = fse.readJsonSync(path.join(dirname, 'tsconfig.test.json'), { encoding: 'utf8' }); const tsJestPreset = createJsWithTsLegacyPreset({ tsconfig: '/tsconfig.test.json' }); +process.env.SERVICE_CDN_HOST_ENV = decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='); + /** * @type {import('ts-jest').JestConfigWithTsJest} */ diff --git a/packages/env/src/react-app.d.ts b/packages/env/src/react-app.d.ts index f3560df102..4397a1a361 100644 --- a/packages/env/src/react-app.d.ts +++ b/packages/env/src/react-app.d.ts @@ -10,6 +10,7 @@ declare namespace NodeJS { readonly CORE_COMPONENTS_VARIANT?: 'default' | 'alfasans'; readonly CARD_IMAGES_ENV: string; readonly SERVICE_CDN_ICONS_ENV: string; + SERVICE_CDN_HOST_ENV: string; } } diff --git a/packages/screenshot-utils/src/helpers.ts b/packages/screenshot-utils/src/helpers.ts index bf229d6612..8771aa470a 100644 --- a/packages/screenshot-utils/src/helpers.ts +++ b/packages/screenshot-utils/src/helpers.ts @@ -102,7 +102,7 @@ export const matchHtml = async ({ `, }), page.setViewportSize(viewport), - page.route(/alfabank\.servicecdn\.ru/, proxyAssets), + page.route(new RegExp(process.env.SERVICE_CDN_HOST_ENV), proxyAssets), ]); await waitForPreviewShowed(page); diff --git a/tools/decode-base-64.js b/tools/decode-base-64.js index 3718cbb929..5ee88ace1c 100644 --- a/tools/decode-base-64.js +++ b/tools/decode-base-64.js @@ -16,7 +16,7 @@ * decodeBase64('SGVsbG8=') // 'Hello' * decodeBase64('0J/RgNC40LLQtdGC') // 'Привет' */ -export function decodeBase64(value) { +function decodeBase64(value) { /* * В Node.js глобальный Buffer всегда доступен; в браузере его нет. * Проверяем typeof, чтобы не получить ReferenceError в браузере. @@ -50,3 +50,5 @@ export function decodeBase64(value) { // decodeURIComponent читает percent-encoding и собирает из байт правильные UTF-8 символы. ); } + +module.exports = { decodeBase64 }; From 883116f1a6f19ae4488a05db8f93913d396efb6e Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Wed, 10 Jun 2026 15:23:41 +0700 Subject: [PATCH 04/35] feat: live example --- .storybook/main.js | 4 ++ .storybook/scope.ts | 1 + docs/migrations.stories.mdx | 2 +- docs/typography.stories.mdx | 51 +++++++++++--------- packages/card-image/src/docs/description.mdx | 2 +- 5 files changed, 34 insertions(+), 26 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index b6a842e9c7..08a28d42b8 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -308,6 +308,10 @@ module.exports = { 'process.env.SERVICE_CDN_ICONS_ENV': JSON.stringify( decodeBase64('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'), ), + 'process.env.SERVICE_CDN_HOST_ENV': JSON.stringify( + decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), + ), + 'process.env.AO_ENV': JSON.stringify(decodeBase64('b25saW5lLmFsZmFiYW5rLnJ1')), }), ); return config; diff --git a/.storybook/scope.ts b/.storybook/scope.ts index d19bf702d9..c8339f0c11 100644 --- a/.storybook/scope.ts +++ b/.storybook/scope.ts @@ -41,4 +41,5 @@ export default { ...grid, ...dateUtils, ...knobs, + AO_ENV: process.env.AO_ENV, }; diff --git a/docs/migrations.stories.mdx b/docs/migrations.stories.mdx index f4cc65d1e2..7855a36d1b 100644 --- a/docs/migrations.stories.mdx +++ b/docs/migrations.stories.mdx @@ -17,7 +17,7 @@ import { Meta, Markdown } from '@storybook/addon-docs'; | ------------------------ | -------------------------------------------------------------------------------------------- | | Dropdown | Tooltip | | FormField | Space | -| GeneralConfirmationModal | [ConfirmationModal](https://digital.alfabank.ru/demo/arui-private/#!/Core/ConfirmationModal) | +| GeneralConfirmationModal | ConfirmationModal | | Heading | Typography.Title
Typography.TitleResponsive | | Icon | Один из вариантов | | IconButton | IconButton
Button view='ghost' rightAddons={<Icon/>} | diff --git a/docs/typography.stories.mdx b/docs/typography.stories.mdx index e7aa4211b0..5479b06be7 100644 --- a/docs/typography.stories.mdx +++ b/docs/typography.stories.mdx @@ -1,8 +1,10 @@ -import { Meta } from '@storybook/addon-docs'; +import { Meta, Source } from '@storybook/addon-docs'; import { Plate } from '@alfalab/core-components-plate'; import { StatusBadge } from '@alfalab/core-components-status-badge'; import { Typography } from '@alfalab/core-components-typography'; +export const CDN_HOST = process.env.SERVICE_CDN_HOST_ENV; +

Для всех Styrene-элементов должна быть включена настройка `font-feature-settings: 'ss01';`, и @@ -99,26 +102,27 @@ import { Typography } from '@alfalab/core-components-typography'; Если в вашем продукте используется шрифт `Alfa Interface Sans`, его необходимо подключить: -```css -@font-face { + Не забудьте задать сглаживание: @@ -164,7 +168,6 @@ import { Typography } from '@alfalab/core-components-typography'; 1. Подключить шрифт `Alfa Interface Sans` 2. Задать соответствующий пропс `font` в компонентах типографики 3. Заменить пути импорта: - - `css`переменных: ```diff diff --git a/packages/card-image/src/docs/description.mdx b/packages/card-image/src/docs/description.mdx index ffe4f07e33..6cca3de636 100644 --- a/packages/card-image/src/docs/description.mdx +++ b/packages/card-image/src/docs/description.mdx @@ -4,7 +4,7 @@ Date: Wed, 10 Jun 2026 17:19:31 +0700 Subject: [PATCH 05/35] feat: changelog --- CHANGELOG.2021.md | 1925 +++++------ CHANGELOG.2022.md | 3058 +++++++++--------- packages/alert/CHANGELOG.md | 2 - packages/amount-input/CHANGELOG.md | 4 +- packages/amount/CHANGELOG.md | 2 - packages/attach/CHANGELOG.md | 2 - packages/backdrop/CHANGELOG.md | 2 - packages/badge/CHANGELOG.md | 2 - packages/bank-card/CHANGELOG.md | 2 - packages/base-modal/CHANGELOG.md | 2 - packages/bottom-sheet/CHANGELOG.md | 2 - packages/button/CHANGELOG.md | 2 - packages/calendar-input/CHANGELOG.md | 4 +- packages/calendar-range/CHANGELOG.md | 2 - packages/calendar-with-skeleton/CHANGELOG.md | 2 - packages/calendar/CHANGELOG.md | 4 +- packages/card-image/CHANGELOG.md | 2 - packages/cdn-icon/CHANGELOG.md | 8 +- packages/chart/CHANGELOG.md | 2 - packages/checkbox-group/CHANGELOG.md | 2 - packages/checkbox/CHANGELOG.md | 2 - packages/circular-progress-bar/CHANGELOG.md | 2 - packages/code-input/CHANGELOG.md | 2 - packages/collapse/CHANGELOG.md | 2 - packages/comment/CHANGELOG.md | 2 - packages/confirmation/CHANGELOG.md | 6 - packages/custom-button/CHANGELOG.md | 2 - packages/date-input/CHANGELOG.md | 4 +- packages/date-range-input/CHANGELOG.md | 2 +- packages/date-time-input/CHANGELOG.md | 2 +- packages/divider/CHANGELOG.md | 2 - packages/drawer/CHANGELOG.md | 2 - packages/dropzone/CHANGELOG.md | 2 - packages/file-upload-item/CHANGELOG.md | 2 - packages/filter-tag/CHANGELOG.md | 2 - packages/form-control/CHANGELOG.md | 2 - packages/gallery/CHANGELOG.md | 10 +- packages/global-store/CHANGELOG.md | 2 - packages/grid/CHANGELOG.md | 2 - packages/hatching-progress-bar/CHANGELOG.md | 2 - packages/icon-button/CHANGELOG.md | 2 - packages/icon-view/CHANGELOG.md | 2 - packages/input-autocomplete/CHANGELOG.md | 4 +- packages/input/CHANGELOG.md | 10 +- packages/intl-phone-input/CHANGELOG.md | 4 +- packages/keyboard-focusable/CHANGELOG.md | 2 - packages/link/CHANGELOG.md | 2 - packages/list-header/CHANGELOG.md | 2 - packages/list/CHANGELOG.md | 2 - packages/loader/CHANGELOG.md | 2 - packages/masked-input/CHANGELOG.md | 4 +- packages/modal/CHANGELOG.md | 4 +- packages/mq/CHANGELOG.md | 2 - packages/notification-manager/CHANGELOG.md | 2 - packages/notification/CHANGELOG.md | 2 - packages/pagination/CHANGELOG.md | 2 - packages/password-input/CHANGELOG.md | 4 +- packages/phone-input/CHANGELOG.md | 4 +- packages/picker-button/CHANGELOG.md | 2 - packages/plate/CHANGELOG.md | 10 +- packages/popover/CHANGELOG.md | 2 - packages/portal/CHANGELOG.md | 2 - packages/progress-bar/CHANGELOG.md | 2 - packages/pure-cell/CHANGELOG.md | 2 - packages/radio-group/CHANGELOG.md | 2 - packages/radio/CHANGELOG.md | 2 - packages/scrollbar/CHANGELOG.md | 2 - packages/select-with-tags/CHANGELOG.md | 2 - packages/select/CHANGELOG.md | 8 +- packages/side-panel/CHANGELOG.md | 2 - packages/skeleton/CHANGELOG.md | 2 - packages/slider-input/CHANGELOG.md | 4 +- packages/slider/CHANGELOG.md | 2 - packages/space/CHANGELOG.md | 2 - packages/spinner/CHANGELOG.md | 2 - packages/stack/CHANGELOG.md | 2 - packages/status/CHANGELOG.md | 2 - packages/stepped-progress-bar/CHANGELOG.md | 2 - packages/switch/CHANGELOG.md | 2 - packages/table/CHANGELOG.md | 2 - packages/tabs/CHANGELOG.md | 2 - packages/tag/CHANGELOG.md | 2 - packages/textarea/CHANGELOG.md | 2 - packages/themes/CHANGELOG.md | 10 +- packages/time-input/CHANGELOG.md | 2 +- packages/toast-plate/CHANGELOG.md | 2 - packages/toast/CHANGELOG.md | 2 - packages/tooltip/CHANGELOG.md | 2 - packages/typography/CHANGELOG.md | 2 - packages/with-suffix/CHANGELOG.md | 2 - 90 files changed, 2358 insertions(+), 2871 deletions(-) diff --git a/CHANGELOG.2021.md b/CHANGELOG.2021.md index 0b615234d5..7b842083c0 100644 --- a/CHANGELOG.2021.md +++ b/CHANGELOG.2021.md @@ -2,1518 +2,1338 @@ ### Features -* **icon-view:** add draft component ([f0ab46f](https://github.com/core-ds/core-components/commit/f0ab46fc5241c3856962f19315213c3e45b6c05b)) -* **icon-view:** add tests, some refactoring ([4fee755](https://github.com/core-ds/core-components/commit/4fee755b826024a02f2dab9e9573088284185380)) -* **icon-view:** refactoring ([2579bb0](https://github.com/core-ds/core-components/commit/2579bb016cfdeef0ff0e177f231a1d1a4715b0af)) -* **icon-view:** updates ([7b17f5f](https://github.com/core-ds/core-components/commit/7b17f5ffca39243a13d57fdbd0da31041dc0ea98)) +- **icon-view:** add draft component ([f0ab46f](https://github.com/core-ds/core-components/commit/f0ab46fc5241c3856962f19315213c3e45b6c05b)) +- **icon-view:** add tests, some refactoring ([4fee755](https://github.com/core-ds/core-components/commit/4fee755b826024a02f2dab9e9573088284185380)) +- **icon-view:** refactoring ([2579bb0](https://github.com/core-ds/core-components/commit/2579bb016cfdeef0ff0e177f231a1d1a4715b0af)) +- **icon-view:** updates ([7b17f5f](https://github.com/core-ds/core-components/commit/7b17f5ffca39243a13d57fdbd0da31041dc0ea98)) # [23.5.0](https://github.com/core-ds/core-components/compare/v23.4.1...v23.5.0) (2021-12-29) - ### Bug Fixes -* **button:** решение проблемы с тултипом и заблокированной кнопкой ([#920](https://github.com/core-ds/core-components/issues/920)) ([d04f311](https://github.com/core-ds/core-components/commit/d04f31109baf340a4dc7264d3b8ab13109a5a68c)), closes [#799](https://github.com/core-ds/core-components/issues/799) -* **button:** убраны лишние отступы для вида ghost ([#933](https://github.com/core-ds/core-components/issues/933)) ([f43cdf6](https://github.com/core-ds/core-components/commit/f43cdf6afe349d2c7cb0d8436123e63aed347b54)) -* **input:** компонент иконки для кнопки очистки ([#930](https://github.com/core-ds/core-components/issues/930)) ([37049af](https://github.com/core-ds/core-components/commit/37049af84ed475e1932c91f1907fb604893be7d7)) - +- **button:** решение проблемы с тултипом и заблокированной кнопкой ([#920](https://github.com/core-ds/core-components/issues/920)) ([d04f311](https://github.com/core-ds/core-components/commit/d04f31109baf340a4dc7264d3b8ab13109a5a68c)), closes [#799](https://github.com/core-ds/core-components/issues/799) +- **button:** убраны лишние отступы для вида ghost ([#933](https://github.com/core-ds/core-components/issues/933)) ([f43cdf6](https://github.com/core-ds/core-components/commit/f43cdf6afe349d2c7cb0d8436123e63aed347b54)) +- **input:** компонент иконки для кнопки очистки ([#930](https://github.com/core-ds/core-components/issues/930)) ([37049af](https://github.com/core-ds/core-components/commit/37049af84ed475e1932c91f1907fb604893be7d7)) ### Features -* **checkbox:** состояние ошибки ([#909](https://github.com/core-ds/core-components/issues/909)) ([f81d7d8](https://github.com/core-ds/core-components/commit/f81d7d8ecade7418a2015d57f5cf3a9f31779174)) -* **select:** чекбоксы в выпадашке множественного выбора [#903](https://github.com/core-ds/core-components/issues/903)) ([f5638ef](https://github.com/core-ds/core-components/commit/f5638ef589468de0dc0473d30871035d8c4efab5)) -* **table:** компоненты для построения таблиц ([#911](https://github.com/core-ds/core-components/issues/911)) ([4ac648a](https://github.com/core-ds/core-components/commit/4ac648abd4de08bf68babc2f122f432d5b14080e)) +- **checkbox:** состояние ошибки ([#909](https://github.com/core-ds/core-components/issues/909)) ([f81d7d8](https://github.com/core-ds/core-components/commit/f81d7d8ecade7418a2015d57f5cf3a9f31779174)) +- **select:** чекбоксы в выпадашке множественного выбора [#903](https://github.com/core-ds/core-components/issues/903)) ([f5638ef](https://github.com/core-ds/core-components/commit/f5638ef589468de0dc0473d30871035d8c4efab5)) +- **table:** компоненты для построения таблиц ([#911](https://github.com/core-ds/core-components/issues/911)) ([4ac648a](https://github.com/core-ds/core-components/commit/4ac648abd4de08bf68babc2f122f432d5b14080e)) ## [23.4.1](https://github.com/core-ds/core-components/compare/v23.4.0...v23.4.1) (2021-12-22) - ### Bug Fixes -* add missing vars imports ([#931](https://github.com/core-ds/core-components/issues/931)) ([35ba847](https://github.com/core-ds/core-components/commit/35ba847d39924e713166d79ae6d64444131794a1)) +- add missing vars imports ([#931](https://github.com/core-ds/core-components/issues/931)) ([35ba847](https://github.com/core-ds/core-components/commit/35ba847d39924e713166d79ae6d64444131794a1)) # [23.4.0](https://github.com/core-ds/core-components/compare/v23.3.0...v23.4.0) (2021-12-21) - ### Features -* **calendar-input:** add popover z-index ([#924](https://github.com/core-ds/core-components/issues/924)) ([378286d](https://github.com/core-ds/core-components/commit/378286d746ca33aeb755617270f66310712d1c61)) +- **calendar-input:** add popover z-index ([#924](https://github.com/core-ds/core-components/issues/924)) ([378286d](https://github.com/core-ds/core-components/commit/378286d746ca33aeb755617270f66310712d1c61)) # [23.3.0](https://github.com/core-ds/core-components/compare/v23.2.0...v23.3.0) (2021-12-20) - ### Features -* **checkbox-group:** add click theme ([967d585](https://github.com/core-ds/core-components/commit/967d58538c5537fc2b3ac583fb742ebaef86109e)) +- **checkbox-group:** add click theme ([967d585](https://github.com/core-ds/core-components/commit/967d58538c5537fc2b3ac583fb742ebaef86109e)) # [23.2.0](https://github.com/core-ds/core-components/compare/v23.1.0...v23.2.0) (2021-12-14) - ### Bug Fixes -* **button:** удален вызов console.warn, если process.env.NODE_ENV !== 'development' ([d3e14ce](https://github.com/core-ds/core-components/commit/d3e14cef7835b5512e4848c5a1048475a8990018)) -* **custom-button:** fix color variable & component description ([5b9df4d](https://github.com/core-ds/core-components/commit/5b9df4dffa070b8339f0e208c0d14c72ecdb2012)) -* **custom-button:** fix props type ([a1bf943](https://github.com/core-ds/core-components/commit/a1bf94319b8844cbb3fc7d4626d2232357d72f63)) -* **picker-button:** wrap field with div ([b51bce8](https://github.com/core-ds/core-components/commit/b51bce85b39583e7bb1107f56c6e64a6f2b96d5c)), closes [#914](https://github.com/core-ds/core-components/issues/914) - +- **button:** удален вызов console.warn, если process.env.NODE_ENV !== 'development' ([d3e14ce](https://github.com/core-ds/core-components/commit/d3e14cef7835b5512e4848c5a1048475a8990018)) +- **custom-button:** fix color variable & component description ([5b9df4d](https://github.com/core-ds/core-components/commit/5b9df4dffa070b8339f0e208c0d14c72ecdb2012)) +- **custom-button:** fix props type ([a1bf943](https://github.com/core-ds/core-components/commit/a1bf94319b8844cbb3fc7d4626d2232357d72f63)) +- **picker-button:** wrap field with div ([b51bce8](https://github.com/core-ds/core-components/commit/b51bce85b39583e7bb1107f56c6e64a6f2b96d5c)), closes [#914](https://github.com/core-ds/core-components/issues/914) ### Features -* **custom-button:** add custom-button component ([983bcd7](https://github.com/core-ds/core-components/commit/983bcd7119c6f674ed15ed5bfe069349449f84c8)) +- **custom-button:** add custom-button component ([983bcd7](https://github.com/core-ds/core-components/commit/983bcd7119c6f674ed15ed5bfe069349449f84c8)) # [23.1.0](https://github.com/core-ds/core-components/compare/v23.0.0...v23.1.0) (2021-12-09) - ### Features -* **file-upload-item:** обновлен внешний вид ([#902](https://github.com/core-ds/core-components/issues/902)) ([d0f7d1e](https://github.com/core-ds/core-components/commit/d0f7d1ebdf302711a01549e86d0d8a5129b66d82)) -* **status:** добавлено 10% прозрачности в цвет фона ([#896](https://github.com/core-ds/core-components/issues/896)) ([b55c62b](https://github.com/core-ds/core-components/commit/b55c62b49cc52a15ff7497b9ad329773fba15959)) +- **file-upload-item:** обновлен внешний вид ([#902](https://github.com/core-ds/core-components/issues/902)) ([d0f7d1e](https://github.com/core-ds/core-components/commit/d0f7d1ebdf302711a01549e86d0d8a5129b66d82)) +- **status:** добавлено 10% прозрачности в цвет фона ([#896](https://github.com/core-ds/core-components/issues/896)) ([b55c62b](https://github.com/core-ds/core-components/commit/b55c62b49cc52a15ff7497b9ad329773fba15959)) # [23.0.0](https://github.com/core-ds/core-components/compare/v22.3.1...v23.0.0) (2021-12-08) - -* fix!: новый cdn иконок (#913) (#917) ([224831f](https://github.com/core-ds/core-components/commit/224831f41ed2de49dc1a228dc081b0629cf274b1)), closes [#913](https://github.com/core-ds/core-components/issues/913) [#917](https://github.com/core-ds/core-components/issues/917) - +- fix!: новый cdn иконок (#913) (#917) ([224831f](https://github.com/core-ds/core-components/commit/224831f41ed2de49dc1a228dc081b0629cf274b1)), closes [#913](https://github.com/core-ds/core-components/issues/913) [#917](https://github.com/core-ds/core-components/issues/917) ### BREAKING CHANGES -* Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. ## [22.3.1](https://github.com/core-ds/core-components/compare/v22.3.0...v22.3.1) (2021-12-08) - ### Bug Fixes -* revert 0e8124552206f96149d104f65cff1667e857bf01 ([#916](https://github.com/core-ds/core-components/issues/916)) ([953fbcf](https://github.com/core-ds/core-components/commit/953fbcfec46a40089a5cfde670597315269b05f5)) +- revert 0e8124552206f96149d104f65cff1667e857bf01 ([#916](https://github.com/core-ds/core-components/issues/916)) ([953fbcf](https://github.com/core-ds/core-components/commit/953fbcfec46a40089a5cfde670597315269b05f5)) # [22.3.0](https://github.com/core-ds/core-components/compare/v22.2.0...v22.3.0) (2021-12-08) - ### Bug Fixes -* актуализируем @alfalab/utils ([#897](https://github.com/core-ds/core-components/issues/897)) ([30fb88e](https://github.com/core-ds/core-components/commit/30fb88eee36f68cabf80069e5125d911fabde4a5)) -* новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([0e81245](https://github.com/core-ds/core-components/commit/0e8124552206f96149d104f65cff1667e857bf01)) -* **bank-card:** фикс цвета иконки ([#898](https://github.com/core-ds/core-components/issues/898)) ([66c2659](https://github.com/core-ds/core-components/commit/66c265919e7452af324ceabd26813a8be19b4839)) -* **calendar-input:** рендер rightAddons, фикс затертых пропсов ([#895](https://github.com/core-ds/core-components/issues/895)) ([1eabd29](https://github.com/core-ds/core-components/commit/1eabd2902cd1bd62517284313f79cf31189cf525)) -* **dropzone:** изменение темы клика ([#893](https://github.com/core-ds/core-components/issues/893)) ([cadc6da](https://github.com/core-ds/core-components/commit/cadc6da29896e6a033bac8e91723b20beb404b32)) -* **plate:** активный курсор только для foldable плашек ([#912](https://github.com/core-ds/core-components/issues/912)) ([06a38bd](https://github.com/core-ds/core-components/commit/06a38bd6bd07d016d670e600b373791aabe3d3ea)) -* **radio:** условный рендер подсказки и лейбла ([#892](https://github.com/core-ds/core-components/issues/892)) ([b744c15](https://github.com/core-ds/core-components/commit/b744c159f3779c5bf555041e7762f9653efb7b0e)), closes [#869](https://github.com/core-ds/core-components/issues/869) - +- актуализируем @alfalab/utils ([#897](https://github.com/core-ds/core-components/issues/897)) ([30fb88e](https://github.com/core-ds/core-components/commit/30fb88eee36f68cabf80069e5125d911fabde4a5)) +- новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([0e81245](https://github.com/core-ds/core-components/commit/0e8124552206f96149d104f65cff1667e857bf01)) +- **bank-card:** фикс цвета иконки ([#898](https://github.com/core-ds/core-components/issues/898)) ([66c2659](https://github.com/core-ds/core-components/commit/66c265919e7452af324ceabd26813a8be19b4839)) +- **calendar-input:** рендер rightAddons, фикс затертых пропсов ([#895](https://github.com/core-ds/core-components/issues/895)) ([1eabd29](https://github.com/core-ds/core-components/commit/1eabd2902cd1bd62517284313f79cf31189cf525)) +- **dropzone:** изменение темы клика ([#893](https://github.com/core-ds/core-components/issues/893)) ([cadc6da](https://github.com/core-ds/core-components/commit/cadc6da29896e6a033bac8e91723b20beb404b32)) +- **plate:** активный курсор только для foldable плашек ([#912](https://github.com/core-ds/core-components/issues/912)) ([06a38bd](https://github.com/core-ds/core-components/commit/06a38bd6bd07d016d670e600b373791aabe3d3ea)) +- **radio:** условный рендер подсказки и лейбла ([#892](https://github.com/core-ds/core-components/issues/892)) ([b744c15](https://github.com/core-ds/core-components/commit/b744c159f3779c5bf555041e7762f9653efb7b0e)), closes [#869](https://github.com/core-ds/core-components/issues/869) ### Features -* **calendar:** мобильные стили ([#867](https://github.com/core-ds/core-components/issues/867)) ([febf545](https://github.com/core-ds/core-components/commit/febf54551f8179a1ba03fe65ed47aa3b20b01472)) -* **calendar:** показываем будущий год ([#900](https://github.com/core-ds/core-components/issues/900)) ([3cd3c63](https://github.com/core-ds/core-components/commit/3cd3c63e5ff88066599d0944a2d3183e63150664)) +- **calendar:** мобильные стили ([#867](https://github.com/core-ds/core-components/issues/867)) ([febf545](https://github.com/core-ds/core-components/commit/febf54551f8179a1ba03fe65ed47aa3b20b01472)) +- **calendar:** показываем будущий год ([#900](https://github.com/core-ds/core-components/issues/900)) ([3cd3c63](https://github.com/core-ds/core-components/commit/3cd3c63e5ff88066599d0944a2d3183e63150664)) # [22.2.0](https://github.com/core-ds/core-components/compare/v22.1.0...v22.2.0) (2021-12-01) - ### Bug Fixes -* **notification:** set word-break: break-word in notif ([8f7615d](https://github.com/core-ds/core-components/commit/8f7615d2f497d97c0811868e14bf4ccd51710f31)) -* **notification:** убрал word-break: break-all ([db0d2b2](https://github.com/core-ds/core-components/commit/db0d2b28d12101f1a7bae395cbf17d570b88cc83)) - +- **notification:** set word-break: break-word in notif ([8f7615d](https://github.com/core-ds/core-components/commit/8f7615d2f497d97c0811868e14bf4ccd51710f31)) +- **notification:** убрал word-break: break-all ([db0d2b2](https://github.com/core-ds/core-components/commit/db0d2b28d12101f1a7bae395cbf17d570b88cc83)) ### Features -* **popover:** add availableHieght prop, update related snapshots ([43b4ebd](https://github.com/core-ds/core-components/commit/43b4ebd6ba092f22d0dfc845f3f0113b390317dc)), closes [#758](https://github.com/core-ds/core-components/issues/758) -* **tooltip:** add availableHeight and preventOverflow props ([b401524](https://github.com/core-ds/core-components/commit/b401524b0eb0b9e06593883a889b99198982c718)), closes [#758](https://github.com/core-ds/core-components/issues/758) +- **popover:** add availableHieght prop, update related snapshots ([43b4ebd](https://github.com/core-ds/core-components/commit/43b4ebd6ba092f22d0dfc845f3f0113b390317dc)), closes [#758](https://github.com/core-ds/core-components/issues/758) +- **tooltip:** add availableHeight and preventOverflow props ([b401524](https://github.com/core-ds/core-components/commit/b401524b0eb0b9e06593883a889b99198982c718)), closes [#758](https://github.com/core-ds/core-components/issues/758) # [22.1.0](https://github.com/core-ds/core-components/compare/v22.0.0...v22.1.0) (2021-11-30) - ### Features -* **circular-progress-bar:** new size S ([d34db5c](https://github.com/core-ds/core-components/commit/d34db5cca682bc63f948a0dad322604c8044a6b8)) +- **circular-progress-bar:** new size S ([d34db5c](https://github.com/core-ds/core-components/commit/d34db5cca682bc63f948a0dad322604c8044a6b8)) # [22.0.0](https://github.com/core-ds/core-components/compare/v21.3.3...v22.0.0) (2021-11-26) - ### Features -* **button:** добавлена кнопка размера 40px, изменены скругления ([#886](https://github.com/core-ds/core-components/issues/886)) ([88e657a](https://github.com/core-ds/core-components/commit/88e657a9f0f68b8b58f6e9437053954ee984f83c)), closes [#890](https://github.com/core-ds/core-components/issues/890) - +- **button:** добавлена кнопка размера 40px, изменены скругления ([#886](https://github.com/core-ds/core-components/issues/886)) ([88e657a](https://github.com/core-ds/core-components/commit/88e657a9f0f68b8b58f6e9437053954ee984f83c)), closes [#890](https://github.com/core-ds/core-components/issues/890) ### BREAKING CHANGES -* **button:** Кнопка размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо - заменить размер на xxs. Можно воспользоваться codemod. +- **button:** Кнопка размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо + заменить размер на xxs. Можно воспользоваться codemod. -* feat(codemod): add button xs to xxs transformer +- feat(codemod): add button xs to xxs transformer -* feat(tag): добавлен тэг размера 40px, изменены отступы +- feat(tag): добавлен тэг размера 40px, изменены отступы Добавлен тэг размером 40px, изменены отступы. Тем, кто использовал размер xs, надо заменить размер на xxs. -* **button:** Тэг размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо + +- **button:** Тэг размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо заменить размер на xxs. Можно воспользоваться codemod. -* test: update screenshots +- test: update screenshots -* test: update screenshots +- test: update screenshots -* feat(button): linter fix +- feat(button): linter fix -* feat(button): fix min-width +- feat(button): fix min-width -* feat(tag): remove vertical paddings +- feat(tag): remove vertical paddings -* feat(tag): remove vertical paddings +- feat(tag): remove vertical paddings -* feat(button): updates +- feat(button): updates ## [21.3.3](https://github.com/core-ds/core-components/compare/v21.3.2...v21.3.3) (2021-11-23) - ### Bug Fixes -* **tabs:** hide native scrollbar on scrollable tabs properly ([0134956](https://github.com/core-ds/core-components/commit/0134956f2af01720500f7ad06caeeb4569e74d50)), closes [#879](https://github.com/core-ds/core-components/issues/879) +- **tabs:** hide native scrollbar on scrollable tabs properly ([0134956](https://github.com/core-ds/core-components/commit/0134956f2af01720500f7ad06caeeb4569e74d50)), closes [#879](https://github.com/core-ds/core-components/issues/879) ## [21.3.2](https://github.com/core-ds/core-components/compare/v21.3.1...v21.3.2) (2021-11-22) - ### Bug Fixes -* **calendar-range:** fix default month to ([#868](https://github.com/core-ds/core-components/issues/868)) ([1f9fb97](https://github.com/core-ds/core-components/commit/1f9fb9709292d28300c3fc4386ffd858b2efd852)) -* **slider-input:** classnames overriding ([#891](https://github.com/core-ds/core-components/issues/891)) ([d63d676](https://github.com/core-ds/core-components/commit/d63d67628c88e54b38244b1f57969844379d311f)) +- **calendar-range:** fix default month to ([#868](https://github.com/core-ds/core-components/issues/868)) ([1f9fb97](https://github.com/core-ds/core-components/commit/1f9fb9709292d28300c3fc4386ffd858b2efd852)) +- **slider-input:** classnames overriding ([#891](https://github.com/core-ds/core-components/issues/891)) ([d63d676](https://github.com/core-ds/core-components/commit/d63d67628c88e54b38244b1f57969844379d311f)) ## [21.3.1](https://github.com/core-ds/core-components/compare/v21.3.0...v21.3.1) (2021-11-16) - ### Bug Fixes -* **skeleton:** prevent component unmount ([#887](https://github.com/core-ds/core-components/issues/887)) ([1bd4dc3](https://github.com/core-ds/core-components/commit/1bd4dc3147622f75802dd8e574175dbbf02cca54)) -* fix classNames hash ([#884](https://github.com/core-ds/core-components/issues/884)) ([60f58f2](https://github.com/core-ds/core-components/commit/60f58f223106869b15f6b19f466a70b0936a5a1d)) +- **skeleton:** prevent component unmount ([#887](https://github.com/core-ds/core-components/issues/887)) ([1bd4dc3](https://github.com/core-ds/core-components/commit/1bd4dc3147622f75802dd8e574175dbbf02cca54)) +- fix classNames hash ([#884](https://github.com/core-ds/core-components/issues/884)) ([60f58f2](https://github.com/core-ds/core-components/commit/60f58f223106869b15f6b19f466a70b0936a5a1d)) # [21.3.0](https://github.com/core-ds/core-components/compare/v21.2.2...v21.3.0) (2021-11-08) - ### Features -* **select:** добавлено свойство z-index для поповера ([#871](https://github.com/core-ds/core-components/issues/871)) ([4a53483](https://github.com/core-ds/core-components/commit/4a534835a9e6c9ec7793733467194536cfd96a91)) +- **select:** добавлено свойство z-index для поповера ([#871](https://github.com/core-ds/core-components/issues/871)) ([4a53483](https://github.com/core-ds/core-components/commit/4a534835a9e6c9ec7793733467194536cfd96a91)) ## [21.2.2](https://github.com/core-ds/core-components/compare/v21.2.1...v21.2.2) (2021-11-08) - ### Bug Fixes -* **modal:** add spreading backdrop props ([#870](https://github.com/core-ds/core-components/issues/870)) ([b523426](https://github.com/core-ds/core-components/commit/b52342616adf1f4b227f603264b70474e53c16f8)) +- **modal:** add spreading backdrop props ([#870](https://github.com/core-ds/core-components/issues/870)) ([b523426](https://github.com/core-ds/core-components/commit/b52342616adf1f4b227f603264b70474e53c16f8)) ## [21.2.1](https://github.com/core-ds/core-components/compare/v21.2.0...v21.2.1) (2021-10-27) - ### Bug Fixes -* **collapse:** dynamic content height ([#864](https://github.com/core-ds/core-components/issues/864)) ([e96c86b](https://github.com/core-ds/core-components/commit/e96c86bde70d58e4311a2c6bcd6d7407be0f4c44)) +- **collapse:** dynamic content height ([#864](https://github.com/core-ds/core-components/issues/864)) ([e96c86b](https://github.com/core-ds/core-components/commit/e96c86bde70d58e4311a2c6bcd6d7407be0f4c44)) # [21.2.0](https://github.com/core-ds/core-components/compare/v21.1.1...v21.2.0) (2021-10-25) - ### Bug Fixes -* **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7)) - +- **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7)) ### Features -* **collapse:** reset height to auto ([#822](https://github.com/core-ds/core-components/issues/822)) ([f533e3b](https://github.com/core-ds/core-components/commit/f533e3ba1eab5f41539c39ca3b97f698e90ca687)) +- **collapse:** reset height to auto ([#822](https://github.com/core-ds/core-components/issues/822)) ([f533e3b](https://github.com/core-ds/core-components/commit/f533e3ba1eab5f41539c39ca3b97f698e90ca687)) ## [21.1.1](https://github.com/core-ds/core-components/compare/v21.1.0...v21.1.1) (2021-10-19) - ### Bug Fixes -* **chart:** fix deps, export types ([b46450a](https://github.com/core-ds/core-components/commit/b46450ae954b10f0138c393482fe1271b001f085)) +- **chart:** fix deps, export types ([b46450a](https://github.com/core-ds/core-components/commit/b46450ae954b10f0138c393482fe1271b001f085)) # [21.1.0](https://github.com/core-ds/core-components/compare/v21.0.0...v21.1.0) (2021-10-18) - ### Features -* **confirmation:** compact code-input if slotsCount > 6 ([99be0e1](https://github.com/core-ds/core-components/commit/99be0e1744d9782824756c8992fd4b986a589dd7)) -* **confirmation:** компактный code-input когда символов > 6 ([633d1ff](https://github.com/core-ds/core-components/commit/633d1ffd66c7c9d949c3996f6d4d739a4fcb6b21)) +- **confirmation:** compact code-input if slotsCount > 6 ([99be0e1](https://github.com/core-ds/core-components/commit/99be0e1744d9782824756c8992fd4b986a589dd7)) +- **confirmation:** компактный code-input когда символов > 6 ([633d1ff](https://github.com/core-ds/core-components/commit/633d1ffd66c7c9d949c3996f6d4d739a4fcb6b21)) # [21.0.0](https://github.com/core-ds/core-components/compare/v20.7.2...v21.0.0) (2021-10-15) - ### Features -* обновлённая темизация иконок в инпутах ([ab90d60](https://github.com/core-ds/core-components/commit/ab90d602f239176d0771db38f9cc29dc02a35566)) -* **calendar-input:** переход к темизации цвета иконки ([adf1dfd](https://github.com/core-ds/core-components/commit/adf1dfd080c1986976a57fee448183e762892eb0)) -* **select:** переход к темизации цвета иконки ([112cd95](https://github.com/core-ds/core-components/commit/112cd95242e27f5065eb2a8349d3afbddfdee638)) -* **themes:** обновлённые темы для calendar-input и select ([5ae76c3](https://github.com/core-ds/core-components/commit/5ae76c314bf33236767056b77969ca7003057532)) - +- обновлённая темизация иконок в инпутах ([ab90d60](https://github.com/core-ds/core-components/commit/ab90d602f239176d0771db38f9cc29dc02a35566)) +- **calendar-input:** переход к темизации цвета иконки ([adf1dfd](https://github.com/core-ds/core-components/commit/adf1dfd080c1986976a57fee448183e762892eb0)) +- **select:** переход к темизации цвета иконки ([112cd95](https://github.com/core-ds/core-components/commit/112cd95242e27f5065eb2a8349d3afbddfdee638)) +- **themes:** обновлённые темы для calendar-input и select ([5ae76c3](https://github.com/core-ds/core-components/commit/5ae76c314bf33236767056b77969ca7003057532)) ### BREAKING CHANGES -* **select:** удалена переменная --select-arrow-background -* **calendar-input:** удалена переменная --calendar-input-calendar-icon +- **select:** удалена переменная --select-arrow-background +- **calendar-input:** удалена переменная --calendar-input-calendar-icon ## [20.7.2](https://github.com/core-ds/core-components/compare/v20.7.1...v20.7.2) (2021-10-15) - ### Bug Fixes -* **calendar-input:** обновлён в теме click ([da5d960](https://github.com/core-ds/core-components/commit/da5d9607ce80742bd6780a5bad11b07b3617b44c)) -* input & textarea disabled color on safari ([39ea4ef](https://github.com/core-ds/core-components/commit/39ea4ef7e948016a4ffa17c563cfdd13169a3c2b)) -* фикс цвета disabled в Safari для Input и Textarea ([efaa693](https://github.com/core-ds/core-components/commit/efaa693c8e34569df05c951c09c89895d4d949dc)) -* **calendar-input:** remove popover border in click theme ([7a76759](https://github.com/core-ds/core-components/commit/7a76759ccc5741a03a4c90f97cce6f67255b1c4b)) -* **calendar-input:** update border-radius ([0d06aca](https://github.com/core-ds/core-components/commit/0d06aca7162c85f987c1172ea037b5b3bc66f8c5)) +- **calendar-input:** обновлён в теме click ([da5d960](https://github.com/core-ds/core-components/commit/da5d9607ce80742bd6780a5bad11b07b3617b44c)) +- input & textarea disabled color on safari ([39ea4ef](https://github.com/core-ds/core-components/commit/39ea4ef7e948016a4ffa17c563cfdd13169a3c2b)) +- фикс цвета disabled в Safari для Input и Textarea ([efaa693](https://github.com/core-ds/core-components/commit/efaa693c8e34569df05c951c09c89895d4d949dc)) +- **calendar-input:** remove popover border in click theme ([7a76759](https://github.com/core-ds/core-components/commit/7a76759ccc5741a03a4c90f97cce6f67255b1c4b)) +- **calendar-input:** update border-radius ([0d06aca](https://github.com/core-ds/core-components/commit/0d06aca7162c85f987c1172ea037b5b3bc66f8c5)) ## [20.7.1](https://github.com/core-ds/core-components/compare/v20.7.0...v20.7.1) (2021-10-13) - ### Bug Fixes -* понижена версия react-hooks, чтобы не дропать 10ую ноду. Пакет перенесен devDeps ([#852](https://github.com/core-ds/core-components/issues/852)) ([662754a](https://github.com/core-ds/core-components/commit/662754a354b2286114fdff16fa0f7a9ccb5b769d)) -* **tabs:** фикс бага при скрытии табов ([#851](https://github.com/core-ds/core-components/issues/851)) ([5d5dcd9](https://github.com/core-ds/core-components/commit/5d5dcd966fface279921bea5610e9b3af3f2117b)) +- понижена версия react-hooks, чтобы не дропать 10ую ноду. Пакет перенесен devDeps ([#852](https://github.com/core-ds/core-components/issues/852)) ([662754a](https://github.com/core-ds/core-components/commit/662754a354b2286114fdff16fa0f7a9ccb5b769d)) +- **tabs:** фикс бага при скрытии табов ([#851](https://github.com/core-ds/core-components/issues/851)) ([5d5dcd9](https://github.com/core-ds/core-components/commit/5d5dcd966fface279921bea5610e9b3af3f2117b)) # [20.7.0](https://github.com/core-ds/core-components/compare/v20.6.0...v20.7.0) (2021-10-12) - ### Features -* **file-upload-item:** добавлен пропс download ([#844](https://github.com/core-ds/core-components/issues/844)) ([db2a4ca](https://github.com/core-ds/core-components/commit/db2a4ca27ee7a64721138c7c2e918b4657c75489)) +- **file-upload-item:** добавлен пропс download ([#844](https://github.com/core-ds/core-components/issues/844)) ([db2a4ca](https://github.com/core-ds/core-components/commit/db2a4ca27ee7a64721138c7c2e918b4657c75489)) # [20.6.0](https://github.com/core-ds/core-components/compare/v20.5.0...v20.6.0) (2021-10-11) - ### Bug Fixes -* bump react-popper ([#847](https://github.com/core-ds/core-components/issues/847)) ([e8d284b](https://github.com/core-ds/core-components/commit/e8d284bfdfb4aa1fa0ea9e11f6e59c117b309782)) - +- bump react-popper ([#847](https://github.com/core-ds/core-components/issues/847)) ([e8d284b](https://github.com/core-ds/core-components/commit/e8d284bfdfb4aa1fa0ea9e11f6e59c117b309782)) ### Features -* проставлен role=alert для ошибок ([#850](https://github.com/core-ds/core-components/issues/850)) ([dc634a3](https://github.com/core-ds/core-components/commit/dc634a3d008accfab10192ce234c12ef0ecc7fa9)) -* **file-upload-item:** custom icon ([#849](https://github.com/core-ds/core-components/issues/849)) ([59b8925](https://github.com/core-ds/core-components/commit/59b8925fbb9c631534c49c8dbb68cf493678e9e5)) +- проставлен role=alert для ошибок ([#850](https://github.com/core-ds/core-components/issues/850)) ([dc634a3](https://github.com/core-ds/core-components/commit/dc634a3d008accfab10192ce234c12ef0ecc7fa9)) +- **file-upload-item:** custom icon ([#849](https://github.com/core-ds/core-components/issues/849)) ([59b8925](https://github.com/core-ds/core-components/commit/59b8925fbb9c631534c49c8dbb68cf493678e9e5)) # [20.5.0](https://github.com/core-ds/core-components/compare/v20.4.0...v20.5.0) (2021-10-11) - ### Features -* **chart:** added border radius to bar charts ([cfd0ad2](https://github.com/core-ds/core-components/commit/cfd0ad2c23a2b80de0bc5dfae7b65a14263e37e9)) -* **chart:** added chart component ([1119943](https://github.com/core-ds/core-components/commit/11199435e9ab53ae159707e94714a34952ad56c1)) -* **chart:** added description ([8275346](https://github.com/core-ds/core-components/commit/827534640af0c0b06c1105755e9435d43cae8acd)) -* **chart:** added props for legend icons height ([5c9b321](https://github.com/core-ds/core-components/commit/5c9b32154e6f39cddd3ac9668830959adba64648)) -* **chart:** bar radius ([e39251a](https://github.com/core-ds/core-components/commit/e39251a37a52b6f434932439da0b86a03a26d901)) -* **chart:** beautifyed ([67cc96e](https://github.com/core-ds/core-components/commit/67cc96e6afc020c3af5491d3d7ba0b89f50dbaf3)) -* **chart:** edited doc ([8728271](https://github.com/core-ds/core-components/commit/8728271dc7f733c9b14a27c83a7136c22ef39ed6)) -* **chart:** fix doc ([9d1e888](https://github.com/core-ds/core-components/commit/9d1e8889615f0701a43a9fbceca867557002ef31)) -* **chart:** fixed after pull master ) ([4c7d241](https://github.com/core-ds/core-components/commit/4c7d241da264cde81e50573f96a2f035c31306e1)) -* **chart:** fixed build error ([2efdd22](https://github.com/core-ds/core-components/commit/2efdd22f27e8229b2ad4cb7d355f61b218ea1bc1)) -* **chart:** fixed comments ([a611b9c](https://github.com/core-ds/core-components/commit/a611b9c1c9bab1d5a15c2021bff270e9bbf5a934)) -* **chart:** fixed comments ([7ad1caf](https://github.com/core-ds/core-components/commit/7ad1caf5be9f2da6a218b2c97cc7d96efb4d286d)) -* **chart:** fixed comments ([555acb6](https://github.com/core-ds/core-components/commit/555acb699549c52f85d0dd58009ab1692344eb44)) -* **chart:** fixed comments ([379e53d](https://github.com/core-ds/core-components/commit/379e53ddf8c857424600d5fc49b41c03f5ac11ea)) -* **chart:** fixed global styles css ([2f8f139](https://github.com/core-ds/core-components/commit/2f8f139137090f185b1c3c2333fe7ceee7a1fff8)) -* **chart:** more description ([9a4c076](https://github.com/core-ds/core-components/commit/9a4c0762782c2f8ccee0e0c7c660514a10119960)) -* **chart:** pulled master ([176f7ae](https://github.com/core-ds/core-components/commit/176f7ae6e7cdb2a3e18d2136523e5be6ecdbde3e)) -* **chart:** resolved conflicts ([7f734ba](https://github.com/core-ds/core-components/commit/7f734bab0347af6e5d56d717d8b5cc0cf192f9f3)) -* **chart:** добавлена возможность скруглять углы и возможность отображать подписи значений для графиков типа bar ([4d81ab5](https://github.com/core-ds/core-components/commit/4d81ab5601b2ed38bc6f0f1187cf7c80c79fe50a)) +- **chart:** added border radius to bar charts ([cfd0ad2](https://github.com/core-ds/core-components/commit/cfd0ad2c23a2b80de0bc5dfae7b65a14263e37e9)) +- **chart:** added chart component ([1119943](https://github.com/core-ds/core-components/commit/11199435e9ab53ae159707e94714a34952ad56c1)) +- **chart:** added description ([8275346](https://github.com/core-ds/core-components/commit/827534640af0c0b06c1105755e9435d43cae8acd)) +- **chart:** added props for legend icons height ([5c9b321](https://github.com/core-ds/core-components/commit/5c9b32154e6f39cddd3ac9668830959adba64648)) +- **chart:** bar radius ([e39251a](https://github.com/core-ds/core-components/commit/e39251a37a52b6f434932439da0b86a03a26d901)) +- **chart:** beautifyed ([67cc96e](https://github.com/core-ds/core-components/commit/67cc96e6afc020c3af5491d3d7ba0b89f50dbaf3)) +- **chart:** edited doc ([8728271](https://github.com/core-ds/core-components/commit/8728271dc7f733c9b14a27c83a7136c22ef39ed6)) +- **chart:** fix doc ([9d1e888](https://github.com/core-ds/core-components/commit/9d1e8889615f0701a43a9fbceca867557002ef31)) +- **chart:** fixed after pull master ) ([4c7d241](https://github.com/core-ds/core-components/commit/4c7d241da264cde81e50573f96a2f035c31306e1)) +- **chart:** fixed build error ([2efdd22](https://github.com/core-ds/core-components/commit/2efdd22f27e8229b2ad4cb7d355f61b218ea1bc1)) +- **chart:** fixed comments ([a611b9c](https://github.com/core-ds/core-components/commit/a611b9c1c9bab1d5a15c2021bff270e9bbf5a934)) +- **chart:** fixed comments ([7ad1caf](https://github.com/core-ds/core-components/commit/7ad1caf5be9f2da6a218b2c97cc7d96efb4d286d)) +- **chart:** fixed comments ([555acb6](https://github.com/core-ds/core-components/commit/555acb699549c52f85d0dd58009ab1692344eb44)) +- **chart:** fixed comments ([379e53d](https://github.com/core-ds/core-components/commit/379e53ddf8c857424600d5fc49b41c03f5ac11ea)) +- **chart:** fixed global styles css ([2f8f139](https://github.com/core-ds/core-components/commit/2f8f139137090f185b1c3c2333fe7ceee7a1fff8)) +- **chart:** more description ([9a4c076](https://github.com/core-ds/core-components/commit/9a4c0762782c2f8ccee0e0c7c660514a10119960)) +- **chart:** pulled master ([176f7ae](https://github.com/core-ds/core-components/commit/176f7ae6e7cdb2a3e18d2136523e5be6ecdbde3e)) +- **chart:** resolved conflicts ([7f734ba](https://github.com/core-ds/core-components/commit/7f734bab0347af6e5d56d717d8b5cc0cf192f9f3)) +- **chart:** добавлена возможность скруглять углы и возможность отображать подписи значений для графиков типа bar ([4d81ab5](https://github.com/core-ds/core-components/commit/4d81ab5601b2ed38bc6f0f1187cf7c80c79fe50a)) # [20.4.0](https://github.com/core-ds/core-components/compare/v20.3.2...v20.4.0) (2021-09-30) - ### Features -* **chart:** add component ([#835](https://github.com/core-ds/core-components/issues/835)) ([17d840b](https://github.com/core-ds/core-components/commit/17d840b9f9f64474491d3ec58d3cda53ad07f0ca)) +- **chart:** add component ([#835](https://github.com/core-ds/core-components/issues/835)) ([17d840b](https://github.com/core-ds/core-components/commit/17d840b9f9f64474491d3ec58d3cda53ad07f0ca)) ## [20.3.2](https://github.com/core-ds/core-components/compare/v20.3.1...v20.3.2) (2021-09-30) - ### Bug Fixes -* **intl-phone-input:** revert fix carret position on backspace ([772dcf5](https://github.com/core-ds/core-components/commit/772dcf588ba2d28ab9b02f81d0bf538bf016cae0)) +- **intl-phone-input:** revert fix carret position on backspace ([772dcf5](https://github.com/core-ds/core-components/commit/772dcf588ba2d28ab9b02f81d0bf538bf016cae0)) ## [20.3.1](https://github.com/core-ds/core-components/compare/v20.3.0...v20.3.1) (2021-09-28) - ### Bug Fixes -* cssm build ([bbc0a47](https://github.com/core-ds/core-components/commit/bbc0a472a0f68a5b239c4734bdce452f1a107ea6)) +- cssm build ([bbc0a47](https://github.com/core-ds/core-components/commit/bbc0a472a0f68a5b239c4734bdce452f1a107ea6)) # [20.3.0](https://github.com/core-ds/core-components/compare/v20.2.0...v20.3.0) (2021-09-27) - ### Bug Fixes -* **file-upload-item:** fix description prop ([#836](https://github.com/core-ds/core-components/issues/836)) ([e15cf1d](https://github.com/core-ds/core-components/commit/e15cf1dad438e22ac31984bfcf8531981b88c6de)) -* **intl-phone-input:** fix carret position on backspace ([#840](https://github.com/core-ds/core-components/issues/840)) ([c786ac1](https://github.com/core-ds/core-components/commit/c786ac17bd086833f3200570e812028ec4580554)), closes [#806](https://github.com/core-ds/core-components/issues/806) - +- **file-upload-item:** fix description prop ([#836](https://github.com/core-ds/core-components/issues/836)) ([e15cf1d](https://github.com/core-ds/core-components/commit/e15cf1dad438e22ac31984bfcf8531981b88c6de)) +- **intl-phone-input:** fix carret position on backspace ([#840](https://github.com/core-ds/core-components/issues/840)) ([c786ac1](https://github.com/core-ds/core-components/commit/c786ac17bd086833f3200570e812028ec4580554)), closes [#806](https://github.com/core-ds/core-components/issues/806) ### Features -* **confirmation:** design update, new type of error "overlimit" and blocking input ([#841](https://github.com/core-ds/core-components/issues/841)) ([1ea5d31](https://github.com/core-ds/core-components/commit/1ea5d3117552f7cc9fcd78092edf634d9020b693)) -* **select:** controlled open ([#839](https://github.com/core-ds/core-components/issues/839)) ([95d0470](https://github.com/core-ds/core-components/commit/95d0470a86e1a54f4cb4b789bb7e3281a1f0a401)) +- **confirmation:** design update, new type of error "overlimit" and blocking input ([#841](https://github.com/core-ds/core-components/issues/841)) ([1ea5d31](https://github.com/core-ds/core-components/commit/1ea5d3117552f7cc9fcd78092edf634d9020b693)) +- **select:** controlled open ([#839](https://github.com/core-ds/core-components/issues/839)) ([95d0470](https://github.com/core-ds/core-components/commit/95d0470a86e1a54f4cb4b789bb7e3281a1f0a401)) # [20.2.0](https://github.com/core-ds/core-components/compare/v20.1.0...v20.2.0) (2021-09-22) - ### Features -* **gallery:** add `canDownload` image prop, some refactoring ([#837](https://github.com/core-ds/core-components/issues/837)) ([b0c6665](https://github.com/core-ds/core-components/commit/b0c6665bb6a3d4b1e9d5bc176149f63ca2bd8542)) +- **gallery:** add `canDownload` image prop, some refactoring ([#837](https://github.com/core-ds/core-components/issues/837)) ([b0c6665](https://github.com/core-ds/core-components/commit/b0c6665bb6a3d4b1e9d5bc176149f63ca2bd8542)) # [20.1.0](https://github.com/core-ds/core-components/compare/v20.0.0...v20.1.0) (2021-09-16) - ### Features -* **gallery:** add component ([#815](https://github.com/core-ds/core-components/issues/815)) ([7ffd20e](https://github.com/core-ds/core-components/commit/7ffd20e2d007f658223d29aa943639c13ad51342)), closes [#774](https://github.com/core-ds/core-components/issues/774) [#795](https://github.com/core-ds/core-components/issues/795) +- **gallery:** add component ([#815](https://github.com/core-ds/core-components/issues/815)) ([7ffd20e](https://github.com/core-ds/core-components/commit/7ffd20e2d007f658223d29aa943639c13ad51342)), closes [#774](https://github.com/core-ds/core-components/issues/774) [#795](https://github.com/core-ds/core-components/issues/795) # [20.0.0](https://github.com/core-ds/core-components/compare/v19.11.1...v20.0.0) (2021-09-14) - ### Bug Fixes -* confirmation & input ([#833](https://github.com/core-ds/core-components/issues/833)) ([f3c0d62](https://github.com/core-ds/core-components/commit/f3c0d62c15b3812205b71685c2d37c0a986677ee)) -* **base-modal:** modal scroll ([#820](https://github.com/core-ds/core-components/issues/820)) ([1b2d94a](https://github.com/core-ds/core-components/commit/1b2d94ad45e04145bf1292d749ae2028702dc622)) - +- confirmation & input ([#833](https://github.com/core-ds/core-components/issues/833)) ([f3c0d62](https://github.com/core-ds/core-components/commit/f3c0d62c15b3812205b71685c2d37c0a986677ee)) +- **base-modal:** modal scroll ([#820](https://github.com/core-ds/core-components/issues/820)) ([1b2d94a](https://github.com/core-ds/core-components/commit/1b2d94ad45e04145bf1292d749ae2028702dc622)) ### Features -* dark themes ([#778](https://github.com/core-ds/core-components/issues/778)) ([d848d16](https://github.com/core-ds/core-components/commit/d848d165b59182e6521d28efc2aadeecebc00d93)) -* **dropzone:** design improvements (PDS-282) ([#829](https://github.com/core-ds/core-components/issues/829)) ([437ec3c](https://github.com/core-ds/core-components/commit/437ec3c80c507a37c8a24106a6ee6514abd68d04)) -* **password-input:** show right addons (PDS-283) ([#828](https://github.com/core-ds/core-components/issues/828)) ([b255acd](https://github.com/core-ds/core-components/commit/b255acdcdbe37b546c6c9100a1645609439af430)) -* **popover:** add useAnchorWidth prop ([#826](https://github.com/core-ds/core-components/issues/826)) ([8df55c4](https://github.com/core-ds/core-components/commit/8df55c4c496467c363c5c09c14d1bd08a9709ebf)), closes [#787](https://github.com/core-ds/core-components/issues/787) -* **typography:** add ref ([#834](https://github.com/core-ds/core-components/issues/834)) ([976b16d](https://github.com/core-ds/core-components/commit/976b16dd9ae68c31999bffb3506623db05033ad4)) -* change error type to ReactNode ([#825](https://github.com/core-ds/core-components/issues/825)) ([c6d95c1](https://github.com/core-ds/core-components/commit/c6d95c1c6239f2b2a3bf2c1639554d8500e794f3)) -* **vars:** updated colors and typography from latest alfa-ui-primitives ([#803](https://github.com/core-ds/core-components/issues/803)) ([0d5b2a3](https://github.com/core-ds/core-components/commit/0d5b2a30a78e70392dd505790a92bc3bc83f9386)) - +- dark themes ([#778](https://github.com/core-ds/core-components/issues/778)) ([d848d16](https://github.com/core-ds/core-components/commit/d848d165b59182e6521d28efc2aadeecebc00d93)) +- **dropzone:** design improvements (PDS-282) ([#829](https://github.com/core-ds/core-components/issues/829)) ([437ec3c](https://github.com/core-ds/core-components/commit/437ec3c80c507a37c8a24106a6ee6514abd68d04)) +- **password-input:** show right addons (PDS-283) ([#828](https://github.com/core-ds/core-components/issues/828)) ([b255acd](https://github.com/core-ds/core-components/commit/b255acdcdbe37b546c6c9100a1645609439af430)) +- **popover:** add useAnchorWidth prop ([#826](https://github.com/core-ds/core-components/issues/826)) ([8df55c4](https://github.com/core-ds/core-components/commit/8df55c4c496467c363c5c09c14d1bd08a9709ebf)), closes [#787](https://github.com/core-ds/core-components/issues/787) +- **typography:** add ref ([#834](https://github.com/core-ds/core-components/issues/834)) ([976b16d](https://github.com/core-ds/core-components/commit/976b16dd9ae68c31999bffb3506623db05033ad4)) +- change error type to ReactNode ([#825](https://github.com/core-ds/core-components/issues/825)) ([c6d95c1](https://github.com/core-ds/core-components/commit/c6d95c1c6239f2b2a3bf2c1639554d8500e794f3)) +- **vars:** updated colors and typography from latest alfa-ui-primitives ([#803](https://github.com/core-ds/core-components/issues/803)) ([0d5b2a3](https://github.com/core-ds/core-components/commit/0d5b2a30a78e70392dd505790a92bc3bc83f9386)) ### BREAKING CHANGES -* remove dark-theme-injector. remove vars duplications +- remove dark-theme-injector. remove vars duplications ## [19.11.1](https://github.com/core-ds/core-components/compare/v19.11.0...v19.11.1) (2021-09-08) - ### Bug Fixes -* wrong mobile colors ([#832](https://github.com/core-ds/core-components/issues/832)) ([d9e275b](https://github.com/core-ds/core-components/commit/d9e275b6ac60e635dec4b655bfc859f079cb9840)) -* **bank-card:** improve docs, fix focus bg ([#830](https://github.com/core-ds/core-components/issues/830)) ([1d8171c](https://github.com/core-ds/core-components/commit/1d8171ce5c76831c350fcf636dd48bad2c3db118)) -* **base-select:** lazy loading ([#831](https://github.com/core-ds/core-components/issues/831)) ([78f2b86](https://github.com/core-ds/core-components/commit/78f2b86221d8af7bf5019104aba743546fc31b45)) +- wrong mobile colors ([#832](https://github.com/core-ds/core-components/issues/832)) ([d9e275b](https://github.com/core-ds/core-components/commit/d9e275b6ac60e635dec4b655bfc859f079cb9840)) +- **bank-card:** improve docs, fix focus bg ([#830](https://github.com/core-ds/core-components/issues/830)) ([1d8171c](https://github.com/core-ds/core-components/commit/1d8171ce5c76831c350fcf636dd48bad2c3db118)) +- **base-select:** lazy loading ([#831](https://github.com/core-ds/core-components/issues/831)) ([78f2b86](https://github.com/core-ds/core-components/commit/78f2b86221d8af7bf5019104aba743546fc31b45)) # [19.11.0](https://github.com/core-ds/core-components/compare/v19.10.0...v19.11.0) (2021-09-06) - ### Features -* **tooltip:** update shadow and arrow size/position ([2d40988](https://github.com/core-ds/core-components/commit/2d40988f3c376c51907aa8a4845ba25c7c43a2f4)) +- **tooltip:** update shadow and arrow size/position ([2d40988](https://github.com/core-ds/core-components/commit/2d40988f3c376c51907aa8a4845ba25c7c43a2f4)) # [19.10.0](https://github.com/core-ds/core-components/compare/v19.9.0...v19.10.0) (2021-08-31) - ### Bug Fixes -* **textarea:** missing vars ([#817](https://github.com/core-ds/core-components/issues/817)) ([d03231f](https://github.com/core-ds/core-components/commit/d03231f24c826f540ecc8c6ddeb2b3e3fec38b6a)) - +- **textarea:** missing vars ([#817](https://github.com/core-ds/core-components/issues/817)) ([d03231f](https://github.com/core-ds/core-components/commit/d03231f24c826f540ecc8c6ddeb2b3e3fec38b6a)) ### Features -* **icon-button:** added 'target' attribute, when IconButton is link ([#823](https://github.com/core-ds/core-components/issues/823)) ([b2aab6b](https://github.com/core-ds/core-components/commit/b2aab6be98e01d0e99863f016e08bde384a4ff3c)) +- **icon-button:** added 'target' attribute, when IconButton is link ([#823](https://github.com/core-ds/core-components/issues/823)) ([b2aab6b](https://github.com/core-ds/core-components/commit/b2aab6be98e01d0e99863f016e08bde384a4ff3c)) # [19.9.0](https://github.com/core-ds/core-components/compare/v19.8.0...v19.9.0) (2021-08-27) - ### Bug Fixes -* **tabs:** fix tabs hidden ([#816](https://github.com/core-ds/core-components/issues/816)) ([68468dd](https://github.com/core-ds/core-components/commit/68468dd6e74a465f2d4bcde87d7852bcaf934783)) - +- **tabs:** fix tabs hidden ([#816](https://github.com/core-ds/core-components/issues/816)) ([68468dd](https://github.com/core-ds/core-components/commit/68468dd6e74a465f2d4bcde87d7852bcaf934783)) ### Features -* custom components for button and link ([#814](https://github.com/core-ds/core-components/issues/814)) ([a623dd0](https://github.com/core-ds/core-components/commit/a623dd021ef611f9994a6587ba6a0d0ee9d8929c)) -* **dropzone:** add block prop ([#813](https://github.com/core-ds/core-components/issues/813)) ([39bf4c3](https://github.com/core-ds/core-components/commit/39bf4c3158525d419c75aedec8be81e4a4bb90da)) +- custom components for button and link ([#814](https://github.com/core-ds/core-components/issues/814)) ([a623dd0](https://github.com/core-ds/core-components/commit/a623dd021ef611f9994a6587ba6a0d0ee9d8929c)) +- **dropzone:** add block prop ([#813](https://github.com/core-ds/core-components/issues/813)) ([39bf4c3](https://github.com/core-ds/core-components/commit/39bf4c3158525d419c75aedec8be81e4a4bb90da)) # [19.8.0](https://github.com/core-ds/core-components/compare/v19.7.2...v19.8.0) (2021-08-26) - ### Bug Fixes -* **tabs:** height styles ([#810](https://github.com/core-ds/core-components/issues/810)) ([b3b96e7](https://github.com/core-ds/core-components/commit/b3b96e7efb4771c0009c29e851ce1d69f4c61ff4)) - +- **tabs:** height styles ([#810](https://github.com/core-ds/core-components/issues/810)) ([b3b96e7](https://github.com/core-ds/core-components/commit/b3b96e7efb4771c0009c29e851ce1d69f4c61ff4)) ### Features -* **intl-phone-input:** hide select for countries when one country ([#809](https://github.com/core-ds/core-components/issues/809)) ([bad50af](https://github.com/core-ds/core-components/commit/bad50aff46ab4af5416510944802451873cd08bc)) +- **intl-phone-input:** hide select for countries when one country ([#809](https://github.com/core-ds/core-components/issues/809)) ([bad50af](https://github.com/core-ds/core-components/commit/bad50aff46ab4af5416510944802451873cd08bc)) ## [19.7.2](https://github.com/core-ds/core-components/compare/v19.7.1...v19.7.2) (2021-08-23) - ### Bug Fixes -* **plate:** check is click inside component, popover issue ([bea8a7d](https://github.com/core-ds/core-components/commit/bea8a7dc199d7aced3ec8b5e9ab76568f0cba839)) +- **plate:** check is click inside component, popover issue ([bea8a7d](https://github.com/core-ds/core-components/commit/bea8a7dc199d7aced3ec8b5e9ab76568f0cba839)) ## [19.7.1](https://github.com/core-ds/core-components/compare/v19.7.0...v19.7.1) (2021-08-23) - ### Bug Fixes -* **input:** clear icon ([51debd4](https://github.com/core-ds/core-components/commit/51debd46ea2176486cfc1945d74e8d56a4b9387b)) +- **input:** clear icon ([51debd4](https://github.com/core-ds/core-components/commit/51debd46ea2176486cfc1945d74e8d56a4b9387b)) # [19.7.0](https://github.com/core-ds/core-components/compare/v19.6.3...v19.7.0) (2021-08-23) - ### Bug Fixes -* **form-control:** l size offset between value and label (PDS-270) ([#781](https://github.com/core-ds/core-components/issues/781)) ([311f8a0](https://github.com/core-ds/core-components/commit/311f8a0eaa97cf7d0c89d4a3cdfc443aef2d763c)) -* **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782) - +- **form-control:** l size offset between value and label (PDS-270) ([#781](https://github.com/core-ds/core-components/issues/781)) ([311f8a0](https://github.com/core-ds/core-components/commit/311f8a0eaa97cf7d0c89d4a3cdfc443aef2d763c)) +- **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782) ### Features -* **confirmation:** add custom countdown content, change time format ([#804](https://github.com/core-ds/core-components/issues/804)) ([b87ace1](https://github.com/core-ds/core-components/commit/b87ace190013cc873133bd1fff23cb6ae0ae3800)) -* **icon-button:** Rest props for IconButton from Button ([#805](https://github.com/core-ds/core-components/issues/805)) ([ee4e170](https://github.com/core-ds/core-components/commit/ee4e170b6b59800e283080d36bddfdcfe4b57561)) -* **tag:** add inverted colors ([#784](https://github.com/core-ds/core-components/issues/784)) ([d3681ae](https://github.com/core-ds/core-components/commit/d3681aeefe02e5f481d066013911a1877a165bb2)) -* **tooltip:** add TooltipResponsive, add `fallbackPlacements` prop ([#780](https://github.com/core-ds/core-components/issues/780)) ([61d780c](https://github.com/core-ds/core-components/commit/61d780c750bd9c0331d275f1b12b0512bb3d2049)) +- **confirmation:** add custom countdown content, change time format ([#804](https://github.com/core-ds/core-components/issues/804)) ([b87ace1](https://github.com/core-ds/core-components/commit/b87ace190013cc873133bd1fff23cb6ae0ae3800)) +- **icon-button:** Rest props for IconButton from Button ([#805](https://github.com/core-ds/core-components/issues/805)) ([ee4e170](https://github.com/core-ds/core-components/commit/ee4e170b6b59800e283080d36bddfdcfe4b57561)) +- **tag:** add inverted colors ([#784](https://github.com/core-ds/core-components/issues/784)) ([d3681ae](https://github.com/core-ds/core-components/commit/d3681aeefe02e5f481d066013911a1877a165bb2)) +- **tooltip:** add TooltipResponsive, add `fallbackPlacements` prop ([#780](https://github.com/core-ds/core-components/issues/780)) ([61d780c](https://github.com/core-ds/core-components/commit/61d780c750bd9c0331d275f1b12b0512bb3d2049)) ## [19.6.3](https://github.com/core-ds/core-components/compare/v19.6.2...v19.6.3) (2021-08-13) - ### Bug Fixes -* **select:** lazy loading select ([#797](https://github.com/core-ds/core-components/issues/797)) ([68b5602](https://github.com/core-ds/core-components/commit/68b560208ff288657aa1698387c617c7c1449a8d)) +- **select:** lazy loading select ([#797](https://github.com/core-ds/core-components/issues/797)) ([68b5602](https://github.com/core-ds/core-components/commit/68b560208ff288657aa1698387c617c7c1449a8d)) ## [19.6.2](https://github.com/core-ds/core-components/compare/v19.6.1...v19.6.2) (2021-08-13) - ### Bug Fixes -* **calendar:** fix min\max ([6bd4944](https://github.com/core-ds/core-components/commit/6bd49447492b10583973cdfc43350cf8f96c1ecb)) -* **calendar-input:** extends calendarProps type ([8bf4f58](https://github.com/core-ds/core-components/commit/8bf4f587c1a36471318f7cc02968d1de2a125e11)) +- **calendar:** fix min\max ([6bd4944](https://github.com/core-ds/core-components/commit/6bd49447492b10583973cdfc43350cf8f96c1ecb)) +- **calendar-input:** extends calendarProps type ([8bf4f58](https://github.com/core-ds/core-components/commit/8bf4f587c1a36471318f7cc02968d1de2a125e11)) ## [19.6.1](https://github.com/core-ds/core-components/compare/v19.6.0...v19.6.1) (2021-08-11) - ### Bug Fixes -* **modal:** max-width 100% ([#794](https://github.com/core-ds/core-components/issues/794)) ([793a765](https://github.com/core-ds/core-components/commit/793a765e7d5dc251eee810acde4605e139565906)) -* **plate:** alert in plate cascade issue ([#793](https://github.com/core-ds/core-components/issues/793)) ([dbc20e5](https://github.com/core-ds/core-components/commit/dbc20e558f2b6452e70052b5abc3faf8533709d4)) -* **select:** remove wron prop passed into renderOption method ([#791](https://github.com/core-ds/core-components/issues/791)) ([5231813](https://github.com/core-ds/core-components/commit/523181355ebde537aa802f86c27e867d9261095a)) -* extend hint type to ReactNode ([#792](https://github.com/core-ds/core-components/issues/792)) ([d02784e](https://github.com/core-ds/core-components/commit/d02784e392f5ca3a30ae009109fbb6351967f746)) +- **modal:** max-width 100% ([#794](https://github.com/core-ds/core-components/issues/794)) ([793a765](https://github.com/core-ds/core-components/commit/793a765e7d5dc251eee810acde4605e139565906)) +- **plate:** alert in plate cascade issue ([#793](https://github.com/core-ds/core-components/issues/793)) ([dbc20e5](https://github.com/core-ds/core-components/commit/dbc20e558f2b6452e70052b5abc3faf8533709d4)) +- **select:** remove wron prop passed into renderOption method ([#791](https://github.com/core-ds/core-components/issues/791)) ([5231813](https://github.com/core-ds/core-components/commit/523181355ebde537aa802f86c27e867d9261095a)) +- extend hint type to ReactNode ([#792](https://github.com/core-ds/core-components/issues/792)) ([d02784e](https://github.com/core-ds/core-components/commit/d02784e392f5ca3a30ae009109fbb6351967f746)) # [19.6.0](https://github.com/core-ds/core-components/compare/v19.5.0...v19.6.0) (2021-08-09) - ### Bug Fixes -* **attach:** fix drag counter & styles ([#786](https://github.com/core-ds/core-components/issues/786)) ([b075725](https://github.com/core-ds/core-components/commit/b0757250ea57a6e5db64a5026315f8837e8a3303)) -* **checkbox:** fix layout ([#790](https://github.com/core-ds/core-components/issues/790)) ([8aa18b4](https://github.com/core-ds/core-components/commit/8aa18b48167eeb5df225ff854d3ca337cd43d4f2)) - +- **attach:** fix drag counter & styles ([#786](https://github.com/core-ds/core-components/issues/786)) ([b075725](https://github.com/core-ds/core-components/commit/b0757250ea57a6e5db64a5026315f8837e8a3303)) +- **checkbox:** fix layout ([#790](https://github.com/core-ds/core-components/issues/790)) ([8aa18b4](https://github.com/core-ds/core-components/commit/8aa18b48167eeb5df225ff854d3ca337cd43d4f2)) ### Features -* **attach:** add additional classNames props ([#783](https://github.com/core-ds/core-components/issues/783)) ([bc8e865](https://github.com/core-ds/core-components/commit/bc8e86512a95b8690d2115a71a299c19195fa58d)) +- **attach:** add additional classNames props ([#783](https://github.com/core-ds/core-components/issues/783)) ([bc8e865](https://github.com/core-ds/core-components/commit/bc8e86512a95b8690d2115a71a299c19195fa58d)) # [19.5.0](https://github.com/core-ds/core-components/compare/v19.4.0...v19.5.0) (2021-08-04) - ### Features -* add mods colors ([#770](https://github.com/core-ds/core-components/issues/770)) ([fe985f4](https://github.com/core-ds/core-components/commit/fe985f467b4d47a5152e168d2ab3846872d1a574)) +- add mods colors ([#770](https://github.com/core-ds/core-components/issues/770)) ([fe985f4](https://github.com/core-ds/core-components/commit/fe985f467b4d47a5152e168d2ab3846872d1a574)) # [19.4.0](https://github.com/core-ds/core-components/compare/v19.3.0...v19.4.0) (2021-08-03) - ### Bug Fixes -* **amount-input:** remove caret-color override ([#773](https://github.com/core-ds/core-components/issues/773)) ([93311d0](https://github.com/core-ds/core-components/commit/93311d0a8e170c14c6cbfa28414d2538f78ddd3f)) -* add missing deps ([4f4a540](https://github.com/core-ds/core-components/commit/4f4a54059f141e41e430199b1a2c30fedf62b081)) -* move icon from date input to calendar input ([#768](https://github.com/core-ds/core-components/issues/768)) ([040bd42](https://github.com/core-ds/core-components/commit/040bd423279eb535f1ea924599ee16c296453e3f)) - +- **amount-input:** remove caret-color override ([#773](https://github.com/core-ds/core-components/issues/773)) ([93311d0](https://github.com/core-ds/core-components/commit/93311d0a8e170c14c6cbfa28414d2538f78ddd3f)) +- add missing deps ([4f4a540](https://github.com/core-ds/core-components/commit/4f4a54059f141e41e430199b1a2c30fedf62b081)) +- move icon from date input to calendar input ([#768](https://github.com/core-ds/core-components/issues/768)) ([040bd42](https://github.com/core-ds/core-components/commit/040bd423279eb535f1ea924599ee16c296453e3f)) ### Features -* add inactive controls (PDS-266) ([#765](https://github.com/core-ds/core-components/issues/765)) ([ec02c89](https://github.com/core-ds/core-components/commit/ec02c89ab6bf038c026ca0a72b3185525334840a)) -* **amount-input:** add integers only mode ([#766](https://github.com/core-ds/core-components/issues/766)) ([27a2535](https://github.com/core-ds/core-components/commit/27a2535f2de8d787e666c08a8fbfeb67d762f9a1)) -* **amount-input:** allow to use custom suffix ([#767](https://github.com/core-ds/core-components/issues/767)) ([27d9d02](https://github.com/core-ds/core-components/commit/27d9d02fb619fa5946fb3cb678d9b742d74a745b)) +- add inactive controls (PDS-266) ([#765](https://github.com/core-ds/core-components/issues/765)) ([ec02c89](https://github.com/core-ds/core-components/commit/ec02c89ab6bf038c026ca0a72b3185525334840a)) +- **amount-input:** add integers only mode ([#766](https://github.com/core-ds/core-components/issues/766)) ([27a2535](https://github.com/core-ds/core-components/commit/27a2535f2de8d787e666c08a8fbfeb67d762f9a1)) +- **amount-input:** allow to use custom suffix ([#767](https://github.com/core-ds/core-components/issues/767)) ([27d9d02](https://github.com/core-ds/core-components/commit/27d9d02fb619fa5946fb3cb678d9b742d74a745b)) # [19.3.0](https://github.com/core-ds/core-components/compare/v19.2.1...v19.3.0) (2021-07-23) - ### Bug Fixes -* select & calendar-input use glyph icons ([#742](https://github.com/core-ds/core-components/issues/742)) ([6b04ae4](https://github.com/core-ds/core-components/commit/6b04ae49fc4f3805ef362dcb68939b72fc99814b)) -* **input:** autofocus ([#761](https://github.com/core-ds/core-components/issues/761)) ([e2880de](https://github.com/core-ds/core-components/commit/e2880de6cff33b156bea58286bb46e0803e254a5)) -* **tooltip:** fix bug with controlled state ([#759](https://github.com/core-ds/core-components/issues/759)) ([dd0144e](https://github.com/core-ds/core-components/commit/dd0144e880e0dac6bac1ab9d15832341761993e9)) - +- select & calendar-input use glyph icons ([#742](https://github.com/core-ds/core-components/issues/742)) ([6b04ae4](https://github.com/core-ds/core-components/commit/6b04ae49fc4f3805ef362dcb68939b72fc99814b)) +- **input:** autofocus ([#761](https://github.com/core-ds/core-components/issues/761)) ([e2880de](https://github.com/core-ds/core-components/commit/e2880de6cff33b156bea58286bb46e0803e254a5)) +- **tooltip:** fix bug with controlled state ([#759](https://github.com/core-ds/core-components/issues/759)) ([dd0144e](https://github.com/core-ds/core-components/commit/dd0144e880e0dac6bac1ab9d15832341761993e9)) ### Features -* **attach:** simulate controlled state ([#760](https://github.com/core-ds/core-components/issues/760)) ([5d312bf](https://github.com/core-ds/core-components/commit/5d312bf632cc716bfc7ecb7b487c4af812838aa9)), closes [#743](https://github.com/core-ds/core-components/issues/743) -* **bottom-sheet:** fix marker gap, fix animation duration ([#750](https://github.com/core-ds/core-components/issues/750)) ([cb04ed8](https://github.com/core-ds/core-components/commit/cb04ed8cc214fac9dba32a0ab39a4399743d5bfc)) -* **calendar-input:** uses date-input ([#752](https://github.com/core-ds/core-components/issues/752)) ([509dba2](https://github.com/core-ds/core-components/commit/509dba26913ccf6df859a200aa476eeef1df2ddc)) -* **confirmation:** fix timer, some loader refactoring ([#754](https://github.com/core-ds/core-components/issues/754)) ([187bb0e](https://github.com/core-ds/core-components/commit/187bb0e72a75c62b117a49917976903257d90bb7)) -* **date-input:** add component ([#751](https://github.com/core-ds/core-components/issues/751)) ([4b94bee](https://github.com/core-ds/core-components/commit/4b94beec36acc73ac6c62cf37f87061c0ada4b35)) -* **input:** input mobile theme (PDS-241) ([#737](https://github.com/core-ds/core-components/issues/737)) ([88f6f7c](https://github.com/core-ds/core-components/commit/88f6f7c58968b9564970eaa3d759aa2bc275ca7e)) -* **stepped-progress-bar:** add component ([#747](https://github.com/core-ds/core-components/issues/747)) ([f82e9af](https://github.com/core-ds/core-components/commit/f82e9af075e12e5a34751efc5c7f427283e75c1b)) -* add mobile theme for tag, radio, checkbox (PDS-244/247/248) ([#717](https://github.com/core-ds/core-components/issues/717)) ([36e2d99](https://github.com/core-ds/core-components/commit/36e2d99c716a03e7f319439df9ca47ec43ad4b71)) -* checkbox/radio/switch design updates (PDS-252) ([#735](https://github.com/core-ds/core-components/issues/735)) ([62f3c63](https://github.com/core-ds/core-components/commit/62f3c63279872a80ffb1c018b08addf897597b26)) -* slider input mobile theme (PDS-242) ([#738](https://github.com/core-ds/core-components/issues/738)) ([6e924aa](https://github.com/core-ds/core-components/commit/6e924aa90b63b914b6f5690766e41cddabe18e19)) +- **attach:** simulate controlled state ([#760](https://github.com/core-ds/core-components/issues/760)) ([5d312bf](https://github.com/core-ds/core-components/commit/5d312bf632cc716bfc7ecb7b487c4af812838aa9)), closes [#743](https://github.com/core-ds/core-components/issues/743) +- **bottom-sheet:** fix marker gap, fix animation duration ([#750](https://github.com/core-ds/core-components/issues/750)) ([cb04ed8](https://github.com/core-ds/core-components/commit/cb04ed8cc214fac9dba32a0ab39a4399743d5bfc)) +- **calendar-input:** uses date-input ([#752](https://github.com/core-ds/core-components/issues/752)) ([509dba2](https://github.com/core-ds/core-components/commit/509dba26913ccf6df859a200aa476eeef1df2ddc)) +- **confirmation:** fix timer, some loader refactoring ([#754](https://github.com/core-ds/core-components/issues/754)) ([187bb0e](https://github.com/core-ds/core-components/commit/187bb0e72a75c62b117a49917976903257d90bb7)) +- **date-input:** add component ([#751](https://github.com/core-ds/core-components/issues/751)) ([4b94bee](https://github.com/core-ds/core-components/commit/4b94beec36acc73ac6c62cf37f87061c0ada4b35)) +- **input:** input mobile theme (PDS-241) ([#737](https://github.com/core-ds/core-components/issues/737)) ([88f6f7c](https://github.com/core-ds/core-components/commit/88f6f7c58968b9564970eaa3d759aa2bc275ca7e)) +- **stepped-progress-bar:** add component ([#747](https://github.com/core-ds/core-components/issues/747)) ([f82e9af](https://github.com/core-ds/core-components/commit/f82e9af075e12e5a34751efc5c7f427283e75c1b)) +- add mobile theme for tag, radio, checkbox (PDS-244/247/248) ([#717](https://github.com/core-ds/core-components/issues/717)) ([36e2d99](https://github.com/core-ds/core-components/commit/36e2d99c716a03e7f319439df9ca47ec43ad4b71)) +- checkbox/radio/switch design updates (PDS-252) ([#735](https://github.com/core-ds/core-components/issues/735)) ([62f3c63](https://github.com/core-ds/core-components/commit/62f3c63279872a80ffb1c018b08addf897597b26)) +- slider input mobile theme (PDS-242) ([#738](https://github.com/core-ds/core-components/issues/738)) ([6e924aa](https://github.com/core-ds/core-components/commit/6e924aa90b63b914b6f5690766e41cddabe18e19)) ## [19.2.1](https://github.com/core-ds/core-components/compare/v19.2.0...v19.2.1) (2021-07-20) - ### Bug Fixes -* **phone-input:** value prop ([#757](https://github.com/core-ds/core-components/issues/757)) ([3ba0168](https://github.com/core-ds/core-components/commit/3ba01686ffa950bd74d9ab28bfa961c6cf74a5d8)) +- **phone-input:** value prop ([#757](https://github.com/core-ds/core-components/issues/757)) ([3ba0168](https://github.com/core-ds/core-components/commit/3ba01686ffa950bd74d9ab28bfa961c6cf74a5d8)) # [19.2.0](https://github.com/core-ds/core-components/compare/v19.1.0...v19.2.0) (2021-07-19) - ### Bug Fixes -* **intl-phone-input:** remove changing unclearable country code ([#730](https://github.com/core-ds/core-components/issues/730)) ([6d219d6](https://github.com/core-ds/core-components/commit/6d219d622e4da60aada0e10d3c442510f597b1b9)) - +- **intl-phone-input:** remove changing unclearable country code ([#730](https://github.com/core-ds/core-components/issues/730)) ([6d219d6](https://github.com/core-ds/core-components/commit/6d219d622e4da60aada0e10d3c442510f597b1b9)) ### Features -* **phone-input:** add 'clearableCountyCode' prop ([#749](https://github.com/core-ds/core-components/issues/749)) ([d110ae7](https://github.com/core-ds/core-components/commit/d110ae76594ccbf7f6d8a5764d3c2a72b1ae9a26)) -* **select:** add scroll handler ([#756](https://github.com/core-ds/core-components/issues/756)) ([b25351b](https://github.com/core-ds/core-components/commit/b25351b74913244fb131d4aa1bc09900be362258)) -* **tooltip:** add target ref property ([#755](https://github.com/core-ds/core-components/issues/755)) ([9aa962d](https://github.com/core-ds/core-components/commit/9aa962d8b280e8d6af8ac4324a78b4bdebbfc536)) -* **typography:** monospaceNumbers prop (PDS-255) ([#697](https://github.com/core-ds/core-components/issues/697)) ([42d16a6](https://github.com/core-ds/core-components/commit/42d16a62f6d0781eba44dc1e0b76b28cae37d89a)) +- **phone-input:** add 'clearableCountyCode' prop ([#749](https://github.com/core-ds/core-components/issues/749)) ([d110ae7](https://github.com/core-ds/core-components/commit/d110ae76594ccbf7f6d8a5764d3c2a72b1ae9a26)) +- **select:** add scroll handler ([#756](https://github.com/core-ds/core-components/issues/756)) ([b25351b](https://github.com/core-ds/core-components/commit/b25351b74913244fb131d4aa1bc09900be362258)) +- **tooltip:** add target ref property ([#755](https://github.com/core-ds/core-components/issues/755)) ([9aa962d](https://github.com/core-ds/core-components/commit/9aa962d8b280e8d6af8ac4324a78b4bdebbfc536)) +- **typography:** monospaceNumbers prop (PDS-255) ([#697](https://github.com/core-ds/core-components/issues/697)) ([42d16a6](https://github.com/core-ds/core-components/commit/42d16a62f6d0781eba44dc1e0b76b28cae37d89a)) # [19.1.0](https://github.com/core-ds/core-components/compare/v19.0.0...v19.1.0) (2021-07-09) - ### Bug Fixes -* **badge:** fix name ([207d3d3](https://github.com/core-ds/core-components/commit/207d3d30171a84ff4021cd119c0da1316a92d14c)) -* **calendar:** fix select-button disabled+selected state ([4f54c01](https://github.com/core-ds/core-components/commit/4f54c01451a2532fd377d3590869dfa52c968dcf)) -* **calendar:** limit defaultMonth ([636fa5b](https://github.com/core-ds/core-components/commit/636fa5b1363fbdea8516b95ac758aee65b8cffba)) -* **input-autocomplete:** popover height with dynamic height options ([da24758](https://github.com/core-ds/core-components/commit/da247589a35ba33742f95fc96ed63b0ba65cdf11)) - +- **badge:** fix name ([207d3d3](https://github.com/core-ds/core-components/commit/207d3d30171a84ff4021cd119c0da1316a92d14c)) +- **calendar:** fix select-button disabled+selected state ([4f54c01](https://github.com/core-ds/core-components/commit/4f54c01451a2532fd377d3590869dfa52c968dcf)) +- **calendar:** limit defaultMonth ([636fa5b](https://github.com/core-ds/core-components/commit/636fa5b1363fbdea8516b95ac758aee65b8cffba)) +- **input-autocomplete:** popover height with dynamic height options ([da24758](https://github.com/core-ds/core-components/commit/da247589a35ba33742f95fc96ed63b0ba65cdf11)) ### Features -* **badge:** add icon color ([d9e9065](https://github.com/core-ds/core-components/commit/d9e906596d157a5e3d7844bbecfb96f64d9f44e1)) -* **badge:** add screenshots ([3bbc8d0](https://github.com/core-ds/core-components/commit/3bbc8d032b0a267e9e6e949af5db6c955e25fb50)) -* **select:** dont highlight first option on open ([015a084](https://github.com/core-ds/core-components/commit/015a084be6e5d837b6368afe6ca63a0a4c325435)) -* **themes:** confirmation mobile theme ([a85233c](https://github.com/core-ds/core-components/commit/a85233c1e859e933e1c51997678c8a8c6134e353)) -* **vars:** add border-radius-xs ([a4bd8ff](https://github.com/core-ds/core-components/commit/a4bd8ff44d9ed7cf68ca2b0994ab61a80ed358e2)) -* **vars:** fresh colors from alfa-ui-primitives ([2051a0c](https://github.com/core-ds/core-components/commit/2051a0ce3caee3c1a70f36e8c84e575bcd528bab)) +- **badge:** add icon color ([d9e9065](https://github.com/core-ds/core-components/commit/d9e906596d157a5e3d7844bbecfb96f64d9f44e1)) +- **badge:** add screenshots ([3bbc8d0](https://github.com/core-ds/core-components/commit/3bbc8d032b0a267e9e6e949af5db6c955e25fb50)) +- **select:** dont highlight first option on open ([015a084](https://github.com/core-ds/core-components/commit/015a084be6e5d837b6368afe6ca63a0a4c325435)) +- **themes:** confirmation mobile theme ([a85233c](https://github.com/core-ds/core-components/commit/a85233c1e859e933e1c51997678c8a8c6134e353)) +- **vars:** add border-radius-xs ([a4bd8ff](https://github.com/core-ds/core-components/commit/a4bd8ff44d9ed7cf68ca2b0994ab61a80ed358e2)) +- **vars:** fresh colors from alfa-ui-primitives ([2051a0c](https://github.com/core-ds/core-components/commit/2051a0ce3caee3c1a70f36e8c84e575bcd528bab)) # [19.0.0](https://github.com/core-ds/core-components/compare/v18.2.1...v19.0.0) (2021-07-08) - ### Features -* upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696)) +- upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696)) ## [18.2.1](https://github.com/core-ds/core-components/compare/v18.2.0...v18.2.1) (2021-07-02) - ### Bug Fixes -* **base-modal:** resubscribe observer when content node changed ([2fef06e](https://github.com/core-ds/core-components/commit/2fef06eea01354f58663a5f4470606123d31f9d4)) +- **base-modal:** resubscribe observer when content node changed ([2fef06e](https://github.com/core-ds/core-components/commit/2fef06eea01354f58663a5f4470606123d31f9d4)) # [18.2.0](https://github.com/core-ds/core-components/compare/v18.1.0...v18.2.0) (2021-06-30) - ### Bug Fixes -* **dark-theme-styles-injector:** fix rendering passed styles ([#723](https://github.com/core-ds/core-components/issues/723)) ([882841c](https://github.com/core-ds/core-components/commit/882841c1c43d5570652ab3fcc199958060b92c57)) - +- **dark-theme-styles-injector:** fix rendering passed styles ([#723](https://github.com/core-ds/core-components/issues/723)) ([882841c](https://github.com/core-ds/core-components/commit/882841c1c43d5570652ab3fcc199958060b92c57)) ### Features -* **calendar-range:** pass props to render calendar in popper ([#702](https://github.com/core-ds/core-components/issues/702)) ([4369e46](https://github.com/core-ds/core-components/commit/4369e462116dc1d240f95f811be67639b10dedb6)) +- **calendar-range:** pass props to render calendar in popper ([#702](https://github.com/core-ds/core-components/issues/702)) ([4369e46](https://github.com/core-ds/core-components/commit/4369e462116dc1d240f95f811be67639b10dedb6)) # [18.1.0](https://github.com/core-ds/core-components/compare/v18.0.0...v18.1.0) (2021-06-29) - ### Features -* **password-input:** add password input (PDS-233) ([#691](https://github.com/core-ds/core-components/issues/691)) ([d872e4d](https://github.com/core-ds/core-components/commit/d872e4dd18fd5db472864fbc2676749b812da00f)) +- **password-input:** add password input (PDS-233) ([#691](https://github.com/core-ds/core-components/issues/691)) ([d872e4d](https://github.com/core-ds/core-components/commit/d872e4dd18fd5db472864fbc2676749b812da00f)) # [18.0.0](https://github.com/core-ds/core-components/compare/v17.6.0...v18.0.0) (2021-06-28) - ### Bug Fixes -* **base-modal:** fix has scroll bug ([#712](https://github.com/core-ds/core-components/issues/712)) ([a6749a1](https://github.com/core-ds/core-components/commit/a6749a149d511b28cc59aaec188d59c380c64243)) -* **space:** remove last element margin ([#713](https://github.com/core-ds/core-components/issues/713)) ([bc36cf7](https://github.com/core-ds/core-components/commit/bc36cf7db35cbd7c5d36c178a50bbd27d2f11b0c)) -* **typography:** add missing weight styles ([#719](https://github.com/core-ds/core-components/issues/719)) ([6b855aa](https://github.com/core-ds/core-components/commit/6b855aa97eff918e0e16f957c4c05bb7f2d8f4fe)) - +- **base-modal:** fix has scroll bug ([#712](https://github.com/core-ds/core-components/issues/712)) ([a6749a1](https://github.com/core-ds/core-components/commit/a6749a149d511b28cc59aaec188d59c380c64243)) +- **space:** remove last element margin ([#713](https://github.com/core-ds/core-components/issues/713)) ([bc36cf7](https://github.com/core-ds/core-components/commit/bc36cf7db35cbd7c5d36c178a50bbd27d2f11b0c)) +- **typography:** add missing weight styles ([#719](https://github.com/core-ds/core-components/issues/719)) ([6b855aa](https://github.com/core-ds/core-components/commit/6b855aa97eff918e0e16f957c4c05bb7f2d8f4fe)) ### Features -* **bottom-sheet:** new component (PDS-228) ([#645](https://github.com/core-ds/core-components/issues/645)) ([1f7391d](https://github.com/core-ds/core-components/commit/1f7391df16a270d8a3a28b8ebaf98d0ed0928bc8)), closes [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) -* **confirmation:** add property for change retry button text ([#720](https://github.com/core-ds/core-components/issues/720)) ([c0f7688](https://github.com/core-ds/core-components/commit/c0f76888cffff8ad4169769bc4615429663352a5)) -* **skeleton:** add display var, change default to block ([#718](https://github.com/core-ds/core-components/issues/718)) ([27aaa60](https://github.com/core-ds/core-components/commit/27aaa605a958d932a52904556ac2fe1dd59356af)) - +- **bottom-sheet:** new component (PDS-228) ([#645](https://github.com/core-ds/core-components/issues/645)) ([1f7391d](https://github.com/core-ds/core-components/commit/1f7391df16a270d8a3a28b8ebaf98d0ed0928bc8)), closes [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) +- **confirmation:** add property for change retry button text ([#720](https://github.com/core-ds/core-components/issues/720)) ([c0f7688](https://github.com/core-ds/core-components/commit/c0f76888cffff8ad4169769bc4615429663352a5)) +- **skeleton:** add display var, change default to block ([#718](https://github.com/core-ds/core-components/issues/718)) ([27aaa60](https://github.com/core-ds/core-components/commit/27aaa605a958d932a52904556ac2fe1dd59356af)) ### BREAKING CHANGES -* **skeleton:** inline-block changes to block -* **confirmation:** buttonRetryText renamed to buttonReturnText - -Co-authored-by: Alexander Soldatov +- **skeleton:** inline-block changes to block +- **confirmation:** buttonRetryText renamed to buttonReturnText # [17.6.0](https://github.com/core-ds/core-components/compare/v17.5.1...v17.6.0) (2021-06-22) - ### Bug Fixes -* **intl-phone-input:** format input value ([#703](https://github.com/core-ds/core-components/issues/703)) ([b5e91ed](https://github.com/core-ds/core-components/commit/b5e91edf03867f5dc93fab78425f7c1a128afd9b)) - +- **intl-phone-input:** format input value ([#703](https://github.com/core-ds/core-components/issues/703)) ([b5e91ed](https://github.com/core-ds/core-components/commit/b5e91edf03867f5dc93fab78425f7c1a128afd9b)) ### Features -* **dark-theme-styles-injector:** add prop for selector ([#709](https://github.com/core-ds/core-components/issues/709)) ([f74cdc7](https://github.com/core-ds/core-components/commit/f74cdc7b312321fcb111f1c64f21714ee403e513)) -* **slider-input:** design updates ([#673](https://github.com/core-ds/core-components/issues/673)) ([794e3cc](https://github.com/core-ds/core-components/commit/794e3cc99a3b61ec4faa630469dae7e49a56ee0a)) -* **textarea:** add value counter ([#695](https://github.com/core-ds/core-components/issues/695)) ([cbc6bd3](https://github.com/core-ds/core-components/commit/cbc6bd3eaa48e3df2791d23e156c7c664d67ff49)) +- **dark-theme-styles-injector:** add prop for selector ([#709](https://github.com/core-ds/core-components/issues/709)) ([f74cdc7](https://github.com/core-ds/core-components/commit/f74cdc7b312321fcb111f1c64f21714ee403e513)) +- **slider-input:** design updates ([#673](https://github.com/core-ds/core-components/issues/673)) ([794e3cc](https://github.com/core-ds/core-components/commit/794e3cc99a3b61ec4faa630469dae7e49a56ee0a)) +- **textarea:** add value counter ([#695](https://github.com/core-ds/core-components/issues/695)) ([cbc6bd3](https://github.com/core-ds/core-components/commit/cbc6bd3eaa48e3df2791d23e156c7c664d67ff49)) ## [17.5.1](https://github.com/core-ds/core-components/compare/v17.5.0...v17.5.1) (2021-06-21) - ### Bug Fixes -* **calendar-with-skeleton:** ref & six weeks height issues ([#705](https://github.com/core-ds/core-components/issues/705)) ([907ebe1](https://github.com/core-ds/core-components/commit/907ebe18641ee2e7e91fc4622527404c20867a54)) +- **calendar-with-skeleton:** ref & six weeks height issues ([#705](https://github.com/core-ds/core-components/issues/705)) ([907ebe1](https://github.com/core-ds/core-components/commit/907ebe18641ee2e7e91fc4622527404c20867a54)) # [17.5.0](https://github.com/core-ds/core-components/compare/v17.4.2...v17.5.0) (2021-06-17) - ### Bug Fixes -* **select:** fix checkmark position on click theme ([#699](https://github.com/core-ds/core-components/issues/699)) ([0a3bab5](https://github.com/core-ds/core-components/commit/0a3bab52278b4db8f327a8bf5da97cfb5acecc6a)) - +- **select:** fix checkmark position on click theme ([#699](https://github.com/core-ds/core-components/issues/699)) ([0a3bab5](https://github.com/core-ds/core-components/commit/0a3bab52278b4db8f327a8bf5da97cfb5acecc6a)) ### Features -* **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5)) -* **select:** add useSelectWithLoading preset ([#693](https://github.com/core-ds/core-components/issues/693)) ([12d542f](https://github.com/core-ds/core-components/commit/12d542f11dddcd022c1ba895e4105115be0b98b2)) +- **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5)) +- **select:** add useSelectWithLoading preset ([#693](https://github.com/core-ds/core-components/issues/693)) ([12d542f](https://github.com/core-ds/core-components/commit/12d542f11dddcd022c1ba895e4105115be0b98b2)) ## [17.4.2](https://github.com/core-ds/core-components/compare/v17.4.1...v17.4.2) (2021-06-09) - ### Bug Fixes -* **skeleton:** remove vars that purge kills ([886d1b2](https://github.com/core-ds/core-components/commit/886d1b24b144d9d277821d3264f71a93c7a1b146)) +- **skeleton:** remove vars that purge kills ([886d1b2](https://github.com/core-ds/core-components/commit/886d1b24b144d9d277821d3264f71a93c7a1b146)) ## [17.4.1](https://github.com/core-ds/core-components/compare/v17.4.0...v17.4.1) (2021-06-08) - ### Bug Fixes -* **masked-input:** inline module types ([#692](https://github.com/core-ds/core-components/issues/692)) ([004e60a](https://github.com/core-ds/core-components/commit/004e60ab61f51251b9d65d4d04fd9562eda5e766)) -* **select:** calc height in effect ([#689](https://github.com/core-ds/core-components/issues/689)) ([83f8745](https://github.com/core-ds/core-components/commit/83f87454bcacfbb3473c688e222af3185daef5a9)) -* **select:** fix top bottom paddings ([#683](https://github.com/core-ds/core-components/issues/683)) ([866bc3b](https://github.com/core-ds/core-components/commit/866bc3bee9428f0f67f443b3be0ae23342213b0d)) -* **select:** update optgroup styles ([#679](https://github.com/core-ds/core-components/issues/679)) ([63a06ce](https://github.com/core-ds/core-components/commit/63a06ce4776e22f9374fe689b62e949772443fda)) +- **masked-input:** inline module types ([#692](https://github.com/core-ds/core-components/issues/692)) ([004e60a](https://github.com/core-ds/core-components/commit/004e60ab61f51251b9d65d4d04fd9562eda5e766)) +- **select:** calc height in effect ([#689](https://github.com/core-ds/core-components/issues/689)) ([83f8745](https://github.com/core-ds/core-components/commit/83f87454bcacfbb3473c688e222af3185daef5a9)) +- **select:** fix top bottom paddings ([#683](https://github.com/core-ds/core-components/issues/683)) ([866bc3b](https://github.com/core-ds/core-components/commit/866bc3bee9428f0f67f443b3be0ae23342213b0d)) +- **select:** update optgroup styles ([#679](https://github.com/core-ds/core-components/issues/679)) ([63a06ce](https://github.com/core-ds/core-components/commit/63a06ce4776e22f9374fe689b62e949772443fda)) # [17.4.0](https://github.com/core-ds/core-components/compare/v17.3.0...v17.4.0) (2021-06-08) - ### Features -* **skeleton:** bg animation ([3dac97d](https://github.com/core-ds/core-components/commit/3dac97d18b9c7b2f63f55e2139a1adfb84710b88)) -* **skeleton:** bg animation ([37a52ad](https://github.com/core-ds/core-components/commit/37a52ad3e49f2873aaff86a768599d947a17c754)) +- **skeleton:** bg animation ([3dac97d](https://github.com/core-ds/core-components/commit/3dac97d18b9c7b2f63f55e2139a1adfb84710b88)) +- **skeleton:** bg animation ([37a52ad](https://github.com/core-ds/core-components/commit/37a52ad3e49f2873aaff86a768599d947a17c754)) # [17.3.0](https://github.com/core-ds/core-components/compare/v17.2.0...v17.3.0) (2021-06-07) - ### Features -* **tooltip:** add hint view ([#688](https://github.com/core-ds/core-components/issues/688)) ([9f03cd5](https://github.com/core-ds/core-components/commit/9f03cd5956dd8b17025ee9947a10bc059a339846)) +- **tooltip:** add hint view ([#688](https://github.com/core-ds/core-components/issues/688)) ([9f03cd5](https://github.com/core-ds/core-components/commit/9f03cd5956dd8b17025ee9947a10bc059a339846)) # [17.2.0](https://github.com/core-ds/core-components/compare/v17.1.1...v17.2.0) (2021-06-04) - ### Features -* **plate:** update vars ([#668](https://github.com/core-ds/core-components/issues/668)) ([cbecef5](https://github.com/core-ds/core-components/commit/cbecef55e4cfc7231dcaa16b9220cc920547ff18)) -* **tag:** adjusted colors ([#667](https://github.com/core-ds/core-components/issues/667)) ([ded4ac4](https://github.com/core-ds/core-components/commit/ded4ac4a4e02ee8ec4efdc6d990455caa3ab94bb)) -* **typography:** add rest props ([#682](https://github.com/core-ds/core-components/issues/682)) ([51e1cf8](https://github.com/core-ds/core-components/commit/51e1cf89028c788bfcdbc21ea16acbbe190b5db9)) +- **plate:** update vars ([#668](https://github.com/core-ds/core-components/issues/668)) ([cbecef5](https://github.com/core-ds/core-components/commit/cbecef55e4cfc7231dcaa16b9220cc920547ff18)) +- **tag:** adjusted colors ([#667](https://github.com/core-ds/core-components/issues/667)) ([ded4ac4](https://github.com/core-ds/core-components/commit/ded4ac4a4e02ee8ec4efdc6d990455caa3ab94bb)) +- **typography:** add rest props ([#682](https://github.com/core-ds/core-components/issues/682)) ([51e1cf8](https://github.com/core-ds/core-components/commit/51e1cf89028c788bfcdbc21ea16acbbe190b5db9)) ## [17.1.1](https://github.com/core-ds/core-components/compare/v17.1.0...v17.1.1) (2021-06-04) - ### Bug Fixes -* **dropzone:** add pointer-events none to overlay ([#677](https://github.com/core-ds/core-components/issues/677)) ([5f9077a](https://github.com/core-ds/core-components/commit/5f9077a7c6c88272c7e9e67ec243488249cc5ded)) -* **icon-button:** fix typo in css variable ([#675](https://github.com/core-ds/core-components/issues/675)) ([b227d07](https://github.com/core-ds/core-components/commit/b227d073797f995baf2474a52f4f6df7c6555e91)) -* **modal:** header height & paddings ([#676](https://github.com/core-ds/core-components/issues/676)) ([d8945c6](https://github.com/core-ds/core-components/commit/d8945c6839b059325ad2a90ca4fc6eda2da3b4c2)) -* **select:** fix checkmark ([#681](https://github.com/core-ds/core-components/issues/681)) ([71a51dc](https://github.com/core-ds/core-components/commit/71a51dc0204165827724fd444d3279f8cc6ccfcd)) -* **select:** optionsListWidth prop ([#685](https://github.com/core-ds/core-components/issues/685)) ([3b87e73](https://github.com/core-ds/core-components/commit/3b87e73fdba18c0d41883e47fe4c13976988f2e6)) +- **dropzone:** add pointer-events none to overlay ([#677](https://github.com/core-ds/core-components/issues/677)) ([5f9077a](https://github.com/core-ds/core-components/commit/5f9077a7c6c88272c7e9e67ec243488249cc5ded)) +- **icon-button:** fix typo in css variable ([#675](https://github.com/core-ds/core-components/issues/675)) ([b227d07](https://github.com/core-ds/core-components/commit/b227d073797f995baf2474a52f4f6df7c6555e91)) +- **modal:** header height & paddings ([#676](https://github.com/core-ds/core-components/issues/676)) ([d8945c6](https://github.com/core-ds/core-components/commit/d8945c6839b059325ad2a90ca4fc6eda2da3b4c2)) +- **select:** fix checkmark ([#681](https://github.com/core-ds/core-components/issues/681)) ([71a51dc](https://github.com/core-ds/core-components/commit/71a51dc0204165827724fd444d3279f8cc6ccfcd)) +- **select:** optionsListWidth prop ([#685](https://github.com/core-ds/core-components/issues/685)) ([3b87e73](https://github.com/core-ds/core-components/commit/3b87e73fdba18c0d41883e47fe4c13976988f2e6)) # [17.1.0](https://github.com/core-ds/core-components/compare/v17.0.1...v17.1.0) (2021-05-31) - ### Features -* **confirmation:** set up signTitle prop as slot ([#672](https://github.com/core-ds/core-components/issues/672)) ([85e4786](https://github.com/core-ds/core-components/commit/85e47862689f373fd1904495ae7b86d998ad7cec)) +- **confirmation:** set up signTitle prop as slot ([#672](https://github.com/core-ds/core-components/issues/672)) ([85e4786](https://github.com/core-ds/core-components/commit/85e47862689f373fd1904495ae7b86d998ad7cec)) ## [17.0.1](https://github.com/core-ds/core-components/compare/v17.0.0...v17.0.1) (2021-05-28) - ### Bug Fixes -* **base-modal:** restore body styles on unmount ([#671](https://github.com/core-ds/core-components/issues/671)) ([963a6b1](https://github.com/core-ds/core-components/commit/963a6b18b13924a09cda672a662d0b402d00e75b)) +- **base-modal:** restore body styles on unmount ([#671](https://github.com/core-ds/core-components/issues/671)) ([963a6b1](https://github.com/core-ds/core-components/commit/963a6b18b13924a09cda672a662d0b402d00e75b)) # [17.0.0](https://github.com/core-ds/core-components/compare/v16.5.0...v17.0.0) (2021-05-25) - ### Features -* **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657) - +- **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657) ### BREAKING CHANGES -* **button:** remove inverted themes +- **button:** remove inverted themes # [16.5.0](https://github.com/core-ds/core-components/compare/v16.4.0...v16.5.0) (2021-05-25) - ### Bug Fixes -* **modal:** fix styles ([#665](https://github.com/core-ds/core-components/issues/665)) ([06f3615](https://github.com/core-ds/core-components/commit/06f3615c532f8ec2932d8a4d1fcbb1f5ee6b6a30)) -* **modal:** restore styles after exited ([#663](https://github.com/core-ds/core-components/issues/663)) ([48a8d69](https://github.com/core-ds/core-components/commit/48a8d6986dcde6c191d8411d51f28e6f399e26e6)) - +- **modal:** fix styles ([#665](https://github.com/core-ds/core-components/issues/665)) ([06f3615](https://github.com/core-ds/core-components/commit/06f3615c532f8ec2932d8a4d1fcbb1f5ee6b6a30)) +- **modal:** restore styles after exited ([#663](https://github.com/core-ds/core-components/issues/663)) ([48a8d69](https://github.com/core-ds/core-components/commit/48a8d6986dcde6c191d8411d51f28e6f399e26e6)) ### Features -* **collapse:** add ability to change state using prop expanded ([#659](https://github.com/core-ds/core-components/issues/659)) ([809c835](https://github.com/core-ds/core-components/commit/809c8356f6dec0eeb9167bca8483f36bf5845455)) -* **confirmation:** styles updates ([#636](https://github.com/core-ds/core-components/issues/636)) ([da00fc5](https://github.com/core-ds/core-components/commit/da00fc5bf80251f5104452ba326711788c2f7240)), closes [#1](https://github.com/core-ds/core-components/issues/1) -* **modal:** add layout to footer ([#644](https://github.com/core-ds/core-components/issues/644)) ([eb5a66e](https://github.com/core-ds/core-components/commit/eb5a66ef928df663f4ad0fe048b5d3097b4f4b72)) +- **collapse:** add ability to change state using prop expanded ([#659](https://github.com/core-ds/core-components/issues/659)) ([809c835](https://github.com/core-ds/core-components/commit/809c8356f6dec0eeb9167bca8483f36bf5845455)) +- **confirmation:** styles updates ([#636](https://github.com/core-ds/core-components/issues/636)) ([da00fc5](https://github.com/core-ds/core-components/commit/da00fc5bf80251f5104452ba326711788c2f7240)), closes [#1](https://github.com/core-ds/core-components/issues/1) +- **modal:** add layout to footer ([#644](https://github.com/core-ds/core-components/issues/644)) ([eb5a66e](https://github.com/core-ds/core-components/commit/eb5a66ef928df663f4ad0fe048b5d3097b4f4b72)) # [16.4.0](https://github.com/core-ds/core-components/compare/v16.3.1...v16.4.0) (2021-05-18) - ### Bug Fixes -* **button:** loader position in ie ([#661](https://github.com/core-ds/core-components/issues/661)) ([6f0ddab](https://github.com/core-ds/core-components/commit/6f0ddab3a3e59672f20b0f2239a4de6ba548edb1)) -* **calendar-input:** allow to pass all props via calendarProps ([#653](https://github.com/core-ds/core-components/issues/653)) ([82c4675](https://github.com/core-ds/core-components/commit/82c4675e2f64b282f9d9772825874a6e1854704b)) -* **modal:** click theme sticky footer bg ([#641](https://github.com/core-ds/core-components/issues/641)) ([215a155](https://github.com/core-ds/core-components/commit/215a155030d9966508afa1b8ee8059cc422a2765)) -* **select:** add aria-disabled when disabled ([#662](https://github.com/core-ds/core-components/issues/662)) ([bd93614](https://github.com/core-ds/core-components/commit/bd93614530567515af8e9bee3a7e0e08c8528b4c)) -* **select:** fix hidden label ([#652](https://github.com/core-ds/core-components/issues/652)) ([a5fecfc](https://github.com/core-ds/core-components/commit/a5fecfc16db2a7bad73282706c2c588b235acf8a)) -* **select:** recalc options-list width when open ([#640](https://github.com/core-ds/core-components/issues/640)) ([1a7a3c2](https://github.com/core-ds/core-components/commit/1a7a3c2f596e438686a59999411ef7a437dc00fe)) - +- **button:** loader position in ie ([#661](https://github.com/core-ds/core-components/issues/661)) ([6f0ddab](https://github.com/core-ds/core-components/commit/6f0ddab3a3e59672f20b0f2239a4de6ba548edb1)) +- **calendar-input:** allow to pass all props via calendarProps ([#653](https://github.com/core-ds/core-components/issues/653)) ([82c4675](https://github.com/core-ds/core-components/commit/82c4675e2f64b282f9d9772825874a6e1854704b)) +- **modal:** click theme sticky footer bg ([#641](https://github.com/core-ds/core-components/issues/641)) ([215a155](https://github.com/core-ds/core-components/commit/215a155030d9966508afa1b8ee8059cc422a2765)) +- **select:** add aria-disabled when disabled ([#662](https://github.com/core-ds/core-components/issues/662)) ([bd93614](https://github.com/core-ds/core-components/commit/bd93614530567515af8e9bee3a7e0e08c8528b4c)) +- **select:** fix hidden label ([#652](https://github.com/core-ds/core-components/issues/652)) ([a5fecfc](https://github.com/core-ds/core-components/commit/a5fecfc16db2a7bad73282706c2c588b235acf8a)) +- **select:** recalc options-list width when open ([#640](https://github.com/core-ds/core-components/issues/640)) ([1a7a3c2](https://github.com/core-ds/core-components/commit/1a7a3c2f596e438686a59999411ef7a437dc00fe)) ### Features -* **drawer:** update animtaion ([#643](https://github.com/core-ds/core-components/issues/643)) ([3a3cfc5](https://github.com/core-ds/core-components/commit/3a3cfc5be89908df476f77a35bcf6b9460ecb92a)) -* **input:** pretty webkit autofill ([#660](https://github.com/core-ds/core-components/issues/660)) ([d50e83e](https://github.com/core-ds/core-components/commit/d50e83e627e1641c3634ace505b9abe163ef6530)) +- **drawer:** update animtaion ([#643](https://github.com/core-ds/core-components/issues/643)) ([3a3cfc5](https://github.com/core-ds/core-components/commit/3a3cfc5be89908df476f77a35bcf6b9460ecb92a)) +- **input:** pretty webkit autofill ([#660](https://github.com/core-ds/core-components/issues/660)) ([d50e83e](https://github.com/core-ds/core-components/commit/d50e83e627e1641c3634ace505b9abe163ef6530)) ## [16.3.1](https://github.com/core-ds/core-components/compare/v16.3.0...v16.3.1) (2021-05-14) - ### Bug Fixes -* **select-with-tags:** changed includes method for IE11 support ([#651](https://github.com/core-ds/core-components/issues/651)) ([254bca3](https://github.com/core-ds/core-components/commit/254bca3df02107dfffc5175f74e35162453c20d0)) +- **select-with-tags:** changed includes method for IE11 support ([#651](https://github.com/core-ds/core-components/issues/651)) ([254bca3](https://github.com/core-ds/core-components/commit/254bca3df02107dfffc5175f74e35162453c20d0)) # [16.3.0](https://github.com/core-ds/core-components/compare/v16.2.0...v16.3.0) (2021-05-07) - ### Features -* **button:** fix version ([#648](https://github.com/core-ds/core-components/issues/648)) ([ec51599](https://github.com/core-ds/core-components/commit/ec5159910a7fdc103d4f4e8d3d4198db3ffbdcc8)) -* **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b)) +- **button:** fix version ([#648](https://github.com/core-ds/core-components/issues/648)) ([ec51599](https://github.com/core-ds/core-components/commit/ec5159910a7fdc103d4f4e8d3d4198db3ffbdcc8)) +- **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b)) # [16.2.0](https://github.com/core-ds/core-components/compare/v16.1.3...v16.2.0) (2021-05-07) - ### Features -* **button:** add loader minimal display interval ([#634](https://github.com/core-ds/core-components/issues/634)) ([d2f7edc](https://github.com/core-ds/core-components/commit/d2f7edc52c3e43ce3f5db8250446227b869ab731)) -* **icon-button:** add negative view ([#635](https://github.com/core-ds/core-components/issues/635)) ([7006116](https://github.com/core-ds/core-components/commit/70061167d1e00a786e28c53ebb26e4e174d03311)) +- **button:** add loader minimal display interval ([#634](https://github.com/core-ds/core-components/issues/634)) ([d2f7edc](https://github.com/core-ds/core-components/commit/d2f7edc52c3e43ce3f5db8250446227b869ab731)) +- **icon-button:** add negative view ([#635](https://github.com/core-ds/core-components/issues/635)) ([7006116](https://github.com/core-ds/core-components/commit/70061167d1e00a786e28c53ebb26e4e174d03311)) ## [16.1.3](https://github.com/core-ds/core-components/compare/v16.1.2...v16.1.3) (2021-05-06) - ### Bug Fixes -* update popover versions ([#646](https://github.com/core-ds/core-components/issues/646)) ([199cf80](https://github.com/core-ds/core-components/commit/199cf80cd60e6edf0ac5d41c7eb258ab05d3b534)) +- update popover versions ([#646](https://github.com/core-ds/core-components/issues/646)) ([199cf80](https://github.com/core-ds/core-components/commit/199cf80cd60e6edf0ac5d41c7eb258ab05d3b534)) ## [16.1.2](https://github.com/core-ds/core-components/compare/v16.1.1...v16.1.2) (2021-05-05) - ### Bug Fixes -* **toast-plate:** fix cross color ([#642](https://github.com/core-ds/core-components/issues/642)) ([96a17fd](https://github.com/core-ds/core-components/commit/96a17fdcd28a37519845d5a0c40809f107e3031f)) +- **toast-plate:** fix cross color ([#642](https://github.com/core-ds/core-components/issues/642)) ([96a17fd](https://github.com/core-ds/core-components/commit/96a17fdcd28a37519845d5a0c40809f107e3031f)) ## [16.1.1](https://github.com/core-ds/core-components/compare/v16.1.0...v16.1.1) (2021-05-04) - ### Bug Fixes -* **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e)) +- **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e)) # [16.1.0](https://github.com/core-ds/core-components/compare/v16.0.0...v16.1.0) (2021-04-28) - ### Features -* **button:** experimental active transform (site theme) ([a741e4f](https://github.com/core-ds/core-components/commit/a741e4fb73716902e6a72957e672921c21e7696b)) +- **button:** experimental active transform (site theme) ([a741e4f](https://github.com/core-ds/core-components/commit/a741e4fb73716902e6a72957e672921c21e7696b)) # [16.0.0](https://github.com/core-ds/core-components/compare/v15.4.0...v16.0.0) (2021-04-26) - ### Features -* **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6)) - +- **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6)) ### BREAKING CHANGES -* **stack:** remove z-index, add stack component +- **stack:** remove z-index, add stack component -* feat(modal): remove z-index, add stack component +- feat(modal): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(notification-manager): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(notification-manager): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(notification): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(notification): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(popover): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(popover): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(select): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(select): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(toast): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(toast): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(tooltip): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(tooltip): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(stack): fix comment +- **stack:** remove z-index, add stack component -* Revert "feat(modal): remove z-index, add stack component" +- feat(stack): fix comment + +- Revert "feat(modal): remove z-index, add stack component" This reverts commit fcae901c6ec58311701cd491296a7b04016a9a65. -* feat(base-modal): remove z-index, add stack component +- feat(base-modal): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* test(file-upload-item): update snapshot +- **stack:** remove z-index, add stack component -# [15.4.0](https://github.com/core-ds/core-components/compare/v15.3.0...v15.4.0) (2021-04-26) +- test(file-upload-item): update snapshot +# [15.4.0](https://github.com/core-ds/core-components/compare/v15.3.0...v15.4.0) (2021-04-26) ### Features -* **calendar-input:** toggle calendar on enter ([#618](https://github.com/core-ds/core-components/issues/618)) ([110e836](https://github.com/core-ds/core-components/commit/110e8369dffa9576ec07a517076a11d6ba2e80fa)) -* **dropzone:** add component ([#566](https://github.com/core-ds/core-components/issues/566)) ([693a720](https://github.com/core-ds/core-components/commit/693a720202d78d47e39954edff7b72335904d714)) -* **file-upload-item:** add component ([#571](https://github.com/core-ds/core-components/issues/571)) ([e627350](https://github.com/core-ds/core-components/commit/e627350b3eabfb36aaa67c17411a9b98b551867d)) -* **modal:** fixed position ([#617](https://github.com/core-ds/core-components/issues/617)) ([77db054](https://github.com/core-ds/core-components/commit/77db054b18c1dba6713d9a9d99c95a1ef5c98e8e)) -* **select:** label + placeholder ([#535](https://github.com/core-ds/core-components/issues/535)) ([e821c41](https://github.com/core-ds/core-components/commit/e821c41e65d01ad517dab983685506614df0db89)) +- **calendar-input:** toggle calendar on enter ([#618](https://github.com/core-ds/core-components/issues/618)) ([110e836](https://github.com/core-ds/core-components/commit/110e8369dffa9576ec07a517076a11d6ba2e80fa)) +- **dropzone:** add component ([#566](https://github.com/core-ds/core-components/issues/566)) ([693a720](https://github.com/core-ds/core-components/commit/693a720202d78d47e39954edff7b72335904d714)) +- **file-upload-item:** add component ([#571](https://github.com/core-ds/core-components/issues/571)) ([e627350](https://github.com/core-ds/core-components/commit/e627350b3eabfb36aaa67c17411a9b98b551867d)) +- **modal:** fixed position ([#617](https://github.com/core-ds/core-components/issues/617)) ([77db054](https://github.com/core-ds/core-components/commit/77db054b18c1dba6713d9a9d99c95a1ef5c98e8e)) +- **select:** label + placeholder ([#535](https://github.com/core-ds/core-components/issues/535)) ([e821c41](https://github.com/core-ds/core-components/commit/e821c41e65d01ad517dab983685506614df0db89)) # [15.3.0](https://github.com/core-ds/core-components/compare/v15.2.2...v15.3.0) (2021-04-26) - ### Bug Fixes -* **calendar:** ie fixes ([#628](https://github.com/core-ds/core-components/issues/628)) ([983509c](https://github.com/core-ds/core-components/commit/983509cd1cfe5be64a8627fed44ec55d989eb8a2)) -* **drawer:** lost vars ([#632](https://github.com/core-ds/core-components/issues/632)) ([82a8e46](https://github.com/core-ds/core-components/commit/82a8e461fc16d4ae8b6d3d268c92f7dc969e81f8)) -* **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552)) -* update plugin ([#627](https://github.com/core-ds/core-components/issues/627)) ([5bb78f2](https://github.com/core-ds/core-components/commit/5bb78f231e525d0f86ec7fb8ccd8af65121c5169)) -* **skeleton:** remove extra bottom margin ([#619](https://github.com/core-ds/core-components/issues/619)) ([8f83022](https://github.com/core-ds/core-components/commit/8f83022c5a89e2f0b63449970437d0ca00129e5d)) -* **tabs:** fix ssr rendering ([#621](https://github.com/core-ds/core-components/issues/621)) ([e45efe7](https://github.com/core-ds/core-components/commit/e45efe78ff2583b92393e9c271f07fe3718b9d40)) - +- **calendar:** ie fixes ([#628](https://github.com/core-ds/core-components/issues/628)) ([983509c](https://github.com/core-ds/core-components/commit/983509cd1cfe5be64a8627fed44ec55d989eb8a2)) +- **drawer:** lost vars ([#632](https://github.com/core-ds/core-components/issues/632)) ([82a8e46](https://github.com/core-ds/core-components/commit/82a8e461fc16d4ae8b6d3d268c92f7dc969e81f8)) +- **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552)) +- update plugin ([#627](https://github.com/core-ds/core-components/issues/627)) ([5bb78f2](https://github.com/core-ds/core-components/commit/5bb78f231e525d0f86ec7fb8ccd8af65121c5169)) +- **skeleton:** remove extra bottom margin ([#619](https://github.com/core-ds/core-components/issues/619)) ([8f83022](https://github.com/core-ds/core-components/commit/8f83022c5a89e2f0b63449970437d0ca00129e5d)) +- **tabs:** fix ssr rendering ([#621](https://github.com/core-ds/core-components/issues/621)) ([e45efe7](https://github.com/core-ds/core-components/commit/e45efe78ff2583b92393e9c271f07fe3718b9d40)) ### Features -* **space:** fix dataTestId ([#625](https://github.com/core-ds/core-components/issues/625)) ([a33ca6b](https://github.com/core-ds/core-components/commit/a33ca6ba791a43252b09c5a6d81dbd206aaec2d7)) +- **space:** fix dataTestId ([#625](https://github.com/core-ds/core-components/issues/625)) ([a33ca6b](https://github.com/core-ds/core-components/commit/a33ca6ba791a43252b09c5a6d81dbd206aaec2d7)) ## [15.2.2](https://github.com/core-ds/core-components/compare/v15.2.1...v15.2.2) (2021-04-20) - ### Bug Fixes -* **amount-input:** fix float in amount input ([a9e1802](https://github.com/core-ds/core-components/commit/a9e180285073e29a05703a991c946e2c1247177a)) +- **amount-input:** fix float in amount input ([a9e1802](https://github.com/core-ds/core-components/commit/a9e180285073e29a05703a991c946e2c1247177a)) ## [15.2.1](https://github.com/core-ds/core-components/compare/v15.2.0...v15.2.1) (2021-04-09) - ### Bug Fixes -* **backdrop:** styles ([82bdfa7](https://github.com/core-ds/core-components/commit/82bdfa7759240755f74bf12906c395d633f464e4)) -* **base-modal:** correct cb ([256a142](https://github.com/core-ds/core-components/commit/256a142398a9ada34386e92d012185763cedef5a)) -* **drawer:** backdrop styles ([04da4fa](https://github.com/core-ds/core-components/commit/04da4fac310dbe2634ea4130ead480a88d47ee8e)) +- **backdrop:** styles ([82bdfa7](https://github.com/core-ds/core-components/commit/82bdfa7759240755f74bf12906c395d633f464e4)) +- **base-modal:** correct cb ([256a142](https://github.com/core-ds/core-components/commit/256a142398a9ada34386e92d012185763cedef5a)) +- **drawer:** backdrop styles ([04da4fa](https://github.com/core-ds/core-components/commit/04da4fac310dbe2634ea4130ead480a88d47ee8e)) # [15.2.0](https://github.com/core-ds/core-components/compare/v15.1.0...v15.2.0) (2021-04-09) - ### Bug Fixes -* **calendar-input:** call onchange with empty value ([3fbc73a](https://github.com/core-ds/core-components/commit/3fbc73a1d32586161b6fe527f76ca27cd54abebb)) -* **select:** options list width calc ([5294af7](https://github.com/core-ds/core-components/commit/5294af78ef61b50edde42ed255e66e6ea004c0fd)) -* **select:** virtual list wrong height ([8708228](https://github.com/core-ds/core-components/commit/8708228749acdeed0d1dfe4b9538dc22683e7f28)) -* **slider-input:** label + info + error issue ([147bb71](https://github.com/core-ds/core-components/commit/147bb716ab6dc500aaf0923d5442560c743e6b66)) - +- **calendar-input:** call onchange with empty value ([3fbc73a](https://github.com/core-ds/core-components/commit/3fbc73a1d32586161b6fe527f76ca27cd54abebb)) +- **select:** options list width calc ([5294af7](https://github.com/core-ds/core-components/commit/5294af78ef61b50edde42ed255e66e6ea004c0fd)) +- **select:** virtual list wrong height ([8708228](https://github.com/core-ds/core-components/commit/8708228749acdeed0d1dfe4b9538dc22683e7f28)) +- **slider-input:** label + info + error issue ([147bb71](https://github.com/core-ds/core-components/commit/147bb716ab6dc500aaf0923d5442560c743e6b66)) ### Features -* **backdrop:** add component ([948a6c2](https://github.com/core-ds/core-components/commit/948a6c2fb5ec58edb2d087691ce4713d75da6e35)) -* **backdrop:** add component ([2b87958](https://github.com/core-ds/core-components/commit/2b87958e51449645c58bbd02552ce7a908c6bab8)) -* **calendar-with-skeleton:** add component ([e940c88](https://github.com/core-ds/core-components/commit/e940c88703a7434e0db4ce0efc27a234455b449c)) -* **form-control:** add hidden label instead min-width ([a40ffcf](https://github.com/core-ds/core-components/commit/a40ffcf149282c83a834587a9486bc09b2929f90)) -* **slider:** click theme ([15c308a](https://github.com/core-ds/core-components/commit/15c308a50e9fbcd8e40a8681f32aefea5b3d5cf9)) +- **backdrop:** add component ([948a6c2](https://github.com/core-ds/core-components/commit/948a6c2fb5ec58edb2d087691ce4713d75da6e35)) +- **backdrop:** add component ([2b87958](https://github.com/core-ds/core-components/commit/2b87958e51449645c58bbd02552ce7a908c6bab8)) +- **calendar-with-skeleton:** add component ([e940c88](https://github.com/core-ds/core-components/commit/e940c88703a7434e0db4ce0efc27a234455b449c)) +- **form-control:** add hidden label instead min-width ([a40ffcf](https://github.com/core-ds/core-components/commit/a40ffcf149282c83a834587a9486bc09b2929f90)) +- **slider:** click theme ([15c308a](https://github.com/core-ds/core-components/commit/15c308a50e9fbcd8e40a8681f32aefea5b3d5cf9)) # [15.1.0](https://github.com/core-ds/core-components/compare/v15.0.1...v15.1.0) (2021-04-06) - ### Features -* **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe)) +- **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe)) ## [15.0.1](https://github.com/core-ds/core-components/compare/v15.0.0...v15.0.1) (2021-04-01) - ### Reverts -* Revert "comic thursday" ([708304e](https://github.com/core-ds/core-components/commit/708304e3be6f096137d04346872a2e1c95e3154a)) +- Revert "comic thursday" ([708304e](https://github.com/core-ds/core-components/commit/708304e3be6f096137d04346872a2e1c95e3154a)) # [15.0.0](https://github.com/core-ds/core-components/compare/v14.0.2...v15.0.0) (2021-04-01) - ### Bug Fixes -* radio/checkbox ([#594](https://github.com/core-ds/core-components/issues/594)) ([4c9c13f](https://github.com/core-ds/core-components/commit/4c9c13fdf4ab3db9a6b176aeaba529c9b23f971b)) -* **modal:** fullscreen & header title styles ([#580](https://github.com/core-ds/core-components/issues/580)) ([39fa494](https://github.com/core-ds/core-components/commit/39fa4940223b6187a391ff6c0b6706ae8a333dc0)) -* **select-with-tags:** tag box-sizing issue ([#589](https://github.com/core-ds/core-components/issues/589)) ([9bc9a44](https://github.com/core-ds/core-components/commit/9bc9a4484b1e46372bce5fc16663f3ac05378310)) - +- radio/checkbox ([#594](https://github.com/core-ds/core-components/issues/594)) ([4c9c13f](https://github.com/core-ds/core-components/commit/4c9c13fdf4ab3db9a6b176aeaba529c9b23f971b)) +- **modal:** fullscreen & header title styles ([#580](https://github.com/core-ds/core-components/issues/580)) ([39fa494](https://github.com/core-ds/core-components/commit/39fa4940223b6187a391ff6c0b6706ae8a333dc0)) +- **select-with-tags:** tag box-sizing issue ([#589](https://github.com/core-ds/core-components/issues/589)) ([9bc9a44](https://github.com/core-ds/core-components/commit/9bc9a4484b1e46372bce5fc16663f3ac05378310)) ### Features -* **button:** updated xs button font-weight ([#599](https://github.com/core-ds/core-components/issues/599)) ([b05a554](https://github.com/core-ds/core-components/commit/b05a5547c97afba0d66489eca83a7a04d6c24283)) -* **mq:** change mobile-s to mobile-xs ([9abf5ba](https://github.com/core-ds/core-components/commit/9abf5bada45287a786610dd6cce7cc047d779012)) - +- **button:** updated xs button font-weight ([#599](https://github.com/core-ds/core-components/issues/599)) ([b05a554](https://github.com/core-ds/core-components/commit/b05a5547c97afba0d66489eca83a7a04d6c24283)) +- **mq:** change mobile-s to mobile-xs ([9abf5ba](https://github.com/core-ds/core-components/commit/9abf5bada45287a786610dd6cce7cc047d779012)) ### BREAKING CHANGES -* **mq:** mobile-s теперь 360 +- **mq:** mobile-s теперь 360 ## [14.0.2](https://github.com/core-ds/core-components/compare/v14.0.1...v14.0.2) (2021-03-31) - ### Bug Fixes -* **calendar-input:** z-index increased ([8e0df44](https://github.com/core-ds/core-components/commit/8e0df445a1be317291f2d35e2f4d4afb9d24609c)) +- **calendar-input:** z-index increased ([8e0df44](https://github.com/core-ds/core-components/commit/8e0df445a1be317291f2d35e2f4d4afb9d24609c)) ## [14.0.1](https://github.com/core-ds/core-components/compare/v14.0.0...v14.0.1) (2021-03-30) - ### Bug Fixes -* **themes:** fixed button corp theme ([4dec71c](https://github.com/core-ds/core-components/commit/4dec71ccc9bd321a9d7a50dba221b13267b092f9)) +- **themes:** fixed button corp theme ([4dec71c](https://github.com/core-ds/core-components/commit/4dec71ccc9bd321a9d7a50dba221b13267b092f9)) # [14.0.0](https://github.com/core-ds/core-components/compare/v13.3.1...v14.0.0) (2021-03-30) - ### Bug Fixes -* **toast-plate:** fix children margin ([#583](https://github.com/core-ds/core-components/issues/583)) ([3b2a964](https://github.com/core-ds/core-components/commit/3b2a96408c56a08eb8796c83a344df20bd4ae032)) - +- **toast-plate:** fix children margin ([#583](https://github.com/core-ds/core-components/issues/583)) ([3b2a964](https://github.com/core-ds/core-components/commit/3b2a96408c56a08eb8796c83a344df20bd4ae032)) ### Features -* **tooltip:** add wrapper around children component ([#587](https://github.com/core-ds/core-components/issues/587)) ([a2ecbb6](https://github.com/core-ds/core-components/commit/a2ecbb67bd517b583284ec0b8365de9e58e753ed)) - +- **tooltip:** add wrapper around children component ([#587](https://github.com/core-ds/core-components/issues/587)) ([a2ecbb6](https://github.com/core-ds/core-components/commit/a2ecbb67bd517b583284ec0b8365de9e58e753ed)) ### BREAKING CHANGES -* **tooltip:** add wrapper around children component +- **tooltip:** add wrapper around children component -* feat(tooltip): add target className prop +- feat(tooltip): add target className prop -* feat(tooltip): fix passed classNames +- feat(tooltip): fix passed classNames ## [13.3.1](https://github.com/core-ds/core-components/compare/v13.3.0...v13.3.1) (2021-03-30) - ### Bug Fixes -* subComponentName ([8064ac6](https://github.com/core-ds/core-components/commit/8064ac67af83750673ac2dde4794b2ec8fc04f2e)) +- subComponentName ([8064ac6](https://github.com/core-ds/core-components/commit/8064ac67af83750673ac2dde4794b2ec8fc04f2e)) # [13.3.0](https://github.com/core-ds/core-components/compare/v13.2.0...v13.3.0) (2021-03-24) - ### Features -* **alert:** add component ([#548](https://github.com/core-ds/core-components/issues/548)) ([264cbf8](https://github.com/core-ds/core-components/commit/264cbf8f7465d2ecaf043bf0f67530e040fc83f6)) -* **calendar-input:** remove input width ([#576](https://github.com/core-ds/core-components/issues/576)) ([f0954b0](https://github.com/core-ds/core-components/commit/f0954b0724ead52ea0a60ab8baebd5dfa3638a01)) -* **select:** add options-list width ([#578](https://github.com/core-ds/core-components/issues/578)) ([6f1c12b](https://github.com/core-ds/core-components/commit/6f1c12b9196d3ebf87e1ea3e0610f73b8832b771)) -* **select:** add optionsSize ([#577](https://github.com/core-ds/core-components/issues/577)) ([12f3b43](https://github.com/core-ds/core-components/commit/12f3b4342a3dada9db97eb80839a3d7adb9e3747)) +- **alert:** add component ([#548](https://github.com/core-ds/core-components/issues/548)) ([264cbf8](https://github.com/core-ds/core-components/commit/264cbf8f7465d2ecaf043bf0f67530e040fc83f6)) +- **calendar-input:** remove input width ([#576](https://github.com/core-ds/core-components/issues/576)) ([f0954b0](https://github.com/core-ds/core-components/commit/f0954b0724ead52ea0a60ab8baebd5dfa3638a01)) +- **select:** add options-list width ([#578](https://github.com/core-ds/core-components/issues/578)) ([6f1c12b](https://github.com/core-ds/core-components/commit/6f1c12b9196d3ebf87e1ea3e0610f73b8832b771)) +- **select:** add optionsSize ([#577](https://github.com/core-ds/core-components/issues/577)) ([12f3b43](https://github.com/core-ds/core-components/commit/12f3b4342a3dada9db97eb80839a3d7adb9e3747)) # [13.2.0](https://github.com/core-ds/core-components/compare/v13.1.4...v13.2.0) (2021-03-24) - ### Features -* **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b)) +- **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b)) ## [13.1.4](https://github.com/core-ds/core-components/compare/v13.1.3...v13.1.4) (2021-03-19) - ### Bug Fixes -* **tabs:** optional children ([#572](https://github.com/core-ds/core-components/issues/572)) ([b03ee8c](https://github.com/core-ds/core-components/commit/b03ee8ca7f37e9c5b8a46d4a04123792cdc1bfa6)) -* fix types importing in root package ([#569](https://github.com/core-ds/core-components/issues/569)) ([bdb362a](https://github.com/core-ds/core-components/commit/bdb362ad7e23b6ffee8a0299ff91a49cad1f66c2)) -* **button:** fixed alignment of several buttons in a row ([#561](https://github.com/core-ds/core-components/issues/561)) ([8d9e1e2](https://github.com/core-ds/core-components/commit/8d9e1e2f7a4ba8c5c986bb833f7424b38601d463)) -* **gaps:** add description ([#562](https://github.com/core-ds/core-components/issues/562)) ([0e0b2d3](https://github.com/core-ds/core-components/commit/0e0b2d3ffa5fe83f3282acf6b3db80c1ddd09b1f)) +- **tabs:** optional children ([#572](https://github.com/core-ds/core-components/issues/572)) ([b03ee8c](https://github.com/core-ds/core-components/commit/b03ee8ca7f37e9c5b8a46d4a04123792cdc1bfa6)) +- fix types importing in root package ([#569](https://github.com/core-ds/core-components/issues/569)) ([bdb362a](https://github.com/core-ds/core-components/commit/bdb362ad7e23b6ffee8a0299ff91a49cad1f66c2)) +- **button:** fixed alignment of several buttons in a row ([#561](https://github.com/core-ds/core-components/issues/561)) ([8d9e1e2](https://github.com/core-ds/core-components/commit/8d9e1e2f7a4ba8c5c986bb833f7424b38601d463)) +- **gaps:** add description ([#562](https://github.com/core-ds/core-components/issues/562)) ([0e0b2d3](https://github.com/core-ds/core-components/commit/0e0b2d3ffa5fe83f3282acf6b3db80c1ddd09b1f)) ## [13.1.3](https://github.com/core-ds/core-components/compare/v13.1.2...v13.1.3) (2021-03-18) - ### Bug Fixes -* one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc)) +- one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc)) ## [13.1.2](https://github.com/core-ds/core-components/compare/v13.1.1...v13.1.2) (2021-03-16) - ### Bug Fixes -* border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073)) +- border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073)) ## [13.1.1](https://github.com/core-ds/core-components/compare/v13.1.0...v13.1.1) (2021-03-15) - ### Bug Fixes -* **themes:** fixes border-radius ([9d152d9](https://github.com/core-ds/core-components/commit/9d152d9ae0e70736cf78f3a014b6710dc8aa2331)) +- **themes:** fixes border-radius ([9d152d9](https://github.com/core-ds/core-components/commit/9d152d9ae0e70736cf78f3a014b6710dc8aa2331)) # [13.1.0](https://github.com/core-ds/core-components/compare/v13.0.2...v13.1.0) (2021-03-15) - ### Features -* **vars:** introducing border-radius vars ([1a6fb28](https://github.com/core-ds/core-components/commit/1a6fb287bcfab50048c3a9100645b4dee8cd3395)) +- **vars:** introducing border-radius vars ([1a6fb28](https://github.com/core-ds/core-components/commit/1a6fb287bcfab50048c3a9100645b4dee8cd3395)) ## [13.0.2](https://github.com/core-ds/core-components/compare/v13.0.1...v13.0.2) (2021-03-14) - ### Bug Fixes -* **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e)) +- **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e)) ## [13.0.1](https://github.com/core-ds/core-components/compare/v13.0.0...v13.0.1) (2021-03-11) - ### Bug Fixes -* **toast:** remove extra timer clearing ([#559](https://github.com/core-ds/core-components/issues/559)) ([ae5d811](https://github.com/core-ds/core-components/commit/ae5d81169d4db0427ae5baf0bffd784adee184ee)) +- **toast:** remove extra timer clearing ([#559](https://github.com/core-ds/core-components/issues/559)) ([ae5d811](https://github.com/core-ds/core-components/commit/ae5d81169d4db0427ae5baf0bffd784adee184ee)) # [13.0.0](https://github.com/core-ds/core-components/compare/v12.3.0...v13.0.0) (2021-03-11) - ### Bug Fixes -* **confirmation:** fix bug with timers ([2bdb105](https://github.com/core-ds/core-components/commit/2bdb10505ebb91713bca0b56e4d10af08cbcd4ed)) - +- **confirmation:** fix bug with timers ([2bdb105](https://github.com/core-ds/core-components/commit/2bdb10505ebb91713bca0b56e4d10af08cbcd4ed)) ### Features -* **confirmation:** add noAttemptsLeftMessage prop ([7dc0e02](https://github.com/core-ds/core-components/commit/7dc0e02074443fd68c13aa0ac54bd966e8968ffc)) -* **confirmation:** always show sms come link ([0a14a54](https://github.com/core-ds/core-components/commit/0a14a54b177ee72ccf8cd8b057ea48db0168c1fb)) -* **confirmation:** confirmation design updates ([69f26e4](https://github.com/core-ds/core-components/commit/69f26e415a195d863686076941b6a3f15f3d1d15)) -* **confirmation:** fix text ([40d4d6b](https://github.com/core-ds/core-components/commit/40d4d6b2261b2e0db79bc160266cc207a1ca3858)) - +- **confirmation:** add noAttemptsLeftMessage prop ([7dc0e02](https://github.com/core-ds/core-components/commit/7dc0e02074443fd68c13aa0ac54bd966e8968ffc)) +- **confirmation:** always show sms come link ([0a14a54](https://github.com/core-ds/core-components/commit/0a14a54b177ee72ccf8cd8b057ea48db0168c1fb)) +- **confirmation:** confirmation design updates ([69f26e4](https://github.com/core-ds/core-components/commit/69f26e415a195d863686076941b6a3f15f3d1d15)) +- **confirmation:** fix text ([40d4d6b](https://github.com/core-ds/core-components/commit/40d4d6b2261b2e0db79bc160266cc207a1ca3858)) ### BREAKING CHANGES -* **confirmation:** Add phone formatting into component. Phone prop doesn't have to be formatted. +- **confirmation:** Add phone formatting into component. Phone prop doesn't have to be formatted. # [12.3.0](https://github.com/core-ds/core-components/compare/v12.2.0...v12.3.0) (2021-03-10) - ### Features -* **skeleton:** updated default theme, click theme ([#549](https://github.com/core-ds/core-components/issues/549)) ([9bf9259](https://github.com/core-ds/core-components/commit/9bf9259d4d1efd73067ea548cdfaf3007b0f8839)) +- **skeleton:** updated default theme, click theme ([#549](https://github.com/core-ds/core-components/issues/549)) ([9bf9259](https://github.com/core-ds/core-components/commit/9bf9259d4d1efd73067ea548cdfaf3007b0f8839)) # [12.2.0](https://github.com/core-ds/core-components/compare/v12.1.0...v12.2.0) (2021-03-05) - ### Features -* **status:** add component ([#546](https://github.com/core-ds/core-components/issues/546)) ([52a1f0b](https://github.com/core-ds/core-components/commit/52a1f0bd8578fe34d1c214b93a363e7b76621c17)) +- **status:** add component ([#546](https://github.com/core-ds/core-components/issues/546)) ([52a1f0b](https://github.com/core-ds/core-components/commit/52a1f0bd8578fe34d1c214b93a363e7b76621c17)) # [12.1.0](https://github.com/core-ds/core-components/compare/v12.0.0...v12.1.0) (2021-03-04) - ### Features -* **icon-button:** inverted theme ([#550](https://github.com/core-ds/core-components/issues/550)) ([98c3691](https://github.com/core-ds/core-components/commit/98c36919f682041278aa31753f1d18be95358df1)) +- **icon-button:** inverted theme ([#550](https://github.com/core-ds/core-components/issues/550)) ([98c3691](https://github.com/core-ds/core-components/commit/98c36919f682041278aa31753f1d18be95358df1)) # [12.0.0](https://github.com/core-ds/core-components/compare/v11.8.0...v12.0.0) (2021-03-04) - ### Features -* size vars (xs/s/m/l/xl → 32/48/56/64/72) ([d7254d2](https://github.com/core-ds/core-components/commit/d7254d2963106663e8f04b84bc747b38e4f57632)) -* **amount-input:** changed size L (72 → 64), added size XL (72) ([a2c0b7c](https://github.com/core-ds/core-components/commit/a2c0b7ce6c208183897064cd6235d69445e3afe5)) -* **button:** changed size L (72 → 64), added size XL (72) ([051d964](https://github.com/core-ds/core-components/commit/051d964e83fd7af3703c82facf75345eca66915b)) -* **form-control:** changed size L (72 → 64), added size XL (72) ([4a129f3](https://github.com/core-ds/core-components/commit/4a129f3ca3c80e94489cbc485018e6eb6e542244)) -* **input:** changed size L (72 → 64), added size XL (72) ([79699e3](https://github.com/core-ds/core-components/commit/79699e34d28075809e537b73911875ff5fc2d406)) -* **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917)) -* **intl-phone-input:** changed size L (72 → 64), added size XL (72) ([9077b7f](https://github.com/core-ds/core-components/commit/9077b7f454035cdc7be611d526a5f9642ae4d76d)) -* **phone-input:** changed size L (72 → 64), added size XL (72) ([13257c5](https://github.com/core-ds/core-components/commit/13257c54543b2f1a870527093df11c532143dab9)) -* **popover:** change animation, add scale ([2e48a02](https://github.com/core-ds/core-components/commit/2e48a02a8f3f7ff9a6df48cf4e6337a8928f67c7)) -* **pure-input:** changed size L (72 → 64), added size XL (72) ([af4cfb5](https://github.com/core-ds/core-components/commit/af4cfb515a25c6dcae32a7e2a0730fe4f9e6e791)) -* **select:** changed size L (72 → 64), added size XL (72) ([af5dc6a](https://github.com/core-ds/core-components/commit/af5dc6a4f5b52f45bc97f4cc16633aca499aa67a)) -* **select-with-tags:** changed size L (72 → 64), added size XL (72) ([523b96f](https://github.com/core-ds/core-components/commit/523b96fa79bc12972ec6ac748105ba20906ba236)) -* **slider-input:** changed size L (72 → 64), added size XL (72) ([f5fda56](https://github.com/core-ds/core-components/commit/f5fda569e0e73a06850914c1e494024a3aaab12c)) -* **tabs:** changed size L (72 → 64), added size XL (72) ([2043939](https://github.com/core-ds/core-components/commit/2043939c5ecdb03c9b84379a3cce21c6f6047530)) -* **tag:** changed size L (72 → 64), added size XL (72) ([ea43560](https://github.com/core-ds/core-components/commit/ea435601abb79b3bde9e34d60616239e2a0ef6bc)) -* **textarea:** changed size L (72 → 64), added size XL (72) ([175e360](https://github.com/core-ds/core-components/commit/175e360d5acb4eb146c81020fd65dc725588edee)) -* **themes:** updated click theme for tabs ([0a4c17e](https://github.com/core-ds/core-components/commit/0a4c17e5628f959d72e0ee6044ca56bd3c890d92)) -* **toast:** update popover ([9961bc8](https://github.com/core-ds/core-components/commit/9961bc8a15428c4417af9df9585d8fc55b6a154c)) -* **with-suffix:** xl size ([d2bb796](https://github.com/core-ds/core-components/commit/d2bb7967b6756f8b06b3484c7900ef7637b1c777)) - +- size vars (xs/s/m/l/xl → 32/48/56/64/72) ([d7254d2](https://github.com/core-ds/core-components/commit/d7254d2963106663e8f04b84bc747b38e4f57632)) +- **amount-input:** changed size L (72 → 64), added size XL (72) ([a2c0b7c](https://github.com/core-ds/core-components/commit/a2c0b7ce6c208183897064cd6235d69445e3afe5)) +- **button:** changed size L (72 → 64), added size XL (72) ([051d964](https://github.com/core-ds/core-components/commit/051d964e83fd7af3703c82facf75345eca66915b)) +- **form-control:** changed size L (72 → 64), added size XL (72) ([4a129f3](https://github.com/core-ds/core-components/commit/4a129f3ca3c80e94489cbc485018e6eb6e542244)) +- **input:** changed size L (72 → 64), added size XL (72) ([79699e3](https://github.com/core-ds/core-components/commit/79699e34d28075809e537b73911875ff5fc2d406)) +- **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917)) +- **intl-phone-input:** changed size L (72 → 64), added size XL (72) ([9077b7f](https://github.com/core-ds/core-components/commit/9077b7f454035cdc7be611d526a5f9642ae4d76d)) +- **phone-input:** changed size L (72 → 64), added size XL (72) ([13257c5](https://github.com/core-ds/core-components/commit/13257c54543b2f1a870527093df11c532143dab9)) +- **popover:** change animation, add scale ([2e48a02](https://github.com/core-ds/core-components/commit/2e48a02a8f3f7ff9a6df48cf4e6337a8928f67c7)) +- **pure-input:** changed size L (72 → 64), added size XL (72) ([af4cfb5](https://github.com/core-ds/core-components/commit/af4cfb515a25c6dcae32a7e2a0730fe4f9e6e791)) +- **select:** changed size L (72 → 64), added size XL (72) ([af5dc6a](https://github.com/core-ds/core-components/commit/af5dc6a4f5b52f45bc97f4cc16633aca499aa67a)) +- **select-with-tags:** changed size L (72 → 64), added size XL (72) ([523b96f](https://github.com/core-ds/core-components/commit/523b96fa79bc12972ec6ac748105ba20906ba236)) +- **slider-input:** changed size L (72 → 64), added size XL (72) ([f5fda56](https://github.com/core-ds/core-components/commit/f5fda569e0e73a06850914c1e494024a3aaab12c)) +- **tabs:** changed size L (72 → 64), added size XL (72) ([2043939](https://github.com/core-ds/core-components/commit/2043939c5ecdb03c9b84379a3cce21c6f6047530)) +- **tag:** changed size L (72 → 64), added size XL (72) ([ea43560](https://github.com/core-ds/core-components/commit/ea435601abb79b3bde9e34d60616239e2a0ef6bc)) +- **textarea:** changed size L (72 → 64), added size XL (72) ([175e360](https://github.com/core-ds/core-components/commit/175e360d5acb4eb146c81020fd65dc725588edee)) +- **themes:** updated click theme for tabs ([0a4c17e](https://github.com/core-ds/core-components/commit/0a4c17e5628f959d72e0ee6044ca56bd3c890d92)) +- **toast:** update popover ([9961bc8](https://github.com/core-ds/core-components/commit/9961bc8a15428c4417af9df9585d8fc55b6a154c)) +- **with-suffix:** xl size ([d2bb796](https://github.com/core-ds/core-components/commit/d2bb7967b6756f8b06b3484c7900ef7637b1c777)) ### BREAKING CHANGES -* **phone-input:** size L changed to size XL -* **amount-input:** size L changed to size XL -* **pure-input:** size L changed to size XL -* **input-autocomplete:** size L changed to size XL -* **intl-phone-input:** size L changed to size XL -* **input:** size L changed to size XL -* **tag:** size L changed to size XL -* **select-with-tags:** size L changed to size XL -* **tabs:** size L changed to size XL -* **form-control:** size L changed to size XL -* **textarea:** size L changed to size XL -* **select:** size L changed to size XL -* **slider-input:** size L changed to size XL -* **button:** size L changed to size XL -* **popover:** Change html structure of popover component. +- **phone-input:** size L changed to size XL +- **amount-input:** size L changed to size XL +- **pure-input:** size L changed to size XL +- **input-autocomplete:** size L changed to size XL +- **intl-phone-input:** size L changed to size XL +- **input:** size L changed to size XL +- **tag:** size L changed to size XL +- **select-with-tags:** size L changed to size XL +- **tabs:** size L changed to size XL +- **form-control:** size L changed to size XL +- **textarea:** size L changed to size XL +- **select:** size L changed to size XL +- **slider-input:** size L changed to size XL +- **button:** size L changed to size XL +- **popover:** Change html structure of popover component. # [11.8.0](https://github.com/core-ds/core-components/compare/v11.7.1...v11.8.0) (2021-03-03) - ### Bug Fixes -* **confirmation:** add font feature settings ([#540](https://github.com/core-ds/core-components/issues/540)) ([08057f6](https://github.com/core-ds/core-components/commit/08057f6930e9cd19c0213442a4915e366d26e607)) -* **select-with-tags:** remove pointer events from placeholder ([#545](https://github.com/core-ds/core-components/issues/545)) ([41b860b](https://github.com/core-ds/core-components/commit/41b860bd550b71d2025081d76d7c1240258ecaf9)) - +- **confirmation:** add font feature settings ([#540](https://github.com/core-ds/core-components/issues/540)) ([08057f6](https://github.com/core-ds/core-components/commit/08057f6930e9cd19c0213442a4915e366d26e607)) +- **select-with-tags:** remove pointer events from placeholder ([#545](https://github.com/core-ds/core-components/issues/545)) ([41b860b](https://github.com/core-ds/core-components/commit/41b860bd550b71d2025081d76d7c1240258ecaf9)) ### Features -* **intl-phone-input:** add onCountryChange handler ([#539](https://github.com/core-ds/core-components/issues/539)) ([f8c0cd6](https://github.com/core-ds/core-components/commit/f8c0cd618ced23bbb49a81cfee07c1f45ee20427)) +- **intl-phone-input:** add onCountryChange handler ([#539](https://github.com/core-ds/core-components/issues/539)) ([f8c0cd6](https://github.com/core-ds/core-components/commit/f8c0cd618ced23bbb49a81cfee07c1f45ee20427)) ## [11.7.1](https://github.com/core-ds/core-components/compare/v11.7.0...v11.7.1) (2021-03-03) - ### Bug Fixes -* **select-with-tags:** missed dot ([c3c98d0](https://github.com/core-ds/core-components/commit/c3c98d0106072a431a616e8420edb01d83ad5fce)) +- **select-with-tags:** missed dot ([c3c98d0](https://github.com/core-ds/core-components/commit/c3c98d0106072a431a616e8420edb01d83ad5fce)) # [11.7.0](https://github.com/core-ds/core-components/compare/v11.6.3...v11.7.0) (2021-03-03) - ### Features -* **vars:** 2px gap ([#544](https://github.com/core-ds/core-components/issues/544)) ([e401782](https://github.com/core-ds/core-components/commit/e40178290a02c45bd9ea23ab0deffabd74a69276)) +- **vars:** 2px gap ([#544](https://github.com/core-ds/core-components/issues/544)) ([e401782](https://github.com/core-ds/core-components/commit/e40178290a02c45bd9ea23ab0deffabd74a69276)) ## [11.6.3](https://github.com/core-ds/core-components/compare/v11.6.2...v11.6.3) (2021-03-01) - ### Bug Fixes -* **select-with-tags:** fixed styles ([#543](https://github.com/core-ds/core-components/issues/543)) ([206db51](https://github.com/core-ds/core-components/commit/206db5138c8ba2869c5ac458609928c4753cc83b)) +- **select-with-tags:** fixed styles ([#543](https://github.com/core-ds/core-components/issues/543)) ([206db51](https://github.com/core-ds/core-components/commit/206db5138c8ba2869c5ac458609928c4753cc83b)) ## [11.6.2](https://github.com/core-ds/core-components/compare/v11.6.1...v11.6.2) (2021-02-20) - ### Bug Fixes -* **select:** recalc height on options changed ([#536](https://github.com/core-ds/core-components/issues/536)) ([4c27c19](https://github.com/core-ds/core-components/commit/4c27c197882256e507ec83678da4811f6285c2fe)) +- **select:** recalc height on options changed ([#536](https://github.com/core-ds/core-components/issues/536)) ([4c27c19](https://github.com/core-ds/core-components/commit/4c27c197882256e507ec83678da4811f6285c2fe)) ## [11.6.1](https://github.com/core-ds/core-components/compare/v11.6.0...v11.6.1) (2021-02-20) - ### Bug Fixes -* **themes:** lost core vars ([#534](https://github.com/core-ds/core-components/issues/534)) ([54a23c9](https://github.com/core-ds/core-components/commit/54a23c90997c4aa90944d0391f2aab27f799353d)) +- **themes:** lost core vars ([#534](https://github.com/core-ds/core-components/issues/534)) ([54a23c9](https://github.com/core-ds/core-components/commit/54a23c90997c4aa90944d0391f2aab27f799353d)) # [11.6.0](https://github.com/core-ds/core-components/compare/v11.5.0...v11.6.0) (2021-02-19) - ### Features -* **drawer:** add component ([#497](https://github.com/core-ds/core-components/issues/497)) ([5943188](https://github.com/core-ds/core-components/commit/594318886d581e6afca99fcebe9088c222aa3d52)) -* **modal:** reinvent modal ([#489](https://github.com/core-ds/core-components/issues/489)) ([06cb8ba](https://github.com/core-ds/core-components/commit/06cb8ba7f7a09445c04ab2a9871a86c1abf4a79c)) +- **drawer:** add component ([#497](https://github.com/core-ds/core-components/issues/497)) ([5943188](https://github.com/core-ds/core-components/commit/594318886d581e6afca99fcebe9088c222aa3d52)) +- **modal:** reinvent modal ([#489](https://github.com/core-ds/core-components/issues/489)) ([06cb8ba](https://github.com/core-ds/core-components/commit/06cb8ba7f7a09445c04ab2a9871a86c1abf4a79c)) # [11.5.0](https://github.com/core-ds/core-components/compare/v11.4.0...v11.5.0) (2021-02-19) - ### Features -* **select-with-tags:** added collapsed tag list ([#511](https://github.com/core-ds/core-components/issues/511)) ([fe1d551](https://github.com/core-ds/core-components/commit/fe1d551385e9122c205bbe7a679f02a6eb376569)) +- **select-with-tags:** added collapsed tag list ([#511](https://github.com/core-ds/core-components/issues/511)) ([fe1d551](https://github.com/core-ds/core-components/commit/fe1d551385e9122c205bbe7a679f02a6eb376569)) # [11.4.0](https://github.com/core-ds/core-components/compare/v11.3.2...v11.4.0) (2021-02-19) - ### Features -* **button:** add rel='noopener noreferrer' if target='blank' ([#522](https://github.com/core-ds/core-components/issues/522)) ([a1da871](https://github.com/core-ds/core-components/commit/a1da87118a32195ba844c239f5a0f73e164faa6f)) -* **link:** set rel='noopener noreferrer' if target='_blank' ([#520](https://github.com/core-ds/core-components/issues/520)) ([08c556e](https://github.com/core-ds/core-components/commit/08c556ecc0944d121b23566ae54319a1a33899ba)), closes [#519](https://github.com/core-ds/core-components/issues/519) -* **themes:** list click theme ([#528](https://github.com/core-ds/core-components/issues/528)) ([e54ad60](https://github.com/core-ds/core-components/commit/e54ad605a9f873b06e0fe984bc87bcbb810a2541)) +- **button:** add rel='noopener noreferrer' if target='blank' ([#522](https://github.com/core-ds/core-components/issues/522)) ([a1da871](https://github.com/core-ds/core-components/commit/a1da87118a32195ba844c239f5a0f73e164faa6f)) +- **link:** set rel='noopener noreferrer' if target='\_blank' ([#520](https://github.com/core-ds/core-components/issues/520)) ([08c556e](https://github.com/core-ds/core-components/commit/08c556ecc0944d121b23566ae54319a1a33899ba)), closes [#519](https://github.com/core-ds/core-components/issues/519) +- **themes:** list click theme ([#528](https://github.com/core-ds/core-components/issues/528)) ([e54ad60](https://github.com/core-ds/core-components/commit/e54ad605a9f873b06e0fe984bc87bcbb810a2541)) ## [11.3.2](https://github.com/core-ds/core-components/compare/v11.3.1...v11.3.2) (2021-02-19) - ### Bug Fixes -* **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1)) -* **select:** min width bug ([#524](https://github.com/core-ds/core-components/issues/524)) ([cdd686b](https://github.com/core-ds/core-components/commit/cdd686ba0780fdde982fff6629afd2fa798f9479)) +- **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1)) +- **select:** min width bug ([#524](https://github.com/core-ds/core-components/issues/524)) ([cdd686b](https://github.com/core-ds/core-components/commit/cdd686ba0780fdde982fff6629afd2fa798f9479)) ## [11.3.1](https://github.com/core-ds/core-components/compare/v11.3.0...v11.3.1) (2021-02-19) - ### Bug Fixes -* **toast-plate:** polish toast-plate themes ([#527](https://github.com/core-ds/core-components/issues/527)) ([57d73d4](https://github.com/core-ds/core-components/commit/57d73d47b089997b2cc0d85e37b70f068c945e50)) +- **toast-plate:** polish toast-plate themes ([#527](https://github.com/core-ds/core-components/issues/527)) ([57d73d4](https://github.com/core-ds/core-components/commit/57d73d47b089997b2cc0d85e37b70f068c945e50)) # [11.3.0](https://github.com/core-ds/core-components/compare/v11.2.0...v11.3.0) (2021-02-18) - ### Features -* **select:** add visible-options ([#506](https://github.com/core-ds/core-components/issues/506)) ([0154866](https://github.com/core-ds/core-components/commit/0154866bb8fc8308945d32f115b3ab1e46f98db6)) +- **select:** add visible-options ([#506](https://github.com/core-ds/core-components/issues/506)) ([0154866](https://github.com/core-ds/core-components/commit/0154866bb8fc8308945d32f115b3ab1e46f98db6)) # [11.2.0](https://github.com/core-ds/core-components/compare/v11.1.0...v11.2.0) (2021-02-18) - ### Features -* updated design tokens ([#516](https://github.com/core-ds/core-components/issues/516)) ([ef66b65](https://github.com/core-ds/core-components/commit/ef66b65bb35b2ef06292b8da709ccc335eb44735)) +- updated design tokens ([#516](https://github.com/core-ds/core-components/issues/516)) ([ef66b65](https://github.com/core-ds/core-components/commit/ef66b65bb35b2ef06292b8da709ccc335eb44735)) # [11.1.0](https://github.com/core-ds/core-components/compare/v11.0.3...v11.1.0) (2021-02-18) - ### Features -* **tabs:** disabled view ([#513](https://github.com/core-ds/core-components/issues/513)) ([8bdb1a7](https://github.com/core-ds/core-components/commit/8bdb1a789f720c6ccd98ebed3f0ae3c84dbbf52e)) +- **tabs:** disabled view ([#513](https://github.com/core-ds/core-components/issues/513)) ([8bdb1a7](https://github.com/core-ds/core-components/commit/8bdb1a789f720c6ccd98ebed3f0ae3c84dbbf52e)) ## [11.0.3](https://github.com/core-ds/core-components/compare/v11.0.2...v11.0.3) (2021-02-18) - ### Bug Fixes -* update versions ([1d83612](https://github.com/core-ds/core-components/commit/1d8361241fecb6be83e3ce8b546f19def1efc592)) +- update versions ([1d83612](https://github.com/core-ds/core-components/commit/1d8361241fecb6be83e3ce8b546f19def1efc592)) ## [11.0.2](https://github.com/core-ds/core-components/compare/v11.0.1...v11.0.2) (2021-02-18) - ### Bug Fixes -* update versions ([d1b69a3](https://github.com/core-ds/core-components/commit/d1b69a3f0f488bdef5bea2b3aafc0e275058f321)) +- update versions ([d1b69a3](https://github.com/core-ds/core-components/commit/d1b69a3f0f488bdef5bea2b3aafc0e275058f321)) ## [11.0.1](https://github.com/core-ds/core-components/compare/v11.0.0...v11.0.1) (2021-02-18) - ### Bug Fixes -* update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70)) +- update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70)) # [11.0.0](https://github.com/core-ds/core-components/compare/v10.6.0...v11.0.0) (2021-02-18) - -* Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521) - +- Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521) ### BREAKING CHANGES -* --notification-desktop-width var removed +- --notification-desktop-width var removed # [10.6.0](https://github.com/core-ds/core-components/compare/v10.5.0...v10.6.0) (2021-02-17) - ### Features -* **toast-plate:** add action button theming, fix addons align ([#514](https://github.com/core-ds/core-components/issues/514)) ([20a7c67](https://github.com/core-ds/core-components/commit/20a7c67e89e4b6d3d90a9f1da2eb1b428c8ebf73)) +- **toast-plate:** add action button theming, fix addons align ([#514](https://github.com/core-ds/core-components/issues/514)) ([20a7c67](https://github.com/core-ds/core-components/commit/20a7c67e89e4b6d3d90a9f1da2eb1b428c8ebf73)) # [10.5.0](https://github.com/core-ds/core-components/compare/v10.4.4...v10.5.0) (2021-02-17) - ### Features -* **icon-button:** add component ([#505](https://github.com/core-ds/core-components/issues/505)) ([da8ba6e](https://github.com/core-ds/core-components/commit/da8ba6e4473da87d8043713a592368d500cd284f)) +- **icon-button:** add component ([#505](https://github.com/core-ds/core-components/issues/505)) ([da8ba6e](https://github.com/core-ds/core-components/commit/da8ba6e4473da87d8043713a592368d500cd284f)) ## [10.4.4](https://github.com/core-ds/core-components/compare/v10.4.3...v10.4.4) (2021-02-16) - ### Bug Fixes -* **plate:** fixed --arrow-transform var, tuned transition ([#509](https://github.com/core-ds/core-components/issues/509)) ([dd51018](https://github.com/core-ds/core-components/commit/dd510185db28fefb102b287ae5022cf42e8072dc)) +- **plate:** fixed --arrow-transform var, tuned transition ([#509](https://github.com/core-ds/core-components/issues/509)) ([dd51018](https://github.com/core-ds/core-components/commit/dd510185db28fefb102b287ae5022cf42e8072dc)) ## [10.4.3](https://github.com/core-ds/core-components/compare/v10.4.2...v10.4.3) (2021-02-16) - ### Bug Fixes -* **form-control:** ff blink ([490ff25](https://github.com/core-ds/core-components/commit/490ff257eacb61c5d0d7f8861d12e43af9df3a55)) +- **form-control:** ff blink ([490ff25](https://github.com/core-ds/core-components/commit/490ff257eacb61c5d0d7f8861d12e43af9df3a55)) ## [10.4.2](https://github.com/core-ds/core-components/compare/v10.4.1...v10.4.2) (2021-02-15) - ### Bug Fixes -* **themes:** fixed click theme for tabs size S ([#510](https://github.com/core-ds/core-components/issues/510)) ([1ce93e5](https://github.com/core-ds/core-components/commit/1ce93e55d0622951e8db652f16b883a151a75e79)) +- **themes:** fixed click theme for tabs size S ([#510](https://github.com/core-ds/core-components/issues/510)) ([1ce93e5](https://github.com/core-ds/core-components/commit/1ce93e55d0622951e8db652f16b883a151a75e79)) ## [10.4.1](https://github.com/core-ds/core-components/compare/v10.4.0...v10.4.1) (2021-02-15) - ### Bug Fixes -* **themes:** corp theme ([#512](https://github.com/core-ds/core-components/issues/512)) ([6226238](https://github.com/core-ds/core-components/commit/6226238be1104550622eba1b842dac5ed9828d83)) +- **themes:** corp theme ([#512](https://github.com/core-ds/core-components/issues/512)) ([6226238](https://github.com/core-ds/core-components/commit/6226238be1104550622eba1b842dac5ed9828d83)) # [10.4.0](https://github.com/core-ds/core-components/compare/v10.3.0...v10.4.0) (2021-02-11) - ### Features -* improve read-only behaviour (PDS-200) ([#502](https://github.com/core-ds/core-components/issues/502)) ([3b3c5e6](https://github.com/core-ds/core-components/commit/3b3c5e664a829351f09f97d742311396dd0c98c6)) +- improve read-only behaviour (PDS-200) ([#502](https://github.com/core-ds/core-components/issues/502)) ([3b3c5e6](https://github.com/core-ds/core-components/commit/3b3c5e664a829351f09f97d742311396dd0c98c6)) # [10.3.0](https://github.com/core-ds/core-components/compare/v10.2.1...v10.3.0) (2021-02-11) - ### Features -* **grid:** add component ([#486](https://github.com/core-ds/core-components/issues/486)) ([96bd0f3](https://github.com/core-ds/core-components/commit/96bd0f34047fa4c8a877c75a60cc39f839f20b84)) +- **grid:** add component ([#486](https://github.com/core-ds/core-components/issues/486)) ([96bd0f3](https://github.com/core-ds/core-components/commit/96bd0f34047fa4c8a877c75a60cc39f839f20b84)) ## [10.2.1](https://github.com/core-ds/core-components/compare/v10.2.0...v10.2.1) (2021-02-10) - ### Bug Fixes -* form-control colors ([#503](https://github.com/core-ds/core-components/issues/503)) ([784e05e](https://github.com/core-ds/core-components/commit/784e05ecebf2cf9991447bf2dbac4b1dd36b9792)) +- form-control colors ([#503](https://github.com/core-ds/core-components/issues/503)) ([784e05e](https://github.com/core-ds/core-components/commit/784e05ecebf2cf9991447bf2dbac4b1dd36b9792)) # [10.2.0](https://github.com/core-ds/core-components/compare/v10.1.0...v10.2.0) (2021-02-09) - ### Features -* **cdn-icon:** add component ([#494](https://github.com/core-ds/core-components/issues/494)) ([a6df885](https://github.com/core-ds/core-components/commit/a6df885077c1c4a5ae76d110f6f5f6e369236182)) +- **cdn-icon:** add component ([#494](https://github.com/core-ds/core-components/issues/494)) ([a6df885](https://github.com/core-ds/core-components/commit/a6df885077c1c4a5ae76d110f6f5f6e369236182)) # [10.1.0](https://github.com/core-ds/core-components/compare/v10.0.0...v10.1.0) (2021-02-09) - ### Features -* **button:** updated button colors and themes ([#500](https://github.com/core-ds/core-components/issues/500)) ([b34f12d](https://github.com/core-ds/core-components/commit/b34f12db8cebc53641a642de9164075d0ed2dacf)) +- **button:** updated button colors and themes ([#500](https://github.com/core-ds/core-components/issues/500)) ([b34f12d](https://github.com/core-ds/core-components/commit/b34f12db8cebc53641a642de9164075d0ed2dacf)) # [10.0.0](https://github.com/core-ds/core-components/compare/v9.1.0...v10.0.0) (2021-02-08) - ### Features -* **badge:** reinvented icon view, visibleIconOutline prop ([#499](https://github.com/core-ds/core-components/issues/499)) ([bad9140](https://github.com/core-ds/core-components/commit/bad91400cb72edcd0878f7a07188e928d4bf3281)) - +- **badge:** reinvented icon view, visibleIconOutline prop ([#499](https://github.com/core-ds/core-components/issues/499)) ([bad9140](https://github.com/core-ds/core-components/commit/bad91400cb72edcd0878f7a07188e928d4bf3281)) ### BREAKING CHANGES -* **badge:** new icon view without fixed size +- **badge:** new icon view without fixed size # [9.1.0](https://github.com/core-ds/core-components/compare/v9.0.0...v9.1.0) (2021-02-08) - ### Bug Fixes -* **calendar:** fixes ([#498](https://github.com/core-ds/core-components/issues/498)) ([410630e](https://github.com/core-ds/core-components/commit/410630e3cdd093027444207f16a0f942a62b86de)) - +- **calendar:** fixes ([#498](https://github.com/core-ds/core-components/issues/498)) ([410630e](https://github.com/core-ds/core-components/commit/410630e3cdd093027444207f16a0f942a62b86de)) ### Features -* **select-with-tags:** design review fixes ([#472](https://github.com/core-ds/core-components/issues/472)) ([0ff989f](https://github.com/core-ds/core-components/commit/0ff989fa09e482a5e9bda1d64bf5eed9241fc451)) +- **select-with-tags:** design review fixes ([#472](https://github.com/core-ds/core-components/issues/472)) ([0ff989f](https://github.com/core-ds/core-components/commit/0ff989fa09e482a5e9bda1d64bf5eed9241fc451)) # [9.0.0](https://github.com/core-ds/core-components/compare/v8.3.1...v9.0.0) (2021-02-08) - ### Features -* **notification:** move inner content to toast ([8b7a4e9](https://github.com/core-ds/core-components/commit/8b7a4e932a7ac684edc62d2039263d0b9183ff0a)) -* **popover:** fix transition ([f8564bc](https://github.com/core-ds/core-components/commit/f8564bceace99104b521fc92d037f7ef9c635f91)) -* **themes:** add button ghost inverted theme ([dd71bbf](https://github.com/core-ds/core-components/commit/dd71bbf94ba3f7cc3502f1ff4f60dad4b023ff9e)) -* **toast:** remove extra prop ([6a8167a](https://github.com/core-ds/core-components/commit/6a8167a6685a290efc30ac9fc285ddc4b62bd1fe)) -* **toast:** review fixes ([50fea1d](https://github.com/core-ds/core-components/commit/50fea1d764a2b99b66a1212fa56c98958e34f147)) -* yet another fixes ([6ecd273](https://github.com/core-ds/core-components/commit/6ecd273b8900e9559e1b8a54a95d1874b4c4a7a3)) -* **themes:** updates ([86bd76f](https://github.com/core-ds/core-components/commit/86bd76fa1cb204b274c0092a5fcc0d984d3f57a1)) -* **toast:** add draft component ([d04fbb3](https://github.com/core-ds/core-components/commit/d04fbb315adda99553f87f5d8e477ff60314a070)) -* **toast:** add new component ([09de8b0](https://github.com/core-ds/core-components/commit/09de8b0ad2684b047d129929506a83127b2ccf99)) -* **toast:** add portal ([439148d](https://github.com/core-ds/core-components/commit/439148d04d950f21b0d7186c1cbc4e681f305d63)) -* **toast:** add stop, start timers ([b28ea98](https://github.com/core-ds/core-components/commit/b28ea982cec94eb9c0a50250d51cf173d0bc0a02)) -* **toast:** fix linter error ([e994512](https://github.com/core-ds/core-components/commit/e9945125a90935e205aee8e4a6bb8b762e352d25)) -* **toast:** fix linter problems ([e8342e8](https://github.com/core-ds/core-components/commit/e8342e89353b6f1a3935473c46a1694b2186561e)) -* **toast:** some fixes ([fe95b5d](https://github.com/core-ds/core-components/commit/fe95b5d8930698ab6d37ab6dd15497af056ac4ee)) -* **toast:** updates ([896ac02](https://github.com/core-ds/core-components/commit/896ac02f251d6b45698bdb35c08eb6131141080a)) -* **toast:** updates ([24cc308](https://github.com/core-ds/core-components/commit/24cc3089a04e7f86ca929192405b71209ed3ebe7)) -* **toast-plate:** change close button position to absolute ([2f9161d](https://github.com/core-ds/core-components/commit/2f9161d8b23647485df7759c1f5a4bbf0c113925)) -* **toast-plate:** design review fixes ([55b58fd](https://github.com/core-ds/core-components/commit/55b58fd1713c89bed3da74ede15487021477545d)) -* **toast-plate:** fix ([4e378ec](https://github.com/core-ds/core-components/commit/4e378ec7cd9901807458ff1c1a09c0cbf3c41401)) -* **toast-plate:** fix styles ([b600f86](https://github.com/core-ds/core-components/commit/b600f860b37c039f8a4272a9f27aa5689643b614)) -* **toast-plate:** fix styles ([14af3b4](https://github.com/core-ds/core-components/commit/14af3b49fe8803cec870cd946e3835f3b92cd3e8)) -* **toast-plate:** updates ([2303335](https://github.com/core-ds/core-components/commit/230333560732c11cff2c850db41112c398e6ab76)) - +- **notification:** move inner content to toast ([8b7a4e9](https://github.com/core-ds/core-components/commit/8b7a4e932a7ac684edc62d2039263d0b9183ff0a)) +- **popover:** fix transition ([f8564bc](https://github.com/core-ds/core-components/commit/f8564bceace99104b521fc92d037f7ef9c635f91)) +- **themes:** add button ghost inverted theme ([dd71bbf](https://github.com/core-ds/core-components/commit/dd71bbf94ba3f7cc3502f1ff4f60dad4b023ff9e)) +- **toast:** remove extra prop ([6a8167a](https://github.com/core-ds/core-components/commit/6a8167a6685a290efc30ac9fc285ddc4b62bd1fe)) +- **toast:** review fixes ([50fea1d](https://github.com/core-ds/core-components/commit/50fea1d764a2b99b66a1212fa56c98958e34f147)) +- yet another fixes ([6ecd273](https://github.com/core-ds/core-components/commit/6ecd273b8900e9559e1b8a54a95d1874b4c4a7a3)) +- **themes:** updates ([86bd76f](https://github.com/core-ds/core-components/commit/86bd76fa1cb204b274c0092a5fcc0d984d3f57a1)) +- **toast:** add draft component ([d04fbb3](https://github.com/core-ds/core-components/commit/d04fbb315adda99553f87f5d8e477ff60314a070)) +- **toast:** add new component ([09de8b0](https://github.com/core-ds/core-components/commit/09de8b0ad2684b047d129929506a83127b2ccf99)) +- **toast:** add portal ([439148d](https://github.com/core-ds/core-components/commit/439148d04d950f21b0d7186c1cbc4e681f305d63)) +- **toast:** add stop, start timers ([b28ea98](https://github.com/core-ds/core-components/commit/b28ea982cec94eb9c0a50250d51cf173d0bc0a02)) +- **toast:** fix linter error ([e994512](https://github.com/core-ds/core-components/commit/e9945125a90935e205aee8e4a6bb8b762e352d25)) +- **toast:** fix linter problems ([e8342e8](https://github.com/core-ds/core-components/commit/e8342e89353b6f1a3935473c46a1694b2186561e)) +- **toast:** some fixes ([fe95b5d](https://github.com/core-ds/core-components/commit/fe95b5d8930698ab6d37ab6dd15497af056ac4ee)) +- **toast:** updates ([896ac02](https://github.com/core-ds/core-components/commit/896ac02f251d6b45698bdb35c08eb6131141080a)) +- **toast:** updates ([24cc308](https://github.com/core-ds/core-components/commit/24cc3089a04e7f86ca929192405b71209ed3ebe7)) +- **toast-plate:** change close button position to absolute ([2f9161d](https://github.com/core-ds/core-components/commit/2f9161d8b23647485df7759c1f5a4bbf0c113925)) +- **toast-plate:** design review fixes ([55b58fd](https://github.com/core-ds/core-components/commit/55b58fd1713c89bed3da74ede15487021477545d)) +- **toast-plate:** fix ([4e378ec](https://github.com/core-ds/core-components/commit/4e378ec7cd9901807458ff1c1a09c0cbf3c41401)) +- **toast-plate:** fix styles ([b600f86](https://github.com/core-ds/core-components/commit/b600f860b37c039f8a4272a9f27aa5689643b614)) +- **toast-plate:** fix styles ([14af3b4](https://github.com/core-ds/core-components/commit/14af3b49fe8803cec870cd946e3835f3b92cd3e8)) +- **toast-plate:** updates ([2303335](https://github.com/core-ds/core-components/commit/230333560732c11cff2c850db41112c398e6ab76)) ### BREAKING CHANGES -* **popover:** fix popover transition, change Transition to CSSTransition +- **popover:** fix popover transition, change Transition to CSSTransition ## [8.3.1](https://github.com/core-ds/core-components/compare/v8.3.0...v8.3.1) (2021-02-03) - ### Bug Fixes -* update data and utils dependencies ([#496](https://github.com/core-ds/core-components/issues/496)) ([76eba5d](https://github.com/core-ds/core-components/commit/76eba5dec90fc8f7616018171ddbf97ddfe091ce)) +- update data and utils dependencies ([#496](https://github.com/core-ds/core-components/issues/496)) ([76eba5d](https://github.com/core-ds/core-components/commit/76eba5dec90fc8f7616018171ddbf97ddfe091ce)) # [8.3.0](https://github.com/core-ds/core-components/compare/v8.2.1...v8.3.0) (2021-02-01) - ### Bug Fixes -* **switch:** box-sizing issue ([#490](https://github.com/core-ds/core-components/issues/490)) ([73c9eb0](https://github.com/core-ds/core-components/commit/73c9eb0b682a7d8168ae97b9a524d56c65fbd5a5)) - +- **switch:** box-sizing issue ([#490](https://github.com/core-ds/core-components/issues/490)) ([73c9eb0](https://github.com/core-ds/core-components/commit/73c9eb0b682a7d8168ae97b9a524d56c65fbd5a5)) ### Features -* **calendar-range:** allow to select one-day range ([#491](https://github.com/core-ds/core-components/issues/491)) ([7fe56eb](https://github.com/core-ds/core-components/commit/7fe56eb7128146127b9b0732a945f11ee08980f3)) +- **calendar-range:** allow to select one-day range ([#491](https://github.com/core-ds/core-components/issues/491)) ([7fe56eb](https://github.com/core-ds/core-components/commit/7fe56eb7128146127b9b0732a945f11ee08980f3)) ## [8.2.1](https://github.com/core-ds/core-components/compare/v8.2.0...v8.2.1) (2021-02-01) - ### Bug Fixes -* **phone-input:** fix caret ([#493](https://github.com/core-ds/core-components/issues/493)) ([b510257](https://github.com/core-ds/core-components/commit/b510257a7793041766a1d7f4f0a8eae61ee69a8d)) -* **select:** fix safari overflow bug ([#492](https://github.com/core-ds/core-components/issues/492)) ([a273dc1](https://github.com/core-ds/core-components/commit/a273dc1372d171b0a36ad7acfa6e50e65b10a889)) +- **phone-input:** fix caret ([#493](https://github.com/core-ds/core-components/issues/493)) ([b510257](https://github.com/core-ds/core-components/commit/b510257a7793041766a1d7f4f0a8eae61ee69a8d)) +- **select:** fix safari overflow bug ([#492](https://github.com/core-ds/core-components/issues/492)) ([a273dc1](https://github.com/core-ds/core-components/commit/a273dc1372d171b0a36ad7acfa6e50e65b10a889)) # [8.2.0](https://github.com/core-ds/core-components/compare/v8.1.0...v8.2.0) (2021-01-28) - ### Features -* **button:** transparent view ([e395049](https://github.com/core-ds/core-components/commit/e39504987bf7c3afb01fc78151bff182199d08cb)) +- **button:** transparent view ([e395049](https://github.com/core-ds/core-components/commit/e39504987bf7c3afb01fc78151bff182199d08cb)) # [8.1.0](https://github.com/core-ds/core-components/compare/v8.0.3...v8.1.0) (2021-01-27) - ### Features -* **amount-input:** delete zero minor part in passed amount ([#484](https://github.com/core-ds/core-components/issues/484)) ([b787cb1](https://github.com/core-ds/core-components/commit/b787cb1ea1a56bc022470a644e4029bba623b151)) +- **amount-input:** delete zero minor part in passed amount ([#484](https://github.com/core-ds/core-components/issues/484)) ([b787cb1](https://github.com/core-ds/core-components/commit/b787cb1ea1a56bc022470a644e4029bba623b151)) # Changelog @@ -1523,17 +1343,15 @@ All notable changes to this project will be documented in this file. See [standa ## [8.0.2](https://github.com/core-ds/core-components/compare/v8.0.1...v8.0.2) (2021-01-20) - ### Bug Fixes -* **tag:** fix formatting ([#480](https://github.com/core-ds/core-components/issues/480)) ([111bf08](https://github.com/core-ds/core-components/commit/111bf08c068f4efe400ce6a25a60280a50fda7b4)) +- **tag:** fix formatting ([#480](https://github.com/core-ds/core-components/issues/480)) ([111bf08](https://github.com/core-ds/core-components/commit/111bf08c068f4efe400ce6a25a60280a50fda7b4)) ## [8.0.1](https://github.com/core-ds/core-components/compare/v8.0.0...v8.0.1) (2021-01-20) - ### Bug Fixes -* adds semantic release configs again ([01231a3](https://github.com/core-ds/core-components/commit/01231a3e0de52beb226d5f4bb350db54478307d3)) +- adds semantic release configs again ([01231a3](https://github.com/core-ds/core-components/commit/01231a3e0de52beb226d5f4bb350db54478307d3)) # Changelog @@ -1541,276 +1359,248 @@ All notable changes to this project will be documented in this file. See [standa ## [8.0.0](https://github.com/core-ds/core-components/compare/v7.0.0...v8.0.0) (2021-01-20) - ### ⚠ BREAKING CHANGES -* может затронуть кастомную стилизацию контролов +- может затронуть кастомную стилизацию контролов ### Features -* add fieldClassName ([#467](https://github.com/core-ds/core-components/issues/467)) ([8847c5a](https://github.com/core-ds/core-components/commit/8847c5a83187b97ab8f83b0149965a1d3825f89f)) -* add stylelint-core-vars ([#461](https://github.com/core-ds/core-components/issues/461)) ([c2f515e](https://github.com/core-ds/core-components/commit/c2f515e46a590815df66321ae8da011f5b2f24db)) -* **calendar:** add scrolling to selected year when open year select ([#471](https://github.com/core-ds/core-components/issues/471)) ([bf295ab](https://github.com/core-ds/core-components/commit/bf295ab281c80df550cd38d04e86f934e822f3eb)) -* **radio:** add addons ([7923354](https://github.com/core-ds/core-components/commit/7923354468ded0a2ea4602c7dae0eb722871c1f1)) -* **radio:** add align ([fe9faec](https://github.com/core-ds/core-components/commit/fe9faecb74b2528f5a2e18f1707dffa28ec29f7d)) -* **radio:** addons, align, block for Checkbox ([78c6f37](https://github.com/core-ds/core-components/commit/78c6f37ef7cb828ac4e8b54bd6edc9d9d4a151ab)) -* **radio:** addons, align, block for Switch ([df81ef9](https://github.com/core-ds/core-components/commit/df81ef9a6ad1c560c43d08741ba0e134a4658af3)) -* **radio:** fix reversed addons of switch ([30721a9](https://github.com/core-ds/core-components/commit/30721a9ee525aca73e9a73565755607b3abcfba3)) -* **radio:** fixes ([12128fb](https://github.com/core-ds/core-components/commit/12128fb8db85c27d0309ef806ef46673f4abbddc)) -* **radio:** fullWidth -> block ([97e0cf6](https://github.com/core-ds/core-components/commit/97e0cf65b0cc9a7dc60ec99ee16d4028a2c724cc)) -* **radio:** lil fixy ([7e8103a](https://github.com/core-ds/core-components/commit/7e8103a863194f0c5115b586aaddd0ba89f75469)) - +- add fieldClassName ([#467](https://github.com/core-ds/core-components/issues/467)) ([8847c5a](https://github.com/core-ds/core-components/commit/8847c5a83187b97ab8f83b0149965a1d3825f89f)) +- add stylelint-core-vars ([#461](https://github.com/core-ds/core-components/issues/461)) ([c2f515e](https://github.com/core-ds/core-components/commit/c2f515e46a590815df66321ae8da011f5b2f24db)) +- **calendar:** add scrolling to selected year when open year select ([#471](https://github.com/core-ds/core-components/issues/471)) ([bf295ab](https://github.com/core-ds/core-components/commit/bf295ab281c80df550cd38d04e86f934e822f3eb)) +- **radio:** add addons ([7923354](https://github.com/core-ds/core-components/commit/7923354468ded0a2ea4602c7dae0eb722871c1f1)) +- **radio:** add align ([fe9faec](https://github.com/core-ds/core-components/commit/fe9faecb74b2528f5a2e18f1707dffa28ec29f7d)) +- **radio:** addons, align, block for Checkbox ([78c6f37](https://github.com/core-ds/core-components/commit/78c6f37ef7cb828ac4e8b54bd6edc9d9d4a151ab)) +- **radio:** addons, align, block for Switch ([df81ef9](https://github.com/core-ds/core-components/commit/df81ef9a6ad1c560c43d08741ba0e134a4658af3)) +- **radio:** fix reversed addons of switch ([30721a9](https://github.com/core-ds/core-components/commit/30721a9ee525aca73e9a73565755607b3abcfba3)) +- **radio:** fixes ([12128fb](https://github.com/core-ds/core-components/commit/12128fb8db85c27d0309ef806ef46673f4abbddc)) +- **radio:** fullWidth -> block ([97e0cf6](https://github.com/core-ds/core-components/commit/97e0cf65b0cc9a7dc60ec99ee16d4028a2c724cc)) +- **radio:** lil fixy ([7e8103a](https://github.com/core-ds/core-components/commit/7e8103a863194f0c5115b586aaddd0ba89f75469)) ### Bug Fixes -* **amount:** fix story ([#463](https://github.com/core-ds/core-components/issues/463)) ([3e1d6c1](https://github.com/core-ds/core-components/commit/3e1d6c178cc7b0305b0f82e79588bf4d1fa40f91)) -* **calendar:** fix years-table position ([#474](https://github.com/core-ds/core-components/issues/474)) ([0f8cfe2](https://github.com/core-ds/core-components/commit/0f8cfe2b7405989f69d4df964bc2df7858c20ac6)) -* **input:** prevent autocomplete to change bgcolor ([#468](https://github.com/core-ds/core-components/issues/468)) ([d00abe3](https://github.com/core-ds/core-components/commit/d00abe396fad28d6e22887cf5878367d9a6997f8)) -* **input:** set aria-label attr when label passed ([#462](https://github.com/core-ds/core-components/issues/462)) ([c8e4489](https://github.com/core-ds/core-components/commit/c8e448929e9f1a63e9391dda4db2b0d3a7d94902)) -* **input-autocomplete:** fix mousedown issue ([#473](https://github.com/core-ds/core-components/issues/473)) ([889d5ff](https://github.com/core-ds/core-components/commit/889d5ffa35a6f2163107b646165dc2ecd2401887)) -* add fallback for IE for width: max-content ([22a88bb](https://github.com/core-ds/core-components/commit/22a88bb40b40e8ea6d8a7d618c2957ed33751a86)) -* fix style for form-control and base-select ([51f9800](https://github.com/core-ds/core-components/commit/51f9800f13a3c4d682be310fe155c2aaddcc7191)) -* **picker-button:** fix test ([639fbe6](https://github.com/core-ds/core-components/commit/639fbe69f5771e5ffbff5fe65a5e46d009a6bd7c)) +- **amount:** fix story ([#463](https://github.com/core-ds/core-components/issues/463)) ([3e1d6c1](https://github.com/core-ds/core-components/commit/3e1d6c178cc7b0305b0f82e79588bf4d1fa40f91)) +- **calendar:** fix years-table position ([#474](https://github.com/core-ds/core-components/issues/474)) ([0f8cfe2](https://github.com/core-ds/core-components/commit/0f8cfe2b7405989f69d4df964bc2df7858c20ac6)) +- **input:** prevent autocomplete to change bgcolor ([#468](https://github.com/core-ds/core-components/issues/468)) ([d00abe3](https://github.com/core-ds/core-components/commit/d00abe396fad28d6e22887cf5878367d9a6997f8)) +- **input:** set aria-label attr when label passed ([#462](https://github.com/core-ds/core-components/issues/462)) ([c8e4489](https://github.com/core-ds/core-components/commit/c8e448929e9f1a63e9391dda4db2b0d3a7d94902)) +- **input-autocomplete:** fix mousedown issue ([#473](https://github.com/core-ds/core-components/issues/473)) ([889d5ff](https://github.com/core-ds/core-components/commit/889d5ffa35a6f2163107b646165dc2ecd2401887)) +- add fallback for IE for width: max-content ([22a88bb](https://github.com/core-ds/core-components/commit/22a88bb40b40e8ea6d8a7d618c2957ed33751a86)) +- fix style for form-control and base-select ([51f9800](https://github.com/core-ds/core-components/commit/51f9800f13a3c4d682be310fe155c2aaddcc7191)) +- **picker-button:** fix test ([639fbe6](https://github.com/core-ds/core-components/commit/639fbe69f5771e5ffbff5fe65a5e46d009a6bd7c)) ## [7.0.0](https://github.com/core-ds/core-components/compare/v6.0.0...v7.0.0) (2020-12-30) - ### Features -* read-only state ([#459](https://github.com/core-ds/core-components/issues/459)) ([ed087c7](https://github.com/core-ds/core-components/commit/ed087c7f0440cb7ebdeb2883a3c3998c3c48fa30)) -* **checkbox:** size m ([9fdbf2b](https://github.com/core-ds/core-components/commit/9fdbf2ba938a5ef336020c17041ceaa6c524f1b0)) -* **collapse:** add component ([eea2a52](https://github.com/core-ds/core-components/commit/eea2a52de14dbada541735b7684090aee17a2bcd)) -* **collapse:** codestyle fixes ([74b780a](https://github.com/core-ds/core-components/commit/74b780a51fc0fb80b810e2e621fc08a1e0ca2dc6)) -* **collapse:** codestyle fixes again ([1cd37b7](https://github.com/core-ds/core-components/commit/1cd37b7894cc3b71dc29359c297ba15b261dea08)) -* **collapse:** fix icon ([5f64a69](https://github.com/core-ds/core-components/commit/5f64a69838d2e6803e0d744ce5b3699eefb600f8)) -* **collapse:** fixes ([81d48d0](https://github.com/core-ds/core-components/commit/81d48d0674be40241f781487df47c5fff6ad9658)) -* **collapse:** forgotten ref ([3a256fb](https://github.com/core-ds/core-components/commit/3a256fb74380b70bca89c9f491836caf5078e9cb)) -* **core-components-fade:** add fade ([459d2c0](https://github.com/core-ds/core-components/commit/459d2c0111f0ab9a3fd6a22c46ed27cbcd1df6e0)) -* **core-components-modal:** add modal ([2a71f1b](https://github.com/core-ds/core-components/commit/2a71f1bb2296306df359c9f051fbef44ca0abe6b)) -* **core-components-trap-focus:** add trap-focus ([a5be636](https://github.com/core-ds/core-components/commit/a5be6367b5a1683dae00a13dea1ab5bc103083cc)) -* **link:** simplify link without addons, fixes [#406](https://github.com/core-ds/core-components/issues/406) ([37288e4](https://github.com/core-ds/core-components/commit/37288e45eb529fcabdf9dc79e0cd04ba015a7d4e)) -* **modal:** hide ([9d02eba](https://github.com/core-ds/core-components/commit/9d02eba13214038b483dc43d696f38328a95c597)) -* **picker-button:** simplify picker-button using colorless icons ([bd0bdba](https://github.com/core-ds/core-components/commit/bd0bdbaa8425bca05b209d7680c9ecadb65235e1)) -* **radio:** size m ([c8dfb66](https://github.com/core-ds/core-components/commit/c8dfb66f5a5b3ab5b904edc57ac88ec6003b02ba)) -* **select:** add empty list placeholder prop ([#438](https://github.com/core-ds/core-components/issues/438)) ([75b0c9c](https://github.com/core-ds/core-components/commit/75b0c9c7824b0fcb6d4ae3e238d2eb858d615808)) -* **select:** popoverPosition, render to body, test issues ([#428](https://github.com/core-ds/core-components/issues/428)) ([7688ec7](https://github.com/core-ds/core-components/commit/7688ec74bce41dac4fff6fd36a61723f7ce1b9d3)), closes [#429](https://github.com/core-ds/core-components/issues/429) -* **select-with-tags:** add select with tags ([#435](https://github.com/core-ds/core-components/issues/435)) ([bc42165](https://github.com/core-ds/core-components/commit/bc42165b73e2c50455534c5c7f7aec4a5d155f75)) -* **themes:** arrow transform var with click theme ([35d4ef2](https://github.com/core-ds/core-components/commit/35d4ef2db379391c58919445e161c2234b1b16a9)) -* **themes:** fixed click theme for tag ([c0b4fad](https://github.com/core-ds/core-components/commit/c0b4fada71b1f44b5aead6e3a2b51dcccaacb0c4)) -* **themes:** updated tabs border colors ([5a41d86](https://github.com/core-ds/core-components/commit/5a41d86b23fd961e0e7b8a214906363551ae0e41)) - - -### Bug Fixes - -* **space:** removed excess div ([776e093](https://github.com/core-ds/core-components/commit/776e09393cc74eb31e4e56d3fba29a797f813a7f)) -* snapshots ([6d387a8](https://github.com/core-ds/core-components/commit/6d387a802a5eb1a5b150cb47ec35b5cbe3f086d7)) -* **calendar-range:** fix snapshot ([a135dde](https://github.com/core-ds/core-components/commit/a135ddee4ae99c576df85133984a247231fbb786)) -* **core-components-*:** fix class properties transform ([f407938](https://github.com/core-ds/core-components/commit/f4079384388728251fd90154758fc4aa100f50d6)) -* **core-components-*:** fix undefined refs ([ea5dac0](https://github.com/core-ds/core-components/commit/ea5dac0c5e4371a7224c0a2eddbd80a257675961)) -* **core-components-*:** portal related issues ([a5735fb](https://github.com/core-ds/core-components/commit/a5735fbc17110372464fdc7fa0c59bd072c1b525)) -* **core-components-*:** remove optional chaining to fix build issues ([75b0e7a](https://github.com/core-ds/core-components/commit/75b0e7a701c1f2891533d1242e7c83a83854f414)) -* **core-components-modal:** fix lint issues ([5fc1eb4](https://github.com/core-ds/core-components/commit/5fc1eb4c4a42dde687e2255e6a544b7a0e1b193f)) -* **core-components-portal:** update portal ([5638163](https://github.com/core-ds/core-components/commit/5638163e98e6c0c4a9ea3254761fe1fdb739c78e)) -* **core-components-vars:** import colors-transparent in index ([2109973](https://github.com/core-ds/core-components/commit/2109973ecfd4549f0cb2d711ee19ddd07faa415d)) -* **divider:** missed vars ([afeb14e](https://github.com/core-ds/core-components/commit/afeb14ea21281d49fdd24a456f4f18aaa6452cc9)) -* **modal:** fix class properties transform ([f6a1de5](https://github.com/core-ds/core-components/commit/f6a1de5b769bcf7605cc992a7e9ebf63445d1169)) -* **modal:** fix comments issues ([3c5c9e2](https://github.com/core-ds/core-components/commit/3c5c9e2704070a41cc466fd3ea7881ff13ea1edd)) -* **modal:** fix comments issues ([dd8370f](https://github.com/core-ds/core-components/commit/dd8370f79264d29c5de5b5fa558339cf98384486)) -* **portal:** revert "portal related issues" ([407489a](https://github.com/core-ds/core-components/commit/407489a4278f16806900e97fd2af3655e5b8b071)) -* **portal:** revert "update portal" ([d93aeb1](https://github.com/core-ds/core-components/commit/d93aeb1afdbef0c590d1586c7cd0c6d66f89da9b)) -* **themes:** fixed click select theme ([68dd29e](https://github.com/core-ds/core-components/commit/68dd29e6e0dcbdf4378687e9550d02c875d11b20)) +- read-only state ([#459](https://github.com/core-ds/core-components/issues/459)) ([ed087c7](https://github.com/core-ds/core-components/commit/ed087c7f0440cb7ebdeb2883a3c3998c3c48fa30)) +- **checkbox:** size m ([9fdbf2b](https://github.com/core-ds/core-components/commit/9fdbf2ba938a5ef336020c17041ceaa6c524f1b0)) +- **collapse:** add component ([eea2a52](https://github.com/core-ds/core-components/commit/eea2a52de14dbada541735b7684090aee17a2bcd)) +- **collapse:** codestyle fixes ([74b780a](https://github.com/core-ds/core-components/commit/74b780a51fc0fb80b810e2e621fc08a1e0ca2dc6)) +- **collapse:** codestyle fixes again ([1cd37b7](https://github.com/core-ds/core-components/commit/1cd37b7894cc3b71dc29359c297ba15b261dea08)) +- **collapse:** fix icon ([5f64a69](https://github.com/core-ds/core-components/commit/5f64a69838d2e6803e0d744ce5b3699eefb600f8)) +- **collapse:** fixes ([81d48d0](https://github.com/core-ds/core-components/commit/81d48d0674be40241f781487df47c5fff6ad9658)) +- **collapse:** forgotten ref ([3a256fb](https://github.com/core-ds/core-components/commit/3a256fb74380b70bca89c9f491836caf5078e9cb)) +- **core-components-fade:** add fade ([459d2c0](https://github.com/core-ds/core-components/commit/459d2c0111f0ab9a3fd6a22c46ed27cbcd1df6e0)) +- **core-components-modal:** add modal ([2a71f1b](https://github.com/core-ds/core-components/commit/2a71f1bb2296306df359c9f051fbef44ca0abe6b)) +- **core-components-trap-focus:** add trap-focus ([a5be636](https://github.com/core-ds/core-components/commit/a5be6367b5a1683dae00a13dea1ab5bc103083cc)) +- **link:** simplify link without addons, fixes [#406](https://github.com/core-ds/core-components/issues/406) ([37288e4](https://github.com/core-ds/core-components/commit/37288e45eb529fcabdf9dc79e0cd04ba015a7d4e)) +- **modal:** hide ([9d02eba](https://github.com/core-ds/core-components/commit/9d02eba13214038b483dc43d696f38328a95c597)) +- **picker-button:** simplify picker-button using colorless icons ([bd0bdba](https://github.com/core-ds/core-components/commit/bd0bdbaa8425bca05b209d7680c9ecadb65235e1)) +- **radio:** size m ([c8dfb66](https://github.com/core-ds/core-components/commit/c8dfb66f5a5b3ab5b904edc57ac88ec6003b02ba)) +- **select:** add empty list placeholder prop ([#438](https://github.com/core-ds/core-components/issues/438)) ([75b0c9c](https://github.com/core-ds/core-components/commit/75b0c9c7824b0fcb6d4ae3e238d2eb858d615808)) +- **select:** popoverPosition, render to body, test issues ([#428](https://github.com/core-ds/core-components/issues/428)) ([7688ec7](https://github.com/core-ds/core-components/commit/7688ec74bce41dac4fff6fd36a61723f7ce1b9d3)), closes [#429](https://github.com/core-ds/core-components/issues/429) +- **select-with-tags:** add select with tags ([#435](https://github.com/core-ds/core-components/issues/435)) ([bc42165](https://github.com/core-ds/core-components/commit/bc42165b73e2c50455534c5c7f7aec4a5d155f75)) +- **themes:** arrow transform var with click theme ([35d4ef2](https://github.com/core-ds/core-components/commit/35d4ef2db379391c58919445e161c2234b1b16a9)) +- **themes:** fixed click theme for tag ([c0b4fad](https://github.com/core-ds/core-components/commit/c0b4fada71b1f44b5aead6e3a2b51dcccaacb0c4)) +- **themes:** updated tabs border colors ([5a41d86](https://github.com/core-ds/core-components/commit/5a41d86b23fd961e0e7b8a214906363551ae0e41)) + +### Bug Fixes + +- **space:** removed excess div ([776e093](https://github.com/core-ds/core-components/commit/776e09393cc74eb31e4e56d3fba29a797f813a7f)) +- snapshots ([6d387a8](https://github.com/core-ds/core-components/commit/6d387a802a5eb1a5b150cb47ec35b5cbe3f086d7)) +- **calendar-range:** fix snapshot ([a135dde](https://github.com/core-ds/core-components/commit/a135ddee4ae99c576df85133984a247231fbb786)) +- **core-components-\*:** fix class properties transform ([f407938](https://github.com/core-ds/core-components/commit/f4079384388728251fd90154758fc4aa100f50d6)) +- **core-components-\*:** fix undefined refs ([ea5dac0](https://github.com/core-ds/core-components/commit/ea5dac0c5e4371a7224c0a2eddbd80a257675961)) +- **core-components-\*:** portal related issues ([a5735fb](https://github.com/core-ds/core-components/commit/a5735fbc17110372464fdc7fa0c59bd072c1b525)) +- **core-components-\*:** remove optional chaining to fix build issues ([75b0e7a](https://github.com/core-ds/core-components/commit/75b0e7a701c1f2891533d1242e7c83a83854f414)) +- **core-components-modal:** fix lint issues ([5fc1eb4](https://github.com/core-ds/core-components/commit/5fc1eb4c4a42dde687e2255e6a544b7a0e1b193f)) +- **core-components-portal:** update portal ([5638163](https://github.com/core-ds/core-components/commit/5638163e98e6c0c4a9ea3254761fe1fdb739c78e)) +- **core-components-vars:** import colors-transparent in index ([2109973](https://github.com/core-ds/core-components/commit/2109973ecfd4549f0cb2d711ee19ddd07faa415d)) +- **divider:** missed vars ([afeb14e](https://github.com/core-ds/core-components/commit/afeb14ea21281d49fdd24a456f4f18aaa6452cc9)) +- **modal:** fix class properties transform ([f6a1de5](https://github.com/core-ds/core-components/commit/f6a1de5b769bcf7605cc992a7e9ebf63445d1169)) +- **modal:** fix comments issues ([3c5c9e2](https://github.com/core-ds/core-components/commit/3c5c9e2704070a41cc466fd3ea7881ff13ea1edd)) +- **modal:** fix comments issues ([dd8370f](https://github.com/core-ds/core-components/commit/dd8370f79264d29c5de5b5fa558339cf98384486)) +- **portal:** revert "portal related issues" ([407489a](https://github.com/core-ds/core-components/commit/407489a4278f16806900e97fd2af3655e5b8b071)) +- **portal:** revert "update portal" ([d93aeb1](https://github.com/core-ds/core-components/commit/d93aeb1afdbef0c590d1586c7cd0c6d66f89da9b)) +- **themes:** fixed click select theme ([68dd29e](https://github.com/core-ds/core-components/commit/68dd29e6e0dcbdf4378687e9550d02c875d11b20)) ## [6.0.0](https://github.com/core-ds/core-components/compare/v5.10.0...v6.0.0) (2020-12-29) - ### Features -* **calendar-range:** add component ([#426](https://github.com/core-ds/core-components/issues/426)) ([7bf76d9](https://github.com/core-ds/core-components/commit/7bf76d9528ffae9b69bf6fdebf8a27e198393eaa)) -* **input-autocomplete:** dont close popover on input click ([#445](https://github.com/core-ds/core-components/issues/445)) ([5b49e54](https://github.com/core-ds/core-components/commit/5b49e542d3e4433024152ba6099d3992a4fc66e3)) -* **typography:** add default margins ([#446](https://github.com/core-ds/core-components/issues/446)) ([fb98d10](https://github.com/core-ds/core-components/commit/fb98d101651abfb7126dac3a7dee7226972f6a62)) -* change form-control styles ([#444](https://github.com/core-ds/core-components/issues/444)) ([2e464a8](https://github.com/core-ds/core-components/commit/2e464a87fba7ae6b60e0f58796f8663c3e456239)) - +- **calendar-range:** add component ([#426](https://github.com/core-ds/core-components/issues/426)) ([7bf76d9](https://github.com/core-ds/core-components/commit/7bf76d9528ffae9b69bf6fdebf8a27e198393eaa)) +- **input-autocomplete:** dont close popover on input click ([#445](https://github.com/core-ds/core-components/issues/445)) ([5b49e54](https://github.com/core-ds/core-components/commit/5b49e542d3e4433024152ba6099d3992a4fc66e3)) +- **typography:** add default margins ([#446](https://github.com/core-ds/core-components/issues/446)) ([fb98d10](https://github.com/core-ds/core-components/commit/fb98d101651abfb7126dac3a7dee7226972f6a62)) +- change form-control styles ([#444](https://github.com/core-ds/core-components/issues/444)) ([2e464a8](https://github.com/core-ds/core-components/commit/2e464a87fba7ae6b60e0f58796f8663c3e456239)) ### Bug Fixes -* **calendar:** snapshots timezone issue ([#448](https://github.com/core-ds/core-components/issues/448)) ([18f8080](https://github.com/core-ds/core-components/commit/18f80805499a78cec06377472cdf8d0e81b2378d)) -* **themes:** add missing variables import ([#449](https://github.com/core-ds/core-components/issues/449)) ([456c045](https://github.com/core-ds/core-components/commit/456c0450b484863287c24088eefc51d6d7396570)), closes [#442](https://github.com/core-ds/core-components/issues/442) -* **tooltip:** execute tooltip's target missing callbacks ([#443](https://github.com/core-ds/core-components/issues/443)) ([237cef1](https://github.com/core-ds/core-components/commit/237cef12805284bc036ddc59789771a3ad9c9210)) +- **calendar:** snapshots timezone issue ([#448](https://github.com/core-ds/core-components/issues/448)) ([18f8080](https://github.com/core-ds/core-components/commit/18f80805499a78cec06377472cdf8d0e81b2378d)) +- **themes:** add missing variables import ([#449](https://github.com/core-ds/core-components/issues/449)) ([456c045](https://github.com/core-ds/core-components/commit/456c0450b484863287c24088eefc51d6d7396570)), closes [#442](https://github.com/core-ds/core-components/issues/442) +- **tooltip:** execute tooltip's target missing callbacks ([#443](https://github.com/core-ds/core-components/issues/443)) ([237cef1](https://github.com/core-ds/core-components/commit/237cef12805284bc036ddc59789771a3ad9c9210)) ## [5.10.0](https://github.com/core-ds/core-components/compare/v5.9.1...v5.10.0) (2020-12-28) - ### Features -* **space:** codestyle ([36994db](https://github.com/core-ds/core-components/commit/36994db62086c32f4f583454e880bff915721193)) -* **space:** codestyle ([fc6d760](https://github.com/core-ds/core-components/commit/fc6d7604be3803cf6499dc7d2f034922a7858524)) -* **space:** first Space tests ([9434b91](https://github.com/core-ds/core-components/commit/9434b910f20737b58194c006a4d4d47fb931767f)) -* **space:** just add Space component ([945a456](https://github.com/core-ds/core-components/commit/945a45635e6a90f295c27a61dac9ec08676669c3)) -* **space:** lil fixes ([b9c588a](https://github.com/core-ds/core-components/commit/b9c588ab97e95e01d9962296d453b9bb2f712126)) -* **space:** remove label and more knobs ([e2af148](https://github.com/core-ds/core-components/commit/e2af148d1dc603495e2d6eb559502c6f363aa7f0)) -* **space:** remove label and more knobs 2 ([b85b459](https://github.com/core-ds/core-components/commit/b85b4595303c2ac2e2516db17b562d08da833204)) -* **space:** version ([f262441](https://github.com/core-ds/core-components/commit/f26244139550d96cc2503c60173d0bae7e9dbea5)) +- **space:** codestyle ([36994db](https://github.com/core-ds/core-components/commit/36994db62086c32f4f583454e880bff915721193)) +- **space:** codestyle ([fc6d760](https://github.com/core-ds/core-components/commit/fc6d7604be3803cf6499dc7d2f034922a7858524)) +- **space:** first Space tests ([9434b91](https://github.com/core-ds/core-components/commit/9434b910f20737b58194c006a4d4d47fb931767f)) +- **space:** just add Space component ([945a456](https://github.com/core-ds/core-components/commit/945a45635e6a90f295c27a61dac9ec08676669c3)) +- **space:** lil fixes ([b9c588a](https://github.com/core-ds/core-components/commit/b9c588ab97e95e01d9962296d453b9bb2f712126)) +- **space:** remove label and more knobs ([e2af148](https://github.com/core-ds/core-components/commit/e2af148d1dc603495e2d6eb559502c6f363aa7f0)) +- **space:** remove label and more knobs 2 ([b85b459](https://github.com/core-ds/core-components/commit/b85b4595303c2ac2e2516db17b562d08da833204)) +- **space:** version ([f262441](https://github.com/core-ds/core-components/commit/f26244139550d96cc2503c60173d0bae7e9dbea5)) ### [5.9.1](https://github.com/core-ds/core-components/compare/v5.9.0...v5.9.1) (2020-12-24) - ### Bug Fixes -* **calendar:** set max date to years calculation ([#441](https://github.com/core-ds/core-components/issues/441)) ([ec9fd36](https://github.com/core-ds/core-components/commit/ec9fd36c278bcb8cca209eb5a15690c5ac0dd3d8)) +- **calendar:** set max date to years calculation ([#441](https://github.com/core-ds/core-components/issues/441)) ([ec9fd36](https://github.com/core-ds/core-components/commit/ec9fd36c278bcb8cca209eb5a15690c5ac0dd3d8)) ## [5.9.0](https://github.com/core-ds/core-components/compare/v5.8.0...v5.9.0) (2020-12-21) - ### Features -* **select:** add exporting select utils ([#436](https://github.com/core-ds/core-components/issues/436)) ([0499ae9](https://github.com/core-ds/core-components/commit/0499ae9f36731d6b25a4f2501c1c760afdb8a687)) - +- **select:** add exporting select utils ([#436](https://github.com/core-ds/core-components/issues/436)) ([0499ae9](https://github.com/core-ds/core-components/commit/0499ae9f36731d6b25a4f2501c1c760afdb8a687)) ### Bug Fixes -* change icons imports paths ([#437](https://github.com/core-ds/core-components/issues/437)) ([e3d4e25](https://github.com/core-ds/core-components/commit/e3d4e2504b282810973eab14201844cd084c4237)) +- change icons imports paths ([#437](https://github.com/core-ds/core-components/issues/437)) ([e3d4e25](https://github.com/core-ds/core-components/commit/e3d4e2504b282810973eab14201844cd084c4237)) ## [5.8.0](https://github.com/core-ds/core-components/compare/v5.7.0...v5.8.0) (2020-12-17) - ### Bug Fixes -* **calendar:** vars import ([b8cabec](https://github.com/core-ds/core-components/commit/b8cabec5811e2ac0839d05335edee568dc360f54)) -* **calendar-input:** vars import, fix pattern ([f1f9336](https://github.com/core-ds/core-components/commit/f1f9336d7ae5ed62b4ee5123636fe1950bc25f34)) +- **calendar:** vars import ([b8cabec](https://github.com/core-ds/core-components/commit/b8cabec5811e2ac0839d05335edee568dc360f54)) +- **calendar-input:** vars import, fix pattern ([f1f9336](https://github.com/core-ds/core-components/commit/f1f9336d7ae5ed62b4ee5123636fe1950bc25f34)) ## [5.7.0](https://github.com/core-ds/core-components/compare/v5.6.0...v5.7.0) (2020-12-15) - ### Features -* **loader:** updated loader animation ([ec6b50c](https://github.com/core-ds/core-components/commit/ec6b50cf7942d93c89c4c5d0d8e98b3a96ab3509)) -* **slider-input:** use numeric mobile keyboard ([a866dab](https://github.com/core-ds/core-components/commit/a866dabf667f53e62733bd173f16b14c158e2368)) - +- **loader:** updated loader animation ([ec6b50c](https://github.com/core-ds/core-components/commit/ec6b50cf7942d93c89c4c5d0d8e98b3a96ab3509)) +- **slider-input:** use numeric mobile keyboard ([a866dab](https://github.com/core-ds/core-components/commit/a866dabf667f53e62733bd173f16b14c158e2368)) ### Bug Fixes -* **calendar-input:** fix focus issue ([60af1b9](https://github.com/core-ds/core-components/commit/60af1b92d076ce393ac308b64b93af182a68c933)) -* **calendar-input:** fix story ([ff2732d](https://github.com/core-ds/core-components/commit/ff2732da4c7dc35819aebdfdc224472d932a42a2)) -* **circular-progress-bar:** change max-height ([b587c87](https://github.com/core-ds/core-components/commit/b587c8747fe242b32ea11ebad38ef960cf5669b6)) -* **loader:** fixed animation start ([4df4712](https://github.com/core-ds/core-components/commit/4df47121429793652f9c838ec306072136f75931)) -* **picker-button:** remove global style ([281ed10](https://github.com/core-ds/core-components/commit/281ed10010756c8337cfa1965da2a58e8a1dfe42)) +- **calendar-input:** fix focus issue ([60af1b9](https://github.com/core-ds/core-components/commit/60af1b92d076ce393ac308b64b93af182a68c933)) +- **calendar-input:** fix story ([ff2732d](https://github.com/core-ds/core-components/commit/ff2732da4c7dc35819aebdfdc224472d932a42a2)) +- **circular-progress-bar:** change max-height ([b587c87](https://github.com/core-ds/core-components/commit/b587c8747fe242b32ea11ebad38ef960cf5669b6)) +- **loader:** fixed animation start ([4df4712](https://github.com/core-ds/core-components/commit/4df47121429793652f9c838ec306072136f75931)) +- **picker-button:** remove global style ([281ed10](https://github.com/core-ds/core-components/commit/281ed10010756c8337cfa1965da2a58e8a1dfe42)) ## [5.6.0](https://github.com/core-ds/core-components/compare/v5.5.0...v5.6.0) (2020-12-11) - ### Features -* **calendar:** add component ([#376](https://github.com/core-ds/core-components/issues/376)) ([2994d02](https://github.com/core-ds/core-components/commit/2994d02b49ad172d601f0fc63f89dea20896fd7d)), closes [#2](https://github.com/core-ds/core-components/issues/2) [#2](https://github.com/core-ds/core-components/issues/2) [#413](https://github.com/core-ds/core-components/issues/413) - +- **calendar:** add component ([#376](https://github.com/core-ds/core-components/issues/376)) ([2994d02](https://github.com/core-ds/core-components/commit/2994d02b49ad172d601f0fc63f89dea20896fd7d)), closes [#2](https://github.com/core-ds/core-components/issues/2) [#2](https://github.com/core-ds/core-components/issues/2) [#413](https://github.com/core-ds/core-components/issues/413) ### Bug Fixes -* **themes:** fix corp button themes ([#425](https://github.com/core-ds/core-components/issues/425)) ([2e49682](https://github.com/core-ds/core-components/commit/2e4968281a01c197bf98c37b791022fd8182d3a5)) -* snapshots ([03a70ef](https://github.com/core-ds/core-components/commit/03a70ef8c30e901347e718784a107d23bad127d6)) +- **themes:** fix corp button themes ([#425](https://github.com/core-ds/core-components/issues/425)) ([2e49682](https://github.com/core-ds/core-components/commit/2e4968281a01c197bf98c37b791022fd8182d3a5)) +- snapshots ([03a70ef](https://github.com/core-ds/core-components/commit/03a70ef8c30e901347e718784a107d23bad127d6)) ## [5.5.0](https://github.com/core-ds/core-components/compare/v5.4.1...v5.5.0) (2020-12-11) - ### Features -* **amount-input:** added integerLength prop ([881af44](https://github.com/core-ds/core-components/commit/881af44b1823560d522ac07a7359cc6c5739ba0e)) -* **button:** add conditions ([5f034f3](https://github.com/core-ds/core-components/commit/5f034f382fcb1dc1304c9c0b9ccdcff765c5c7fd)) -* **button:** add css to button ([34b23ed](https://github.com/core-ds/core-components/commit/34b23ed2885a39f00928c3df0e485d1966fe6ec0)) -* **button:** update snapshorts ([29c36ac](https://github.com/core-ds/core-components/commit/29c36ac278407a04be7726996bf50f54c150ba97)) -* **picker-button:** add compoonent PickerButton ([e14b73d](https://github.com/core-ds/core-components/commit/e14b73db302acd401010b9fd227e33de10eca9fc)) -* **themes:** add dark theme mixins ([#420](https://github.com/core-ds/core-components/issues/420)) ([6cfd317](https://github.com/core-ds/core-components/commit/6cfd31795e937e33cd37262b85057f3e977a900c)) -* **themes:** updated button mobile theme ([ebdf5a1](https://github.com/core-ds/core-components/commit/ebdf5a14b912bffcefe087b95d62d4a35531e09f)) -* **vars:** fresh tokens ([48f2591](https://github.com/core-ds/core-components/commit/48f2591d030e7852fbd239e7d91e4c4c2bed6468)) -* **vars:** new reverse shadows ([6c18699](https://github.com/core-ds/core-components/commit/6c18699b02044e1ba38561d0fcded98d89c67339)) - +- **amount-input:** added integerLength prop ([881af44](https://github.com/core-ds/core-components/commit/881af44b1823560d522ac07a7359cc6c5739ba0e)) +- **button:** add conditions ([5f034f3](https://github.com/core-ds/core-components/commit/5f034f382fcb1dc1304c9c0b9ccdcff765c5c7fd)) +- **button:** add css to button ([34b23ed](https://github.com/core-ds/core-components/commit/34b23ed2885a39f00928c3df0e485d1966fe6ec0)) +- **button:** update snapshorts ([29c36ac](https://github.com/core-ds/core-components/commit/29c36ac278407a04be7726996bf50f54c150ba97)) +- **picker-button:** add compoonent PickerButton ([e14b73d](https://github.com/core-ds/core-components/commit/e14b73db302acd401010b9fd227e33de10eca9fc)) +- **themes:** add dark theme mixins ([#420](https://github.com/core-ds/core-components/issues/420)) ([6cfd317](https://github.com/core-ds/core-components/commit/6cfd31795e937e33cd37262b85057f3e977a900c)) +- **themes:** updated button mobile theme ([ebdf5a1](https://github.com/core-ds/core-components/commit/ebdf5a14b912bffcefe087b95d62d4a35531e09f)) +- **vars:** fresh tokens ([48f2591](https://github.com/core-ds/core-components/commit/48f2591d030e7852fbd239e7d91e4c4c2bed6468)) +- **vars:** new reverse shadows ([6c18699](https://github.com/core-ds/core-components/commit/6c18699b02044e1ba38561d0fcded98d89c67339)) ### Bug Fixes -* delete extra cn ([#415](https://github.com/core-ds/core-components/issues/415)) ([d08966f](https://github.com/core-ds/core-components/commit/d08966fd00459d497640d27a27afa5d0d0fddab9)) -* **button:** design review fixes ([4eca9d1](https://github.com/core-ds/core-components/commit/4eca9d10185f6ffc42644086e679ba7f361cc4f1)) -* **list:** apply --list-marker-color only to marker ([5479f47](https://github.com/core-ds/core-components/commit/5479f47dd44fc8d9cfedb84f7787e5af84c1f41d)) -* **picker-button:** fix icon color ([f8d97b4](https://github.com/core-ds/core-components/commit/f8d97b44680fa2ace1539b11b5d0a318d45094aa)) +- delete extra cn ([#415](https://github.com/core-ds/core-components/issues/415)) ([d08966f](https://github.com/core-ds/core-components/commit/d08966fd00459d497640d27a27afa5d0d0fddab9)) +- **button:** design review fixes ([4eca9d1](https://github.com/core-ds/core-components/commit/4eca9d10185f6ffc42644086e679ba7f361cc4f1)) +- **list:** apply --list-marker-color only to marker ([5479f47](https://github.com/core-ds/core-components/commit/5479f47dd44fc8d9cfedb84f7787e5af84c1f41d)) +- **picker-button:** fix icon color ([f8d97b4](https://github.com/core-ds/core-components/commit/f8d97b44680fa2ace1539b11b5d0a318d45094aa)) ### [5.4.1](https://github.com/core-ds/core-components/compare/v5.4.0...v5.4.1) (2020-12-04) - ### Bug Fixes -* **themes:** remove imports from mixins ([4d878b5](https://github.com/core-ds/core-components/commit/4d878b59e46c1cfc1799182367421402af6462db)) +- **themes:** remove imports from mixins ([4d878b5](https://github.com/core-ds/core-components/commit/4d878b59e46c1cfc1799182367421402af6462db)) ## [5.4.0](https://github.com/core-ds/core-components/compare/v5.3.0...v5.4.0) (2020-12-03) - ### Features -* add inverted theme for link & button ([#405](https://github.com/core-ds/core-components/issues/405)) ([a3ccf39](https://github.com/core-ds/core-components/commit/a3ccf394369af6d5b0f8c8dd5d64a4b18eeb2155)) -* add update popover position prop ([#401](https://github.com/core-ds/core-components/issues/401)) ([5588870](https://github.com/core-ds/core-components/commit/5588870b663ba6547bf80853487da4620b2f74d6)) -* use disabled-cursor ([#399](https://github.com/core-ds/core-components/issues/399)) ([ba5ba74](https://github.com/core-ds/core-components/commit/ba5ba7492f2daf4974941130466dcffd3976662b)) -* **popover:** prevent flip ([#398](https://github.com/core-ds/core-components/issues/398)) ([c0c1723](https://github.com/core-ds/core-components/commit/c0c1723f15af7b8f09330bc5ce3ea549ea30afa1)) -* **select:** allow to use options as selected value ([#393](https://github.com/core-ds/core-components/issues/393)) ([a16f47a](https://github.com/core-ds/core-components/commit/a16f47ac6dd8f10c02a6ea38ec09963fab6f3942)) -* **select:** change optionslist shadow styles ([#397](https://github.com/core-ds/core-components/issues/397)) ([d13c1f8](https://github.com/core-ds/core-components/commit/d13c1f8eacd7a51152a065b5ed358515a3044c18)) - +- add inverted theme for link & button ([#405](https://github.com/core-ds/core-components/issues/405)) ([a3ccf39](https://github.com/core-ds/core-components/commit/a3ccf394369af6d5b0f8c8dd5d64a4b18eeb2155)) +- add update popover position prop ([#401](https://github.com/core-ds/core-components/issues/401)) ([5588870](https://github.com/core-ds/core-components/commit/5588870b663ba6547bf80853487da4620b2f74d6)) +- use disabled-cursor ([#399](https://github.com/core-ds/core-components/issues/399)) ([ba5ba74](https://github.com/core-ds/core-components/commit/ba5ba7492f2daf4974941130466dcffd3976662b)) +- **popover:** prevent flip ([#398](https://github.com/core-ds/core-components/issues/398)) ([c0c1723](https://github.com/core-ds/core-components/commit/c0c1723f15af7b8f09330bc5ce3ea549ea30afa1)) +- **select:** allow to use options as selected value ([#393](https://github.com/core-ds/core-components/issues/393)) ([a16f47a](https://github.com/core-ds/core-components/commit/a16f47ac6dd8f10c02a6ea38ec09963fab6f3942)) +- **select:** change optionslist shadow styles ([#397](https://github.com/core-ds/core-components/issues/397)) ([d13c1f8](https://github.com/core-ds/core-components/commit/d13c1f8eacd7a51152a065b5ed358515a3044c18)) ### Bug Fixes -* **circular-progress-bar:** fix label width ([#395](https://github.com/core-ds/core-components/issues/395)) ([1d3cb6b](https://github.com/core-ds/core-components/commit/1d3cb6b134bc85febd89ad8183f537abbda18482)), closes [#394](https://github.com/core-ds/core-components/issues/394) -* **mq:** use addListener and removeListener ([#402](https://github.com/core-ds/core-components/issues/402)) ([9918383](https://github.com/core-ds/core-components/commit/9918383c31b07ea2aad253765f2f17a88d00b943)) -* theme-switcher select value ([845de5d](https://github.com/core-ds/core-components/commit/845de5d5124a2459cad2cf40dd015d6580e68700)) +- **circular-progress-bar:** fix label width ([#395](https://github.com/core-ds/core-components/issues/395)) ([1d3cb6b](https://github.com/core-ds/core-components/commit/1d3cb6b134bc85febd89ad8183f537abbda18482)), closes [#394](https://github.com/core-ds/core-components/issues/394) +- **mq:** use addListener and removeListener ([#402](https://github.com/core-ds/core-components/issues/402)) ([9918383](https://github.com/core-ds/core-components/commit/9918383c31b07ea2aad253765f2f17a88d00b943)) +- theme-switcher select value ([845de5d](https://github.com/core-ds/core-components/commit/845de5d5124a2459cad2cf40dd015d6580e68700)) ## [5.3.0](https://github.com/core-ds/core-components/compare/v5.2.0...v5.3.0) (2020-11-27) - ### Features -* **core-components-card-image:** add cardImage component ([#326](https://github.com/core-ds/core-components/issues/326)) ([06901af](https://github.com/core-ds/core-components/commit/06901af839f48e5051fc6195446687b756420fc7)) -* **core-components-notification:** add component ([#357](https://github.com/core-ds/core-components/issues/357)) ([c6644a0](https://github.com/core-ds/core-components/commit/c6644a018b97dfc68e327bcbcff2edae802921be)), closes [#351](https://github.com/core-ds/core-components/issues/351) -* improve theme switcher ([#386](https://github.com/core-ds/core-components/issues/386)) ([9c5c4ec](https://github.com/core-ds/core-components/commit/9c5c4ec79e0940f54a76c83bd7017649a0f17093)) - +- **core-components-card-image:** add cardImage component ([#326](https://github.com/core-ds/core-components/issues/326)) ([06901af](https://github.com/core-ds/core-components/commit/06901af839f48e5051fc6195446687b756420fc7)) +- **core-components-notification:** add component ([#357](https://github.com/core-ds/core-components/issues/357)) ([c6644a0](https://github.com/core-ds/core-components/commit/c6644a018b97dfc68e327bcbcff2edae802921be)), closes [#351](https://github.com/core-ds/core-components/issues/351) +- improve theme switcher ([#386](https://github.com/core-ds/core-components/issues/386)) ([9c5c4ec](https://github.com/core-ds/core-components/commit/9c5c4ec79e0940f54a76c83bd7017649a0f17093)) ### Bug Fixes -* **confirmation:** fix symbols deleting ([#392](https://github.com/core-ds/core-components/issues/392)) ([fee41f1](https://github.com/core-ds/core-components/commit/fee41f17dfb84f9af2ad40e6150e1026ff07ada9)) +- **confirmation:** fix symbols deleting ([#392](https://github.com/core-ds/core-components/issues/392)) ([fee41f1](https://github.com/core-ds/core-components/commit/fee41f17dfb84f9af2ad40e6150e1026ff07ada9)) ## [5.2.0](https://github.com/core-ds/core-components/compare/v5.1.0...v5.2.0) (2020-11-25) - ### Features -* **core-components-typography:** add responsive title ([#362](https://github.com/core-ds/core-components/issues/362)) ([d3af0cd](https://github.com/core-ds/core-components/commit/d3af0cd52bcdbf92a1716e993104360acafcdc61)) - +- **core-components-typography:** add responsive title ([#362](https://github.com/core-ds/core-components/issues/362)) ([d3af0cd](https://github.com/core-ds/core-components/commit/d3af0cd52bcdbf92a1716e993104360acafcdc61)) ### Bug Fixes -* fix ie bundle ([#385](https://github.com/core-ds/core-components/issues/385)) ([9ca6024](https://github.com/core-ds/core-components/commit/9ca60245991903600c0308c9cd30955f39bd914f)) +- fix ie bundle ([#385](https://github.com/core-ds/core-components/issues/385)) ([9ca6024](https://github.com/core-ds/core-components/commit/9ca60245991903600c0308c9cd30955f39bd914f)) # [5.1.0](https://github.com/core-ds/core-components/compare/v5.0.0...v5.1.0) (2020-11-25) - ### Features -* **button:** design review fixes ([e8f5faf](https://github.com/core-ds/core-components/commit/e8f5faf42b2ea98eff7d5914076a1916008b13b9)) -* **checkbox:** improved theming ([cb1d196](https://github.com/core-ds/core-components/commit/cb1d196ade34622d5b92fc0ec5c20af5f5e27d3c)) -* **radio:** improved theming ([3dcb532](https://github.com/core-ds/core-components/commit/3dcb532b8b6d9a4e610a56b557a54f6c68e6ce46)) -* **switch:** improved theming ([b4ecc39](https://github.com/core-ds/core-components/commit/b4ecc399c706e1de7086e255e57219e3907414e0)) -* **themes:** experimental click theme for checkbox/radio/switch ([f5b2263](https://github.com/core-ds/core-components/commit/f5b22636af4b68b12b42158737e11af59e714848)) -* **themes:** updated click theme for tabs size m ([56dd5b6](https://github.com/core-ds/core-components/commit/56dd5b6530085de0a1dc6fc7be6cb78825c438f4)) +- **button:** design review fixes ([e8f5faf](https://github.com/core-ds/core-components/commit/e8f5faf42b2ea98eff7d5914076a1916008b13b9)) +- **checkbox:** improved theming ([cb1d196](https://github.com/core-ds/core-components/commit/cb1d196ade34622d5b92fc0ec5c20af5f5e27d3c)) +- **radio:** improved theming ([3dcb532](https://github.com/core-ds/core-components/commit/3dcb532b8b6d9a4e610a56b557a54f6c68e6ce46)) +- **switch:** improved theming ([b4ecc39](https://github.com/core-ds/core-components/commit/b4ecc399c706e1de7086e255e57219e3907414e0)) +- **themes:** experimental click theme for checkbox/radio/switch ([f5b2263](https://github.com/core-ds/core-components/commit/f5b22636af4b68b12b42158737e11af59e714848)) +- **themes:** updated click theme for tabs size m ([56dd5b6](https://github.com/core-ds/core-components/commit/56dd5b6530085de0a1dc6fc7be6cb78825c438f4)) # [5.0.0](https://github.com/core-ds/core-components/compare/v4.5.1...v5.0.0) (2020-11-25) - ### Bug Fixes -* slightly better and safer ie fixes ([0e34b4f](https://github.com/core-ds/core-components/commit/0e34b4fb9800a435c05dc8f83146ce5617cf99a5)) - +- slightly better and safer ie fixes ([0e34b4f](https://github.com/core-ds/core-components/commit/0e34b4fb9800a435c05dc8f83146ce5617cf99a5)) ### Features -* remove extra vars, update docs ([#370](https://github.com/core-ds/core-components/issues/370)) ([af1b133](https://github.com/core-ds/core-components/commit/af1b1339e768e59a2377409bf164cc8c439bd3bf)) - +- remove extra vars, update docs ([#370](https://github.com/core-ds/core-components/issues/370)) ([af1b133](https://github.com/core-ds/core-components/commit/af1b1339e768e59a2377409bf164cc8c439bd3bf)) ### BREAKING CHANGES -* remove packages/vars/src/breakpoints.css +- remove packages/vars/src/breakpoints.css # Changelog @@ -1818,308 +1608,272 @@ All notable changes to this project will be documented in this file. See [standa ### [4.5.1](https://github.com/core-ds/core-components/compare/v4.5.0...v4.5.1) (2020-11-24) - ### Features -* **button:** updated addons margin, use gaps ([514fb86](https://github.com/core-ds/core-components/commit/514fb863e41956be7f4888e03a886ab7d35029b1)) -* **select:** change arrow icon ([6335973](https://github.com/core-ds/core-components/commit/63359734754308eeca217526d2f4f652f78fc79d)) - +- **button:** updated addons margin, use gaps ([514fb86](https://github.com/core-ds/core-components/commit/514fb863e41956be7f4888e03a886ab7d35029b1)) +- **select:** change arrow icon ([6335973](https://github.com/core-ds/core-components/commit/63359734754308eeca217526d2f4f652f78fc79d)) ### Bug Fixes -* **form-control:** fix height ([#380](https://github.com/core-ds/core-components/issues/380)) ([afc3722](https://github.com/core-ds/core-components/commit/afc3722dc08eb3f742eaec53be5b0233afad02c3)) +- **form-control:** fix height ([#380](https://github.com/core-ds/core-components/issues/380)) ([afc3722](https://github.com/core-ds/core-components/commit/afc3722dc08eb3f742eaec53be5b0233afad02c3)) ### [4.5.0](https://github.com/core-ds/core-components/compare/v4.4.1...v4.5.0) (2020-11-23) - ### Features -* **core-components-button:** added nowrap ([#365](https://github.com/core-ds/core-components/issues/365)) ([99a87eb](https://github.com/core-ds/core-components/commit/99a87ebd4c97e325b7724b70991b00ca121601da)) -* **core-components-spinner:** add spinner component ([#360](https://github.com/core-ds/core-components/issues/360)) ([8c6e453](https://github.com/core-ds/core-components/commit/8c6e45341b0ac6232e2fc89ed6860bb8ccbc371c)) -* **input-autocomplete:** revert arrow ([07f0ef4](https://github.com/core-ds/core-components/commit/07f0ef45a7cdd27132861932c7fa93ab0c00a024)) - +- **core-components-button:** added nowrap ([#365](https://github.com/core-ds/core-components/issues/365)) ([99a87eb](https://github.com/core-ds/core-components/commit/99a87ebd4c97e325b7724b70991b00ca121601da)) +- **core-components-spinner:** add spinner component ([#360](https://github.com/core-ds/core-components/issues/360)) ([8c6e453](https://github.com/core-ds/core-components/commit/8c6e45341b0ac6232e2fc89ed6860bb8ccbc371c)) +- **input-autocomplete:** revert arrow ([07f0ef4](https://github.com/core-ds/core-components/commit/07f0ef45a7cdd27132861932c7fa93ab0c00a024)) ### Bug Fixes -* **button:** show loader when href is set ([#374](https://github.com/core-ds/core-components/issues/374)) ([79d6750](https://github.com/core-ds/core-components/commit/79d675007a86fe1e36e77376ba7a3afa3b8045e8)) -* **plate:** remove redunadant className ([#373](https://github.com/core-ds/core-components/issues/373)) ([fdd6b3d](https://github.com/core-ds/core-components/commit/fdd6b3dabb0b5b607d6c84471640c73e65128d0e)), closes [#366](https://github.com/core-ds/core-components/issues/366) -* **radio:** fix input width ([#378](https://github.com/core-ds/core-components/issues/378)) ([369684e](https://github.com/core-ds/core-components/commit/369684ed2ce7aae07a00941e663accf82f8f2763)) +- **button:** show loader when href is set ([#374](https://github.com/core-ds/core-components/issues/374)) ([79d6750](https://github.com/core-ds/core-components/commit/79d675007a86fe1e36e77376ba7a3afa3b8045e8)) +- **plate:** remove redunadant className ([#373](https://github.com/core-ds/core-components/issues/373)) ([fdd6b3d](https://github.com/core-ds/core-components/commit/fdd6b3dabb0b5b607d6c84471640c73e65128d0e)), closes [#366](https://github.com/core-ds/core-components/issues/366) +- **radio:** fix input width ([#378](https://github.com/core-ds/core-components/issues/378)) ([369684e](https://github.com/core-ds/core-components/commit/369684ed2ce7aae07a00941e663accf82f8f2763)) ### [4.4.1](https://github.com/core-ds/core-components/compare/v4.4.0...v4.4.1) (2020-11-19) - ### Bug Fixes -* **select:** fix wrong options height ([18f26d9](https://github.com/core-ds/core-components/commit/18f26d9e6c0d9b99c4396f0b6d86b352014fac0a)) +- **select:** fix wrong options height ([18f26d9](https://github.com/core-ds/core-components/commit/18f26d9e6c0d9b99c4396f0b6d86b352014fac0a)) ## [4.4.0](https://github.com/core-ds/core-components/compare/v4.3.1...v4.4.0) (2020-11-17) - ### Features -* **core-components-tabs:** addons and container class name ([#361](https://github.com/core-ds/core-components/issues/361)) ([68f1322](https://github.com/core-ds/core-components/commit/68f1322436a5d083a3a98a4405b1d94540e0b8dc)) -* **core-components-vars:** add breakpoints ([#358](https://github.com/core-ds/core-components/issues/358)) ([9cd5699](https://github.com/core-ds/core-components/commit/9cd569915b4af8c3d92045aea23b2faa054ba241)) +- **core-components-tabs:** addons and container class name ([#361](https://github.com/core-ds/core-components/issues/361)) ([68f1322](https://github.com/core-ds/core-components/commit/68f1322436a5d083a3a98a4405b1d94540e0b8dc)) +- **core-components-vars:** add breakpoints ([#358](https://github.com/core-ds/core-components/issues/358)) ([9cd5699](https://github.com/core-ds/core-components/commit/9cd569915b4af8c3d92045aea23b2faa054ba241)) ### [4.3.1](https://github.com/core-ds/core-components/compare/v4.3.0...v4.3.1) (2020-11-16) ## [4.3.0](https://github.com/core-ds/core-components/compare/v4.2.0...v4.3.0) (2020-11-14) - ### Features -* **core-components-mq:** add component and hook ([#350](https://github.com/core-ds/core-components/issues/350)) ([6dbd11f](https://github.com/core-ds/core-components/commit/6dbd11f4e3dc369dd645638f46f49b4e0e6c13e6)) +- **core-components-mq:** add component and hook ([#350](https://github.com/core-ds/core-components/issues/350)) ([6dbd11f](https://github.com/core-ds/core-components/commit/6dbd11f4e3dc369dd645638f46f49b4e0e6c13e6)) ## [4.2.0](https://github.com/core-ds/core-components/compare/v4.1.0...v4.2.0) (2020-11-11) - ### Features -* icons & arrow ([#356](https://github.com/core-ds/core-components/issues/356)) ([e263356](https://github.com/core-ds/core-components/commit/e263356b7fd1537ae5c434ddc9c5cb074a2e7ab8)) +- icons & arrow ([#356](https://github.com/core-ds/core-components/issues/356)) ([e263356](https://github.com/core-ds/core-components/commit/e263356b7fd1537ae5c434ddc9c5cb074a2e7ab8)) ## [4.1.0](https://github.com/core-ds/core-components/compare/v4.0.4...v4.1.0) (2020-11-09) - ### Features -* **core-components-form-control:** set opactiy in disabled state ([#342](https://github.com/core-ds/core-components/issues/342)) ([586a8d1](https://github.com/core-ds/core-components/commit/586a8d15f1be9fe6ceea62ac2231c7ecb1125b7e)) -* **core-components-intl-phone-input:** add component ([#333](https://github.com/core-ds/core-components/issues/333)) ([4d7c71d](https://github.com/core-ds/core-components/commit/4d7c71d3ace0d44ba1045ab4d2774575e1db65f9)), closes [#336](https://github.com/core-ds/core-components/issues/336) [#334](https://github.com/core-ds/core-components/issues/334) -* **core-components-link:** add slots ([#337](https://github.com/core-ds/core-components/issues/337)) ([86f0886](https://github.com/core-ds/core-components/commit/86f0886129f9119a74a5a054232726f871c1634e)) -* **core-components-list-header:** add component ([#344](https://github.com/core-ds/core-components/issues/344)) ([cce69f3](https://github.com/core-ds/core-components/commit/cce69f30d1671d4344e0a85f62516e1f7a1f9266)) -* **core-components-plate:** add component ([62e18bf](https://github.com/core-ds/core-components/commit/62e18bf581651bca66a74c0d02b945522b452b4a)), closes [#340](https://github.com/core-ds/core-components/issues/340) +- **core-components-form-control:** set opactiy in disabled state ([#342](https://github.com/core-ds/core-components/issues/342)) ([586a8d1](https://github.com/core-ds/core-components/commit/586a8d15f1be9fe6ceea62ac2231c7ecb1125b7e)) +- **core-components-intl-phone-input:** add component ([#333](https://github.com/core-ds/core-components/issues/333)) ([4d7c71d](https://github.com/core-ds/core-components/commit/4d7c71d3ace0d44ba1045ab4d2774575e1db65f9)), closes [#336](https://github.com/core-ds/core-components/issues/336) [#334](https://github.com/core-ds/core-components/issues/334) +- **core-components-link:** add slots ([#337](https://github.com/core-ds/core-components/issues/337)) ([86f0886](https://github.com/core-ds/core-components/commit/86f0886129f9119a74a5a054232726f871c1634e)) +- **core-components-list-header:** add component ([#344](https://github.com/core-ds/core-components/issues/344)) ([cce69f3](https://github.com/core-ds/core-components/commit/cce69f30d1671d4344e0a85f62516e1f7a1f9266)) +- **core-components-plate:** add component ([62e18bf](https://github.com/core-ds/core-components/commit/62e18bf581651bca66a74c0d02b945522b452b4a)), closes [#340](https://github.com/core-ds/core-components/issues/340) ### [4.0.4](https://github.com/core-ds/core-components/compare/v4.0.3...v4.0.4) (2020-11-03) - ### Bug Fixes -* **core-components-amount-input:** missing handlers ([be512d5](https://github.com/core-ds/core-components/commit/be512d51fae847f2dd7a4e939adbbd93aadcff67)) +- **core-components-amount-input:** missing handlers ([be512d5](https://github.com/core-ds/core-components/commit/be512d51fae847f2dd7a4e939adbbd93aadcff67)) ### [4.0.3](https://github.com/core-ds/core-components/compare/v4.0.2...v4.0.3) (2020-10-30) ### [4.0.2](https://github.com/core-ds/core-components/compare/v4.0.1...v4.0.2) (2020-10-29) - ### Bug Fixes -* **core-components-confirmation:** fix showed keyboard on old devices ([#341](https://github.com/core-ds/core-components/issues/341)) ([7165ed1](https://github.com/core-ds/core-components/commit/7165ed1846910ffcef685cb35f8ec9afd802116f)) +- **core-components-confirmation:** fix showed keyboard on old devices ([#341](https://github.com/core-ds/core-components/issues/341)) ([7165ed1](https://github.com/core-ds/core-components/commit/7165ed1846910ffcef685cb35f8ec9afd802116f)) ### [4.0.1](https://github.com/core-ds/core-components/compare/v4.0.0...v4.0.1) (2020-10-28) - ### Features -* **core-components-select:** add missing changes ([053b512](https://github.com/core-ds/core-components/commit/053b512382028863c1bb2aa7c6c1e8296cbc29c4)) +- **core-components-select:** add missing changes ([053b512](https://github.com/core-ds/core-components/commit/053b512382028863c1bb2aa7c6c1e8296cbc29c4)) ## [4.0.0](https://github.com/core-ds/core-components/compare/v3.1.0...v4.0.0) (2020-10-27) - ### ⚠ BREAKING CHANGES -* **core-components-confirmation:** separate error and error text +- **core-components-confirmation:** separate error and error text -* feat(core-components-confirmation): fix margins +- feat(core-components-confirmation): fix margins ### Features -* **core-components-badge:** add component ([#330](https://github.com/core-ds/core-components/issues/330)) ([eb1c617](https://github.com/core-ds/core-components/commit/eb1c617ed03366060f7a60a9bd13396159cfce72)), closes [#327](https://github.com/core-ds/core-components/issues/327) -* **core-components-confirmation:** separate error and error text ([#329](https://github.com/core-ds/core-components/issues/329)) ([03fc4fb](https://github.com/core-ds/core-components/commit/03fc4fb85fd9f5636493fdf6d79440227c8a0be0)) -* **core-components-input:** hide clear if input is readonly ([#328](https://github.com/core-ds/core-components/issues/328)) ([93f7ba4](https://github.com/core-ds/core-components/commit/93f7ba429fb8e8f430d3dfadefe8375d6ea2e642)) -* **core-components-select:** inputs & types ([#323](https://github.com/core-ds/core-components/issues/323)) ([0f4d547](https://github.com/core-ds/core-components/commit/0f4d547c3a5792e095de2011db2c6c1e9dbfb386)) -* **core-components-slider-input:** update stories ([d6a2937](https://github.com/core-ds/core-components/commit/d6a29370739d15427c961b58c553d22c9df87799)) +- **core-components-badge:** add component ([#330](https://github.com/core-ds/core-components/issues/330)) ([eb1c617](https://github.com/core-ds/core-components/commit/eb1c617ed03366060f7a60a9bd13396159cfce72)), closes [#327](https://github.com/core-ds/core-components/issues/327) +- **core-components-confirmation:** separate error and error text ([#329](https://github.com/core-ds/core-components/issues/329)) ([03fc4fb](https://github.com/core-ds/core-components/commit/03fc4fb85fd9f5636493fdf6d79440227c8a0be0)) +- **core-components-input:** hide clear if input is readonly ([#328](https://github.com/core-ds/core-components/issues/328)) ([93f7ba4](https://github.com/core-ds/core-components/commit/93f7ba429fb8e8f430d3dfadefe8375d6ea2e642)) +- **core-components-select:** inputs & types ([#323](https://github.com/core-ds/core-components/issues/323)) ([0f4d547](https://github.com/core-ds/core-components/commit/0f4d547c3a5792e095de2011db2c6c1e9dbfb386)) +- **core-components-slider-input:** update stories ([d6a2937](https://github.com/core-ds/core-components/commit/d6a29370739d15427c961b58c553d22c9df87799)) ## [3.1.0](https://github.com/core-ds/core-components/compare/v3.0.1...v3.1.0) (2020-10-20) - ### Features -* **core-components-form-control:** add addons classname ([707cd54](https://github.com/core-ds/core-components/commit/707cd547b2b695cb7585c996efcb8c070b789038)) -* **core-components-input:** add addons classname ([9f40cdc](https://github.com/core-ds/core-components/commit/9f40cdc2a79feea9b5b3d5cdb411676f0ff05f35)) - +- **core-components-form-control:** add addons classname ([707cd54](https://github.com/core-ds/core-components/commit/707cd547b2b695cb7585c996efcb8c070b789038)) +- **core-components-input:** add addons classname ([9f40cdc](https://github.com/core-ds/core-components/commit/9f40cdc2a79feea9b5b3d5cdb411676f0ff05f35)) ### Bug Fixes -* **core-components-bank-card:** label styles ([#316](https://github.com/core-ds/core-components/issues/316)) ([31ea1ce](https://github.com/core-ds/core-components/commit/31ea1cec588cacd425b35b3e71d4a18925b71a5a)) -* **core-components-form-control:** fix hover state ([#317](https://github.com/core-ds/core-components/issues/317)) ([41b2d51](https://github.com/core-ds/core-components/commit/41b2d51fdbf2fc729a1180d6a515ee56b521c555)) +- **core-components-bank-card:** label styles ([#316](https://github.com/core-ds/core-components/issues/316)) ([31ea1ce](https://github.com/core-ds/core-components/commit/31ea1cec588cacd425b35b3e71d4a18925b71a5a)) +- **core-components-form-control:** fix hover state ([#317](https://github.com/core-ds/core-components/issues/317)) ([41b2d51](https://github.com/core-ds/core-components/commit/41b2d51fdbf2fc729a1180d6a515ee56b521c555)) ### [3.0.1](https://github.com/core-ds/core-components/compare/v3.0.0...v3.0.1) (2020-10-14) - ### Bug Fixes -* typings issue ([dd17a7b](https://github.com/core-ds/core-components/commit/dd17a7b0c04413dce337c2eecd8bc197e580e067)) +- typings issue ([dd17a7b](https://github.com/core-ds/core-components/commit/dd17a7b0c04413dce337c2eecd8bc197e580e067)) ## [3.0.0](https://github.com/core-ds/core-components/compare/v2.2.0...v3.0.0) (2020-10-13) - ### Features -* **core-components-bank-card:** change caret color ([1b69839](https://github.com/core-ds/core-components/commit/1b698399bbcb3afaea80e81f0cbfa9d3d13074ff)) -* **core-components-confirmation:** fixes ([#311](https://github.com/core-ds/core-components/issues/311)) ([e56a137](https://github.com/core-ds/core-components/commit/e56a137a62e78e56ac63f3d701660fc8a7c5658a)) -* **core-components-input:** add filled and focused classNames ([ebaac73](https://github.com/core-ds/core-components/commit/ebaac73103caf4601e8df7302af14f79f8a096d1)) -* **core-components-input:** updated input click theme ([#315](https://github.com/core-ds/core-components/issues/315)) ([69e6f81](https://github.com/core-ds/core-components/commit/69e6f81cc85fac5f5c988e2e409b82ad25ef8a6f)) -* **core-components-list:** adds a new component ([#296](https://github.com/core-ds/core-components/issues/296)) ([7d5a93d](https://github.com/core-ds/core-components/commit/7d5a93d8318a71d61da91c0bf1a2f88896242fee)) -* **core-components-select:** show error icon and arrow both ([#299](https://github.com/core-ds/core-components/issues/299)) ([b563989](https://github.com/core-ds/core-components/commit/b563989a57bf64a9450915d0d0d73687f5358d06)) -* **core-components-slider:** add component ([#285](https://github.com/core-ds/core-components/issues/285)) ([57a645e](https://github.com/core-ds/core-components/commit/57a645e735af3218b77c92ce8a66b7efc64f53ad)) -* **core-components-slider-input:** add component ([#288](https://github.com/core-ds/core-components/issues/288)) ([901df73](https://github.com/core-ds/core-components/commit/901df73692bf019a06db7d6d056f2cb6ee9e5f8d)), closes [#294](https://github.com/core-ds/core-components/issues/294) -* **core-components-vars:** update primitives ([#291](https://github.com/core-ds/core-components/issues/291)) ([d995190](https://github.com/core-ds/core-components/commit/d9951902b1d9325e7e7a88e302d23eafd2705643)) -* **core-components-vars:** updated colors addons ([5206618](https://github.com/core-ds/core-components/commit/5206618ffa8ad9a441120b871e8950196ed6540f)) -* **core-components-with-suffix:** add hoc ([7055c98](https://github.com/core-ds/core-components/commit/7055c98ca5c1c6dda33323522c5168bc6657850b)) -* **core-components-with-suffix:** add hoc ([#301](https://github.com/core-ds/core-components/issues/301)) ([df9b797](https://github.com/core-ds/core-components/commit/df9b79781d3f831360a71dbc0816f795b95e288f)) - +- **core-components-bank-card:** change caret color ([1b69839](https://github.com/core-ds/core-components/commit/1b698399bbcb3afaea80e81f0cbfa9d3d13074ff)) +- **core-components-confirmation:** fixes ([#311](https://github.com/core-ds/core-components/issues/311)) ([e56a137](https://github.com/core-ds/core-components/commit/e56a137a62e78e56ac63f3d701660fc8a7c5658a)) +- **core-components-input:** add filled and focused classNames ([ebaac73](https://github.com/core-ds/core-components/commit/ebaac73103caf4601e8df7302af14f79f8a096d1)) +- **core-components-input:** updated input click theme ([#315](https://github.com/core-ds/core-components/issues/315)) ([69e6f81](https://github.com/core-ds/core-components/commit/69e6f81cc85fac5f5c988e2e409b82ad25ef8a6f)) +- **core-components-list:** adds a new component ([#296](https://github.com/core-ds/core-components/issues/296)) ([7d5a93d](https://github.com/core-ds/core-components/commit/7d5a93d8318a71d61da91c0bf1a2f88896242fee)) +- **core-components-select:** show error icon and arrow both ([#299](https://github.com/core-ds/core-components/issues/299)) ([b563989](https://github.com/core-ds/core-components/commit/b563989a57bf64a9450915d0d0d73687f5358d06)) +- **core-components-slider:** add component ([#285](https://github.com/core-ds/core-components/issues/285)) ([57a645e](https://github.com/core-ds/core-components/commit/57a645e735af3218b77c92ce8a66b7efc64f53ad)) +- **core-components-slider-input:** add component ([#288](https://github.com/core-ds/core-components/issues/288)) ([901df73](https://github.com/core-ds/core-components/commit/901df73692bf019a06db7d6d056f2cb6ee9e5f8d)), closes [#294](https://github.com/core-ds/core-components/issues/294) +- **core-components-vars:** update primitives ([#291](https://github.com/core-ds/core-components/issues/291)) ([d995190](https://github.com/core-ds/core-components/commit/d9951902b1d9325e7e7a88e302d23eafd2705643)) +- **core-components-vars:** updated colors addons ([5206618](https://github.com/core-ds/core-components/commit/5206618ffa8ad9a441120b871e8950196ed6540f)) +- **core-components-with-suffix:** add hoc ([7055c98](https://github.com/core-ds/core-components/commit/7055c98ca5c1c6dda33323522c5168bc6657850b)) +- **core-components-with-suffix:** add hoc ([#301](https://github.com/core-ds/core-components/issues/301)) ([df9b797](https://github.com/core-ds/core-components/commit/df9b79781d3f831360a71dbc0816f795b95e288f)) ### Bug Fixes -* **core-components-bank-card:** deleting issue, add useCallback ([#309](https://github.com/core-ds/core-components/issues/309)) ([5f768bd](https://github.com/core-ds/core-components/commit/5f768bd3b0242d4f0adae25c33b8c38575bfedef)) -* **core-components-button:** add text align ([#306](https://github.com/core-ds/core-components/issues/306)) ([a60a4dc](https://github.com/core-ds/core-components/commit/a60a4dcb7f7280c6c4e4628deb48456fde3c6171)) -* **core-components-button:** fixed primary button background color ([874e203](https://github.com/core-ds/core-components/commit/874e20336bea6500c75b207bf2cc14262bb878ff)) -* **core-components-tabs:** fix styles build ([#310](https://github.com/core-ds/core-components/issues/310)) ([d05a0ef](https://github.com/core-ds/core-components/commit/d05a0ef86880903e3e33703ef245655cf11e66e7)), closes [#314](https://github.com/core-ds/core-components/issues/314) -* **core-components-themes:** add all vars import ([6d50c3e](https://github.com/core-ds/core-components/commit/6d50c3e089f0e31721adaaf0b56b741b8dec6a7a)) -* **core-components-themes:** process color-mod, fix vars ([5d77f9b](https://github.com/core-ds/core-components/commit/5d77f9be7766f13ac100130a2ff95f6735fe05d9)) -* **core-components-with-suffix:** add text styles ([b4dbabe](https://github.com/core-ds/core-components/commit/b4dbabe06b4af072b9cb8e05d54861a587c3f41a)) -* **core-components-with-suffix:** fix stories ([6226300](https://github.com/core-ds/core-components/commit/6226300716354fef9f01d2fa40dbf294d47aa5ba)) +- **core-components-bank-card:** deleting issue, add useCallback ([#309](https://github.com/core-ds/core-components/issues/309)) ([5f768bd](https://github.com/core-ds/core-components/commit/5f768bd3b0242d4f0adae25c33b8c38575bfedef)) +- **core-components-button:** add text align ([#306](https://github.com/core-ds/core-components/issues/306)) ([a60a4dc](https://github.com/core-ds/core-components/commit/a60a4dcb7f7280c6c4e4628deb48456fde3c6171)) +- **core-components-button:** fixed primary button background color ([874e203](https://github.com/core-ds/core-components/commit/874e20336bea6500c75b207bf2cc14262bb878ff)) +- **core-components-tabs:** fix styles build ([#310](https://github.com/core-ds/core-components/issues/310)) ([d05a0ef](https://github.com/core-ds/core-components/commit/d05a0ef86880903e3e33703ef245655cf11e66e7)), closes [#314](https://github.com/core-ds/core-components/issues/314) +- **core-components-themes:** add all vars import ([6d50c3e](https://github.com/core-ds/core-components/commit/6d50c3e089f0e31721adaaf0b56b741b8dec6a7a)) +- **core-components-themes:** process color-mod, fix vars ([5d77f9b](https://github.com/core-ds/core-components/commit/5d77f9be7766f13ac100130a2ff95f6735fe05d9)) +- **core-components-with-suffix:** add text styles ([b4dbabe](https://github.com/core-ds/core-components/commit/b4dbabe06b4af072b9cb8e05d54861a587c3f41a)) +- **core-components-with-suffix:** fix stories ([6226300](https://github.com/core-ds/core-components/commit/6226300716354fef9f01d2fa40dbf294d47aa5ba)) ## [2.2.0](https://github.com/core-ds/core-components/compare/v2.1.0...v2.2.0) (2020-09-25) - ### Features -* update theming docs ([2ceba6d](https://github.com/core-ds/core-components/commit/2ceba6d577857ef0821ea01ee3dd0ec9ddd98fda)) -* **core-components-link:** updated colors and click theme ([573c785](https://github.com/core-ds/core-components/commit/573c78516a41194c9c802eb3ecfdbe7653730311)) -* **core-components-skeleton:** adds a new component ([11e6ce9](https://github.com/core-ds/core-components/commit/11e6ce94c8bca6f5b91a9c04c2f750ec232aea23)) -* **core-components-skeleton:** changes styles ([379a8d9](https://github.com/core-ds/core-components/commit/379a8d971ce074242de47972382a78697038864d)) -* **core-components-tooltip:** updated font size and popover shadow ([e0d54b1](https://github.com/core-ds/core-components/commit/e0d54b18ffaa632e52750f30bc6b2b3d710011ca)) -* **core-components-vars:** introducing shadows vars ([defc486](https://github.com/core-ds/core-components/commit/defc486204d46ed5b431555b1fe8226dee2046c4)) -* **core-components-vars:** introducing shadows vars ([8ff8aba](https://github.com/core-ds/core-components/commit/8ff8aba0301a20ac652078f9df3f85f79a121ef6)) - +- update theming docs ([2ceba6d](https://github.com/core-ds/core-components/commit/2ceba6d577857ef0821ea01ee3dd0ec9ddd98fda)) +- **core-components-link:** updated colors and click theme ([573c785](https://github.com/core-ds/core-components/commit/573c78516a41194c9c802eb3ecfdbe7653730311)) +- **core-components-skeleton:** adds a new component ([11e6ce9](https://github.com/core-ds/core-components/commit/11e6ce94c8bca6f5b91a9c04c2f750ec232aea23)) +- **core-components-skeleton:** changes styles ([379a8d9](https://github.com/core-ds/core-components/commit/379a8d971ce074242de47972382a78697038864d)) +- **core-components-tooltip:** updated font size and popover shadow ([e0d54b1](https://github.com/core-ds/core-components/commit/e0d54b18ffaa632e52750f30bc6b2b3d710011ca)) +- **core-components-vars:** introducing shadows vars ([defc486](https://github.com/core-ds/core-components/commit/defc486204d46ed5b431555b1fe8226dee2046c4)) +- **core-components-vars:** introducing shadows vars ([8ff8aba](https://github.com/core-ds/core-components/commit/8ff8aba0301a20ac652078f9df3f85f79a121ef6)) ### Bug Fixes -* storybook build with assets ([0d2e819](https://github.com/core-ds/core-components/commit/0d2e819ae27900e9022bae53dac5a381336871a0)) -* **core-components-amount-input:** resolve [#281](https://github.com/core-ds/core-components/issues/281) ([7e91e9e](https://github.com/core-ds/core-components/commit/7e91e9ed5c4902be979e7dde8818698d71017e68)) -* **core-components-popover:** add missing styles ([578f1cb](https://github.com/core-ds/core-components/commit/578f1cb20cad08fec606b6da11c961552ca990d1)) -* **core-components-skeleton:** fix styles ([0aac24f](https://github.com/core-ds/core-components/commit/0aac24f3e7ed536fef560abec9627daf42a688df)) +- storybook build with assets ([0d2e819](https://github.com/core-ds/core-components/commit/0d2e819ae27900e9022bae53dac5a381336871a0)) +- **core-components-amount-input:** resolve [#281](https://github.com/core-ds/core-components/issues/281) ([7e91e9e](https://github.com/core-ds/core-components/commit/7e91e9ed5c4902be979e7dde8818698d71017e68)) +- **core-components-popover:** add missing styles ([578f1cb](https://github.com/core-ds/core-components/commit/578f1cb20cad08fec606b6da11c961552ca990d1)) +- **core-components-skeleton:** fix styles ([0aac24f](https://github.com/core-ds/core-components/commit/0aac24f3e7ed536fef560abec9627daf42a688df)) ## [2.1.0](https://github.com/core-ds/core-components/compare/v2.0.0...v2.1.0) (2020-09-18) - ### Features -* **core-components-amount-input:** add forward ref ([5471887](https://github.com/core-ds/core-components/commit/5471887361dcb1383ae695f69cc13c201d713607)) - +- **core-components-amount-input:** add forward ref ([5471887](https://github.com/core-ds/core-components/commit/5471887361dcb1383ae695f69cc13c201d713607)) ### Bug Fixes -* **core-components-amount-input:** fix console error ([461d435](https://github.com/core-ds/core-components/commit/461d435643d6b5908344fadfe66927dd48ed014c)) -* **core-components-themes:** temp fix for color-mod ([94a79a0](https://github.com/core-ds/core-components/commit/94a79a08d53266963d3d96bf3c5c41321629d360)) +- **core-components-amount-input:** fix console error ([461d435](https://github.com/core-ds/core-components/commit/461d435643d6b5908344fadfe66927dd48ed014c)) +- **core-components-themes:** temp fix for color-mod ([94a79a0](https://github.com/core-ds/core-components/commit/94a79a08d53266963d3d96bf3c5c41321629d360)) ## [2.0.0](https://github.com/core-ds/core-components/compare/v1.18.0...v2.0.0) (2020-09-14) - ### Features -* **core-components-button:** button themes (click, corp, mobile), change l-size height ([cf658c3](https://github.com/core-ds/core-components/commit/cf658c388bb0cbf06517b04b4c24f8e5715d8cbe)) -* **core-components-form-control:** change l-size height ([c87f908](https://github.com/core-ds/core-components/commit/c87f908fe8174e9d0e976153daac1e46e3a252bd)) -* **core-components-input:** add clear button ([4f9a453](https://github.com/core-ds/core-components/commit/4f9a4537db28404281415c4354408386bc4c4021)) -* **core-components-input:** add css-var for clear button icon ([637286c](https://github.com/core-ds/core-components/commit/637286ca68bf9b25653298b4315c97bb145a2089)) -* **core-components-pure-input:** change l-size height ([5287559](https://github.com/core-ds/core-components/commit/5287559cbc7a3beac54047884174b26c21cdf453)) -* **core-components-tabs:** remove gaps, add sizes ([da7d435](https://github.com/core-ds/core-components/commit/da7d4350b9fb46e8765ec65cf483c7aadab134c3)) -* **core-components-tag:** add click theme ([eeb2400](https://github.com/core-ds/core-components/commit/eeb24000b0f75d48a4780fe069a4698867006b8b)) -* **core-components-tag:** min-width for tags ([fce5ce3](https://github.com/core-ds/core-components/commit/fce5ce382e9b25190504ff3de3a5479527024afa)) -* **core-components-textarea:** change l-size height ([f314bf6](https://github.com/core-ds/core-components/commit/f314bf63b9d1f5d539c53e310ede11c2a8cdd8c7)) -* **core-components-themes:** add tabs click theme ([0ffbc3f](https://github.com/core-ds/core-components/commit/0ffbc3f9d1edbdb13549957a7174871e365e0f40)) -* **core-components-themes:** add tabs site theme ([da5d9ec](https://github.com/core-ds/core-components/commit/da5d9ec07f16b328c15ebebbb55498e25ff866b1)) - +- **core-components-button:** button themes (click, corp, mobile), change l-size height ([cf658c3](https://github.com/core-ds/core-components/commit/cf658c388bb0cbf06517b04b4c24f8e5715d8cbe)) +- **core-components-form-control:** change l-size height ([c87f908](https://github.com/core-ds/core-components/commit/c87f908fe8174e9d0e976153daac1e46e3a252bd)) +- **core-components-input:** add clear button ([4f9a453](https://github.com/core-ds/core-components/commit/4f9a4537db28404281415c4354408386bc4c4021)) +- **core-components-input:** add css-var for clear button icon ([637286c](https://github.com/core-ds/core-components/commit/637286ca68bf9b25653298b4315c97bb145a2089)) +- **core-components-pure-input:** change l-size height ([5287559](https://github.com/core-ds/core-components/commit/5287559cbc7a3beac54047884174b26c21cdf453)) +- **core-components-tabs:** remove gaps, add sizes ([da7d435](https://github.com/core-ds/core-components/commit/da7d4350b9fb46e8765ec65cf483c7aadab134c3)) +- **core-components-tag:** add click theme ([eeb2400](https://github.com/core-ds/core-components/commit/eeb24000b0f75d48a4780fe069a4698867006b8b)) +- **core-components-tag:** min-width for tags ([fce5ce3](https://github.com/core-ds/core-components/commit/fce5ce382e9b25190504ff3de3a5479527024afa)) +- **core-components-textarea:** change l-size height ([f314bf6](https://github.com/core-ds/core-components/commit/f314bf63b9d1f5d539c53e310ede11c2a8cdd8c7)) +- **core-components-themes:** add tabs click theme ([0ffbc3f](https://github.com/core-ds/core-components/commit/0ffbc3f9d1edbdb13549957a7174871e365e0f40)) +- **core-components-themes:** add tabs site theme ([da5d9ec](https://github.com/core-ds/core-components/commit/da5d9ec07f16b328c15ebebbb55498e25ff866b1)) ### Bug Fixes -* **core-components-input:** fix clear button, fix focus issues ([24fc3c6](https://github.com/core-ds/core-components/commit/24fc3c603e92418e8589c09bed2ca5d8bdf57f5a)) -* **core-components-select:** remove default autocomplete ([a223433](https://github.com/core-ds/core-components/commit/a2234334eaf145582a39bc045b84d61a97a7660c)) +- **core-components-input:** fix clear button, fix focus issues ([24fc3c6](https://github.com/core-ds/core-components/commit/24fc3c603e92418e8589c09bed2ca5d8bdf57f5a)) +- **core-components-select:** remove default autocomplete ([a223433](https://github.com/core-ds/core-components/commit/a2234334eaf145582a39bc045b84d61a97a7660c)) ## [1.18.0](https://github.com/core-ds/core-components/compare/v1.17.1...v1.18.0) (2020-09-11) - ### Features -* **core-components-confirmation:** add confirmation ([#230](https://github.com/core-ds/core-components/issues/230)) ([7a494ba](https://github.com/core-ds/core-components/commit/7a494bafb18af572babb18e7a4fa9a15c2fe6a30)) +- **core-components-confirmation:** add confirmation ([#230](https://github.com/core-ds/core-components/issues/230)) ([7a494ba](https://github.com/core-ds/core-components/commit/7a494bafb18af572babb18e7a4fa9a15c2fe6a30)) ### [1.17.1](https://github.com/core-ds/core-components/compare/v1.17.0...v1.17.1) (2020-09-02) - ### Bug Fixes -* add missing deps ([231402b](https://github.com/core-ds/core-components/commit/231402b2f054defddea4afd4eaf94f5d1791ccb4)) +- add missing deps ([231402b](https://github.com/core-ds/core-components/commit/231402b2f054defddea4afd4eaf94f5d1791ccb4)) ## [1.17.0](https://github.com/core-ds/core-components/compare/v1.16.0...v1.17.0) (2020-09-02) - ### Features -* **core-components-bank-card:** add component draft ([#208](https://github.com/core-ds/core-components/issues/208)) ([93943b7](https://github.com/core-ds/core-components/commit/93943b7861d8c95ca365bc7545a87d493a793f1e)) -* **core-components-input:** add labelClassName ([8494b21](https://github.com/core-ds/core-components/commit/8494b21f3f2027a1439823c4e1237cb9add5cab9)) -* **core-components-select:** add dataTestId ([83c5dd5](https://github.com/core-ds/core-components/commit/83c5dd5cf8b551a6dcc6c319a6ae69d32113ab34)) - +- **core-components-bank-card:** add component draft ([#208](https://github.com/core-ds/core-components/issues/208)) ([93943b7](https://github.com/core-ds/core-components/commit/93943b7861d8c95ca365bc7545a87d493a793f1e)) +- **core-components-input:** add labelClassName ([8494b21](https://github.com/core-ds/core-components/commit/8494b21f3f2027a1439823c4e1237cb9add5cab9)) +- **core-components-select:** add dataTestId ([83c5dd5](https://github.com/core-ds/core-components/commit/83c5dd5cf8b551a6dcc6c319a6ae69d32113ab34)) ### Bug Fixes -* **core-components-bank-card:** fix test ([77c72db](https://github.com/core-ds/core-components/commit/77c72db21f3bef02f07295015331d55da9c27621)) -* **core-components-select:** fix typings, add id ([341d79d](https://github.com/core-ds/core-components/commit/341d79dad610fce77b28cff31382e38152b02d3b)) -* **core-components-tabs:** recalc line styles on render ([#250](https://github.com/core-ds/core-components/issues/250)) ([b9fd710](https://github.com/core-ds/core-components/commit/b9fd7105c19809fc682f60fca275bd645e082c85)) +- **core-components-bank-card:** fix test ([77c72db](https://github.com/core-ds/core-components/commit/77c72db21f3bef02f07295015331d55da9c27621)) +- **core-components-select:** fix typings, add id ([341d79d](https://github.com/core-ds/core-components/commit/341d79dad610fce77b28cff31382e38152b02d3b)) +- **core-components-tabs:** recalc line styles on render ([#250](https://github.com/core-ds/core-components/issues/250)) ([b9fd710](https://github.com/core-ds/core-components/commit/b9fd7105c19809fc682f60fca275bd645e082c85)) ## [1.16.0](https://github.com/core-ds/core-components/compare/v1.15.3...v1.16.0) (2020-08-28) - ### Features -* **core-components-attach:** add Attach component ([#235](https://github.com/core-ds/core-components/issues/235)) ([71aa41c](https://github.com/core-ds/core-components/commit/71aa41c9383c09ae227a1df84585f5f760de350e)), closes [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) - +- **core-components-attach:** add Attach component ([#235](https://github.com/core-ds/core-components/issues/235)) ([71aa41c](https://github.com/core-ds/core-components/commit/71aa41c9383c09ae227a1df84585f5f760de350e)), closes [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) ### Bug Fixes -* build issues ([cdacf43](https://github.com/core-ds/core-components/commit/cdacf43a0b8f24a4b2b6ca97d0c008b30692c841)) -* **core-components-phone-input:** fix controlled value bug ([#248](https://github.com/core-ds/core-components/issues/248)) ([62c3cd2](https://github.com/core-ds/core-components/commit/62c3cd25ccf3657e70fb5ebafa5e0ac2e9a8c1da)), closes [#253](https://github.com/core-ds/core-components/issues/253) +- build issues ([cdacf43](https://github.com/core-ds/core-components/commit/cdacf43a0b8f24a4b2b6ca97d0c008b30692c841)) +- **core-components-phone-input:** fix controlled value bug ([#248](https://github.com/core-ds/core-components/issues/248)) ([62c3cd2](https://github.com/core-ds/core-components/commit/62c3cd25ccf3657e70fb5ebafa5e0ac2e9a8c1da)), closes [#253](https://github.com/core-ds/core-components/issues/253) ### [1.15.3](https://github.com/core-ds/core-components/compare/v1.15.2...v1.15.3) (2020-08-25) - ### Features -* add styrene font-face ([9dfc8da](https://github.com/core-ds/core-components/commit/9dfc8da61e322e4f7fe915bc63614270cf5f6dd4)) - +- add styrene font-face ([9dfc8da](https://github.com/core-ds/core-components/commit/9dfc8da61e322e4f7fe915bc63614270cf5f6dd4)) ### Bug Fixes -* **core-components-button:** fix loader position ([#236](https://github.com/core-ds/core-components/issues/236)) ([697c44a](https://github.com/core-ds/core-components/commit/697c44a0559515f593541909fabc7145a66ee7e1)) -* **core-components-select:** fix typings, unused css ([c223dbb](https://github.com/core-ds/core-components/commit/c223dbb9245f7cc6113a76077f458c4bdcd75462)) -* **core-components-tabs:** fix css-modules build ([#239](https://github.com/core-ds/core-components/issues/239)) ([0e9d8d0](https://github.com/core-ds/core-components/commit/0e9d8d073dc000484816c8d10beddff12e0c463e)) -* fix import example ([#237](https://github.com/core-ds/core-components/issues/237)) ([0ea47b5](https://github.com/core-ds/core-components/commit/0ea47b59138690cb294314883da7298e7b5d0195)) -* fix radio & checkbox colors ([56a0a16](https://github.com/core-ds/core-components/commit/56a0a16d1259f05b51b06ba81035003eadc1f2b3)) +- **core-components-button:** fix loader position ([#236](https://github.com/core-ds/core-components/issues/236)) ([697c44a](https://github.com/core-ds/core-components/commit/697c44a0559515f593541909fabc7145a66ee7e1)) +- **core-components-select:** fix typings, unused css ([c223dbb](https://github.com/core-ds/core-components/commit/c223dbb9245f7cc6113a76077f458c4bdcd75462)) +- **core-components-tabs:** fix css-modules build ([#239](https://github.com/core-ds/core-components/issues/239)) ([0e9d8d0](https://github.com/core-ds/core-components/commit/0e9d8d073dc000484816c8d10beddff12e0c463e)) +- fix import example ([#237](https://github.com/core-ds/core-components/issues/237)) ([0ea47b5](https://github.com/core-ds/core-components/commit/0ea47b59138690cb294314883da7298e7b5d0195)) +- fix radio & checkbox colors ([56a0a16](https://github.com/core-ds/core-components/commit/56a0a16d1259f05b51b06ba81035003eadc1f2b3)) ### [1.15.2](https://github.com/core-ds/core-components/compare/v1.15.1...v1.15.2) (2020-08-19) - ### Features -* **core-components-keyboard-focusable:** add component and hook ([#215](https://github.com/core-ds/core-components/issues/215)) ([f777f72](https://github.com/core-ds/core-components/commit/f777f729e9c880d15b79f58ae9a8f1d5fa6662b1)) -* **core-components-textarea:** add Textarea component ([#221](https://github.com/core-ds/core-components/issues/221)) ([a23b731](https://github.com/core-ds/core-components/commit/a23b73192a7ad3601ea3745f8ac2fdbfaf34346b)), closes [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) -* set system font by default in storybook ([c40ab25](https://github.com/core-ds/core-components/commit/c40ab256af022f4688d079c62e895cb4b8a6e69f)) - +- **core-components-keyboard-focusable:** add component and hook ([#215](https://github.com/core-ds/core-components/issues/215)) ([f777f72](https://github.com/core-ds/core-components/commit/f777f729e9c880d15b79f58ae9a8f1d5fa6662b1)) +- **core-components-textarea:** add Textarea component ([#221](https://github.com/core-ds/core-components/issues/221)) ([a23b731](https://github.com/core-ds/core-components/commit/a23b73192a7ad3601ea3745f8ac2fdbfaf34346b)), closes [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) +- set system font by default in storybook ([c40ab25](https://github.com/core-ds/core-components/commit/c40ab256af022f4688d079c62e895cb4b8a6e69f)) ### Bug Fixes -* add new colors, fix typography ([e50365e](https://github.com/core-ds/core-components/commit/e50365e7e7c6d17422aff61c266b3a1b55a0ecf3)) +- add new colors, fix typography ([e50365e](https://github.com/core-ds/core-components/commit/e50365e7e7c6d17422aff61c266b3a1b55a0ecf3)) ### [1.15.1](https://github.com/core-ds/core-components/compare/v1.15.0...v1.15.1) (2020-08-14) - ### Features -* **core-components-themes:** add theming example ([aba4c8a](https://github.com/core-ds/core-components/commit/aba4c8a98a3f577dd89b5e8cf3a2ccfc54b2f16e)) -* **tag:** remove pointer-events none style ([#224](https://github.com/core-ds/core-components/issues/224)) ([dcaec57](https://github.com/core-ds/core-components/commit/dcaec5712f31cc094f4cacda0a3146e0564d86b3)) - +- **core-components-themes:** add theming example ([aba4c8a](https://github.com/core-ds/core-components/commit/aba4c8a98a3f577dd89b5e8cf3a2ccfc54b2f16e)) +- **tag:** remove pointer-events none style ([#224](https://github.com/core-ds/core-components/issues/224)) ([dcaec57](https://github.com/core-ds/core-components/commit/dcaec5712f31cc094f4cacda0a3146e0564d86b3)) ### Bug Fixes -* use correct vars ([171c45d](https://github.com/core-ds/core-components/commit/171c45da81d6e8df6b76a8333068d7ccbe68466c)) +- use correct vars ([171c45d](https://github.com/core-ds/core-components/commit/171c45da81d6e8df6b76a8333068d7ccbe68466c)) ## [1.15.0](https://github.com/core-ds/core-components/compare/v1.14.0...v1.15.0) (2020-08-13) @@ -2131,294 +1885,267 @@ All notable changes to this project will be documented in this file. See [standa ## [1.12.0](https://github.com/core-ds/core-components/compare/v1.11.0...v1.12.0) (2020-08-12) - ### Features -* **core-components-input:** add input wrapper ref ([9c1fba0](https://github.com/core-ds/core-components/commit/9c1fba07c233206eab0defe6e4341fdb0c8b3664)) -* **core-components-input:** add ref tests ([9ed193c](https://github.com/core-ds/core-components/commit/9ed193c1f5f0f4a22a276877893e6d5de4c4a2a0)) -* **core-components-input:** update type ([9ab3733](https://github.com/core-ds/core-components/commit/9ab373369c5b692bd3632d43ef1afda7d9ffc63e)) -* **core-components-phone-input:** add phone-input ([#192](https://github.com/core-ds/core-components/issues/192)) ([42cedbf](https://github.com/core-ds/core-components/commit/42cedbf9583f1c836cb0825789b0d4b47fbbdddd)) -* **core-components-phone-input:** remove optional chaining ([#222](https://github.com/core-ds/core-components/issues/222)) ([d8a9ca2](https://github.com/core-ds/core-components/commit/d8a9ca2f004bb8bd1df31a5499ead7d7c28e0d80)) -* **core-components-radio:** add radio component ([#183](https://github.com/core-ds/core-components/issues/183)) ([858c81b](https://github.com/core-ds/core-components/commit/858c81b7b3e6bef27b39e719bbecfe1d32f92d19)) -* **core-components-tabs:** add tabs ([#149](https://github.com/core-ds/core-components/issues/149)) ([b08b668](https://github.com/core-ds/core-components/commit/b08b66861fd7c068a1db7e32d3d697ad13acbd6f)), closes [#175](https://github.com/core-ds/core-components/issues/175) [#200](https://github.com/core-ds/core-components/issues/200) -* **core-components-vars:** add new typography styles ([#211](https://github.com/core-ds/core-components/issues/211)) ([7df831f](https://github.com/core-ds/core-components/commit/7df831f396525bec0c57264606a44abd2417a78c)) - +- **core-components-input:** add input wrapper ref ([9c1fba0](https://github.com/core-ds/core-components/commit/9c1fba07c233206eab0defe6e4341fdb0c8b3664)) +- **core-components-input:** add ref tests ([9ed193c](https://github.com/core-ds/core-components/commit/9ed193c1f5f0f4a22a276877893e6d5de4c4a2a0)) +- **core-components-input:** update type ([9ab3733](https://github.com/core-ds/core-components/commit/9ab373369c5b692bd3632d43ef1afda7d9ffc63e)) +- **core-components-phone-input:** add phone-input ([#192](https://github.com/core-ds/core-components/issues/192)) ([42cedbf](https://github.com/core-ds/core-components/commit/42cedbf9583f1c836cb0825789b0d4b47fbbdddd)) +- **core-components-phone-input:** remove optional chaining ([#222](https://github.com/core-ds/core-components/issues/222)) ([d8a9ca2](https://github.com/core-ds/core-components/commit/d8a9ca2f004bb8bd1df31a5499ead7d7c28e0d80)) +- **core-components-radio:** add radio component ([#183](https://github.com/core-ds/core-components/issues/183)) ([858c81b](https://github.com/core-ds/core-components/commit/858c81b7b3e6bef27b39e719bbecfe1d32f92d19)) +- **core-components-tabs:** add tabs ([#149](https://github.com/core-ds/core-components/issues/149)) ([b08b668](https://github.com/core-ds/core-components/commit/b08b66861fd7c068a1db7e32d3d697ad13acbd6f)), closes [#175](https://github.com/core-ds/core-components/issues/175) [#200](https://github.com/core-ds/core-components/issues/200) +- **core-components-vars:** add new typography styles ([#211](https://github.com/core-ds/core-components/issues/211)) ([7df831f](https://github.com/core-ds/core-components/commit/7df831f396525bec0c57264606a44abd2417a78c)) ### Bug Fixes -* **core-components-tooltip:** change tooltip timer to ref ([#207](https://github.com/core-ds/core-components/issues/207)) ([139f0a7](https://github.com/core-ds/core-components/commit/139f0a74d414f3c1dde11b46ecf96a984b599359)) +- **core-components-tooltip:** change tooltip timer to ref ([#207](https://github.com/core-ds/core-components/issues/207)) ([139f0a7](https://github.com/core-ds/core-components/commit/139f0a74d414f3c1dde11b46ecf96a984b599359)) ## [1.11.0](https://github.com/core-ds/core-components/compare/v1.10.0...v1.11.0) (2020-07-22) - ### Features -* **storybook:** add theme switcher to storybook ([#199](https://github.com/core-ds/core-components/issues/199)) ([7794f80](https://github.com/core-ds/core-components/commit/7794f80dc83cba171ffe7282e54d5ce0f4bd8245)) - +- **storybook:** add theme switcher to storybook ([#199](https://github.com/core-ds/core-components/issues/199)) ([7794f80](https://github.com/core-ds/core-components/commit/7794f80dc83cba171ffe7282e54d5ce0f4bd8245)) ### Bug Fixes -* **core-components-progress-bar:** use theme ([#201](https://github.com/core-ds/core-components/issues/201)) ([a9ab773](https://github.com/core-ds/core-components/commit/a9ab773d75f4fcbc68ad648b378cfb3c2b9c0c19)) +- **core-components-progress-bar:** use theme ([#201](https://github.com/core-ds/core-components/issues/201)) ([a9ab773](https://github.com/core-ds/core-components/commit/a9ab773d75f4fcbc68ad648b378cfb3c2b9c0c19)) ## [1.10.0](https://github.com/core-ds/core-components/compare/v1.9.0...v1.10.0) (2020-07-17) - ### Features -* **core-components-progress-bar:** add progress bar component ([39ee713](https://github.com/core-ds/core-components/commit/39ee713522f67f2744fc2f6b4fcb2ac861a55f41)) - +- **core-components-progress-bar:** add progress bar component ([39ee713](https://github.com/core-ds/core-components/commit/39ee713522f67f2744fc2f6b4fcb2ac861a55f41)) ### Bug Fixes -* **core-components-progress-bar:** refactor, snapshot tests fix ([7b0b553](https://github.com/core-ds/core-components/commit/7b0b553eafce92307bec53d0d35f847969bf8904)) +- **core-components-progress-bar:** refactor, snapshot tests fix ([7b0b553](https://github.com/core-ds/core-components/commit/7b0b553eafce92307bec53d0d35f847969bf8904)) ## [1.9.0](https://github.com/core-ds/core-components/compare/v1.8.0...v1.9.0) (2020-07-13) - ### Bug Fixes -* **tag:** add height in ie (fix bug with flex and align-items) ([9fd2abd](https://github.com/core-ds/core-components/commit/9fd2abd401d92e01e853ce5a3f497645d74b8e04)) +- **tag:** add height in ie (fix bug with flex and align-items) ([9fd2abd](https://github.com/core-ds/core-components/commit/9fd2abd401d92e01e853ce5a3f497645d74b8e04)) ## [1.8.0](https://github.com/core-ds/core-components/compare/v1.7.3...v1.8.0) (2020-06-30) - ### Features -* **core-components-amount:** add boilerplate for amount ([5614885](https://github.com/core-ds/core-components/commit/5614885237a9a4843fb312c22c6b5810a3509e63)) -* **core-components-amount:** add click theme ([b4b0699](https://github.com/core-ds/core-components/commit/b4b0699dcffd2f505935489d66fd0d48b633ecf7)) -* **core-components-amount:** allow withZeroMinorPart formatting ([e86529d](https://github.com/core-ds/core-components/commit/e86529d72e28e8cde8bffbfd4b4d263129ec4d78)) -* **core-components-amount:** export CurrencyCodes ([1a6155a](https://github.com/core-ds/core-components/commit/1a6155a63655084895831094127404cdbcb0ef54)) -* **core-components-amount:** feat, change api, add PureAmount ([f946776](https://github.com/core-ds/core-components/commit/f94677645a8244dedf6f003f901290d5a2c6c16d)) -* **core-components-amount:** implemented amount, add demo ([1e78129](https://github.com/core-ds/core-components/commit/1e781295de03ff4aac5f5a7ec761f22b529716bd)) -* **core-components-popover:** add classname for tooltip popover ([c837199](https://github.com/core-ds/core-components/commit/c837199eda8890806388f87a32d61cc88a4165dd)) - +- **core-components-amount:** add boilerplate for amount ([5614885](https://github.com/core-ds/core-components/commit/5614885237a9a4843fb312c22c6b5810a3509e63)) +- **core-components-amount:** add click theme ([b4b0699](https://github.com/core-ds/core-components/commit/b4b0699dcffd2f505935489d66fd0d48b633ecf7)) +- **core-components-amount:** allow withZeroMinorPart formatting ([e86529d](https://github.com/core-ds/core-components/commit/e86529d72e28e8cde8bffbfd4b4d263129ec4d78)) +- **core-components-amount:** export CurrencyCodes ([1a6155a](https://github.com/core-ds/core-components/commit/1a6155a63655084895831094127404cdbcb0ef54)) +- **core-components-amount:** feat, change api, add PureAmount ([f946776](https://github.com/core-ds/core-components/commit/f94677645a8244dedf6f003f901290d5a2c6c16d)) +- **core-components-amount:** implemented amount, add demo ([1e78129](https://github.com/core-ds/core-components/commit/1e781295de03ff4aac5f5a7ec761f22b529716bd)) +- **core-components-popover:** add classname for tooltip popover ([c837199](https://github.com/core-ds/core-components/commit/c837199eda8890806388f87a32d61cc88a4165dd)) ### Bug Fixes -* 🐛 use mixinsDir to import mixins ([#182](https://github.com/core-ds/core-components/issues/182)) ([06a6f2d](https://github.com/core-ds/core-components/commit/06a6f2dde49db07681d09a5afb94e91ab1c9da04)), closes [#181](https://github.com/core-ds/core-components/issues/181) +- 🐛 use mixinsDir to import mixins ([#182](https://github.com/core-ds/core-components/issues/182)) ([06a6f2d](https://github.com/core-ds/core-components/commit/06a6f2dde49db07681d09a5afb94e91ab1c9da04)), closes [#181](https://github.com/core-ds/core-components/issues/181) ### [1.7.3](https://github.com/core-ds/core-components/compare/v1.7.2...v1.7.3) (2020-06-23) - ### Bug Fixes -* **core-components-button:** background in loading state ([2064e59](https://github.com/core-ds/core-components/commit/2064e593914354258cd47a4da9ca65cf26585542)) -* **core-components-button:** disabled styles are back ([bf81264](https://github.com/core-ds/core-components/commit/bf81264bb922ea98752adb9b2a6b09c946d48ed9)) +- **core-components-button:** background in loading state ([2064e59](https://github.com/core-ds/core-components/commit/2064e593914354258cd47a4da9ca65cf26585542)) +- **core-components-button:** disabled styles are back ([bf81264](https://github.com/core-ds/core-components/commit/bf81264bb922ea98752adb9b2a6b09c946d48ed9)) ### [1.7.2](https://github.com/core-ds/core-components/compare/v1.7.1...v1.7.2) (2020-06-22) - ### Bug Fixes -* **core-components-money-input:** fix default placeholder ([2efbcbd](https://github.com/core-ds/core-components/commit/2efbcbd49fbc2c02a6644867bfa25c96b3943223)) +- **core-components-money-input:** fix default placeholder ([2efbcbd](https://github.com/core-ds/core-components/commit/2efbcbd49fbc2c02a6644867bfa25c96b3943223)) ### [1.7.1](https://github.com/core-ds/core-components/compare/v1.7.0...v1.7.1) (2020-06-19) - ### Bug Fixes -* fix import replacement ([5354d06](https://github.com/core-ds/core-components/commit/5354d0604125d9d21c2939987cecd10d428a509f)), closes [#170](https://github.com/core-ds/core-components/issues/170) +- fix import replacement ([5354d06](https://github.com/core-ds/core-components/commit/5354d0604125d9d21c2939987cecd10d428a509f)), closes [#170](https://github.com/core-ds/core-components/issues/170) ## [1.7.0](https://github.com/core-ds/core-components/compare/v1.6.1...v1.7.0) (2020-06-19) - ### Features -* **core-components-money-input:** add money-input, story, base test ([aab595a](https://github.com/core-ds/core-components/commit/aab595a0e3d705335b7abe7539364206f20806fc)) -* **core-components-money-input:** added smart default placeholder ([dff6e63](https://github.com/core-ds/core-components/commit/dff6e63bd1ed72a1fab9c50a3f3d982da49e531b)) -* **core-components-money-input:** change minority color ([e35b06a](https://github.com/core-ds/core-components/commit/e35b06a74bb43663a8b44fe7d3486b7a7d81af2d)) -* **core-components-money-input:** fix demo according PR comments ([15f339d](https://github.com/core-ds/core-components/commit/15f339d83d8606c82b3a6cc4deeba350bab9f785)) -* **core-components-money-input:** fixes according review comments ([3ba9e0b](https://github.com/core-ds/core-components/commit/3ba9e0b5a653e58898e9f5a72b37a3eaea2fa2da)) -* **core-components-money-input:** fixes according review comments ([0b0c285](https://github.com/core-ds/core-components/commit/0b0c285b40df3e80cf28167c410ddc25b2f405c9)) -* **core-components-money-input:** remove composed props from MoneyInput ([3d3f5b8](https://github.com/core-ds/core-components/commit/3d3f5b83b25990ab56826c5c39e74aa346672f44)) -* **core-components-money-input:** tune to latest requirements ([62fcaf4](https://github.com/core-ds/core-components/commit/62fcaf4038d866271178289e6338e8bc1c01c50e)) - +- **core-components-money-input:** add money-input, story, base test ([aab595a](https://github.com/core-ds/core-components/commit/aab595a0e3d705335b7abe7539364206f20806fc)) +- **core-components-money-input:** added smart default placeholder ([dff6e63](https://github.com/core-ds/core-components/commit/dff6e63bd1ed72a1fab9c50a3f3d982da49e531b)) +- **core-components-money-input:** change minority color ([e35b06a](https://github.com/core-ds/core-components/commit/e35b06a74bb43663a8b44fe7d3486b7a7d81af2d)) +- **core-components-money-input:** fix demo according PR comments ([15f339d](https://github.com/core-ds/core-components/commit/15f339d83d8606c82b3a6cc4deeba350bab9f785)) +- **core-components-money-input:** fixes according review comments ([3ba9e0b](https://github.com/core-ds/core-components/commit/3ba9e0b5a653e58898e9f5a72b37a3eaea2fa2da)) +- **core-components-money-input:** fixes according review comments ([0b0c285](https://github.com/core-ds/core-components/commit/0b0c285b40df3e80cf28167c410ddc25b2f405c9)) +- **core-components-money-input:** remove composed props from MoneyInput ([3d3f5b8](https://github.com/core-ds/core-components/commit/3d3f5b83b25990ab56826c5c39e74aa346672f44)) +- **core-components-money-input:** tune to latest requirements ([62fcaf4](https://github.com/core-ds/core-components/commit/62fcaf4038d866271178289e6338e8bc1c01c50e)) ### Bug Fixes -* **core-components-money-input:** add todo ([612c88c](https://github.com/core-ds/core-components/commit/612c88c87197e3c42332291f81dd1a918599f637)) -* **core-components-money-input:** fix bold ([4625eee](https://github.com/core-ds/core-components/commit/4625eee240f1024e3934e205b4a20845f8da1542)) -* **core-components-money-input:** fix build ([c68fa08](https://github.com/core-ds/core-components/commit/c68fa0890965a5415b1acc7fab144eaaabbb9676)) -* **core-components-money-input:** fix demo ([2b22f2d](https://github.com/core-ds/core-components/commit/2b22f2db919ff0e9bd1c393234154234b3675582)) -* **core-components-money-input:** fix dependency ([1ea92b7](https://github.com/core-ds/core-components/commit/1ea92b78aacaf5421ddaa867c795ecf4ed4d9318)) -* **core-components-money-input:** fix zindex ([0688bd9](https://github.com/core-ds/core-components/commit/0688bd925a52a3b0d1ce28779b75e626a961627d)) -* **core-components-money-input:** remove temp wrapper ([fc6e904](https://github.com/core-ds/core-components/commit/fc6e904aeb2df1b05b172c59d4897418e67c7993)) -* **core-components-money-input:** type for currency according comments ([078069d](https://github.com/core-ds/core-components/commit/078069d523c545b8d7b3d7edb2f8676a2aa4a522)) +- **core-components-money-input:** add todo ([612c88c](https://github.com/core-ds/core-components/commit/612c88c87197e3c42332291f81dd1a918599f637)) +- **core-components-money-input:** fix bold ([4625eee](https://github.com/core-ds/core-components/commit/4625eee240f1024e3934e205b4a20845f8da1542)) +- **core-components-money-input:** fix build ([c68fa08](https://github.com/core-ds/core-components/commit/c68fa0890965a5415b1acc7fab144eaaabbb9676)) +- **core-components-money-input:** fix demo ([2b22f2d](https://github.com/core-ds/core-components/commit/2b22f2db919ff0e9bd1c393234154234b3675582)) +- **core-components-money-input:** fix dependency ([1ea92b7](https://github.com/core-ds/core-components/commit/1ea92b78aacaf5421ddaa867c795ecf4ed4d9318)) +- **core-components-money-input:** fix zindex ([0688bd9](https://github.com/core-ds/core-components/commit/0688bd925a52a3b0d1ce28779b75e626a961627d)) +- **core-components-money-input:** remove temp wrapper ([fc6e904](https://github.com/core-ds/core-components/commit/fc6e904aeb2df1b05b172c59d4897418e67c7993)) +- **core-components-money-input:** type for currency according comments ([078069d](https://github.com/core-ds/core-components/commit/078069d523c545b8d7b3d7edb2f8676a2aa4a522)) ### [1.6.1](https://github.com/core-ds/core-components/compare/v1.6.0...v1.6.1) (2020-06-19) ## [1.6.0](https://github.com/core-ds/core-components/compare/v1.5.2...v1.6.0) (2020-06-19) - ### Features -* **core-components-form-control:** allow to hide error icon in theme ([c19a73c](https://github.com/core-ds/core-components/commit/c19a73c676e359f2ecba8b21a53f671b725ec032)) - +- **core-components-form-control:** allow to hide error icon in theme ([c19a73c](https://github.com/core-ds/core-components/commit/c19a73c676e359f2ecba8b21a53f671b725ec032)) ### Bug Fixes -* **core-components-button:** fix button loading state ([eac3c3c](https://github.com/core-ds/core-components/commit/eac3c3ca888ee0092a1693b9a39843c1dd9a75f1)) +- **core-components-button:** fix button loading state ([eac3c3c](https://github.com/core-ds/core-components/commit/eac3c3ca888ee0092a1693b9a39843c1dd9a75f1)) ### [1.5.2](https://github.com/core-ds/core-components/compare/v1.5.1...v1.5.2) (2020-06-18) - ### Bug Fixes -* **checkbox-group:** fix css classnames ([1ec07fa](https://github.com/core-ds/core-components/commit/1ec07faa276bfa20917b1ff4decfde2c81c66ffe)) +- **checkbox-group:** fix css classnames ([1ec07fa](https://github.com/core-ds/core-components/commit/1ec07faa276bfa20917b1ff4decfde2c81c66ffe)) ### [1.5.1](https://github.com/core-ds/core-components/compare/v1.5.0...v1.5.1) (2020-06-18) - ### Bug Fixes -* **core-components-button:** fix block button width ([4abf5d9](https://github.com/core-ds/core-components/commit/4abf5d9d915909c4b5b4beddad7d287df812beb4)) +- **core-components-button:** fix block button width ([4abf5d9](https://github.com/core-ds/core-components/commit/4abf5d9d915909c4b5b4beddad7d287df812beb4)) ## [1.5.0](https://github.com/core-ds/core-components/compare/v1.4.1...v1.5.0) (2020-06-15) - ### Features -* **button:** keyboard-only focus ([#102](https://github.com/core-ds/core-components/issues/102)) ([739d240](https://github.com/core-ds/core-components/commit/739d240ab3d06b5a232b8c863f54ea888f2f635a)), closes [#125](https://github.com/core-ds/core-components/issues/125) -* **core-components-button:** fix button types ([#138](https://github.com/core-ds/core-components/issues/138)) ([6af3a2c](https://github.com/core-ds/core-components/commit/6af3a2c099c52d94fbb91663facfb3d5c79a8492)) -* **core-components-form-control:** change errors logic ([#150](https://github.com/core-ds/core-components/issues/150)) ([1c0e494](https://github.com/core-ds/core-components/commit/1c0e49489fb59dce68504223744efd290c38d214)) -* **core-components-link:** add new component ([#142](https://github.com/core-ds/core-components/issues/142)) ([33e11eb](https://github.com/core-ds/core-components/commit/33e11eb403fb7d8231e00cf55adf116b914aef3b)) -* **core-components-vars:** update alfa-ui-primitives and build colors ([#153](https://github.com/core-ds/core-components/issues/153)) ([007e2d6](https://github.com/core-ds/core-components/commit/007e2d67d5e22e830ca353de3d7ea690b82af73f)) - +- **button:** keyboard-only focus ([#102](https://github.com/core-ds/core-components/issues/102)) ([739d240](https://github.com/core-ds/core-components/commit/739d240ab3d06b5a232b8c863f54ea888f2f635a)), closes [#125](https://github.com/core-ds/core-components/issues/125) +- **core-components-button:** fix button types ([#138](https://github.com/core-ds/core-components/issues/138)) ([6af3a2c](https://github.com/core-ds/core-components/commit/6af3a2c099c52d94fbb91663facfb3d5c79a8492)) +- **core-components-form-control:** change errors logic ([#150](https://github.com/core-ds/core-components/issues/150)) ([1c0e494](https://github.com/core-ds/core-components/commit/1c0e49489fb59dce68504223744efd290c38d214)) +- **core-components-link:** add new component ([#142](https://github.com/core-ds/core-components/issues/142)) ([33e11eb](https://github.com/core-ds/core-components/commit/33e11eb403fb7d8231e00cf55adf116b914aef3b)) +- **core-components-vars:** update alfa-ui-primitives and build colors ([#153](https://github.com/core-ds/core-components/issues/153)) ([007e2d6](https://github.com/core-ds/core-components/commit/007e2d67d5e22e830ca353de3d7ea690b82af73f)) ### Bug Fixes -* **core-components-tag:** fix tag background ([#151](https://github.com/core-ds/core-components/issues/151)) ([03b465b](https://github.com/core-ds/core-components/commit/03b465b9f6c231375da8803382ed3539b2e7743a)) -* **core-components-tooltip:** pass target original classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([d253f8a](https://github.com/core-ds/core-components/commit/d253f8a363a0b4c605ee897a9b3172fdf977a073)) +- **core-components-tag:** fix tag background ([#151](https://github.com/core-ds/core-components/issues/151)) ([03b465b](https://github.com/core-ds/core-components/commit/03b465b9f6c231375da8803382ed3539b2e7743a)) +- **core-components-tooltip:** pass target original classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([d253f8a](https://github.com/core-ds/core-components/commit/d253f8a363a0b4c605ee897a9b3172fdf977a073)) ### [1.4.1](https://github.com/core-ds/core-components/compare/v1.4.0...v1.4.1) (2020-06-01) - ### Bug Fixes -* fixed themes and default font-family ([6bab367](https://github.com/core-ds/core-components/commit/6bab367eb0df53c7d42e31c5e404859638d8d6c9)) -* **core-components-checkbox-group:** fix classnames to camelcase ([522af20](https://github.com/core-ds/core-components/commit/522af2088bbc7ef9343b4f6c3de5bb7ee51c6202)) +- fixed themes and default font-family ([6bab367](https://github.com/core-ds/core-components/commit/6bab367eb0df53c7d42e31c5e404859638d8d6c9)) +- **core-components-checkbox-group:** fix classnames to camelcase ([522af20](https://github.com/core-ds/core-components/commit/522af2088bbc7ef9343b4f6c3de5bb7ee51c6202)) ## [1.4.0](https://github.com/core-ds/core-components/compare/v1.3.1...v1.4.0) (2020-05-28) - ### Bug Fixes -* **core-components-select:** move select vars to separate file ([8e09aba](https://github.com/core-ds/core-components/commit/8e09abaa90d8a91298be69ef136770588630d824)) +- **core-components-select:** move select vars to separate file ([8e09aba](https://github.com/core-ds/core-components/commit/8e09abaa90d8a91298be69ef136770588630d824)) ### [1.3.1](https://github.com/core-ds/core-components/compare/v1.3.0...v1.3.1) (2020-05-28) - ### ⚠ BREAKING CHANGES -* **core-components-form-control:** Компонент Input теперь зависим от FormField. Большая часть стилей перенесена в +- **core-components-form-control:** Компонент Input теперь зависим от FormField. Большая часть стилей перенесена в FormField -* refactor(core-components-form-control): rename component +- refactor(core-components-form-control): rename component -* refactor(core-components-form-control): component improvements +- refactor(core-components-form-control): component improvements ### Features -* **core-components-button:** add loading state ([5c0a75a](https://github.com/core-ds/core-components/commit/5c0a75a3cae3232ce52be5cd800644c2030abb3b)) -* **core-components-form-control:** add FormControl component ([#127](https://github.com/core-ds/core-components/issues/127)) ([1ea79d1](https://github.com/core-ds/core-components/commit/1ea79d1fc565c2073483a7480893958efff25dff)) -* **core-components-loader:** add new component ([24f0c35](https://github.com/core-ds/core-components/commit/24f0c3538d79059ee64468ab6c7e372eb5647f76)) -* **core-components-popover:** can render without Transition ([#130](https://github.com/core-ds/core-components/issues/130)) ([2569a32](https://github.com/core-ds/core-components/commit/2569a32994e8de57c4a4a5bce853f706183af749)) -* **select:** add select component ([#118](https://github.com/core-ds/core-components/issues/118)) ([8892bd9](https://github.com/core-ds/core-components/commit/8892bd94a6be3ad8ba1e609545becadc8be54b47)) - +- **core-components-button:** add loading state ([5c0a75a](https://github.com/core-ds/core-components/commit/5c0a75a3cae3232ce52be5cd800644c2030abb3b)) +- **core-components-form-control:** add FormControl component ([#127](https://github.com/core-ds/core-components/issues/127)) ([1ea79d1](https://github.com/core-ds/core-components/commit/1ea79d1fc565c2073483a7480893958efff25dff)) +- **core-components-loader:** add new component ([24f0c35](https://github.com/core-ds/core-components/commit/24f0c3538d79059ee64468ab6c7e372eb5647f76)) +- **core-components-popover:** can render without Transition ([#130](https://github.com/core-ds/core-components/issues/130)) ([2569a32](https://github.com/core-ds/core-components/commit/2569a32994e8de57c4a4a5bce853f706183af749)) +- **select:** add select component ([#118](https://github.com/core-ds/core-components/issues/118)) ([8892bd9](https://github.com/core-ds/core-components/commit/8892bd94a6be3ad8ba1e609545becadc8be54b47)) ### Bug Fixes -* **core-components-button:** iconOnly button min-width fix ([ecdf518](https://github.com/core-ds/core-components/commit/ecdf518c89a931b649a6c917caa45b9f4dc2dc7b)) -* **core-components-select:** fix onOpen description ([b28f75a](https://github.com/core-ds/core-components/commit/b28f75afe180dd252900139147f2c7c8df92aeb8)) +- **core-components-button:** iconOnly button min-width fix ([ecdf518](https://github.com/core-ds/core-components/commit/ecdf518c89a931b649a6c917caa45b9f4dc2dc7b)) +- **core-components-select:** fix onOpen description ([b28f75a](https://github.com/core-ds/core-components/commit/b28f75afe180dd252900139147f2c7c8df92aeb8)) ## [1.3.0](https://github.com/core-ds/core-components/compare/v1.2.0...v1.3.0) (2020-05-22) - ### Bug Fixes -* **core-components-popover:** change box-sizing to border-box ([#121](https://github.com/core-ds/core-components/issues/121)) ([2a6883d](https://github.com/core-ds/core-components/commit/2a6883d6832713d197447e23ada822ea07bed5f4)) -* **core-components-popover:** make transition props optional ([#119](https://github.com/core-ds/core-components/issues/119)) ([dce9249](https://github.com/core-ds/core-components/commit/dce924922b67dff1c4ea6b173bd2b70874b56270)) +- **core-components-popover:** change box-sizing to border-box ([#121](https://github.com/core-ds/core-components/issues/121)) ([2a6883d](https://github.com/core-ds/core-components/commit/2a6883d6832713d197447e23ada822ea07bed5f4)) +- **core-components-popover:** make transition props optional ([#119](https://github.com/core-ds/core-components/issues/119)) ([dce9249](https://github.com/core-ds/core-components/commit/dce924922b67dff1c4ea6b173bd2b70874b56270)) ## 1.2.0 (2020-05-08) - ### Features -* add comments to bash ([6149931](https://github.com/core-ds/core-components/commit/61499310c0f928077b887e19621fc50989bac9dc)) -* add demo script ([b5d1c00](https://github.com/core-ds/core-components/commit/b5d1c000e049568768fb6dc018bb8c89a23a8b73)) -* add masked-input ([#76](https://github.com/core-ds/core-components/issues/76)) ([d5c4ba5](https://github.com/core-ds/core-components/commit/d5c4ba51e6ba1e255345a2b570ee54d3c3dfcf5f)) -* delete postInstall ([fd30ef9](https://github.com/core-ds/core-components/commit/fd30ef9eba4e06d81b52e3668d4d38ac2e2ed5ea)) -* fix eslint ([c4f5261](https://github.com/core-ds/core-components/commit/c4f5261ec4ed63f285e0cb7dc0bdbc17e94dc38d)) -* lint fix ([f64c8b9](https://github.com/core-ds/core-components/commit/f64c8b94c801b92b77ab321d3f5990d070e56ca4)) -* modify config for storybook ([c81ad6e](https://github.com/core-ds/core-components/commit/c81ad6e225324c38052fd8aae37001be0ef5c756)) -* post storybook url to PR after push ([#39](https://github.com/core-ds/core-components/issues/39)) ([9acc8ab](https://github.com/core-ds/core-components/commit/9acc8abaff1e48c6a62872b803340212b67ae237)) -* publishing ([bc584e2](https://github.com/core-ds/core-components/commit/bc584e224e17e29fd7178ea096a500264e286685)) -* setup tests ([3e722bd](https://github.com/core-ds/core-components/commit/3e722bda2da14460cbf14cadefafe52b84a2fb76)) -* update demo script ([46d600c](https://github.com/core-ds/core-components/commit/46d600cea9eea44b0372b95d73fca7c4e4d3d404)) -* update dependencies ([a27310a](https://github.com/core-ds/core-components/commit/a27310a23532fad6c719775d35a3032b13432f2c)) -* use custom css-modules naming ([7eacdab](https://github.com/core-ds/core-components/commit/7eacdab49c905486c00fafc19abe38d018765ce8)) -* **base-input:** add base-input ([55ecad6](https://github.com/core-ds/core-components/commit/55ecad6b33f44c6ea3fdd548138d8809f1cc97d8)) -* **button:** add types. add forwardRef ([bd86206](https://github.com/core-ds/core-components/commit/bd86206310cbf3cec2215ccdd81158aa036fadfc)) -* **button:** fixed story ([4811af8](https://github.com/core-ds/core-components/commit/4811af87c8ef9f8f37be6d1dad10621f6698d394)) -* **button:** href prop, updated types & styles ([8745e44](https://github.com/core-ds/core-components/commit/8745e4463deaad04f954bf3d4ae0eca66ddfa99a)) -* **button:** improved button theming ([0d2a255](https://github.com/core-ds/core-components/commit/0d2a2553aafbc34090dbc37edcb2291e0c8f09a6)) -* **button:** updated button styles ([643429d](https://github.com/core-ds/core-components/commit/643429df73fb0b5d96975de2b4b9020c42e99416)) -* **divider:** add divider ([0e4199c](https://github.com/core-ds/core-components/commit/0e4199c6d5b23438442393ef9a8f05594bc39a70)) -* **input:** add new default input ([2314b3b](https://github.com/core-ds/core-components/commit/2314b3b6f47e7b4ebfb3718927ecd593d33b2e1b)) -* **inputs:** icons & addons improvements ([e0abeba](https://github.com/core-ds/core-components/commit/e0abeba1772f8f0c12d01ca9ef5482d80a4e59cc)) -* **inputs:** improve components, update styles & props ([98ff5dd](https://github.com/core-ds/core-components/commit/98ff5dda37e4b55ff5f4bd7c8c9bb80791625935)) -* **inputs:** some refactor. add events & props ([27f5bba](https://github.com/core-ds/core-components/commit/27f5bba60e65181ad848a0628b72711f08377653)) -* **lint:** add lint ([3bd5492](https://github.com/core-ds/core-components/commit/3bd5492bba179083cb26aa99c295a43f8e3be037)) -* **portal:** add new portal component ([#75](https://github.com/core-ds/core-components/issues/75)) ([80d5499](https://github.com/core-ds/core-components/commit/80d5499edfc75c6c382feb3fa638c844c54edd11)) -* **stories:** move to mdx stories ([#104](https://github.com/core-ds/core-components/issues/104)) ([40d6aff](https://github.com/core-ds/core-components/commit/40d6aff309e93dd7072c325c6752f067670fb263)) -* **storybook:** add @storybook/addon-docs. update stories ([1e66461](https://github.com/core-ds/core-components/commit/1e66461164ac48252a305477a78ab49356a12343)) -* **switch:** add new component ([4e23acd](https://github.com/core-ds/core-components/commit/4e23acd4d05db21930d137de72e55fc9732332d3)) -* **tag:** add new component Tag ([1101b57](https://github.com/core-ds/core-components/commit/1101b5792eda538b2c508ff6ace7294c0544d1f0)) -* **themes:** add themes structure ([#108](https://github.com/core-ds/core-components/issues/108)) ([eb05b6d](https://github.com/core-ds/core-components/commit/eb05b6df0d56c76f39ebdcf6a1a6de079c3aa63b)) -* **typography:** add tools for mixin building ([e995924](https://github.com/core-ds/core-components/commit/e99592428c15573e9097a6457dd33361f5a75e85)) -* **typography:** update tokens & scripts. rebuild ([91c7c76](https://github.com/core-ds/core-components/commit/91c7c769d9623cc38f9b44a38d3a027f9fed7136)) -* **vars:** add index.css ([#90](https://github.com/core-ds/core-components/issues/90)) ([d9f3af1](https://github.com/core-ds/core-components/commit/d9f3af1521187d406271fed448dc4af498beb39e)) -* **vars:** add negative gaps ([#99](https://github.com/core-ds/core-components/issues/99)) ([5dc2cf4](https://github.com/core-ds/core-components/commit/5dc2cf404558d705411f248b353aa4841a508799)) - - -### Bug Fixes - -* fix 4 spaces ([049cfa9](https://github.com/core-ds/core-components/commit/049cfa919cfd96315f716d724c0ea670c667aae2)) -* fix issues accodring to PR [#36](https://github.com/core-ds/core-components/issues/36) ([9c57325](https://github.com/core-ds/core-components/commit/9c5732519063c89fa5a544ae87611cc1244ee78b)) -* fix lint errors ([86fa366](https://github.com/core-ds/core-components/commit/86fa36694323671bd3e4bbb28980134d4e7e2ce2)) -* fixed linter errors ([0c9f9c6](https://github.com/core-ds/core-components/commit/0c9f9c69127ba979a03e66dd80f4be083d2760ce)) -* prepare inputs. move @types/jest to devDeps ([5f30dbb](https://github.com/core-ds/core-components/commit/5f30dbb064b468e54159914604426c8ec3310522)) -* restore babel config ([50eaa68](https://github.com/core-ds/core-components/commit/50eaa682c93733a4d5f1dc0fbcd32a4214b643f3)) -* update scripts & snapshots ([ce35a02](https://github.com/core-ds/core-components/commit/ce35a026850700af09953e47006bce0885c920aa)) -* **build-root-package:** several hyphens in dir name ([aeb5dfb](https://github.com/core-ds/core-components/commit/aeb5dfba8a88153762602a9c20c8db478ae2943f)) -* **button:** add missing href ([756d84b](https://github.com/core-ds/core-components/commit/756d84b775298045cdb205bc2f5155d04c6d4f35)) -* **button:** remove unused deps ([f287d48](https://github.com/core-ds/core-components/commit/f287d48dadab80b2f98e43c5a9d74029d4286303)) -* **button:** transition duration fix ([cd49653](https://github.com/core-ds/core-components/commit/cd49653db2670f9c846fb9d839f3c75d8e1c1f54)) -* **deploy:** fix demo-build for master branch ([fc46861](https://github.com/core-ds/core-components/commit/fc46861e0c8b9664abda0efaba42a175504ab02f)) -* **deps:** fix wrong dependencies ([#92](https://github.com/core-ds/core-components/issues/92)) ([085e2ce](https://github.com/core-ds/core-components/commit/085e2cef73841178322c89ef90e90747e6971adf)) -* **divider:** delete default margin ([c514bf3](https://github.com/core-ds/core-components/commit/c514bf386755b7e29f36ae148deea7a08c7984da)) -* **divider:** remarks from PR ([5df2c6f](https://github.com/core-ds/core-components/commit/5df2c6fae1d7eab7aaa77604e4f0f09c3304e1ab)) -* **divider:** style ([d718a69](https://github.com/core-ds/core-components/commit/d718a6922f38ec0e60eea23ebe1803a8798de8fa)) -* **input:** fix l bottom margin ([c41a840](https://github.com/core-ds/core-components/commit/c41a8408e1c8f338be4a787bb06d51be7f1e66da)) -* **input:** fix render fn ([4cf8ef1](https://github.com/core-ds/core-components/commit/4cf8ef18dc8fc703f50ebf70877762b8bcac7a71)) -* **input:** fix wrong filled state ([#109](https://github.com/core-ds/core-components/issues/109)) ([576495a](https://github.com/core-ds/core-components/commit/576495ac639278bf5e873535173736a8082d1b44)) -* **input:** pass sub as BaseInput child ([b60d64c](https://github.com/core-ds/core-components/commit/b60d64ca432ccf94b7472116f04010327b7c9c72)) -* **inputs:** border-box fix ([81752e1](https://github.com/core-ds/core-components/commit/81752e189382e7c2dc3982b50291b9be5827cea1)) -* **inputs:** fix css vars ([1e233a2](https://github.com/core-ds/core-components/commit/1e233a26423c544ead925851a2e7925402710951)) -* **inputs:** fix input width ([9ed950f](https://github.com/core-ds/core-components/commit/9ed950f103057c74cf02ff4a95a7a6ba868aced8)) -* **inputs:** fix placeholders styles ([e404483](https://github.com/core-ds/core-components/commit/e4044838c96b527228a78a33ee24104c4899c80f)) -* **inputs:** fix styles and types ([cb6b189](https://github.com/core-ds/core-components/commit/cb6b18957d86410deddfae2d41fea0ed201e4073)) -* **inputs:** l size side paddings ([b9688a2](https://github.com/core-ds/core-components/commit/b9688a246aec4c5e442e6ee7a84a77c87d95371b)) -* **inputs:** remove from state, detect by value prop ([208c07e](https://github.com/core-ds/core-components/commit/208c07e9a73640f43950779615d4ec3f39e61c66)) -* **inputs:** remove file type. fix styles. withIcon -> rightAddons ([f149aa8](https://github.com/core-ds/core-components/commit/f149aa88de2f94329e5c905846034d619589a7bf)) -* **inputs:** styles fixes ([9a3199e](https://github.com/core-ds/core-components/commit/9a3199ef03d8e6a97d48c376b79938c2f1bf1372)) -* **masked-input,switch:** fix wrong main field ([76d0e4e](https://github.com/core-ds/core-components/commit/76d0e4e6b05973977f49ef5edeb56790daffa566)) -* **switch:** fix global tag styling ([66ce011](https://github.com/core-ds/core-components/commit/66ce0111b0e4c47e957f94afbf66f1ff50cab607)) -* **switch:** replace div with span ([69624f9](https://github.com/core-ds/core-components/commit/69624f9c2a2e07aa91829a8940245e83e7576d05)) -* **tag:** fix disabled state ([#110](https://github.com/core-ds/core-components/issues/110)) ([a622101](https://github.com/core-ds/core-components/commit/a622101cb448e623e95ae9bfecc310548ac52dbe)) -* **tag:** fix styles ([#80](https://github.com/core-ds/core-components/issues/80)) ([bc80ba4](https://github.com/core-ds/core-components/commit/bc80ba47366a91d998d764675e17aeaed3c31666)) -* **tests:** rewrite tests titles ([d0f16ad](https://github.com/core-ds/core-components/commit/d0f16ad812cb098ba9cbf612bde245784dfb6227)) -* **tsconfig:** fix local module resolution ([f8faadf](https://github.com/core-ds/core-components/commit/f8faadfdfea9e8b570c77e1c8b3bf462ea6d26e6)) -* **typography:** add prettier-ignore to fix mixin breaking. rebuild ([6909df6](https://github.com/core-ds/core-components/commit/6909df62bbc9b0dd67143cdb950dd8e50bf54067)) -* **update-colors.js:** fix it ([c9b8c68](https://github.com/core-ds/core-components/commit/c9b8c68b8ac07e2bff33399cc1a99405bb71132d)) -* **vars:** fix build for vars. add typography to index ([cc00344](https://github.com/core-ds/core-components/commit/cc00344d6db8e60b0b230829d8bed4ef5f20c9d1)) +- add comments to bash ([6149931](https://github.com/core-ds/core-components/commit/61499310c0f928077b887e19621fc50989bac9dc)) +- add demo script ([b5d1c00](https://github.com/core-ds/core-components/commit/b5d1c000e049568768fb6dc018bb8c89a23a8b73)) +- add masked-input ([#76](https://github.com/core-ds/core-components/issues/76)) ([d5c4ba5](https://github.com/core-ds/core-components/commit/d5c4ba51e6ba1e255345a2b570ee54d3c3dfcf5f)) +- delete postInstall ([fd30ef9](https://github.com/core-ds/core-components/commit/fd30ef9eba4e06d81b52e3668d4d38ac2e2ed5ea)) +- fix eslint ([c4f5261](https://github.com/core-ds/core-components/commit/c4f5261ec4ed63f285e0cb7dc0bdbc17e94dc38d)) +- lint fix ([f64c8b9](https://github.com/core-ds/core-components/commit/f64c8b94c801b92b77ab321d3f5990d070e56ca4)) +- modify config for storybook ([c81ad6e](https://github.com/core-ds/core-components/commit/c81ad6e225324c38052fd8aae37001be0ef5c756)) +- post storybook url to PR after push ([#39](https://github.com/core-ds/core-components/issues/39)) ([9acc8ab](https://github.com/core-ds/core-components/commit/9acc8abaff1e48c6a62872b803340212b67ae237)) +- publishing ([bc584e2](https://github.com/core-ds/core-components/commit/bc584e224e17e29fd7178ea096a500264e286685)) +- setup tests ([3e722bd](https://github.com/core-ds/core-components/commit/3e722bda2da14460cbf14cadefafe52b84a2fb76)) +- update demo script ([46d600c](https://github.com/core-ds/core-components/commit/46d600cea9eea44b0372b95d73fca7c4e4d3d404)) +- update dependencies ([a27310a](https://github.com/core-ds/core-components/commit/a27310a23532fad6c719775d35a3032b13432f2c)) +- use custom css-modules naming ([7eacdab](https://github.com/core-ds/core-components/commit/7eacdab49c905486c00fafc19abe38d018765ce8)) +- **base-input:** add base-input ([55ecad6](https://github.com/core-ds/core-components/commit/55ecad6b33f44c6ea3fdd548138d8809f1cc97d8)) +- **button:** add types. add forwardRef ([bd86206](https://github.com/core-ds/core-components/commit/bd86206310cbf3cec2215ccdd81158aa036fadfc)) +- **button:** fixed story ([4811af8](https://github.com/core-ds/core-components/commit/4811af87c8ef9f8f37be6d1dad10621f6698d394)) +- **button:** href prop, updated types & styles ([8745e44](https://github.com/core-ds/core-components/commit/8745e4463deaad04f954bf3d4ae0eca66ddfa99a)) +- **button:** improved button theming ([0d2a255](https://github.com/core-ds/core-components/commit/0d2a2553aafbc34090dbc37edcb2291e0c8f09a6)) +- **button:** updated button styles ([643429d](https://github.com/core-ds/core-components/commit/643429df73fb0b5d96975de2b4b9020c42e99416)) +- **divider:** add divider ([0e4199c](https://github.com/core-ds/core-components/commit/0e4199c6d5b23438442393ef9a8f05594bc39a70)) +- **input:** add new default input ([2314b3b](https://github.com/core-ds/core-components/commit/2314b3b6f47e7b4ebfb3718927ecd593d33b2e1b)) +- **inputs:** icons & addons improvements ([e0abeba](https://github.com/core-ds/core-components/commit/e0abeba1772f8f0c12d01ca9ef5482d80a4e59cc)) +- **inputs:** improve components, update styles & props ([98ff5dd](https://github.com/core-ds/core-components/commit/98ff5dda37e4b55ff5f4bd7c8c9bb80791625935)) +- **inputs:** some refactor. add events & props ([27f5bba](https://github.com/core-ds/core-components/commit/27f5bba60e65181ad848a0628b72711f08377653)) +- **lint:** add lint ([3bd5492](https://github.com/core-ds/core-components/commit/3bd5492bba179083cb26aa99c295a43f8e3be037)) +- **portal:** add new portal component ([#75](https://github.com/core-ds/core-components/issues/75)) ([80d5499](https://github.com/core-ds/core-components/commit/80d5499edfc75c6c382feb3fa638c844c54edd11)) +- **stories:** move to mdx stories ([#104](https://github.com/core-ds/core-components/issues/104)) ([40d6aff](https://github.com/core-ds/core-components/commit/40d6aff309e93dd7072c325c6752f067670fb263)) +- **storybook:** add @storybook/addon-docs. update stories ([1e66461](https://github.com/core-ds/core-components/commit/1e66461164ac48252a305477a78ab49356a12343)) +- **switch:** add new component ([4e23acd](https://github.com/core-ds/core-components/commit/4e23acd4d05db21930d137de72e55fc9732332d3)) +- **tag:** add new component Tag ([1101b57](https://github.com/core-ds/core-components/commit/1101b5792eda538b2c508ff6ace7294c0544d1f0)) +- **themes:** add themes structure ([#108](https://github.com/core-ds/core-components/issues/108)) ([eb05b6d](https://github.com/core-ds/core-components/commit/eb05b6df0d56c76f39ebdcf6a1a6de079c3aa63b)) +- **typography:** add tools for mixin building ([e995924](https://github.com/core-ds/core-components/commit/e99592428c15573e9097a6457dd33361f5a75e85)) +- **typography:** update tokens & scripts. rebuild ([91c7c76](https://github.com/core-ds/core-components/commit/91c7c769d9623cc38f9b44a38d3a027f9fed7136)) +- **vars:** add index.css ([#90](https://github.com/core-ds/core-components/issues/90)) ([d9f3af1](https://github.com/core-ds/core-components/commit/d9f3af1521187d406271fed448dc4af498beb39e)) +- **vars:** add negative gaps ([#99](https://github.com/core-ds/core-components/issues/99)) ([5dc2cf4](https://github.com/core-ds/core-components/commit/5dc2cf404558d705411f248b353aa4841a508799)) + +### Bug Fixes + +- fix 4 spaces ([049cfa9](https://github.com/core-ds/core-components/commit/049cfa919cfd96315f716d724c0ea670c667aae2)) +- fix issues accodring to PR [#36](https://github.com/core-ds/core-components/issues/36) ([9c57325](https://github.com/core-ds/core-components/commit/9c5732519063c89fa5a544ae87611cc1244ee78b)) +- fix lint errors ([86fa366](https://github.com/core-ds/core-components/commit/86fa36694323671bd3e4bbb28980134d4e7e2ce2)) +- fixed linter errors ([0c9f9c6](https://github.com/core-ds/core-components/commit/0c9f9c69127ba979a03e66dd80f4be083d2760ce)) +- prepare inputs. move @types/jest to devDeps ([5f30dbb](https://github.com/core-ds/core-components/commit/5f30dbb064b468e54159914604426c8ec3310522)) +- restore babel config ([50eaa68](https://github.com/core-ds/core-components/commit/50eaa682c93733a4d5f1dc0fbcd32a4214b643f3)) +- update scripts & snapshots ([ce35a02](https://github.com/core-ds/core-components/commit/ce35a026850700af09953e47006bce0885c920aa)) +- **build-root-package:** several hyphens in dir name ([aeb5dfb](https://github.com/core-ds/core-components/commit/aeb5dfba8a88153762602a9c20c8db478ae2943f)) +- **button:** add missing href ([756d84b](https://github.com/core-ds/core-components/commit/756d84b775298045cdb205bc2f5155d04c6d4f35)) +- **button:** remove unused deps ([f287d48](https://github.com/core-ds/core-components/commit/f287d48dadab80b2f98e43c5a9d74029d4286303)) +- **button:** transition duration fix ([cd49653](https://github.com/core-ds/core-components/commit/cd49653db2670f9c846fb9d839f3c75d8e1c1f54)) +- **deploy:** fix demo-build for master branch ([fc46861](https://github.com/core-ds/core-components/commit/fc46861e0c8b9664abda0efaba42a175504ab02f)) +- **deps:** fix wrong dependencies ([#92](https://github.com/core-ds/core-components/issues/92)) ([085e2ce](https://github.com/core-ds/core-components/commit/085e2cef73841178322c89ef90e90747e6971adf)) +- **divider:** delete default margin ([c514bf3](https://github.com/core-ds/core-components/commit/c514bf386755b7e29f36ae148deea7a08c7984da)) +- **divider:** remarks from PR ([5df2c6f](https://github.com/core-ds/core-components/commit/5df2c6fae1d7eab7aaa77604e4f0f09c3304e1ab)) +- **divider:** style ([d718a69](https://github.com/core-ds/core-components/commit/d718a6922f38ec0e60eea23ebe1803a8798de8fa)) +- **input:** fix l bottom margin ([c41a840](https://github.com/core-ds/core-components/commit/c41a8408e1c8f338be4a787bb06d51be7f1e66da)) +- **input:** fix render fn ([4cf8ef1](https://github.com/core-ds/core-components/commit/4cf8ef18dc8fc703f50ebf70877762b8bcac7a71)) +- **input:** fix wrong filled state ([#109](https://github.com/core-ds/core-components/issues/109)) ([576495a](https://github.com/core-ds/core-components/commit/576495ac639278bf5e873535173736a8082d1b44)) +- **input:** pass sub as BaseInput child ([b60d64c](https://github.com/core-ds/core-components/commit/b60d64ca432ccf94b7472116f04010327b7c9c72)) +- **inputs:** border-box fix ([81752e1](https://github.com/core-ds/core-components/commit/81752e189382e7c2dc3982b50291b9be5827cea1)) +- **inputs:** fix css vars ([1e233a2](https://github.com/core-ds/core-components/commit/1e233a26423c544ead925851a2e7925402710951)) +- **inputs:** fix input width ([9ed950f](https://github.com/core-ds/core-components/commit/9ed950f103057c74cf02ff4a95a7a6ba868aced8)) +- **inputs:** fix placeholders styles ([e404483](https://github.com/core-ds/core-components/commit/e4044838c96b527228a78a33ee24104c4899c80f)) +- **inputs:** fix styles and types ([cb6b189](https://github.com/core-ds/core-components/commit/cb6b18957d86410deddfae2d41fea0ed201e4073)) +- **inputs:** l size side paddings ([b9688a2](https://github.com/core-ds/core-components/commit/b9688a246aec4c5e442e6ee7a84a77c87d95371b)) +- **inputs:** remove from state, detect by value prop ([208c07e](https://github.com/core-ds/core-components/commit/208c07e9a73640f43950779615d4ec3f39e61c66)) +- **inputs:** remove file type. fix styles. withIcon -> rightAddons ([f149aa8](https://github.com/core-ds/core-components/commit/f149aa88de2f94329e5c905846034d619589a7bf)) +- **inputs:** styles fixes ([9a3199e](https://github.com/core-ds/core-components/commit/9a3199ef03d8e6a97d48c376b79938c2f1bf1372)) +- **masked-input,switch:** fix wrong main field ([76d0e4e](https://github.com/core-ds/core-components/commit/76d0e4e6b05973977f49ef5edeb56790daffa566)) +- **switch:** fix global tag styling ([66ce011](https://github.com/core-ds/core-components/commit/66ce0111b0e4c47e957f94afbf66f1ff50cab607)) +- **switch:** replace div with span ([69624f9](https://github.com/core-ds/core-components/commit/69624f9c2a2e07aa91829a8940245e83e7576d05)) +- **tag:** fix disabled state ([#110](https://github.com/core-ds/core-components/issues/110)) ([a622101](https://github.com/core-ds/core-components/commit/a622101cb448e623e95ae9bfecc310548ac52dbe)) +- **tag:** fix styles ([#80](https://github.com/core-ds/core-components/issues/80)) ([bc80ba4](https://github.com/core-ds/core-components/commit/bc80ba47366a91d998d764675e17aeaed3c31666)) +- **tests:** rewrite tests titles ([d0f16ad](https://github.com/core-ds/core-components/commit/d0f16ad812cb098ba9cbf612bde245784dfb6227)) +- **tsconfig:** fix local module resolution ([f8faadf](https://github.com/core-ds/core-components/commit/f8faadfdfea9e8b570c77e1c8b3bf462ea6d26e6)) +- **typography:** add prettier-ignore to fix mixin breaking. rebuild ([6909df6](https://github.com/core-ds/core-components/commit/6909df62bbc9b0dd67143cdb950dd8e50bf54067)) +- **update-colors.js:** fix it ([c9b8c68](https://github.com/core-ds/core-components/commit/c9b8c68b8ac07e2bff33399cc1a99405bb71132d)) +- **vars:** fix build for vars. add typography to index ([cc00344](https://github.com/core-ds/core-components/commit/cc00344d6db8e60b0b230829d8bed4ef5f20c9d1)) diff --git a/CHANGELOG.2022.md b/CHANGELOG.2022.md index 31e1ed650e..efb1cb6bdc 100644 --- a/CHANGELOG.2022.md +++ b/CHANGELOG.2022.md @@ -5,75 +5,82 @@ ### [#430](https://github.com/core-ds/core-components/pull/430) #### Что изменилось + - Поднята специфичность стилей #### Влияние на компоненты -- Патчи
`icon-button` +- Патчи
`icon-button` ### [#436](https://github.com/core-ds/core-components/pull/436) #### Что изменилось + - Исправлен font-weight для TitleResponsive #### Влияние на компоненты -- Патчи
`typography` +- Патчи
`typography` ### [#410](https://github.com/core-ds/core-components/pull/410) #### Что изменилось + - Исправлено поведение таба при disabled-состоянии #### Влияние на компоненты -- Патчи
`tabs` +- Патчи
`tabs` ### [#419](https://github.com/core-ds/core-components/pull/419) #### Что изменилось + - Добавлен новый компонент GenericWrapper. Исправлено поведение компонента Gap для flex лейаута #### Влияние на компоненты -- Минорное
`generic-wrapper` `gap` +- Минорное
`generic-wrapper` `gap` ### [#413](https://github.com/core-ds/core-components/pull/413) #### Что изменилось + - Добавлен проп `collapsedTabsIds`, позволяющий заранее определять и контроллировать список вкладок, вынесенный под меню «Ещё» #### Влияние на компоненты -- Минорное
`tabs` +- Минорное
`tabs` ### [#432](https://github.com/core-ds/core-components/pull/432) #### Что изменилось + - Обновлен тип для props 'size' #### Влияние на компоненты -- Патчи
`icon-view` +- Патчи
`icon-view` ### [#433](https://github.com/core-ds/core-components/pull/433) #### Что изменилось + - Добавлен новый опциональный prop `showClear` в компонент FilterTag. Теперь есть возможность скрывать наличие крестика в активном состоянии тэга #### Влияние на компоненты -- Патчи
`filter-tag` +- Патчи
`filter-tag` ### [#431](https://github.com/core-ds/core-components/pull/431) #### Что изменилось + - Добавленa возможность убирать стрелку через пропс showArrow #### Влияние на компоненты -- Минорное
`picker-button` - +- Минорное
`picker-button` ## 37.0.0 @@ -82,17 +89,19 @@ ### [#397](https://github.com/core-ds/core-components/pull/397) #### Что изменилось + - Обновлен размер 's' c 18px на 20px для Badge view='icon' - Исправлено сжатие svg в размерах 's' и 'm'
- Обводка для Badge view='count' изменена с внешней на внутреннюю
#### Влияние на компоненты -- Мажорное
`badge` +- Мажорное
`badge` ### [#393](https://github.com/core-ds/core-components/pull/393) #### Что изменилось + - Исправлен borderRadius у календаря - Исправлена ошибка, из-за которой коллбэки onChange и onComplete в компоненте DateTimeInput не вызывались, если даты выбиралась с помощью календаря
- В компоненте DateTimeInput изменена типизация onChange и onComplete коллбэков. Теперь event опциональный, так как при выборе даты в пикере ChangeEvent в инпуте не происходит
@@ -100,50 +109,53 @@ - В компоненте DateRangeInput исправлены ошибки, из-за которых в коллбэке onComplete передавалось неверное значение value и при полной очистке инпута период в календаре не сбрасывался
#### Влияние на компоненты -- Мажорное
`date-time-input` +- Мажорное
`date-time-input` - Патчи
`date-range-input` - ### [#396](https://github.com/core-ds/core-components/pull/396) #### Что изменилось + - Добавлен новый вид выреза под индикатор - Добавлены новые размеры 32px и 20px
- В старых размерах изменены вырезы под аддон и размер аддонов (в 64 размере с 18px до 24px, в 48 и 40 размерах с 18px до 20px)
- Добавлена возможность прокидывать иконку в шейп
#### Влияние на компоненты + - Мажорное
`icon-view`
#### Что изменилось + - Обновлена версия пакета @alfalab/icons-glyph в зависимостях #### Влияние на компоненты -- Патчи
`attach` `bank-card` `calendar` `checkbox` `confirmation-v1`
`confirmation` `dropzone` `file-upload-item` `gallery` `input`
`modal` `pass-code` `password-input` `picker-button` `select-with-tags`
`select` `steps` `toast-plate` +- Патчи
`attach` `bank-card` `calendar` `checkbox` `confirmation-v1`
`confirmation` `dropzone` `file-upload-item` `gallery` `input`
`modal` `pass-code` `password-input` `picker-button` `select-with-tags`
`select` `steps` `toast-plate` ### [#429](https://github.com/core-ds/core-components/pull/429) #### Что изменилось + - Исправлено переполнение контейнера PureCell.Text #### Влияние на компоненты -- Патчи
`pure-cell` +- Патчи
`pure-cell` ### [#426](https://github.com/core-ds/core-components/pull/426) #### Что изменилось + - Исправлен дефект позволяющий удалить `dialCode` при выключеном `clearableCountryCode` #### Влияние на компоненты -- Патчи
`intl-phone-input` - +- Патчи
`intl-phone-input` ## 36.5.1 @@ -152,39 +164,42 @@ ### [#423](https://github.com/core-ds/core-components/pull/423) #### Что изменилось + - Исправлен импорт компонента Badge #### Влияние на компоненты -- Патчи
`input` `select` +- Патчи
`input` `select` ### [#422](https://github.com/core-ds/core-components/pull/422) #### Что изменилось + - "export" типов заменен на "export type" #### Влияние на компоненты -- Патчи
`calendar-input` `calendar` `date-range-input` `date-time-input` `input-autocomplete`
`picker-button` `tooltip` +- Патчи
`calendar-input` `calendar` `date-range-input` `date-time-input` `input-autocomplete`
`picker-button` `tooltip` ### [#428](https://github.com/core-ds/core-components/pull/428) #### Что изменилось + - Исправлен patternId для imageUrl #### Влияние на компоненты -- Патчи
`icon-view` +- Патчи
`icon-view` ### [#411](https://github.com/core-ds/core-components/pull/411) #### Что изменилось + - Исправлен отступ у лоадера в мобильной версии #### Влияние на компоненты -- Патчи
`confirmation` - +- Патчи
`confirmation` ## 36.5.0 @@ -193,24 +208,25 @@ ### [#334](https://github.com/core-ds/core-components/pull/334) #### Что изменилось + - В компонентах DateRangeInput, DateTimeInput и CalendarInput добавлены mobile и desktop версии компонентов. Название компонентов было изменено по схеме Component → ComponentDesktop - В компонентах Calendar и InputAutocomplete добавлена responsive версия компонентов. Название компонентов было изменено по схеме Component → ComponentResponsive
- В компонентах PickerButton и Tooltip добавлен новый пропс breakpoint. Название компонентов было изменено по схеме Component -→ ComponentResponsive для PickerButton и Component → ComponentDesktop для Tooltip
- В компонентах Confirmation и SidePanel добавлен новый пропс breakpoint
#### Влияние на компоненты -- Минорное
`calendar-input` `calendar` `confirmation` `date-range-input` `date-time-input`
`input-autocomplete` `picker-button` `side-panel` `tooltip` +- Минорное
`calendar-input` `calendar` `confirmation` `date-range-input` `date-time-input`
`input-autocomplete` `picker-button` `side-panel` `tooltip` ### [#418](https://github.com/core-ds/core-components/pull/418) #### Что изменилось + - Исправлена проблема с default-импортом в cjs форматах #### Влияние на компоненты -- Патчи
`action-button` `alert` `amount` `amount-input` `attach`
`backdrop` `badge` `bank-card` `base-modal` `bottom-sheet`
`button` `calendar` `calendar-input` `calendar-range` `calendar-with-skeleton`
`card-image` `cdn-icon` `chart` `checkbox` `checkbox-group`
`circular-progress-bar` `code-input` `collapse` `comment` `confirmation`
`confirmation-v1` `custom-button` `date-input` `date-range-input` `date-time-input`
`divider` `drawer` `dropzone` `file-upload-item` `filter-tag`
`form-control` `gallery` `gap` `global-store` `grid`
`hatching-progress-bar` `icon-button` `icon-view` `input` `input-autocomplete`
`intl-phone-input` `keyboard-focusable` `link` `list` `list-header`
`loader` `masked-input` `modal` `mq` `notification`
`notification-manager` `pagination` `pass-code` `password-input` `pattern-lock`
`phone-input` `picker-button` `plate` `popover` `portal`
`progress-bar` `pure-cell` `pure-input` `radio` `radio-group`
`scrollbar` `select` `select-with-tags` `side-panel` `skeleton`
`slider` `slider-input` `space` `spinner` `stack`
`status` `stepped-progress-bar` `steps` `switch` `table`
`tabs` `tag` `textarea` `themes` `time-input`
`toast` `toast-plate` `tooltip` `typography` `vars`
`with-suffix` - +- Патчи
`action-button` `alert` `amount` `amount-input` `attach`
`backdrop` `badge` `bank-card` `base-modal` `bottom-sheet`
`button` `calendar` `calendar-input` `calendar-range` `calendar-with-skeleton`
`card-image` `cdn-icon` `chart` `checkbox` `checkbox-group`
`circular-progress-bar` `code-input` `collapse` `comment` `confirmation`
`confirmation-v1` `custom-button` `date-input` `date-range-input` `date-time-input`
`divider` `drawer` `dropzone` `file-upload-item` `filter-tag`
`form-control` `gallery` `gap` `global-store` `grid`
`hatching-progress-bar` `icon-button` `icon-view` `input` `input-autocomplete`
`intl-phone-input` `keyboard-focusable` `link` `list` `list-header`
`loader` `masked-input` `modal` `mq` `notification`
`notification-manager` `pagination` `pass-code` `password-input` `pattern-lock`
`phone-input` `picker-button` `plate` `popover` `portal`
`progress-bar` `pure-cell` `pure-input` `radio` `radio-group`
`scrollbar` `select` `select-with-tags` `side-panel` `skeleton`
`slider` `slider-input` `space` `spinner` `stack`
`status` `stepped-progress-bar` `steps` `switch` `table`
`tabs` `tag` `textarea` `themes` `time-input`
`toast` `toast-plate` `tooltip` `typography` `vars`
`with-suffix` ## 36.4.0 @@ -219,53 +235,56 @@ ### [#402](https://github.com/core-ds/core-components/pull/402) #### Что изменилось + - Добавлено свойство `max-width` для Tooltip. #### Влияние на компоненты -- Патчи
`tooltip` +- Патчи
`tooltip` ### [#407](https://github.com/core-ds/core-components/pull/407) #### Что изменилось + - В CodeInput добавлен новый проп onErrorAnimationEnd - В Confirmation теперь сбрасывается состоянии ошибки при включенном пропе clearCodeOnError
- В Confirmation исправлена ошибка, из-за которой не показывался текст из пропа texts.blockSmsRetry
#### Влияние на компоненты -- Минорное
`code-input` +- Минорное
`code-input` - Патчи
`confirmation` - ### [#394](https://github.com/core-ds/core-components/pull/394) #### Что изменилось + - Исправлена генерация типов в .d.ts #### Влияние на компоненты -- Патчи
`modal` +- Патчи
`modal` ### [#375](https://github.com/core-ds/core-components/pull/375) #### Что изменилось + - Добавлен опциональный prop `multiple` в компонент InputAutocompleteMobile. Теперь есть возможность выбрать несколько значений #### Влияние на компоненты -- Минорное
`input-autocomplete` +- Минорное
`input-autocomplete` ### [#399](https://github.com/core-ds/core-components/pull/399) #### Что изменилось + - Исправлено некорректное выделение текста который превышает maxLength #### Влияние на компоненты -- Патчи
`textarea` - +- Патчи
`textarea` ## 36.3.1 @@ -274,22 +293,23 @@ ### [#400](https://github.com/core-ds/core-components/pull/400) #### Что изменилось + - Исправлена верстка fatal-error экрана - Поднята специфичность стилей Confirmation, чтобы они всегда перебивали стили других компонентов.
#### Влияние на компоненты -- Патчи
`confirmation` +- Патчи
`confirmation` ### [#388](https://github.com/core-ds/core-components/pull/388) #### Что изменилось + - Исправлен импорт PickerButtonDesktop компонента #### Влияние на компоненты -- Патчи
`tabs` - +- Патчи
`tabs` ## 36.3.0 @@ -298,92 +318,102 @@ ### [#377](https://github.com/core-ds/core-components/pull/377) #### Что изменилось + - Добавлен новый компонент PatternLock #### Влияние на компоненты + - Минорное
`pattern-lock`
#### Что изменилось + - Добавлены новые токены light-graphic-positive-alpha-10 и light-graphic-negative-alpha-10 #### Влияние на компоненты -- Минорное
`themes` `vars` +- Минорное
`themes` `vars` ### [#364](https://github.com/core-ds/core-components/pull/364) #### Что изменилось + - Замена иконок флагов на новые, если для страны нет соответствующего флага в наборе, вместо него выводится заглушка. #### Влияние на компоненты -- Минорное
`intl-phone-input` +- Минорное
`intl-phone-input` ### [#383](https://github.com/core-ds/core-components/pull/383) #### Что изменилось + - Добавлен новый компонент PassCode #### Влияние на компоненты -- Минорное
`pass-code` +- Минорное
`pass-code` ### [#370](https://github.com/core-ds/core-components/pull/370) #### Что изменилось + - feat(picker-button): extend options type #### Влияние на компоненты -- Минорное
`picker-button` +- Минорное
`picker-button` ### [#390](https://github.com/core-ds/core-components/pull/390) #### Что изменилось + - Подправлена типизация для компонента Typography.Text, чтобы можно было передавать ref #### Влияние на компоненты -- Патчи
`typography` +- Патчи
`typography` ### [#381](https://github.com/core-ds/core-components/pull/381) #### Что изменилось + - В хук useMatchMedia добавлено значение по-умолчанию. Также useEffect заменен на useLayoutEffect #### Влияние на компоненты -- Минорное
`mq` +- Минорное
`mq` ### [#357](https://github.com/core-ds/core-components/pull/357) #### Что изменилось + - Добавлена механика переполнения в Textarea. Теперь ввод будет доступен даже если количество введённых символов превышает maxLength. Символы, позиция которых превышает maxLength, будут выделены цветом ошибки. #### Влияние на компоненты -- Минорное
`textarea` +- Минорное
`textarea` ### [#376](https://github.com/core-ds/core-components/pull/376) #### Что изменилось + - Убрали дополнительную обертку, которая ограничивала применение пропа `className` #### Влияние на компоненты -- Патчи
`plate` +- Патчи
`plate` ### [#362](https://github.com/core-ds/core-components/pull/362) #### Что изменилось + - Исправлена ошибка в onChange обработчике, из-за которой некорректно работала вставка значений с пробелом. #### Влияние на компоненты -- Патчи
`slider-input` - +- Патчи
`slider-input` ## 36.2.0 @@ -392,21 +422,22 @@ ### [#347](https://github.com/core-ds/core-components/pull/347) #### Что изменилось + - feat(themes): add js entries #### Влияние на компоненты -- Минорное
`themes` +- Минорное
`themes` ### [#348](https://github.com/core-ds/core-components/pull/348) #### Что изменилось + - feat(select-mobile): allow to customize optionsList #### Влияние на компоненты -- Минорное
`select` - +- Минорное
`select` ## 36.1.2 @@ -415,30 +446,32 @@ ### [#358](https://github.com/core-ds/core-components/pull/358) #### Что изменилось + - Добавлен новый prop `defaultMargins` в компонент Text. Теперь есть возможность отключить отступ для тега `p` #### Влияние на компоненты -- Патчи
`typography` +- Патчи
`typography` ### [#371](https://github.com/core-ds/core-components/pull/371) #### Что изменилось + - Добавлен новый опциональный prop `rowLimit` в компонент Plate. Теперь есть возможность ограничивать количество строк для передаваемого текста в `children` (от 1 до 3). #### Влияние на компоненты -- Патчи
`plate` +- Патчи
`plate` ### [#372](https://github.com/core-ds/core-components/pull/372) #### Что изменилось + - Исправлена ошибка "document is not defined" при immediateMount=true #### Влияние на компоненты -- Патчи
`portal` - +- Патчи
`portal` ## 36.1.1 @@ -447,12 +480,12 @@ ### [#368](https://github.com/core-ds/core-components/pull/368) #### Что изменилось + - Обновлен пакет ui-primitives и миксины typography (изменился line-height 24→20 у миксинов headline-mobile_xsmall и headline-system-mobile_xsmall) #### Влияние на компоненты -- Патчи
`typography` - +- Патчи
`typography` ## 36.1.0 @@ -461,89 +494,100 @@ ### [#336](https://github.com/core-ds/core-components/pull/336) #### Что изменилось + - Добавлен пропс collapsible, при включении которого не помещающиеся в окне табы сворачиваются в PickerButton. - Добавлен хук use-collapsible-elements, который следит за изменением ширины контейнера и возвращает те элементы, которые не помещаются в данном контейнере.
#### Влияние на компоненты -- Минорное
`tabs` +- Минорное
`tabs` ### [#360](https://github.com/core-ds/core-components/pull/360) #### Что изменилось + - Исправили max-height контента. Теперь max-height добавляется только раскрываемому(foldable) контенту. #### Влияние на компоненты -- Патчи
`plate` +- Патчи
`plate` ### [#329](https://github.com/core-ds/core-components/pull/329) #### Что изменилось + - Добавлен z-index к липкому header #### Влияние на компоненты + - Минорное
`modal`
#### Что изменилось + - Добавлен новый компонент BaseOption - Изменены отступы у заголовка группы (компонент Optgroup)
- Изменены отступы у футера, который возвращает хук useSelectWithApply
- Добавлена возможность прокидывать кастомный Option в useLazyLoading и useSelectWithLoading хук
#### Влияние на компоненты + - Минорное
`select`
#### Что изменилось + - Добавлено вертикальное выравнивание у компонента PureCell.Graphics #### Влияние на компоненты -- Минорное
`pure-cell` +- Минорное
`pure-cell` ### [#346](https://github.com/core-ds/core-components/pull/346) #### Что изменилось -- В компоненте Select иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph + +- В компоненте Select иконки подгружаемые с cdn были заменены на иконки из icons-glyph #### Влияние на компоненты -- Минорное
`select` `themes` +- Минорное
`select` `themes` ### [#335](https://github.com/core-ds/core-components/pull/335) #### Что изменилось + - Добавлен обязательный параметр(expanded) в типы обработчиков состояний. Добавлены пропсы:

-- `expandedContentClassName` - позволяет устанавливать дополнительный класс для скрываемого контента.
-- `defaultExpanded` - позволяет устанавливать начальное состояние неконтролируемого компонента.
+- `expandedContentClassName` - позволяет устанавливать дополнительный класс для скрываемого контента.
+- `defaultExpanded` - позволяет устанавливать начальное состояние неконтролируемого компонента.
#### Влияние на компоненты + - Минорное
`collapse`
#### Что изменилось + - Добавили restProps в компонент #### Влияние на компоненты -- Минорное
`list` +- Минорное
`list` ### [#342](https://github.com/core-ds/core-components/pull/342) #### Что изменилось -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph -#### Влияние на компоненты -- Минорное
`gallery` `input` `themes` `amount-input` `date-input`
`date-range-input` `date-time-input` `input-autocomplete` `intl-phone-input` `masked-input`
`password-input` `slider-input` `time-input` `calendar-input` `phone-input`
+- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph +#### Влияние на компоненты +- Минорное
`gallery` `input` `themes` `amount-input` `date-input`
`date-range-input` `date-time-input` `input-autocomplete` `intl-phone-input` `masked-input`
`password-input` `slider-input` `time-input` `calendar-input` `phone-input`
## 36.0.0 @@ -552,103 +596,113 @@ ### [#344](https://github.com/core-ds/core-components/pull/344) #### Что изменилось + - При наличии правого аддона, дефолтная иконка кнопки не исчезает #### Влияние на компоненты -- Мажорное
`picker-button` +- Мажорное
`picker-button` ### [#331](https://github.com/core-ds/core-components/pull/331) #### Что изменилось + - Изменен фоновый цвет на light/specialbg/secondary-transparent для компонента Plate в режиме common #### Влияние на компоненты -- Минорное
`plate` +- Минорное
`plate` ### [#350](https://github.com/core-ds/core-components/pull/350) #### Что изменилось + - В документацию добавлены пропсы и их описание для подкомпонентов SidePanel #### Влияние на компоненты -- Патчи
`side-panel` +- Патчи
`side-panel` ### [#326](https://github.com/core-ds/core-components/pull/326) #### Что изменилось + - Исправлены прыжки поповера в react 18 #### Влияние на компоненты -- Патчи
`popover` +- Патчи
`popover` ### [#352](https://github.com/core-ds/core-components/pull/352) #### Что изменилось + - Исправлена ошибка в ModalResponsive, из-за которой сбрасывалось состояние у дочерник компонентов при переключении desktop -> mobile и наоборот #### Влияние на компоненты -- Патчи
`modal` +- Патчи
`modal` ### [#343](https://github.com/core-ds/core-components/pull/343) #### Что изменилось + - Добавлен проп clearCodeOnError. Если он включен, то при возникновении ошибки код будет очищаться #### Влияние на компоненты -- Минорное
`code-input` `confirmation` +- Минорное
`code-input` `confirmation` ### [#317](https://github.com/core-ds/core-components/pull/317) #### Что изменилось + - Исправлены ошибки в браузере IE 11 в компонентах Сheckbox и FormControl #### Влияние на компоненты -- Патчи
`checkbox` `form-control` +- Патчи
`checkbox` `form-control` ### [#327](https://github.com/core-ds/core-components/pull/327) #### Что изменилось + - Добавлен новый размер (24px) для компонента SuperEllipse - Добавлены новые размеры (24px и 128px) для компонента Circle
#### Влияние на компоненты -- Минорное
`icon-view` +- Минорное
`icon-view` ### [#359](https://github.com/core-ds/core-components/pull/359) #### Что изменилось + - Исправили disabled в режиме Ссылки #### Влияние на компоненты -- Патчи
`button` +- Патчи
`button` ### [#339](https://github.com/core-ds/core-components/pull/339) #### Что изменилось + - Добавлен новый компонент Gap #### Влияние на компоненты -- Минорное
`gap` +- Минорное
`gap` ### [#340](https://github.com/core-ds/core-components/pull/340) #### Что изменилось -- В компоненте Plate иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph -#### Влияние на компоненты -- Минорное
`plate` +- В компоненте Plate иконки подгружаемые с cdn были заменены на иконки из icons-glyph +#### Влияние на компоненты +- Минорное
`plate` ## 35.2.0 @@ -657,29 +711,32 @@ ### [#333](https://github.com/core-ds/core-components/pull/333) #### Что изменилось + - Явные значения в css классах(padding, border-radius и т.п) заменены на переменные #### Влияние на компоненты -- Патчи
`badge` `bank-card` `bottom-sheet` `loader` `slider`
`steps` +- Патчи
`badge` `bank-card` `bottom-sheet` `loader` `slider`
`steps` ### [6d0fc7849](https://github.com/core-ds/core-components/commit/6d0fc7849f1cd01d03a911c6b0b64ed5d00a3f24) #### Что изменилось + - Добавлен пропс `stickyHeader` для фиксации заголовков при скролле #### Влияние на компоненты + - Минорное
`table` ### [a32104b45](https://github.com/core-ds/core-components/commit/a32104b45de2c4f93aad8c380428ed88331801fb) #### Что изменилось + - Исправлено форматирование номера в intl-phone-input, который передаётся снаружи компонента в props `value` #### Влияние на компоненты -- Патчи
`intl-phone-input` - +- Патчи
`intl-phone-input` ## 35.1.0 @@ -688,67 +745,73 @@ ### [#320](https://github.com/core-ds/core-components/pull/320) #### Что изменилось + - Скрыт нативный спиннер (стрелочки) у компонента Input при type='number' #### Влияние на компоненты -- Патчи
`input` `amount-input` `date-input` `date-range-input` `date-time-input`
`input-autocomplete` `intl-phone-input` `masked-input` `password-input` `select`
`slider-input` `time-input` `with-suffix` `calendar-input` `calendar-range`
`bank-card` `phone-input` `picker-button` `select-with-tags` +- Патчи
`input` `amount-input` `date-input` `date-range-input` `date-time-input`
`input-autocomplete` `intl-phone-input` `masked-input` `password-input` `select`
`slider-input` `time-input` `with-suffix` `calendar-input` `calendar-range`
`bank-card` `phone-input` `picker-button` `select-with-tags` ### [#314](https://github.com/core-ds/core-components/pull/314) #### Что изменилось + - Исправлена ошибка в css из-за которой не работал проп withoutBorder #### Влияние на компоненты -- Патчи
`table` +- Патчи
`table` ### [#323](https://github.com/core-ds/core-components/pull/323) #### Что изменилось + - Добавлена возможность передавать пропсы в компонент Scrollbar #### Влияние на компоненты -- Минорное
`drawer` `side-panel` +- Минорное
`drawer` `side-panel` ### [#322](https://github.com/core-ds/core-components/pull/322) #### Что изменилось + - Исправлено некорректное отображение в Safari при взаимодействии с компонентом FilterTag #### Влияние на компоненты -- Патчи
`filter-tag` +- Патчи
`filter-tag` ### [#319](https://github.com/core-ds/core-components/pull/319) #### Что изменилось + - Добавлен текстовый стиль letter-spacing для компонента Status #### Влияние на компоненты -- Патчи
`status` +- Патчи
`status` ### [#324](https://github.com/core-ds/core-components/pull/324) #### Что изменилось + - "export" типов заменен на "export type" #### Влияние на компоненты -- Патчи
`amount` `confirmation-v1` `global-store` `picker-button` `typography`
+- Патчи
`amount` `confirmation-v1` `global-store` `picker-button` `typography`
### [#308](https://github.com/core-ds/core-components/pull/308) #### Что изменилось + - Добавлен новый пропс в компонент Amount - codeFormat, который отображает код валюты в зависимости от указанного формата. Обновлена библиотека @alfalab/utils, теперь метод formatAmount форматирует сумму, разделяя ее средним математическим пробелом.
#### Влияние на компоненты -- Минорное
`amount` `amount-input` - +- Минорное
`amount` `amount-input` ## 35.0.0 @@ -757,41 +820,41 @@ ### [#292](https://github.com/core-ds/core-components/pull/292) #### Что изменилось + - Новые стили кнопок в теме default - Новый вид состояния loading во всех темах (Loader заменён на Spinner)
- Исправлена высота кнопки ghost в размерах s/m/l/xl (увеличилась на 4px)
- Исправлена ширина кнопок secondary/tertiary (уменьшилась на 2px)
#### Влияние на компоненты -- Мажорное
`button` `attach` `custom-button` `icon-button` `picker-button`
+- Мажорное
`button` `attach` `custom-button` `icon-button` `picker-button`
- Патчи
`alert` `bottom-sheet` `confirmation` `confirmation-v1` `themes`
`pure-cell` `side-panel` `plate` `tag` `toast-plate`
`modal` - ### [#310](https://github.com/core-ds/core-components/pull/310) #### Что изменилось + - Добавлена возможность менять иконку Closer #### Влияние на компоненты -- Минорное
`side-panel` +- Минорное
`side-panel` ### [#286](https://github.com/core-ds/core-components/pull/286) #### Что изменилось + - Новые стили инпутов в теме default (все компоненты на основе FormControl, включая Select) - Исправлен отступ до hint в SliderInput (уменьшился на 2px)
#### Влияние на компоненты -- Мажорное
`input` `form-control` `amount-input` `calendar-input` `date-input`
`date-range-input` `date-time-input` `input-autocomplete` `intl-phone-input` `password-input`
`select` `slider-input` `textarea` `time-input` `masked-input`
`select-with-tags` `calendar-range` `phone-input` +- Мажорное
`input` `form-control` `amount-input` `calendar-input` `date-input`
`date-range-input` `date-time-input` `input-autocomplete` `intl-phone-input` `password-input`
`select` `slider-input` `textarea` `time-input` `masked-input`
`select-with-tags` `calendar-range` `phone-input` - Патчи
`keyboard-focusable` `picker-button` `with-suffix` `themes` `bank-card`
- - ## 34.0.0 @@ -856,52 +919,56 @@ ### [#307](https://github.com/core-ds/core-components/pull/307) #### Что изменилось + - Добавили зависимость @alfalab/icons-glyph в компонент Modal #### Влияние на компоненты -- Патчи
`modal` +- Патчи
`modal` ### [#306](https://github.com/core-ds/core-components/pull/306) #### Что изменилось + - В portal добавлен проп immediateMount, с помощью которого можно мгновенно отрендерить дочерние элементы через портал. - В base-modal исправлена проблема с доступом к ref-ам контента, который рендерился через portal.
#### Влияние на компоненты -- Минорное
`portal` +- Минорное
`portal` - Патчи
`base-modal` - ### [#293](https://github.com/core-ds/core-components/pull/293) #### Что изменилось + - Изменен размер инпута с "s" на "m" #### Влияние на компоненты + - Патчи
`bank-card`
#### Что изменилось + - Исправлена высота инпута в OS Windows #### Влияние на компоненты -- Патчи
`input` +- Патчи
`input` ### [#305](https://github.com/core-ds/core-components/pull/305) #### Что изменилось + - Добавлен проп placement, теперь Drawer и SidePanel могут появляться слева - Добавлен кастомный скроллбар.
#### Влияние на компоненты -- Минорное
`drawer` `side-panel` - +- Минорное
`drawer` `side-panel` ## 33.0.2 @@ -910,40 +977,43 @@ ### [#296](https://github.com/core-ds/core-components/pull/296) #### Что изменилось + - Удалены разделители опций в выпадающем списке для темы "click" #### Влияние на компоненты -- Патчи
`picker-button` +- Патчи
`picker-button` ### [#298](https://github.com/core-ds/core-components/pull/298) #### Что изменилось + - Заменены иконки M размера на S #### Влияние на компоненты -- Патчи
`attach` `file-upload-item` +- Патчи
`attach` `file-upload-item` ### [#301](https://github.com/core-ds/core-components/pull/301) #### Что изменилось + - Исправлена ошибка, из-за которой не рендерился контент CalendarMobile в iOS < 13.4 #### Влияние на компоненты -- Патчи
`calendar` `modal` - +- Патчи
`calendar` `modal` ## 33.0.1 ### Patch Changes #### `@alfalab/core-components-slider` -- [#289](https://github.com/core-ds/core-components/pull/289): Увеличена кликабельная область слайдера. Thanks [@reme3d2y](https://github.com/reme3d2y) +- [#289](https://github.com/core-ds/core-components/pull/289): Увеличена кликабельная область слайдера. Thanks [@reme3d2y](https://github.com/reme3d2y) #### `@alfalab/core-components-slider-input` + - [#289](https://github.com/core-ds/core-components/pull/289): Увеличена кликабельная область слайдера. Thanks [@reme3d2y](https://github.com/reme3d2y) ## 33.0.0 @@ -951,69 +1021,71 @@ ### Major Changes #### `@alfalab/core-components/vars` + - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и типографика. Thanks [@Valeri8888](https://github.com/Valeri8888) - Удалённые миксины с текстовыми стилями были помечены как deprecated более двух лет назад и в макетах давно не используются. + Удалённые миксины с текстовыми стилями были помечены как deprecated более двух лет назад и в макетах давно не используются. - Основное изменение, про которое нужно знать — удалены текстовые transparent цвета. - При обновлении достаточно убрать `-transparent` из названий: - `--color-light-text-secondary-transparent` → `--color-light-text-secondary` + Основное изменение, про которое нужно знать — удалены текстовые transparent цвета. + При обновлении достаточно убрать `-transparent` из названий: + `--color-light-text-secondary-transparent` → `--color-light-text-secondary` ### Patch Changes #### `@alfalab/core-components/themes` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-amount-input` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-amount` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-attach` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-button` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-calendar-input` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-calendar` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-checkbox-group` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-checkbox` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-date-input` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-date-range-input` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-date-time-input` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-filter-tag` -- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) #### `@alfalab/core-components-form-control` + - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) ## 32.2.0 @@ -1021,108 +1093,109 @@ ### Minor Changes #### `@alfalab/core-components-bank-card` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-confirmation` + - [#233](https://github.com/core-ds/core-components/pull/233): Добавлены новые компоненты ConfirmationMobile, ConfirmationResponsive. Thanks [@Valeri8888](https://github.com/Valeri8888) Обновлены стили компонента для соответствия актуальным макетам - #### `@alfalab/core-components-themes` + - [#233](https://github.com/core-ds/core-components/pull/233): Добавлены новые компоненты ConfirmationMobile, ConfirmationResponsive. Thanks [@Valeri8888](https://github.com/Valeri8888) Обновлены стили компонента для соответствия актуальным макетам - ### Patch Changes #### `@alfalab/core-components-attach` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-calendar` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-checkbox` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-collapse` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-confirmation` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-confirmation-v1` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-dropzone` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-file-upload-item` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-gallery` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-input` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-password-input` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-picker-button` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-select-with-tags` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-steps` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-toast-plate` + - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) - #### `@alfalab/core-components-badge` + - [#284](https://github.com/core-ds/core-components/pull/284): В компоненте Badge уменьшен font-size до 11px для размера 's' (высота 16-17). Thanks [@Valeri8888](https://github.com/Valeri8888) В компоненте Tabs свойство font-feature-settings: 'ss01' назначено только для темы click - #### `@alfalab/core-components-tabs` + - [#284](https://github.com/core-ds/core-components/pull/284): В компоненте Badge уменьшен font-size до 11px для размера 's' (высота 16-17). Thanks [@Valeri8888](https://github.com/Valeri8888) В компоненте Tabs свойство font-feature-settings: 'ss01' назначено только для темы click - #### `@alfalab/core-components-themes` + - [#284](https://github.com/core-ds/core-components/pull/284): В компоненте Badge уменьшен font-size до 11px для размера 's' (высота 16-17). Thanks [@Valeri8888](https://github.com/Valeri8888) В компоненте Tabs свойство font-feature-settings: 'ss01' назначено только для темы click @@ -1131,6 +1204,7 @@ ### Patch Changes #### `@alfalab/core-components-link` + - [#283](https://github.com/core-ds/core-components/pull/283): Добавлен атрибут type=button для Link при pseudo=true. Thanks [@dmitrbrvsk](https://github.com/dmitrbrvsk) ## 32.1.1 @@ -1138,38 +1212,39 @@ ### Patch Changes #### `@alfalab/core-components-calendar-input` -- [#277](https://github.com/core-ds/core-components/pull/277): Внешняя ошибка больше не влияет на вызов onChange. Thanks [@reme3d2y](https://github.com/reme3d2y) +- [#277](https://github.com/core-ds/core-components/pull/277): Внешняя ошибка больше не влияет на вызов onChange. Thanks [@reme3d2y](https://github.com/reme3d2y) #### `@alfalab/core-components-collapse` -- [#278](https://github.com/core-ds/core-components/pull/278): Отключена анимация при изначальном expanded=true. Убран ненужный пропс style.. Thanks [@reme3d2y](https://github.com/reme3d2y) +- [#278](https://github.com/core-ds/core-components/pull/278): Отключена анимация при изначальном expanded=true. Убран ненужный пропс style.. Thanks [@reme3d2y](https://github.com/reme3d2y) #### `@alfalab/core-components-amount-input` -- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) +- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) #### `@alfalab/core-components-amount` -- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) +- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) #### `@alfalab/core-components-attach` -- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) +- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) #### `@alfalab/core-components-confirmation-v1` -- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) +- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) #### `@alfalab/core-components-confirmation` -- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) +- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) #### `@alfalab/core-components-filter-tag` -- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) +- [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) #### `@alfalab/core-components-intl-phone-input` + - [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) ## 32.1.0 @@ -1177,28 +1252,29 @@ ### Minor Changes #### `@alfalab/core-components-date-range-input` -- [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) +- [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-date-time-input` -- [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) +- [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-time-input` -- [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) +- [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-themes` -- [#269](https://github.com/core-ds/core-components/pull/269): Удалена темизация click для компонента CodeInput. Thanks [@Valeri8888](https://github.com/Valeri8888) +- [#269](https://github.com/core-ds/core-components/pull/269): Удалена темизация click для компонента CodeInput. Thanks [@Valeri8888](https://github.com/Valeri8888) ### Patch Changes #### `@alfalab/core-components-calendar` -- [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) +- [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-code-input` + - [#274](https://github.com/core-ds/core-components/pull/274): Компактная версия теперь включается когда >6 полей. Thanks [@Valeri8888](https://github.com/Valeri8888) ## 32.0.1 @@ -1206,15 +1282,16 @@ ### Patch Changes #### `@alfalab/core-components-pure-cell` + - [#271](https://github.com/core-ds/core-components/pull/271): Внутренний компонент "comment" заменен на @alfalab/core-components-comment. Thanks [@Lacronts](https://github.com/Lacronts) - [#272](https://github.com/core-ds/core-components/pull/272): HTML-тег main заменен на div. Thanks [@Lacronts](https://github.com/Lacronts) - #### `@alfalab/core-components-side-panel` -- [#270](https://github.com/core-ds/core-components/pull/270): Исправлена ошибка, когда non-static position контент при скролле перекрывал sticky заголовок. Thanks [@Lacronts](https://github.com/Lacronts) +- [#270](https://github.com/core-ds/core-components/pull/270): Исправлена ошибка, когда non-static position контент при скролле перекрывал sticky заголовок. Thanks [@Lacronts](https://github.com/Lacronts) #### `@alfalab/core-components-vars` + - [#273](https://github.com/core-ds/core-components/pull/273): Исправлены пути импорта переменных в бандле. Thanks [@Lacronts](https://github.com/Lacronts) ## 32.0.0 @@ -1222,75 +1299,76 @@ ### Major Changes #### `@alfalab/core-components-pure-cell` -- [#182](https://github.com/core-ds/core-components/pull/182): Убран проп isMultiline. Есть rowLimit, и если его не передавать, ожидается, что текст не будет обрезаться.. Thanks [@blackraydev](https://github.com/blackraydev) +- [#182](https://github.com/core-ds/core-components/pull/182): Убран проп isMultiline. Есть rowLimit, и если его не передавать, ожидается, что текст не будет обрезаться.. Thanks [@blackraydev](https://github.com/blackraydev) ### Minor Changes #### `@alfalab/core-components-steps` -- [#189](https://github.com/core-ds/core-components/pull/189): Новый компонент Steps. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Новый компонент Steps. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-confirmation-v1` -- [#260](https://github.com/core-ds/core-components/pull/260): Добавил реэкспорт для компонента ConfirmationV1 как Confirmation и типа пропсов ConfirmationV1Props как ConfirmationProps. Thanks [@EGNKupava](https://github.com/EGNKupava) +- [#260](https://github.com/core-ds/core-components/pull/260): Добавил реэкспорт для компонента ConfirmationV1 как Confirmation и типа пропсов ConfirmationV1Props как ConfirmationProps. Thanks [@EGNKupava](https://github.com/EGNKupava) ### Patch Changes #### `@alfalab/core-components-attach` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-bank-card` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-calendar` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-checkbox` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-confirmation` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-confirmation-v1` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-dropzone` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-file-upload-item` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-gallery` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-input` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-password-input` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-select-with-tags` -- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) +- [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) #### `@alfalab/core-components-toast-plate` + - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) - [#261](https://github.com/core-ds/core-components/pull/261): Обновлены внутренние зависимости. Thanks [@Lacronts](https://github.com/Lacronts) - #### `@alfalab/core-components-modal` + - [#261](https://github.com/core-ds/core-components/pull/261): Обновлены внутренние зависимости. Thanks [@Lacronts](https://github.com/Lacronts) ## 31.3.3 @@ -1302,386 +1380,335 @@ ### Patch Changes #### `@alfalab/core-components-scrollbar` + - [#239](https://github.com/core-ds/core-components/pull/239): Исправлен border-radius при hover-эффекте. Thanks [@Valeri8888](https://github.com/Valeri8888) # [31.3.0](https://github.com/core-ds/core-components/compare/v31.2.0...v31.3.0) (2022-09-13) - ### Bug Fixes -* **base-modal:** fixed scroll to top issues ([#224](https://github.com/core-ds/core-components/issues/224)) ([2e3fdd2](https://github.com/core-ds/core-components/commit/2e3fdd22a4af2b043c428a3ad800b82ac4166d5d)) -* **base-modal:** fixed ssr error in element matches polyfill ([#257](https://github.com/core-ds/core-components/issues/257)) ([a6e05b1](https://github.com/core-ds/core-components/commit/a6e05b15ed4aabea7ffea0566d7fb121d72b8729)) -* **file-upload-item:** fixed error display by default ([#252](https://github.com/core-ds/core-components/issues/252)) ([874a669](https://github.com/core-ds/core-components/commit/874a6692af0a17624a219ee967bb1503a3dfb629)) - +- **base-modal:** fixed scroll to top issues ([#224](https://github.com/core-ds/core-components/issues/224)) ([2e3fdd2](https://github.com/core-ds/core-components/commit/2e3fdd22a4af2b043c428a3ad800b82ac4166d5d)) +- **base-modal:** fixed ssr error in element matches polyfill ([#257](https://github.com/core-ds/core-components/issues/257)) ([a6e05b1](https://github.com/core-ds/core-components/commit/a6e05b15ed4aabea7ffea0566d7fb121d72b8729)) +- **file-upload-item:** fixed error display by default ([#252](https://github.com/core-ds/core-components/issues/252)) ([874a669](https://github.com/core-ds/core-components/commit/874a6692af0a17624a219ee967bb1503a3dfb629)) ### Features -* **code-input:** update mobile version ([#230](https://github.com/core-ds/core-components/issues/230)) ([bf66e85](https://github.com/core-ds/core-components/commit/bf66e85b147e22be13f1a62d945aba6012d5ccf5)) -* **confirmation-v1:** rename package confirmation-v-1 ([#258](https://github.com/core-ds/core-components/issues/258)) ([195f7a0](https://github.com/core-ds/core-components/commit/195f7a08eeb24bbb9eecf8e62155ec18dbe731d5)) -* **confirmation-v1:** return old confirmation ([#241](https://github.com/core-ds/core-components/issues/241)) ([a8779ed](https://github.com/core-ds/core-components/commit/a8779ed56baf0db9662ae6e00a417e44c56a65f3)) -* **form-control, themes:** change colors in intranet theme ([#236](https://github.com/core-ds/core-components/issues/236)) ([eae8b7d](https://github.com/core-ds/core-components/commit/eae8b7deed8e394ebc0cc00cd584d9f05575b3b0)) -* **plate:** added custom variable for box-shadow ([#256](https://github.com/core-ds/core-components/issues/256)) ([4d75e4e](https://github.com/core-ds/core-components/commit/4d75e4e84ead1ee12070c9097dba3b40400baac6)) -* **tabs:** update click theme ([#225](https://github.com/core-ds/core-components/issues/225)) ([fe12ef6](https://github.com/core-ds/core-components/commit/fe12ef6e8fc7305a165a289e089187ef41119da0)) +- **code-input:** update mobile version ([#230](https://github.com/core-ds/core-components/issues/230)) ([bf66e85](https://github.com/core-ds/core-components/commit/bf66e85b147e22be13f1a62d945aba6012d5ccf5)) +- **confirmation-v1:** rename package confirmation-v-1 ([#258](https://github.com/core-ds/core-components/issues/258)) ([195f7a0](https://github.com/core-ds/core-components/commit/195f7a08eeb24bbb9eecf8e62155ec18dbe731d5)) +- **confirmation-v1:** return old confirmation ([#241](https://github.com/core-ds/core-components/issues/241)) ([a8779ed](https://github.com/core-ds/core-components/commit/a8779ed56baf0db9662ae6e00a417e44c56a65f3)) +- **form-control, themes:** change colors in intranet theme ([#236](https://github.com/core-ds/core-components/issues/236)) ([eae8b7d](https://github.com/core-ds/core-components/commit/eae8b7deed8e394ebc0cc00cd584d9f05575b3b0)) +- **plate:** added custom variable for box-shadow ([#256](https://github.com/core-ds/core-components/issues/256)) ([4d75e4e](https://github.com/core-ds/core-components/commit/4d75e4e84ead1ee12070c9097dba3b40400baac6)) +- **tabs:** update click theme ([#225](https://github.com/core-ds/core-components/issues/225)) ([fe12ef6](https://github.com/core-ds/core-components/commit/fe12ef6e8fc7305a165a289e089187ef41119da0)) # [31.2.0](https://github.com/core-ds/core-components/compare/v31.1.0...v31.2.0) (2022-09-12) - ### Bug Fixes -* **base-modal:** Added element matches polyfill for IE11 ([#245](https://github.com/core-ds/core-components/issues/245)) ([cb95740](https://github.com/core-ds/core-components/commit/cb95740b931ec48d2f92a2cb64a148400b6cb135)) -* **button:** increased click area of the active state ([#246](https://github.com/core-ds/core-components/issues/246)) ([8937248](https://github.com/core-ds/core-components/commit/8937248cbfe7a2f542855a0bba5bb472eb82a076)) -* **checkbox-group:** added onBlur and onFocus ([#250](https://github.com/core-ds/core-components/issues/250)) ([b4a739b](https://github.com/core-ds/core-components/commit/b4a739b8516089265b9979f6f1eb5649d05833f5)) -* **gallery:** fixed swiper height on ios 14 and lower ([#95](https://github.com/core-ds/core-components/issues/95)) ([9703ca7](https://github.com/core-ds/core-components/commit/9703ca74733a6df2697354298be745b354c6cc1a)) -* **input-autocomplete:** add prop for custom input ([#223](https://github.com/core-ds/core-components/issues/223)) ([632cb7f](https://github.com/core-ds/core-components/commit/632cb7fb572366cd42fad1a8741e99098cce1f12)) -* **intl-phone-input:** fixed on ios 14 and lower ([#94](https://github.com/core-ds/core-components/issues/94)) ([8b7d3fc](https://github.com/core-ds/core-components/commit/8b7d3fc0df18d035cf86960832da5c8e07cc22e4)) -* **pure-cell:** better pure-cell text (ReactNode for value) ([#240](https://github.com/core-ds/core-components/issues/240)) ([8eea8b0](https://github.com/core-ds/core-components/commit/8eea8b068dbc75b20362edf89f4de0a56f5eb8d5)) -* **radio-group:** added onBlur and onFocus ([#249](https://github.com/core-ds/core-components/issues/249)) ([68c802c](https://github.com/core-ds/core-components/commit/68c802c2f4b8d1506573f9bd53aa2ef1af2e51ce)) -* renamed default classnames ([#198](https://github.com/core-ds/core-components/issues/198)) ([bf22bba](https://github.com/core-ds/core-components/commit/bf22bbafbd16c14804316cba25a4026b85dde2f7)) -* **select:** removed ssr warning ([#248](https://github.com/core-ds/core-components/issues/248)) ([d7f4abd](https://github.com/core-ds/core-components/commit/d7f4abdfd34b63d977e84dfa7373ae2d1554e3e0)) - +- **base-modal:** Added element matches polyfill for IE11 ([#245](https://github.com/core-ds/core-components/issues/245)) ([cb95740](https://github.com/core-ds/core-components/commit/cb95740b931ec48d2f92a2cb64a148400b6cb135)) +- **button:** increased click area of the active state ([#246](https://github.com/core-ds/core-components/issues/246)) ([8937248](https://github.com/core-ds/core-components/commit/8937248cbfe7a2f542855a0bba5bb472eb82a076)) +- **checkbox-group:** added onBlur and onFocus ([#250](https://github.com/core-ds/core-components/issues/250)) ([b4a739b](https://github.com/core-ds/core-components/commit/b4a739b8516089265b9979f6f1eb5649d05833f5)) +- **gallery:** fixed swiper height on ios 14 and lower ([#95](https://github.com/core-ds/core-components/issues/95)) ([9703ca7](https://github.com/core-ds/core-components/commit/9703ca74733a6df2697354298be745b354c6cc1a)) +- **input-autocomplete:** add prop for custom input ([#223](https://github.com/core-ds/core-components/issues/223)) ([632cb7f](https://github.com/core-ds/core-components/commit/632cb7fb572366cd42fad1a8741e99098cce1f12)) +- **intl-phone-input:** fixed on ios 14 and lower ([#94](https://github.com/core-ds/core-components/issues/94)) ([8b7d3fc](https://github.com/core-ds/core-components/commit/8b7d3fc0df18d035cf86960832da5c8e07cc22e4)) +- **pure-cell:** better pure-cell text (ReactNode for value) ([#240](https://github.com/core-ds/core-components/issues/240)) ([8eea8b0](https://github.com/core-ds/core-components/commit/8eea8b068dbc75b20362edf89f4de0a56f5eb8d5)) +- **radio-group:** added onBlur and onFocus ([#249](https://github.com/core-ds/core-components/issues/249)) ([68c802c](https://github.com/core-ds/core-components/commit/68c802c2f4b8d1506573f9bd53aa2ef1af2e51ce)) +- renamed default classnames ([#198](https://github.com/core-ds/core-components/issues/198)) ([bf22bba](https://github.com/core-ds/core-components/commit/bf22bbafbd16c14804316cba25a4026b85dde2f7)) +- **select:** removed ssr warning ([#248](https://github.com/core-ds/core-components/issues/248)) ([d7f4abd](https://github.com/core-ds/core-components/commit/d7f4abdfd34b63d977e84dfa7373ae2d1554e3e0)) ### Features -* **calendar-range:** added onError callback ([#253](https://github.com/core-ds/core-components/issues/253)) ([46e163c](https://github.com/core-ds/core-components/commit/46e163c750427e410d9aa9df6c554a5fbb86eba2)) -* **form-control:** new input/select label view (outer) ([#177](https://github.com/core-ds/core-components/issues/177)) ([66beb15](https://github.com/core-ds/core-components/commit/66beb15756de97e17a4d1dd4221fa7f401ee8539)) -* **toast-plate:** added inverted views ([#243](https://github.com/core-ds/core-components/issues/243)) ([a527d15](https://github.com/core-ds/core-components/commit/a527d152ab0705b429180ffe009886ff8920686a)) -* **vars:** introducing vars bundles ([#192](https://github.com/core-ds/core-components/issues/192)) ([28c15a4](https://github.com/core-ds/core-components/commit/28c15a49a7037680b38fec19018c0d1268f79ac3)) +- **calendar-range:** added onError callback ([#253](https://github.com/core-ds/core-components/issues/253)) ([46e163c](https://github.com/core-ds/core-components/commit/46e163c750427e410d9aa9df6c554a5fbb86eba2)) +- **form-control:** new input/select label view (outer) ([#177](https://github.com/core-ds/core-components/issues/177)) ([66beb15](https://github.com/core-ds/core-components/commit/66beb15756de97e17a4d1dd4221fa7f401ee8539)) +- **toast-plate:** added inverted views ([#243](https://github.com/core-ds/core-components/issues/243)) ([a527d15](https://github.com/core-ds/core-components/commit/a527d152ab0705b429180ffe009886ff8920686a)) +- **vars:** introducing vars bundles ([#192](https://github.com/core-ds/core-components/issues/192)) ([28c15a4](https://github.com/core-ds/core-components/commit/28c15a49a7037680b38fec19018c0d1268f79ac3)) # [31.1.0](https://github.com/core-ds/core-components/compare/v31.0.0...v31.1.0) (2022-09-09) - ### Bug Fixes -* **action-button:** review fixes ([8c4b419](https://github.com/core-ds/core-components/commit/8c4b4193b2959e99f2b0f6de836f3f3d63ca0b18)) - +- **action-button:** review fixes ([8c4b419](https://github.com/core-ds/core-components/commit/8c4b4193b2959e99f2b0f6de836f3f3d63ca0b18)) ### Features -* new component action-button ([b8b009c](https://github.com/core-ds/core-components/commit/b8b009cc63071b9766c8a23884eac95fdbf6d658)) -* updated colors prop & added tests ([08170e6](https://github.com/core-ds/core-components/commit/08170e6fa6e33e7785477ff41b833f75809e9f60)) +- new component action-button ([b8b009c](https://github.com/core-ds/core-components/commit/b8b009cc63071b9766c8a23884eac95fdbf6d658)) +- updated colors prop & added tests ([08170e6](https://github.com/core-ds/core-components/commit/08170e6fa6e33e7785477ff41b833f75809e9f60)) # [31.0.0](https://github.com/core-ds/core-components/compare/v30.7.0...v31.0.0) (2022-09-06) - ### Bug Fixes -* **link:** replace component with a button in pseudo mode ([#156](https://github.com/core-ds/core-components/issues/156)) ([6f24cbb](https://github.com/core-ds/core-components/commit/6f24cbb433c4ced85986d5f0e0b3bc1289e0fb8d)) - +- **link:** replace component with a button in pseudo mode ([#156](https://github.com/core-ds/core-components/issues/156)) ([6f24cbb](https://github.com/core-ds/core-components/commit/6f24cbb433c4ced85986d5f0e0b3bc1289e0fb8d)) ### BREAKING CHANGES -* **link:** В компоненте Link с пропсом pseudo заменяется дефолтный html-элемент "a" на +- **link:** В компоненте Link с пропсом pseudo заменяется дефолтный html-элемент "a" на "button" Co-authored-by: crybabydanchan # [30.7.0](https://github.com/core-ds/core-components/compare/v30.6.1...v30.7.0) (2022-09-06) - ### Features -* **slider-input:** revert steps ([#234](https://github.com/core-ds/core-components/issues/234)) ([d5e312b](https://github.com/core-ds/core-components/commit/d5e312bb7a54e53414e205a57081159033d53efe)) +- **slider-input:** revert steps ([#234](https://github.com/core-ds/core-components/issues/234)) ([d5e312b](https://github.com/core-ds/core-components/commit/d5e312bb7a54e53414e205a57081159033d53efe)) ## [30.6.1](https://github.com/core-ds/core-components/compare/v30.6.0...v30.6.1) (2022-09-05) - ### Bug Fixes -* **skeleton:** added className for visible === false ([29a1280](https://github.com/core-ds/core-components/commit/29a12809730bd49e5d2c47c66840642fff359f4c)) +- **skeleton:** added className for visible === false ([29a1280](https://github.com/core-ds/core-components/commit/29a12809730bd49e5d2c47c66840642fff359f4c)) # [30.6.0](https://github.com/core-ds/core-components/compare/v30.5.1...v30.6.0) (2022-09-02) - ### Features -* **select:** add showCheckMark to option shape ([#235](https://github.com/core-ds/core-components/issues/235)) ([5339071](https://github.com/core-ds/core-components/commit/53390718a89300184fd82016b02ce40223eca687)) +- **select:** add showCheckMark to option shape ([#235](https://github.com/core-ds/core-components/issues/235)) ([5339071](https://github.com/core-ds/core-components/commit/53390718a89300184fd82016b02ce40223eca687)) ## [30.5.1](https://github.com/core-ds/core-components/compare/v30.5.0...v30.5.1) (2022-09-02) - ### Bug Fixes -* temporary fix for non-existing types ([#237](https://github.com/core-ds/core-components/issues/237)) ([cadb48c](https://github.com/core-ds/core-components/commit/cadb48cdc966690ceb26ed3f6c74f1af2481b6b0)) +- temporary fix for non-existing types ([#237](https://github.com/core-ds/core-components/issues/237)) ([cadb48c](https://github.com/core-ds/core-components/commit/cadb48cdc966690ceb26ed3f6c74f1af2481b6b0)) # [30.5.0](https://github.com/core-ds/core-components/compare/v30.4.1...v30.5.0) (2022-09-01) - ### Features -* **side-panel:** add props imageUrl and fix doc ([#168](https://github.com/core-ds/core-components/issues/168)) ([9ca0f00](https://github.com/core-ds/core-components/commit/9ca0f0094b993bdd302765db79bcf8f91fae2a12)) -* testing-library versions update ([#216](https://github.com/core-ds/core-components/issues/216)) ([33b6225](https://github.com/core-ds/core-components/commit/33b62259a1332f535f367502590ea37e7ad051d4)) +- **side-panel:** add props imageUrl and fix doc ([#168](https://github.com/core-ds/core-components/issues/168)) ([9ca0f00](https://github.com/core-ds/core-components/commit/9ca0f0094b993bdd302765db79bcf8f91fae2a12)) +- testing-library versions update ([#216](https://github.com/core-ds/core-components/issues/216)) ([33b6225](https://github.com/core-ds/core-components/commit/33b62259a1332f535f367502590ea37e7ad051d4)) ## [30.4.1](https://github.com/core-ds/core-components/compare/v30.4.0...v30.4.1) (2022-08-31) - ### Bug Fixes -* **amount:** fix undefined symbol ([#231](https://github.com/core-ds/core-components/issues/231)) ([07a93ab](https://github.com/core-ds/core-components/commit/07a93abefd530532cdacb530baf27d239b7f7174)) -* **filter-tag:** поправлены цвета у иконки крестика ([#167](https://github.com/core-ds/core-components/issues/167)) ([28eb49e](https://github.com/core-ds/core-components/commit/28eb49e012b5b6f8a8e4f07e2214ecb65fae0564)) -* fixed missing css vars ([#227](https://github.com/core-ds/core-components/issues/227)) ([42912d3](https://github.com/core-ds/core-components/commit/42912d306657490e8c7f577cb53120767d503fcb)) -* **loader:** убран лишний отступ у последнего элемента, мешающий выравниванию ([#218](https://github.com/core-ds/core-components/issues/218)) ([e064754](https://github.com/core-ds/core-components/commit/e064754bfa1d4fbd85f5a9569790da4eef0d237c)) -* **pure-cell:** onClick fix ([#217](https://github.com/core-ds/core-components/issues/217)) ([2f08187](https://github.com/core-ds/core-components/commit/2f08187cce6aef3ca0609d183890a8968f054f52)) -* **toast:** word breaking rule ([#228](https://github.com/core-ds/core-components/issues/228)) ([b329c88](https://github.com/core-ds/core-components/commit/b329c88475501bf4ad2285f3804ada83134b51da)) +- **amount:** fix undefined symbol ([#231](https://github.com/core-ds/core-components/issues/231)) ([07a93ab](https://github.com/core-ds/core-components/commit/07a93abefd530532cdacb530baf27d239b7f7174)) +- **filter-tag:** поправлены цвета у иконки крестика ([#167](https://github.com/core-ds/core-components/issues/167)) ([28eb49e](https://github.com/core-ds/core-components/commit/28eb49e012b5b6f8a8e4f07e2214ecb65fae0564)) +- fixed missing css vars ([#227](https://github.com/core-ds/core-components/issues/227)) ([42912d3](https://github.com/core-ds/core-components/commit/42912d306657490e8c7f577cb53120767d503fcb)) +- **loader:** убран лишний отступ у последнего элемента, мешающий выравниванию ([#218](https://github.com/core-ds/core-components/issues/218)) ([e064754](https://github.com/core-ds/core-components/commit/e064754bfa1d4fbd85f5a9569790da4eef0d237c)) +- **pure-cell:** onClick fix ([#217](https://github.com/core-ds/core-components/issues/217)) ([2f08187](https://github.com/core-ds/core-components/commit/2f08187cce6aef3ca0609d183890a8968f054f52)) +- **toast:** word breaking rule ([#228](https://github.com/core-ds/core-components/issues/228)) ([b329c88](https://github.com/core-ds/core-components/commit/b329c88475501bf4ad2285f3804ada83134b51da)) # [30.4.0](https://github.com/core-ds/core-components/compare/v30.3.0...v30.4.0) (2022-08-30) - ### Features -* **table:** change paddings, new compactHorizontal prop ([#214](https://github.com/core-ds/core-components/issues/214)) ([788eebe](https://github.com/core-ds/core-components/commit/788eebe2bb0cd9951fd1d8c2e41a065c3dda25c8)) +- **table:** change paddings, new compactHorizontal prop ([#214](https://github.com/core-ds/core-components/issues/214)) ([788eebe](https://github.com/core-ds/core-components/commit/788eebe2bb0cd9951fd1d8c2e41a065c3dda25c8)) # [30.3.0](https://github.com/core-ds/core-components/compare/v30.2.1...v30.3.0) (2022-08-29) - ### Features -* **textarea:** custom scrollbar ([#196](https://github.com/core-ds/core-components/issues/196)) ([c0d956c](https://github.com/core-ds/core-components/commit/c0d956cc7bf0a5440a66602ca77de2942a268be2)) +- **textarea:** custom scrollbar ([#196](https://github.com/core-ds/core-components/issues/196)) ([c0d956c](https://github.com/core-ds/core-components/commit/c0d956cc7bf0a5440a66602ca77de2942a268be2)) ## [30.2.1](https://github.com/core-ds/core-components/compare/v30.2.0...v30.2.1) (2022-08-26) - ### Bug Fixes -* **code-input:** fixed "cannot read properties of undefined (reading get)" error ([#226](https://github.com/core-ds/core-components/issues/226)) ([8383613](https://github.com/core-ds/core-components/commit/838361388979acc184fb213f96c9e4ab43333fbc)) +- **code-input:** fixed "cannot read properties of undefined (reading get)" error ([#226](https://github.com/core-ds/core-components/issues/226)) ([8383613](https://github.com/core-ds/core-components/commit/838361388979acc184fb213f96c9e4ab43333fbc)) # [30.2.0](https://github.com/core-ds/core-components/compare/v30.1.0...v30.2.0) (2022-08-26) - ### Bug Fixes -* **filter-tag:** добавил font family ([#212](https://github.com/core-ds/core-components/issues/212)) ([34dd253](https://github.com/core-ds/core-components/commit/34dd253c5c7dcdc03443212c7dd1c2b3b8ca9e1b)) -* **pure-cell:** fix subcomponent addon and category ([#172](https://github.com/core-ds/core-components/issues/172)) ([461ee92](https://github.com/core-ds/core-components/commit/461ee920b9fc7ebaa72b355b2678388f35d49b1f)) - +- **filter-tag:** добавил font family ([#212](https://github.com/core-ds/core-components/issues/212)) ([34dd253](https://github.com/core-ds/core-components/commit/34dd253c5c7dcdc03443212c7dd1c2b3b8ca9e1b)) +- **pure-cell:** fix subcomponent addon and category ([#172](https://github.com/core-ds/core-components/issues/172)) ([461ee92](https://github.com/core-ds/core-components/commit/461ee920b9fc7ebaa72b355b2678388f35d49b1f)) ### Features -* **picker-button:** new component picker-button-mobile ([#193](https://github.com/core-ds/core-components/issues/193)) ([6074d38](https://github.com/core-ds/core-components/commit/6074d38861c28cf796699cb3e6ec6304303c4481)) +- **picker-button:** new component picker-button-mobile ([#193](https://github.com/core-ds/core-components/issues/193)) ([6074d38](https://github.com/core-ds/core-components/commit/6074d38861c28cf796699cb3e6ec6304303c4481)) # [30.1.0](https://github.com/core-ds/core-components/compare/v30.0.1...v30.1.0) (2022-08-25) - ### Bug Fixes -* **link:** fix addons size for underline mode in description ([15c796b](https://github.com/core-ds/core-components/commit/15c796b1f5a99122ba7e3ba638490517eb985c6e)) - +- **link:** fix addons size for underline mode in description ([15c796b](https://github.com/core-ds/core-components/commit/15c796b1f5a99122ba7e3ba638490517eb985c6e)) ### Features -* **link:** implemented new view & updated styles ([3873619](https://github.com/core-ds/core-components/commit/38736190773e2aa199ca544ee976efb1ba5a88d3)) -* **link:** updated styles ([b5296f2](https://github.com/core-ds/core-components/commit/b5296f26a8271c2b3c2f34195dd3997308877bbe)) +- **link:** implemented new view & updated styles ([3873619](https://github.com/core-ds/core-components/commit/38736190773e2aa199ca544ee976efb1ba5a88d3)) +- **link:** updated styles ([b5296f2](https://github.com/core-ds/core-components/commit/b5296f26a8271c2b3c2f34195dd3997308877bbe)) ## [30.0.1](https://github.com/core-ds/core-components/compare/v30.0.0...v30.0.1) (2022-08-19) - ### Bug Fixes -* **icon-view:** add aditional path to image and change icon size in addons ([#170](https://github.com/core-ds/core-components/issues/170)) ([51c8259](https://github.com/core-ds/core-components/commit/51c825975296bed2c5461c8b96d7ef527684d7b0)) -* omit enterKeyHint prop ([#197](https://github.com/core-ds/core-components/issues/197)) ([72f4946](https://github.com/core-ds/core-components/commit/72f494623c282f61b45539fa1c13d5c45bc5180c)) -* **picker-button:** increased css specificity ([#190](https://github.com/core-ds/core-components/issues/190)) ([e089871](https://github.com/core-ds/core-components/commit/e08987199825fa5d0dc4b4f1e158849155bb34dc)) +- **icon-view:** add aditional path to image and change icon size in addons ([#170](https://github.com/core-ds/core-components/issues/170)) ([51c8259](https://github.com/core-ds/core-components/commit/51c825975296bed2c5461c8b96d7ef527684d7b0)) +- omit enterKeyHint prop ([#197](https://github.com/core-ds/core-components/issues/197)) ([72f4946](https://github.com/core-ds/core-components/commit/72f494623c282f61b45539fa1c13d5c45bc5180c)) +- **picker-button:** increased css specificity ([#190](https://github.com/core-ds/core-components/issues/190)) ([e089871](https://github.com/core-ds/core-components/commit/e08987199825fa5d0dc4b4f1e158849155bb34dc)) # [30.0.0](https://github.com/core-ds/core-components/compare/v29.4.0...v30.0.0) (2022-08-18) - ### Bug Fixes -* returned dist directory ([#199](https://github.com/core-ds/core-components/issues/199)) ([fabc15e](https://github.com/core-ds/core-components/commit/fabc15effa1457ca65ec7238206f1b1fc2a2a613)) - +- returned dist directory ([#199](https://github.com/core-ds/core-components/issues/199)) ([fabc15e](https://github.com/core-ds/core-components/commit/fabc15effa1457ca65ec7238206f1b1fc2a2a613)) ### Features -* removed dist directory in published packages ([#200](https://github.com/core-ds/core-components/issues/200)) ([8af8fee](https://github.com/core-ds/core-components/commit/8af8fee53ca0bd19fa2d1ca1422e0df23096e2c8)) - +- removed dist directory in published packages ([#200](https://github.com/core-ds/core-components/issues/200)) ([8af8fee](https://github.com/core-ds/core-components/commit/8af8fee53ca0bd19fa2d1ca1422e0df23096e2c8)) ### BREAKING CHANGES -* Изменена директория расположения индексных файлов в опубликованных пакетах (удалена +- Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - # [29.4.0](https://github.com/core-ds/core-components/compare/v29.3.0...v29.4.0) (2022-08-12) - ### Features -* **plate:** subAddons slot, on/off border&shadow&borderRadius, new view 'custom' ([#158](https://github.com/core-ds/core-components/issues/158)) ([b2fc570](https://github.com/core-ds/core-components/commit/b2fc5703f083d493f0e5222d9a1f752cac190dbf)), closes [#161](https://github.com/core-ds/core-components/issues/161) +- **plate:** subAddons slot, on/off border&shadow&borderRadius, new view 'custom' ([#158](https://github.com/core-ds/core-components/issues/158)) ([b2fc570](https://github.com/core-ds/core-components/commit/b2fc5703f083d493f0e5222d9a1f752cac190dbf)), closes [#161](https://github.com/core-ds/core-components/issues/161) # [29.3.0](https://github.com/core-ds/core-components/compare/v29.2.1...v29.3.0) (2022-08-12) - ### Features -* **BottonSheet:** improved bottomSheet component ([#185](https://github.com/core-ds/core-components/issues/185)) ([ba5fa06](https://github.com/core-ds/core-components/commit/ba5fa06d5f342ac5e04adadb72fd21e1f699c00a)) +- **BottonSheet:** improved bottomSheet component ([#185](https://github.com/core-ds/core-components/issues/185)) ([ba5fa06](https://github.com/core-ds/core-components/commit/ba5fa06d5f342ac5e04adadb72fd21e1f699c00a)) ## [29.2.1](https://github.com/core-ds/core-components/compare/v29.2.0...v29.2.1) (2022-08-11) - ### Bug Fixes -* **slider:** handle slide ([#187](https://github.com/core-ds/core-components/issues/187)) ([709f8df](https://github.com/core-ds/core-components/commit/709f8df47c82c905225dfd4645e345cf14e9f844)) +- **slider:** handle slide ([#187](https://github.com/core-ds/core-components/issues/187)) ([709f8df](https://github.com/core-ds/core-components/commit/709f8df47c82c905225dfd4645e345cf14e9f844)) # [29.2.0](https://github.com/core-ds/core-components/compare/v29.1.0...v29.2.0) (2022-08-09) - ### Features -* **bottom-sheet:** добавлен dataTestId для элементов компонента ([f90c76b](https://github.com/core-ds/core-components/commit/f90c76bf539542957dc0aea7be28089e5c919859)) -* **modal:** добавлен dataTestId для элементов компонента ([151ff8c](https://github.com/core-ds/core-components/commit/151ff8c5220d794719f90c1bdabedb905db841a7)) +- **bottom-sheet:** добавлен dataTestId для элементов компонента ([f90c76b](https://github.com/core-ds/core-components/commit/f90c76bf539542957dc0aea7be28089e5c919859)) +- **modal:** добавлен dataTestId для элементов компонента ([151ff8c](https://github.com/core-ds/core-components/commit/151ff8c5220d794719f90c1bdabedb905db841a7)) # [29.1.0](https://github.com/core-ds/core-components/compare/v29.0.0...v29.1.0) (2022-08-04) - ### Bug Fixes -* **comment:** add missing types ([95888d8](https://github.com/core-ds/core-components/commit/95888d8f87934140c8c6f113aee413a11579c7b6)) -* **progress-bar:** mechanics of progress line fixed ([#169](https://github.com/core-ds/core-components/issues/169)) ([4b46836](https://github.com/core-ds/core-components/commit/4b4683628ea4fd9da178799dfca8b287c0776ff1)) -* purgecss fixes ([#179](https://github.com/core-ds/core-components/issues/179)) ([ca52bab](https://github.com/core-ds/core-components/commit/ca52bab7ca82dd45c5693e46fbcec493943b3bbb)) -* **slider:** заменил interface на type ([#176](https://github.com/core-ds/core-components/issues/176)) ([d19e3cb](https://github.com/core-ds/core-components/commit/d19e3cb3a728feb6a0dc46a6a0691f72fc90e10f)) - +- **comment:** add missing types ([95888d8](https://github.com/core-ds/core-components/commit/95888d8f87934140c8c6f113aee413a11579c7b6)) +- **progress-bar:** mechanics of progress line fixed ([#169](https://github.com/core-ds/core-components/issues/169)) ([4b46836](https://github.com/core-ds/core-components/commit/4b4683628ea4fd9da178799dfca8b287c0776ff1)) +- purgecss fixes ([#179](https://github.com/core-ds/core-components/issues/179)) ([ca52bab](https://github.com/core-ds/core-components/commit/ca52bab7ca82dd45c5693e46fbcec493943b3bbb)) +- **slider:** заменил interface на type ([#176](https://github.com/core-ds/core-components/issues/176)) ([d19e3cb](https://github.com/core-ds/core-components/commit/d19e3cb3a728feb6a0dc46a6a0691f72fc90e10f)) ### Features -* **modal:** add props breakpoint for modal responsive ([#173](https://github.com/core-ds/core-components/issues/173)) ([e835052](https://github.com/core-ds/core-components/commit/e835052c45b4fa2d9d1c8c6401929b0be7088f48)) -* react 18 support ([#159](https://github.com/core-ds/core-components/issues/159)) ([2e6693c](https://github.com/core-ds/core-components/commit/2e6693c62f534e333aadb7d3fff4ffd78ac84c63)) -* **themes:** Добавлена возможность подключать styleMobile через js файл ([#178](https://github.com/core-ds/core-components/issues/178)) ([aa00d4b](https://github.com/core-ds/core-components/commit/aa00d4bc88d601f1af2ccc3ef15f729c35351252)) +- **modal:** add props breakpoint for modal responsive ([#173](https://github.com/core-ds/core-components/issues/173)) ([e835052](https://github.com/core-ds/core-components/commit/e835052c45b4fa2d9d1c8c6401929b0be7088f48)) +- react 18 support ([#159](https://github.com/core-ds/core-components/issues/159)) ([2e6693c](https://github.com/core-ds/core-components/commit/2e6693c62f534e333aadb7d3fff4ffd78ac84c63)) +- **themes:** Добавлена возможность подключать styleMobile через js файл ([#178](https://github.com/core-ds/core-components/issues/178)) ([aa00d4b](https://github.com/core-ds/core-components/commit/aa00d4bc88d601f1af2ccc3ef15f729c35351252)) # [29.0.0](https://github.com/core-ds/core-components/compare/v28.7.0...v29.0.0) (2022-07-25) - ### Features -* Новый cdn alfabank.servicecdn.ru ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) - +- Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) ### BREAKING CHANGES -* Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.servicecdn.ru - data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {адрес-ресурса}.ru +data: 'self'` -* chore(screenshot-utils): change cdn +- chore(screenshot-utils): change cdn -* feat(cdn-icon): add prop baseUrl +- feat(cdn-icon): add prop baseUrl # [28.7.0](https://github.com/core-ds/core-components/compare/v28.6.0...v28.7.0) (2022-07-25) - ### Bug Fixes -* **base-modal:** fixed click on scrollbar bug ([#165](https://github.com/core-ds/core-components/issues/165)) ([c9df897](https://github.com/core-ds/core-components/commit/c9df8977a6f2e30d753a1f825bb6bad061179a6e)) -* **bottom-sheet:** fix component border-radius ([#157](https://github.com/core-ds/core-components/issues/157)) ([57b767e](https://github.com/core-ds/core-components/commit/57b767e43e40e9170967e3a53481e21f92cb0190)) -* **bottom-sheet:** fix doc ([#163](https://github.com/core-ds/core-components/issues/163)) ([cbf3282](https://github.com/core-ds/core-components/commit/cbf32828bc2fe472d59d52c1e5644e7934262d73)) - +- **base-modal:** fixed click on scrollbar bug ([#165](https://github.com/core-ds/core-components/issues/165)) ([c9df897](https://github.com/core-ds/core-components/commit/c9df8977a6f2e30d753a1f825bb6bad061179a6e)) +- **bottom-sheet:** fix component border-radius ([#157](https://github.com/core-ds/core-components/issues/157)) ([57b767e](https://github.com/core-ds/core-components/commit/57b767e43e40e9170967e3a53481e21f92cb0190)) +- **bottom-sheet:** fix doc ([#163](https://github.com/core-ds/core-components/issues/163)) ([cbf3282](https://github.com/core-ds/core-components/commit/cbf32828bc2fe472d59d52c1e5644e7934262d73)) ### Features -* **codemod:** codemode to remove dist from imports ([#164](https://github.com/core-ds/core-components/issues/164)) ([ceab8b8](https://github.com/core-ds/core-components/commit/ceab8b82c34d3429e366a2c8b7ebda37fd3c9237)) +- **codemod:** codemode to remove dist from imports ([#164](https://github.com/core-ds/core-components/issues/164)) ([ceab8b8](https://github.com/core-ds/core-components/commit/ceab8b82c34d3429e366a2c8b7ebda37fd3c9237)) # [28.6.0](https://github.com/core-ds/core-components/compare/v28.5.0...v28.6.0) (2022-07-22) - ### Features -* **comment-view:** add comment view component ([#134](https://github.com/core-ds/core-components/issues/134)) ([f1e0b69](https://github.com/core-ds/core-components/commit/f1e0b695ad9bd17f6a3503aa3ceed03e09112dbd)) +- **comment-view:** add comment view component ([#134](https://github.com/core-ds/core-components/issues/134)) ([f1e0b69](https://github.com/core-ds/core-components/commit/f1e0b695ad9bd17f6a3503aa3ceed03e09112dbd)) # [28.5.0](https://github.com/core-ds/core-components/compare/v28.4.0...v28.5.0) (2022-07-22) - ### Features -* **circular-progress-bar:** added new sizes and props ([#122](https://github.com/core-ds/core-components/issues/122)) ([9b1c412](https://github.com/core-ds/core-components/commit/9b1c4126aabc516349655a51c6302d6af84aa129)) +- **circular-progress-bar:** added new sizes and props ([#122](https://github.com/core-ds/core-components/issues/122)) ([9b1c412](https://github.com/core-ds/core-components/commit/9b1c4126aabc516349655a51c6302d6af84aa129)) # [28.4.0](https://github.com/core-ds/core-components/compare/v28.3.1...v28.4.0) (2022-07-18) - ### Features -* **tabs:** full width TabsMobile ([#124](https://github.com/core-ds/core-components/issues/124)) ([659763a](https://github.com/core-ds/core-components/commit/659763abefd2b3762713958e32272c762bb116c6)) -* **tooltip:** add use anchor width for popover ([#151](https://github.com/core-ds/core-components/issues/151)) ([1f6991c](https://github.com/core-ds/core-components/commit/1f6991c6ae67471a32b74f7295dd0288ee83c05b)) +- **tabs:** full width TabsMobile ([#124](https://github.com/core-ds/core-components/issues/124)) ([659763a](https://github.com/core-ds/core-components/commit/659763abefd2b3762713958e32272c762bb116c6)) +- **tooltip:** add use anchor width for popover ([#151](https://github.com/core-ds/core-components/issues/151)) ([1f6991c](https://github.com/core-ds/core-components/commit/1f6991c6ae67471a32b74f7295dd0288ee83c05b)) ## [28.3.1](https://github.com/core-ds/core-components/compare/v28.3.0...v28.3.1) (2022-07-18) - ### Bug Fixes -* **skeleton:** fixed skeleton animation flickering(safari) ([#142](https://github.com/core-ds/core-components/issues/142)) ([40fb389](https://github.com/core-ds/core-components/commit/40fb389316d2a12492ea6a1827947ac71bf7d081)) +- **skeleton:** fixed skeleton animation flickering(safari) ([#142](https://github.com/core-ds/core-components/issues/142)) ([40fb389](https://github.com/core-ds/core-components/commit/40fb389316d2a12492ea6a1827947ac71bf7d081)) # [28.3.0](https://github.com/core-ds/core-components/compare/v28.2.6...v28.3.0) (2022-07-15) - ### Bug Fixes -* **pure-cell:** fix content ([#144](https://github.com/core-ds/core-components/issues/144)) ([5fdd5b0](https://github.com/core-ds/core-components/commit/5fdd5b0f4f71969deac12b96438d29ec956eed3c)) -* **side-panel:** fix ts ([#149](https://github.com/core-ds/core-components/issues/149)) ([6ec7063](https://github.com/core-ds/core-components/commit/6ec706359d95bf7e55845aa0b24a7fd5190d0932)) -* test timeout time up ([#154](https://github.com/core-ds/core-components/issues/154)) ([17678fc](https://github.com/core-ds/core-components/commit/17678fc948b91769318f5cf8fc76b8a547414b5d)) - +- **pure-cell:** fix content ([#144](https://github.com/core-ds/core-components/issues/144)) ([5fdd5b0](https://github.com/core-ds/core-components/commit/5fdd5b0f4f71969deac12b96438d29ec956eed3c)) +- **side-panel:** fix ts ([#149](https://github.com/core-ds/core-components/issues/149)) ([6ec7063](https://github.com/core-ds/core-components/commit/6ec706359d95bf7e55845aa0b24a7fd5190d0932)) +- test timeout time up ([#154](https://github.com/core-ds/core-components/issues/154)) ([17678fc](https://github.com/core-ds/core-components/commit/17678fc948b91769318f5cf8fc76b8a547414b5d)) ### Features -* **bottom-sheet:** add props for disable blocking scroll and modal wrapper classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([a873c20](https://github.com/core-ds/core-components/commit/a873c2035d4885c1b8e5ffae02ce75c4826d1e71)) -* **tabs:** add className fro tab button and tab children ([#132](https://github.com/core-ds/core-components/issues/132)) ([a1b19d2](https://github.com/core-ds/core-components/commit/a1b19d282d27159103f13205f9ea694489d65c51)) +- **bottom-sheet:** add props for disable blocking scroll and modal wrapper classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([a873c20](https://github.com/core-ds/core-components/commit/a873c2035d4885c1b8e5ffae02ce75c4826d1e71)) +- **tabs:** add className fro tab button and tab children ([#132](https://github.com/core-ds/core-components/issues/132)) ([a1b19d2](https://github.com/core-ds/core-components/commit/a1b19d282d27159103f13205f9ea694489d65c51)) ## [28.2.6](https://github.com/core-ds/core-components/compare/v28.2.5...v28.2.6) (2022-07-15) - ### Bug Fixes -* bump packages version ([#153](https://github.com/core-ds/core-components/issues/153)) ([fd3e082](https://github.com/core-ds/core-components/commit/fd3e08205672129cdce04e1000c673f2cd9c10da)) +- bump packages version ([#153](https://github.com/core-ds/core-components/issues/153)) ([fd3e082](https://github.com/core-ds/core-components/commit/fd3e08205672129cdce04e1000c673f2cd9c10da)) ## [28.2.5](https://github.com/core-ds/core-components/compare/v28.2.4...v28.2.5) (2022-07-14) - ### Bug Fixes -* fixed separate packages build ([#152](https://github.com/core-ds/core-components/issues/152)) ([56da602](https://github.com/core-ds/core-components/commit/56da6023946316e7c4a0af3805db962574cc3f0a)) +- fixed separate packages build ([#152](https://github.com/core-ds/core-components/issues/152)) ([56da602](https://github.com/core-ds/core-components/commit/56da6023946316e7c4a0af3805db962574cc3f0a)) ## [28.2.4](https://github.com/core-ds/core-components/compare/v28.2.3...v28.2.4) (2022-07-14) - ### Bug Fixes -* **base-modal:** fix overflow hidden bug ([#128](https://github.com/core-ds/core-components/issues/128)) ([eb953b9](https://github.com/core-ds/core-components/commit/eb953b9866dae8c28bf8265d6884cdf1544ae63c)) +- **base-modal:** fix overflow hidden bug ([#128](https://github.com/core-ds/core-components/issues/128)) ([eb953b9](https://github.com/core-ds/core-components/commit/eb953b9866dae8c28bf8265d6884cdf1544ae63c)) ## [28.2.3](https://github.com/core-ds/core-components/compare/v28.2.2...v28.2.3) (2022-07-14) - ### Bug Fixes -* **scrollbar:** removed core-js dependency ([#145](https://github.com/core-ds/core-components/issues/145)) ([72da859](https://github.com/core-ds/core-components/commit/72da859555de203e1f4c75a316227738b4b981f2)) +- **scrollbar:** removed core-js dependency ([#145](https://github.com/core-ds/core-components/issues/145)) ([72da859](https://github.com/core-ds/core-components/commit/72da859555de203e1f4c75a316227738b4b981f2)) ## [28.2.2](https://github.com/core-ds/core-components/compare/v28.2.1...v28.2.2) (2022-07-12) - ### Bug Fixes -* **cdn-icon:** edited icon size fit svg ([#141](https://github.com/core-ds/core-components/issues/141)) ([54098bf](https://github.com/core-ds/core-components/commit/54098bff366b8a3715b986d7c3e37556b60bb2bf)) +- **cdn-icon:** edited icon size fit svg ([#141](https://github.com/core-ds/core-components/issues/141)) ([54098bf](https://github.com/core-ds/core-components/commit/54098bff366b8a3715b986d7c3e37556b60bb2bf)) # [28.2.1](https://github.com/core-ds/core-components/compare/v28.1.1...v28.2.0) (2022-07-11) - ### Bug Fixes -* **base-modal:** fix using resize observer ([#136](https://github.com/core-ds/core-components/issues/136)) ([cb8f03c](https://github.com/core-ds/core-components/commit/cb8f03ca55394316189d1d4529ee3fdb691538d9)) -* **select:** added comment for IE ([#127](https://github.com/core-ds/core-components/issues/127)) ([31fb5f6](https://github.com/core-ds/core-components/commit/31fb5f69c57acbf71e897b8c261068a24c883ecc)) - +- **base-modal:** fix using resize observer ([#136](https://github.com/core-ds/core-components/issues/136)) ([cb8f03c](https://github.com/core-ds/core-components/commit/cb8f03ca55394316189d1d4529ee3fdb691538d9)) +- **select:** added comment for IE ([#127](https://github.com/core-ds/core-components/issues/127)) ([31fb5f6](https://github.com/core-ds/core-components/commit/31fb5f69c57acbf71e897b8c261068a24c883ecc)) ### Features -* **bottom-sheet:** add prop to set modal classname ([#133](https://github.com/core-ds/core-components/issues/133)) ([8305c0e](https://github.com/core-ds/core-components/commit/8305c0e50b4fe6ebc8bb1f532d33157c63514915)) -* **tooltip:** change media query for TooltipResponsive ([#131](https://github.com/core-ds/core-components/issues/131)) ([87e44aa](https://github.com/core-ds/core-components/commit/87e44aa499dcac3832e6bdd4894c829c64487c29)) +- **bottom-sheet:** add prop to set modal classname ([#133](https://github.com/core-ds/core-components/issues/133)) ([8305c0e](https://github.com/core-ds/core-components/commit/8305c0e50b4fe6ebc8bb1f532d33157c63514915)) +- **tooltip:** change media query for TooltipResponsive ([#131](https://github.com/core-ds/core-components/issues/131)) ([87e44aa](https://github.com/core-ds/core-components/commit/87e44aa499dcac3832e6bdd4894c829c64487c29)) ## [28.1.1](https://github.com/core-ds/core-components/compare/v28.1.0...v28.1.1) (2022-07-07) - ### Bug Fixes -* fixed 'window is not defined' error ([#126](https://github.com/core-ds/core-components/issues/126)) ([f4e9ca5](https://github.com/core-ds/core-components/commit/f4e9ca54ed52fb328d21c85b7efa8176a90dcb6e)) +- fixed 'window is not defined' error ([#126](https://github.com/core-ds/core-components/issues/126)) ([f4e9ca5](https://github.com/core-ds/core-components/commit/f4e9ca54ed52fb328d21c85b7efa8176a90dcb6e)) # [28.1.0](https://github.com/core-ds/core-components/compare/v28.0.0...v28.1.0) (2022-07-07) - ### Features -* **spinner:** new size & inverted theme ([#123](https://github.com/core-ds/core-components/issues/123)) ([5568ab5](https://github.com/core-ds/core-components/commit/5568ab5183badaded723ebc5a608b20bf471c6bc)) +- **spinner:** new size & inverted theme ([#123](https://github.com/core-ds/core-components/issues/123)) ([5568ab5](https://github.com/core-ds/core-components/commit/5568ab5183badaded723ebc5a608b20bf471c6bc)) # Changelog @@ -1691,215 +1718,185 @@ All notable changes to this project will be documented in this file. See [standa # [27.15.0](https://github.com/core-ds/core-components/compare/v27.14.0...v27.15.0) (2022-07-04) - ### Features -* **slider:** migrate to noui-slider ([#98](https://github.com/core-ds/core-components/issues/98)) ([8056e60](https://github.com/core-ds/core-components/commit/8056e605f2eeef2f7e348a4ddeb4a2fc83e1dbd7)) +- **slider:** migrate to noui-slider ([#98](https://github.com/core-ds/core-components/issues/98)) ([8056e60](https://github.com/core-ds/core-components/commit/8056e605f2eeef2f7e348a4ddeb4a2fc83e1dbd7)) # [27.14.0](https://github.com/core-ds/core-components/compare/v27.13.1...v27.14.0) (2022-07-01) - ### Features -* **select:** add select-modal-mobile ([#47](https://github.com/core-ds/core-components/issues/47)) ([5ec4268](https://github.com/core-ds/core-components/commit/5ec42688065bb279d721541ec21bde242675ab8a)) -* **side-panel:** add new component side-panel ([#56](https://github.com/core-ds/core-components/issues/56)) ([0f9365a](https://github.com/core-ds/core-components/commit/0f9365ab22597cc230ac19ab19032f63d72a816e)) - +- **select:** add select-modal-mobile ([#47](https://github.com/core-ds/core-components/issues/47)) ([5ec4268](https://github.com/core-ds/core-components/commit/5ec42688065bb279d721541ec21bde242675ab8a)) +- **side-panel:** add new component side-panel ([#56](https://github.com/core-ds/core-components/issues/56)) ([0f9365a](https://github.com/core-ds/core-components/commit/0f9365ab22597cc230ac19ab19032f63d72a816e)) ### Performance Improvements -* refuse to use a resize-observer polyfill if it is not needed ([#120](https://github.com/core-ds/core-components/issues/120)) ([f2abcb2](https://github.com/core-ds/core-components/commit/f2abcb2888dd5906b345f5fc64b1624eef56ac13)) +- refuse to use a resize-observer polyfill if it is not needed ([#120](https://github.com/core-ds/core-components/issues/120)) ([f2abcb2](https://github.com/core-ds/core-components/commit/f2abcb2888dd5906b345f5fc64b1624eef56ac13)) ## [27.13.1](https://github.com/core-ds/core-components/compare/v27.13.0...v27.13.1) (2022-06-30) - ### Bug Fixes -* **base-modal:** fixed outside modal click ([#115](https://github.com/core-ds/core-components/issues/115)) ([6a08f72](https://github.com/core-ds/core-components/commit/6a08f726521dcd9a310b0e06345950429eac246a)) -* **intl-phone-input:** fixed caret jumps ([#112](https://github.com/core-ds/core-components/issues/112)) ([1d219e7](https://github.com/core-ds/core-components/commit/1d219e7663b8b19d64d3f099bbea01cf76defcd8)) +- **base-modal:** fixed outside modal click ([#115](https://github.com/core-ds/core-components/issues/115)) ([6a08f72](https://github.com/core-ds/core-components/commit/6a08f726521dcd9a310b0e06345950429eac246a)) +- **intl-phone-input:** fixed caret jumps ([#112](https://github.com/core-ds/core-components/issues/112)) ([1d219e7](https://github.com/core-ds/core-components/commit/1d219e7663b8b19d64d3f099bbea01cf76defcd8)) # [27.13.0](https://github.com/core-ds/core-components/compare/v27.12.0...v27.13.0) (2022-06-30) - ### Features -* **tooltip:** add bottomSheetProps for TooltipResponsive ([#119](https://github.com/core-ds/core-components/issues/119)) ([3e7690c](https://github.com/core-ds/core-components/commit/3e7690c55df998577183b0d51e4069e1131632f4)) +- **tooltip:** add bottomSheetProps for TooltipResponsive ([#119](https://github.com/core-ds/core-components/issues/119)) ([3e7690c](https://github.com/core-ds/core-components/commit/3e7690c55df998577183b0d51e4069e1131632f4)) # [27.12.0](https://github.com/core-ds/core-components/compare/v27.11.0...v27.12.0) (2022-06-29) - ### Features -* **calendar:** implement calendar mobile ([#54](https://github.com/core-ds/core-components/issues/54)) ([730f51d](https://github.com/core-ds/core-components/commit/730f51d35823273f122fe84a0369f95745fd2878)) +- **calendar:** implement calendar mobile ([#54](https://github.com/core-ds/core-components/issues/54)) ([730f51d](https://github.com/core-ds/core-components/commit/730f51d35823273f122fe84a0369f95745fd2878)) # [27.11.0](https://github.com/core-ds/core-components/compare/v27.10.0...v27.11.0) (2022-06-29) - ### Features -* change types for OptionList and add event for handlers to Tooltip ([#114](https://github.com/core-ds/core-components/issues/114)) ([4b23107](https://github.com/core-ds/core-components/commit/4b2310742165035e8841225b699aae4efcdc8958)) +- change types for OptionList and add event for handlers to Tooltip ([#114](https://github.com/core-ds/core-components/issues/114)) ([4b23107](https://github.com/core-ds/core-components/commit/4b2310742165035e8841225b699aae4efcdc8958)) # [27.10.0](https://github.com/core-ds/core-components/compare/v27.9.0...v27.10.0) (2022-06-28) - ### Bug Fixes -* **icon-view:** fix line-height ([#111](https://github.com/core-ds/core-components/issues/111)) ([b16e0ea](https://github.com/core-ds/core-components/commit/b16e0ea206c819ba4370ed8c1662804a83648e0f)) -* **input-autocomplete:** fixed onChange type ([#110](https://github.com/core-ds/core-components/issues/110)) ([c994661](https://github.com/core-ds/core-components/commit/c9946615af9aecb3f1974c887bdd6686708ac18e)) -* **intl-phone-input:** fixed caret jumps ([#107](https://github.com/core-ds/core-components/issues/107)) ([177bf56](https://github.com/core-ds/core-components/commit/177bf5659e79beb08b2ee6ed4c9257215861f904)) -* **pure-cell:** fix stories ([#113](https://github.com/core-ds/core-components/issues/113)) ([01f6138](https://github.com/core-ds/core-components/commit/01f6138615b1b7268510e012c314650c084c9ef0)) - +- **icon-view:** fix line-height ([#111](https://github.com/core-ds/core-components/issues/111)) ([b16e0ea](https://github.com/core-ds/core-components/commit/b16e0ea206c819ba4370ed8c1662804a83648e0f)) +- **input-autocomplete:** fixed onChange type ([#110](https://github.com/core-ds/core-components/issues/110)) ([c994661](https://github.com/core-ds/core-components/commit/c9946615af9aecb3f1974c887bdd6686708ac18e)) +- **intl-phone-input:** fixed caret jumps ([#107](https://github.com/core-ds/core-components/issues/107)) ([177bf56](https://github.com/core-ds/core-components/commit/177bf5659e79beb08b2ee6ed4c9257215861f904)) +- **pure-cell:** fix stories ([#113](https://github.com/core-ds/core-components/issues/113)) ([01f6138](https://github.com/core-ds/core-components/commit/01f6138615b1b7268510e012c314650c084c9ef0)) ### Features -* circumflexus retrieval ([#57](https://github.com/core-ds/core-components/issues/57)) ([3820da8](https://github.com/core-ds/core-components/commit/3820da818bcdcbee6904c648b3e29c3c828fe202)) -* fixed form-control/input/select label and hint margins ([#97](https://github.com/core-ds/core-components/issues/97)) ([abd2f15](https://github.com/core-ds/core-components/commit/abd2f15f210bb63bafe0cee341f0a66b5f2071d7)) -* **pure cell:** new component ([#10](https://github.com/core-ds/core-components/issues/10)) ([4e95c57](https://github.com/core-ds/core-components/commit/4e95c573aaa6f99197292ea4bae12cbbcc3207c9)) +- circumflexus retrieval ([#57](https://github.com/core-ds/core-components/issues/57)) ([3820da8](https://github.com/core-ds/core-components/commit/3820da818bcdcbee6904c648b3e29c3c828fe202)) +- fixed form-control/input/select label and hint margins ([#97](https://github.com/core-ds/core-components/issues/97)) ([abd2f15](https://github.com/core-ds/core-components/commit/abd2f15f210bb63bafe0cee341f0a66b5f2071d7)) +- **pure cell:** new component ([#10](https://github.com/core-ds/core-components/issues/10)) ([4e95c57](https://github.com/core-ds/core-components/commit/4e95c573aaa6f99197292ea4bae12cbbcc3207c9)) # [27.9.0](https://github.com/core-ds/core-components/compare/v27.8.1...v27.9.0) (2022-06-24) - ### Bug Fixes -* **icon-button:** fix disabled colors ([#104](https://github.com/core-ds/core-components/issues/104)) ([3f03849](https://github.com/core-ds/core-components/commit/3f038495bb63f72cd81ceeedbe55b52119581d57)) - +- **icon-button:** fix disabled colors ([#104](https://github.com/core-ds/core-components/issues/104)) ([3f03849](https://github.com/core-ds/core-components/commit/3f038495bb63f72cd81ceeedbe55b52119581d57)) ### Features -* **amount-input:** added functionality to enter negative values ([#106](https://github.com/core-ds/core-components/issues/106)) ([d6b6ca7](https://github.com/core-ds/core-components/commit/d6b6ca71d87b5c4c62d2e87cdbe9d1ff035852c4)) +- **amount-input:** added functionality to enter negative values ([#106](https://github.com/core-ds/core-components/issues/106)) ([d6b6ca7](https://github.com/core-ds/core-components/commit/d6b6ca71d87b5c4c62d2e87cdbe9d1ff035852c4)) ## [27.8.1](https://github.com/core-ds/core-components/compare/v27.8.0...v27.8.1) (2022-06-23) - ### Bug Fixes -* **button:** fix color secondary ([#92](https://github.com/core-ds/core-components/issues/92)) ([57b8e66](https://github.com/core-ds/core-components/commit/57b8e661b8f54acdfd0c235f58ebd59d66c116a4)) -* **scrollbar:** add missing deps ([#108](https://github.com/core-ds/core-components/issues/108)) ([fef70be](https://github.com/core-ds/core-components/commit/fef70be83c00308d90d5de1468e22ae5c6d959fe)) +- **button:** fix color secondary ([#92](https://github.com/core-ds/core-components/issues/92)) ([57b8e66](https://github.com/core-ds/core-components/commit/57b8e661b8f54acdfd0c235f58ebd59d66c116a4)) +- **scrollbar:** add missing deps ([#108](https://github.com/core-ds/core-components/issues/108)) ([fef70be](https://github.com/core-ds/core-components/commit/fef70be83c00308d90d5de1468e22ae5c6d959fe)) # [27.8.0](https://github.com/core-ds/core-components/compare/v27.7.0...v27.8.0) (2022-06-20) - ### Bug Fixes -* fixed launch storybook in IE ([#52](https://github.com/core-ds/core-components/issues/52)) ([379528b](https://github.com/core-ds/core-components/commit/379528b4ee24183dec38930ea15a31661b994085)) - +- fixed launch storybook in IE ([#52](https://github.com/core-ds/core-components/issues/52)) ([379528b](https://github.com/core-ds/core-components/commit/379528b4ee24183dec38930ea15a31661b994085)) ### Features -* **input-autocomplete:** add new component InputAutocompleteMobile ([#96](https://github.com/core-ds/core-components/issues/96)) ([a0e9f95](https://github.com/core-ds/core-components/commit/a0e9f95edbfcd6722e99647d75a262805e81a4a7)) +- **input-autocomplete:** add new component InputAutocompleteMobile ([#96](https://github.com/core-ds/core-components/issues/96)) ([a0e9f95](https://github.com/core-ds/core-components/commit/a0e9f95edbfcd6722e99647d75a262805e81a4a7)) # [27.7.0](https://github.com/core-ds/core-components/compare/v27.6.2...v27.7.0) (2022-06-20) - ### Bug Fixes -* **badge:** fix classname ([#100](https://github.com/core-ds/core-components/issues/100)) ([4b5f2bc](https://github.com/core-ds/core-components/commit/4b5f2bc9ab17daf865a5515828d178eaff94bd2d)) -* **calendar:** increased specificity of the button css class ([#103](https://github.com/core-ds/core-components/issues/103)) ([3d20c11](https://github.com/core-ds/core-components/commit/3d20c112a1c161951afa2e1c6fca8d3c048501e7)) -* **icon-button:** fix loading ([#105](https://github.com/core-ds/core-components/issues/105)) ([0b133f0](https://github.com/core-ds/core-components/commit/0b133f042e86702ec2861915f2cdbcdbad9ca905)) -* **tabs:** increased specificity of the mobile css class ([#102](https://github.com/core-ds/core-components/issues/102)) ([8f212f1](https://github.com/core-ds/core-components/commit/8f212f114d63d83bb7e7340e2ff13b89349bf353)) - +- **badge:** fix classname ([#100](https://github.com/core-ds/core-components/issues/100)) ([4b5f2bc](https://github.com/core-ds/core-components/commit/4b5f2bc9ab17daf865a5515828d178eaff94bd2d)) +- **calendar:** increased specificity of the button css class ([#103](https://github.com/core-ds/core-components/issues/103)) ([3d20c11](https://github.com/core-ds/core-components/commit/3d20c112a1c161951afa2e1c6fca8d3c048501e7)) +- **icon-button:** fix loading ([#105](https://github.com/core-ds/core-components/issues/105)) ([0b133f0](https://github.com/core-ds/core-components/commit/0b133f042e86702ec2861915f2cdbcdbad9ca905)) +- **tabs:** increased specificity of the mobile css class ([#102](https://github.com/core-ds/core-components/issues/102)) ([8f212f1](https://github.com/core-ds/core-components/commit/8f212f114d63d83bb7e7340e2ff13b89349bf353)) ### Features -* **code-input:** autocomplete sms in android ([#67](https://github.com/core-ds/core-components/issues/67)) ([b32f734](https://github.com/core-ds/core-components/commit/b32f73403d5ccce9812368e5f186952a67dca57c)) -* **file-upload-item:** add ability to disable file delete button ([#86](https://github.com/core-ds/core-components/issues/86)) ([daa8775](https://github.com/core-ds/core-components/commit/daa877591736598ef6f9f0237c40ac8759258eeb)) -* **vars:** export CSS custom properties as JS vars ([#45](https://github.com/core-ds/core-components/issues/45)) ([dbb1f78](https://github.com/core-ds/core-components/commit/dbb1f78795247fa09797c05f134b21a7774e6898)) +- **code-input:** autocomplete sms in android ([#67](https://github.com/core-ds/core-components/issues/67)) ([b32f734](https://github.com/core-ds/core-components/commit/b32f73403d5ccce9812368e5f186952a67dca57c)) +- **file-upload-item:** add ability to disable file delete button ([#86](https://github.com/core-ds/core-components/issues/86)) ([daa8775](https://github.com/core-ds/core-components/commit/daa877591736598ef6f9f0237c40ac8759258eeb)) +- **vars:** export CSS custom properties as JS vars ([#45](https://github.com/core-ds/core-components/issues/45)) ([dbb1f78](https://github.com/core-ds/core-components/commit/dbb1f78795247fa09797c05f134b21a7774e6898)) ## [27.6.2](https://github.com/core-ds/core-components/compare/v27.6.1...v27.6.2) (2022-06-16) - ### Bug Fixes -* **tooltip:** passing onClose parameter to tooltip component ([#101](https://github.com/core-ds/core-components/issues/101)) ([216e80f](https://github.com/core-ds/core-components/commit/216e80f2c1f91ae9bdb0dceea2a4db0039c91ec3)) +- **tooltip:** passing onClose parameter to tooltip component ([#101](https://github.com/core-ds/core-components/issues/101)) ([216e80f](https://github.com/core-ds/core-components/commit/216e80f2c1f91ae9bdb0dceea2a4db0039c91ec3)) ## [27.6.1](https://github.com/core-ds/core-components/compare/v27.6.0...v27.6.1) (2022-06-16) - ### Bug Fixes -* **tooltip:** passing open parameter to tooltip component ([#99](https://github.com/core-ds/core-components/issues/99)) ([885a11f](https://github.com/core-ds/core-components/commit/885a11f7f5e40033622dda5e86ed1c8ea03e7534)) +- **tooltip:** passing open parameter to tooltip component ([#99](https://github.com/core-ds/core-components/issues/99)) ([885a11f](https://github.com/core-ds/core-components/commit/885a11f7f5e40033622dda5e86ed1c8ea03e7534)) # [27.6.0](https://github.com/core-ds/core-components/compare/v27.5.0...v27.6.0) (2022-06-16) - ### Features -* **BottonSheet:** prop for controlling animation on screen size chan… ([#89](https://github.com/core-ds/core-components/issues/89)) ([a69e178](https://github.com/core-ds/core-components/commit/a69e17891d1fd91ba6f35bfc097ae1fc9cbf92df)) +- **BottonSheet:** prop for controlling animation on screen size chan… ([#89](https://github.com/core-ds/core-components/issues/89)) ([a69e178](https://github.com/core-ds/core-components/commit/a69e17891d1fd91ba6f35bfc097ae1fc9cbf92df)) # [27.5.0](https://github.com/core-ds/core-components/compare/v27.4.1...v27.5.0) (2022-06-09) - ### Features -* **select-with-tags:** add calling onOpen handler ([#91](https://github.com/core-ds/core-components/issues/91)) ([b48b05c](https://github.com/core-ds/core-components/commit/b48b05c2ad2660e3a6a00a5d8c25a077189c1891)) +- **select-with-tags:** add calling onOpen handler ([#91](https://github.com/core-ds/core-components/issues/91)) ([b48b05c](https://github.com/core-ds/core-components/commit/b48b05c2ad2660e3a6a00a5d8c25a077189c1891)) ## [27.4.1](https://github.com/core-ds/core-components/compare/v27.4.0...v27.4.1) (2022-06-09) - ### Bug Fixes -* **badge:** fix box-sizing ([#90](https://github.com/core-ds/core-components/issues/90)) ([b052b9b](https://github.com/core-ds/core-components/commit/b052b9b15831229104bd25d1231f27ec41d2acb8)) +- **badge:** fix box-sizing ([#90](https://github.com/core-ds/core-components/issues/90)) ([b052b9b](https://github.com/core-ds/core-components/commit/b052b9b15831229104bd25d1231f27ec41d2acb8)) # [27.4.0](https://github.com/core-ds/core-components/compare/v27.3.0...v27.4.0) (2022-06-08) - ### Features -* **scrollbar:** new component scrollbar ([#48](https://github.com/core-ds/core-components/issues/48)) ([5ea6fa3](https://github.com/core-ds/core-components/commit/5ea6fa352ff943cda8c52e35f9d96da9bea97fa3)) -* **select-with-tags:** add support useSelectWithApply hook ([#85](https://github.com/core-ds/core-components/issues/85)) ([461f3bc](https://github.com/core-ds/core-components/commit/461f3bc2cdd498a6cc362809dbd7b44a4cd5fd79)) +- **scrollbar:** new component scrollbar ([#48](https://github.com/core-ds/core-components/issues/48)) ([5ea6fa3](https://github.com/core-ds/core-components/commit/5ea6fa352ff943cda8c52e35f9d96da9bea97fa3)) +- **select-with-tags:** add support useSelectWithApply hook ([#85](https://github.com/core-ds/core-components/issues/85)) ([461f3bc](https://github.com/core-ds/core-components/commit/461f3bc2cdd498a6cc362809dbd7b44a4cd5fd79)) # [27.4.0](https://github.com/core-ds/core-components/compare/v27.3.0...v27.4.0) (2022-06-08) - ### Features -* **scrollbar:** new component scrollbar ([#48](https://github.com/core-ds/core-components/issues/48)) ([5ea6fa3](https://github.com/core-ds/core-components/commit/5ea6fa352ff943cda8c52e35f9d96da9bea97fa3)) +- **scrollbar:** new component scrollbar ([#48](https://github.com/core-ds/core-components/issues/48)) ([5ea6fa3](https://github.com/core-ds/core-components/commit/5ea6fa352ff943cda8c52e35f9d96da9bea97fa3)) # [27.3.0](https://github.com/core-ds/core-components/compare/v27.2.0...v27.3.0) (2022-06-03) - ### Features -* **plate:** update buttons prop in Plate component ([#81](https://github.com/core-ds/core-components/issues/81)) ([0db6283](https://github.com/core-ds/core-components/commit/0db628390bfa91290b5a6529fab2653f06b4e629)) +- **plate:** update buttons prop in Plate component ([#81](https://github.com/core-ds/core-components/issues/81)) ([0db6283](https://github.com/core-ds/core-components/commit/0db628390bfa91290b5a6529fab2653f06b4e629)) # [27.2.0](https://github.com/core-ds/core-components/compare/v27.1.2...v27.2.0) (2022-06-03) - ### Bug Fixes -* **attach:** added size xxs and changed default view prop ([#59](https://github.com/core-ds/core-components/issues/59)) ([f6e297d](https://github.com/core-ds/core-components/commit/f6e297d3af39470b09c9cba26d8d1c47dc72d0da)) -* **button:** fix border-radius ([#63](https://github.com/core-ds/core-components/issues/63)) ([e09991e](https://github.com/core-ds/core-components/commit/e09991e07215b1ca19d4e66d189a1504be52aefd)) -* **tooltip:** added missing props ([#72](https://github.com/core-ds/core-components/issues/72)) ([3f83040](https://github.com/core-ds/core-components/commit/3f83040a32ae6280abebaaddb1b8886a02663096)) - +- **attach:** added size xxs and changed default view prop ([#59](https://github.com/core-ds/core-components/issues/59)) ([f6e297d](https://github.com/core-ds/core-components/commit/f6e297d3af39470b09c9cba26d8d1c47dc72d0da)) +- **button:** fix border-radius ([#63](https://github.com/core-ds/core-components/issues/63)) ([e09991e](https://github.com/core-ds/core-components/commit/e09991e07215b1ca19d4e66d189a1504be52aefd)) +- **tooltip:** added missing props ([#72](https://github.com/core-ds/core-components/issues/72)) ([3f83040](https://github.com/core-ds/core-components/commit/3f83040a32ae6280abebaaddb1b8886a02663096)) ### Features -* **date-input:** removed date validation ([#69](https://github.com/core-ds/core-components/issues/69)) ([ca56ec9](https://github.com/core-ds/core-components/commit/ca56ec97db0d966233bd4312fdddabd59ed427ae)) +- **date-input:** removed date validation ([#69](https://github.com/core-ds/core-components/issues/69)) ([ca56ec9](https://github.com/core-ds/core-components/commit/ca56ec97db0d966233bd4312fdddabd59ed427ae)) # [27.2.0](https://github.com/core-ds/core-components/compare/v27.1.2...v27.2.0) (2022-06-03) - ### Bug Fixes -* **tooltip:** added missing props ([#72](https://github.com/core-ds/core-components/issues/72)) ([3f83040](https://github.com/core-ds/core-components/commit/3f83040a32ae6280abebaaddb1b8886a02663096)) - +- **tooltip:** added missing props ([#72](https://github.com/core-ds/core-components/issues/72)) ([3f83040](https://github.com/core-ds/core-components/commit/3f83040a32ae6280abebaaddb1b8886a02663096)) ### Features -* **date-input:** removed date validation ([#69](https://github.com/core-ds/core-components/issues/69)) ([ca56ec9](https://github.com/core-ds/core-components/commit/ca56ec97db0d966233bd4312fdddabd59ed427ae)) +- **date-input:** removed date validation ([#69](https://github.com/core-ds/core-components/issues/69)) ([ca56ec9](https://github.com/core-ds/core-components/commit/ca56ec97db0d966233bd4312fdddabd59ed427ae)) ### [27.1.2](https://github.com/core-ds/core-components/compare/v27.1.0...v27.1.2) (2022-06-01) - ### Bug Fixes -* **table:** pagination_disappearance ([#64](https://github.com/core-ds/core-components/issues/64)) ([7aa4c53](https://github.com/core-ds/core-components/commit/7aa4c536923ecb0aee5d80f4ba2e72bde06730dd)) +- **table:** pagination_disappearance ([#64](https://github.com/core-ds/core-components/issues/64)) ([7aa4c53](https://github.com/core-ds/core-components/commit/7aa4c536923ecb0aee5d80f4ba2e72bde06730dd)) ## [27.1.1](https://github.com/core-ds/core-components/compare/v27.1.0...v27.1.1) (2022-06-01) - ### Bug Fixes -* **table:** pagination_disappearance ([#64](https://github.com/core-ds/core-components/issues/64)) ([7aa4c53](https://github.com/core-ds/core-components/commit/7aa4c536923ecb0aee5d80f4ba2e72bde06730dd)) +- **table:** pagination_disappearance ([#64](https://github.com/core-ds/core-components/issues/64)) ([7aa4c53](https://github.com/core-ds/core-components/commit/7aa4c536923ecb0aee5d80f4ba2e72bde06730dd)) # Changelog @@ -1907,92 +1904,81 @@ All notable changes to this project will be documented in this file. See [standa ## [27.1.0](https://github.com/core-ds/core-components/compare/v27.0.0...v27.1.0) (2022-05-30) - ### Bug Fixes -* **codemod:** fix shade|alpha modificators bug ([#60](https://github.com/core-ds/core-components/issues/60)) ([bfc0104](https://github.com/core-ds/core-components/commit/bfc0104c1a15066d878ca27d3ae8c5903f6ca9ad)) -* **typography:** removed default weight prop from Typography.Text ([#61](https://github.com/core-ds/core-components/issues/61)) ([7a80cbb](https://github.com/core-ds/core-components/commit/7a80cbb935c013886b4aa28e56ab982f7fe54ac1)) +- **codemod:** fix shade|alpha modificators bug ([#60](https://github.com/core-ds/core-components/issues/60)) ([bfc0104](https://github.com/core-ds/core-components/commit/bfc0104c1a15066d878ca27d3ae8c5903f6ca9ad)) +- **typography:** removed default weight prop from Typography.Text ([#61](https://github.com/core-ds/core-components/issues/61)) ([7a80cbb](https://github.com/core-ds/core-components/commit/7a80cbb935c013886b4aa28e56ab982f7fe54ac1)) ## [27.0.0](https://github.com/core-ds/core-components/compare/v26.12.0...v27.0.0) (2022-05-26) - ### ⚠ BREAKING CHANGES -* change color tokens +- change color tokens -* feat(codemod): add css-codemod +- feat(codemod): add css-codemod ### Features -* change color tokens ([#5](https://github.com/core-ds/core-components/issues/5)) ([ddf7c3f](https://github.com/core-ds/core-components/commit/ddf7c3f7be5bc578645ffb6e56958c9bf8fa6ab2)), closes [#20](https://github.com/core-ds/core-components/issues/20) [#21](https://github.com/core-ds/core-components/issues/21) +- change color tokens ([#5](https://github.com/core-ds/core-components/issues/5)) ([ddf7c3f](https://github.com/core-ds/core-components/commit/ddf7c3f7be5bc578645ffb6e56958c9bf8fa6ab2)), closes [#20](https://github.com/core-ds/core-components/issues/20) [#21](https://github.com/core-ds/core-components/issues/21) ## [26.12.0](https://github.com/core-ds/core-components/compare/v26.11.0...v26.12.0) (2022-05-26) - ### Features -* **amount:** add styling props ([#44](https://github.com/core-ds/core-components/issues/44)) ([539268a](https://github.com/core-ds/core-components/commit/539268a60a44db29f159d16cca6ad343deeef58d)) -* **tabs:** add dataTestId prop to Tab component ([bfa4604](https://github.com/core-ds/core-components/commit/bfa46043d0e62f1839b15c478ee72397a9843155)) +- **amount:** add styling props ([#44](https://github.com/core-ds/core-components/issues/44)) ([539268a](https://github.com/core-ds/core-components/commit/539268a60a44db29f159d16cca6ad343deeef58d)) +- **tabs:** add dataTestId prop to Tab component ([bfa4604](https://github.com/core-ds/core-components/commit/bfa46043d0e62f1839b15c478ee72397a9843155)) ## [26.11.0](https://github.com/core-ds/core-components/compare/v26.10.0...v26.11.0) (2022-05-20) - ### Features -* **badge:** added badge color outlines ([#19](https://github.com/core-ds/core-components/issues/19)) ([f1a0dfa](https://github.com/core-ds/core-components/commit/f1a0dfa0775451a6a163dbfd7f3f80fbd09e47c4)) -* **calendar-range:** default month position ([#11](https://github.com/core-ds/core-components/issues/11)) ([2e72064](https://github.com/core-ds/core-components/commit/2e720646c25b1008dcce1a2a7948b947273ed389)) -* **tooltip:** add inverted colors ([#2](https://github.com/core-ds/core-components/issues/2)) ([9f9f3eb](https://github.com/core-ds/core-components/commit/9f9f3eb69db3e4550d2bf53eb713c2d7196ec7a3)) - +- **badge:** added badge color outlines ([#19](https://github.com/core-ds/core-components/issues/19)) ([f1a0dfa](https://github.com/core-ds/core-components/commit/f1a0dfa0775451a6a163dbfd7f3f80fbd09e47c4)) +- **calendar-range:** default month position ([#11](https://github.com/core-ds/core-components/issues/11)) ([2e72064](https://github.com/core-ds/core-components/commit/2e720646c25b1008dcce1a2a7948b947273ed389)) +- **tooltip:** add inverted colors ([#2](https://github.com/core-ds/core-components/issues/2)) ([9f9f3eb](https://github.com/core-ds/core-components/commit/9f9f3eb69db3e4550d2bf53eb713c2d7196ec7a3)) ### Bug Fixes -* clear button isn't accessible from the keyboard ([#49](https://github.com/core-ds/core-components/issues/49)) ([e751edc](https://github.com/core-ds/core-components/commit/e751edc8557cb4011ab352994c560287ded0f669)) +- clear button isn't accessible from the keyboard ([#49](https://github.com/core-ds/core-components/issues/49)) ([e751edc](https://github.com/core-ds/core-components/commit/e751edc8557cb4011ab352994c560287ded0f669)) ## [26.10.0](https://github.com/core-ds/core-components/compare/v26.9.1...v26.10.0) (2022-05-17) - ### Features -* **icon-view:** adding 40 size for circle and super ellipse ([#42](https://github.com/core-ds/core-components/issues/42)) ([2e717cc](https://github.com/core-ds/core-components/commit/2e717ccec46c40e15fb4f6c1051ef33b1faa4c51)) -* **radio-group:** make radio group value prop nullable ([#33](https://github.com/core-ds/core-components/issues/33)) ([501d41c](https://github.com/core-ds/core-components/commit/501d41c06147843dc02de63ae5dc35023d112b05)) -* add lint-pr action ([#34](https://github.com/core-ds/core-components/issues/34)) ([477a464](https://github.com/core-ds/core-components/commit/477a464c97221b04c5fc8011e2164644d86788bb)) - +- **icon-view:** adding 40 size for circle and super ellipse ([#42](https://github.com/core-ds/core-components/issues/42)) ([2e717cc](https://github.com/core-ds/core-components/commit/2e717ccec46c40e15fb4f6c1051ef33b1faa4c51)) +- **radio-group:** make radio group value prop nullable ([#33](https://github.com/core-ds/core-components/issues/33)) ([501d41c](https://github.com/core-ds/core-components/commit/501d41c06147843dc02de63ae5dc35023d112b05)) +- add lint-pr action ([#34](https://github.com/core-ds/core-components/issues/34)) ([477a464](https://github.com/core-ds/core-components/commit/477a464c97221b04c5fc8011e2164644d86788bb)) ### Bug Fixes -* **chart:** chart stories restored ([#46](https://github.com/core-ds/core-components/issues/46)) ([b3bca85](https://github.com/core-ds/core-components/commit/b3bca858af37dc7e1cb6878e8e1c114ca218a998)) -* **modal:** rewrite invisible prop from backdropProps ([#38](https://github.com/core-ds/core-components/issues/38)) ([436e833](https://github.com/core-ds/core-components/commit/436e83346d2d35f02f94da0b67de7918d090e53a)) -* change package paths in storybook webpack config ([#27](https://github.com/core-ds/core-components/issues/27)) ([e7ff0b4](https://github.com/core-ds/core-components/commit/e7ff0b49e6c473d42f2695ed4a1f919c43e9c5ca)) +- **chart:** chart stories restored ([#46](https://github.com/core-ds/core-components/issues/46)) ([b3bca85](https://github.com/core-ds/core-components/commit/b3bca858af37dc7e1cb6878e8e1c114ca218a998)) +- **modal:** rewrite invisible prop from backdropProps ([#38](https://github.com/core-ds/core-components/issues/38)) ([436e833](https://github.com/core-ds/core-components/commit/436e83346d2d35f02f94da0b67de7918d090e53a)) +- change package paths in storybook webpack config ([#27](https://github.com/core-ds/core-components/issues/27)) ([e7ff0b4](https://github.com/core-ds/core-components/commit/e7ff0b49e6c473d42f2695ed4a1f919c43e9c5ca)) ### [26.9.1](https://github.com/core-ds/core-components/compare/v26.8.0...v26.9.1) (2022-05-13) - ### Features -* **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) -* **toast:** add use anchor width for popover ([#39](https://github.com/core-ds/core-components/issues/39)) ([747e1e2](https://github.com/core-ds/core-components/commit/747e1e26b82bc98dfd245dd4b427cd319f729b71)) +- **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) +- **toast:** add use anchor width for popover ([#39](https://github.com/core-ds/core-components/issues/39)) ([747e1e2](https://github.com/core-ds/core-components/commit/747e1e26b82bc98dfd245dd4b427cd319f729b71)) # [26.9.0](https://github.com/core-ds/core-components/compare/v26.8.0...v26.9.0) (2022-05-13) - ### Features -* **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) -* **toast:** add use anchor width for popover ([#39](https://github.com/core-ds/core-components/issues/39)) ([747e1e2](https://github.com/core-ds/core-components/commit/747e1e26b82bc98dfd245dd4b427cd319f729b71)) +- **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) +- **toast:** add use anchor width for popover ([#39](https://github.com/core-ds/core-components/issues/39)) ([747e1e2](https://github.com/core-ds/core-components/commit/747e1e26b82bc98dfd245dd4b427cd319f729b71)) # [26.9.0](https://github.com/core-ds/core-components/compare/v26.8.0...v26.9.0) (2022-05-11) - ### Features -* **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) +- **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) # [26.9.0](https://github.com/core-ds/core-components/compare/v26.8.0...v26.9.0) (2022-05-06) - ### Features -* **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) +- **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) # Changelog @@ -2000,48 +1986,41 @@ All notable changes to this project will be documented in this file. See [standa ## [26.8.0](https://github.com/core-ds/core-components/compare/v26.7.0...v26.8.0) (2022-05-05) - ### Features -* **calendar:** add selectable year and month for PeriodSlider ([#18](https://github.com/core-ds/core-components/issues/18)) ([918767c](https://github.com/core-ds/core-components/commit/918767ce06e5dec1ba094a57282e88fc4cd2de66)) - +- **calendar:** add selectable year and month for PeriodSlider ([#18](https://github.com/core-ds/core-components/issues/18)) ([918767c](https://github.com/core-ds/core-components/commit/918767ce06e5dec1ba094a57282e88fc4cd2de66)) ### Bug Fixes -* add disabled props to checkbox ([#32](https://github.com/core-ds/core-components/issues/32)) ([b64adff](https://github.com/core-ds/core-components/commit/b64adffb8439a64bbf85e30864d1b932fc4dd2eb)) +- add disabled props to checkbox ([#32](https://github.com/core-ds/core-components/issues/32)) ([b64adff](https://github.com/core-ds/core-components/commit/b64adffb8439a64bbf85e30864d1b932fc4dd2eb)) ## [26.7.0](https://github.com/core-ds/core-components/compare/v26.5.3...v26.7.0) (2022-05-04) - ### Features -* **button:** add overflow hidden and text overflow ellipsis for nowrap ([#17](https://github.com/core-ds/core-components/issues/17)) ([7d9669a](https://github.com/core-ds/core-components/commit/7d9669a56c6b134caae9a0317ffc2c0206928a27)) -* **toast:** break text in toast ([#25](https://github.com/core-ds/core-components/issues/25)) ([5356ce6](https://github.com/core-ds/core-components/commit/5356ce685e35b9414a465fb023382535f150abf5)) - +- **button:** add overflow hidden and text overflow ellipsis for nowrap ([#17](https://github.com/core-ds/core-components/issues/17)) ([7d9669a](https://github.com/core-ds/core-components/commit/7d9669a56c6b134caae9a0317ffc2c0206928a27)) +- **toast:** break text in toast ([#25](https://github.com/core-ds/core-components/issues/25)) ([5356ce6](https://github.com/core-ds/core-components/commit/5356ce685e35b9414a465fb023382535f150abf5)) ### Bug Fixes -* **code-input:** auto-fill styles ([#24](https://github.com/core-ds/core-components/issues/24)) ([7e83e02](https://github.com/core-ds/core-components/commit/7e83e02b4aae0aeefe91a2526744ca10d7577290)) -* **confirmation:** fix countdown timer ([#23](https://github.com/core-ds/core-components/issues/23)) ([2752723](https://github.com/core-ds/core-components/commit/2752723bdbf71e42cfb1e8c6e9009c719663ec09)) +- **code-input:** auto-fill styles ([#24](https://github.com/core-ds/core-components/issues/24)) ([7e83e02](https://github.com/core-ds/core-components/commit/7e83e02b4aae0aeefe91a2526744ca10d7577290)) +- **confirmation:** fix countdown timer ([#23](https://github.com/core-ds/core-components/issues/23)) ([2752723](https://github.com/core-ds/core-components/commit/2752723bdbf71e42cfb1e8c6e9009c719663ec09)) # [26.6.0](https://github.com/core-ds/core-components/compare/v26.5.3...v26.6.0) (2022-05-04) - ### Bug Fixes -* **code-input:** auto-fill styles ([#24](https://github.com/core-ds/core-components/issues/24)) ([7e83e02](https://github.com/core-ds/core-components/commit/7e83e02b4aae0aeefe91a2526744ca10d7577290)) -* **confirmation:** fix countdown timer ([#23](https://github.com/core-ds/core-components/issues/23)) ([2752723](https://github.com/core-ds/core-components/commit/2752723bdbf71e42cfb1e8c6e9009c719663ec09)) - +- **code-input:** auto-fill styles ([#24](https://github.com/core-ds/core-components/issues/24)) ([7e83e02](https://github.com/core-ds/core-components/commit/7e83e02b4aae0aeefe91a2526744ca10d7577290)) +- **confirmation:** fix countdown timer ([#23](https://github.com/core-ds/core-components/issues/23)) ([2752723](https://github.com/core-ds/core-components/commit/2752723bdbf71e42cfb1e8c6e9009c719663ec09)) ### Features -* **button:** add overflow hidden and text overflow ellipsis for nowrap ([#17](https://github.com/core-ds/core-components/issues/17)) ([7d9669a](https://github.com/core-ds/core-components/commit/7d9669a56c6b134caae9a0317ffc2c0206928a27)) -* **toast:** break text in toast ([#25](https://github.com/core-ds/core-components/issues/25)) ([5356ce6](https://github.com/core-ds/core-components/commit/5356ce685e35b9414a465fb023382535f150abf5)) - +- **button:** add overflow hidden and text overflow ellipsis for nowrap ([#17](https://github.com/core-ds/core-components/issues/17)) ([7d9669a](https://github.com/core-ds/core-components/commit/7d9669a56c6b134caae9a0317ffc2c0206928a27)) +- **toast:** break text in toast ([#25](https://github.com/core-ds/core-components/issues/25)) ([5356ce6](https://github.com/core-ds/core-components/commit/5356ce685e35b9414a465fb023382535f150abf5)) ### Reverts -* Revert "исправление (управление формы): исправление высоты метки линии (#14)" (#16) ([a4b70d1](https://github.com/core-ds/core-components/commit/a4b70d1ca36294fbc114486d65eef9fdb0543ad8)), closes [#14](https://github.com/core-ds/core-components/issues/14) [#16](https://github.com/core-ds/core-components/issues/16) +- Revert "исправление (управление формы): исправление высоты метки линии (#14)" (#16) ([a4b70d1](https://github.com/core-ds/core-components/commit/a4b70d1ca36294fbc114486d65eef9fdb0543ad8)), closes [#14](https://github.com/core-ds/core-components/issues/14) [#16](https://github.com/core-ds/core-components/issues/16) # Changelog @@ -2049,25 +2028,22 @@ All notable changes to this project will be documented in this file. See [standa ### [26.5.3](https://github.com/core-ds/core-components/compare/v26.5.2...v26.5.3) (2022-04-26) - ### Bug Fixes -* default className bug ([#13](https://github.com/core-ds/core-components/issues/13)) ([32883b3](https://github.com/core-ds/core-components/commit/32883b3a54f04b558e97e285824c9701fc802f99)) -* `default` className bug ([624d4c8](https://github.com/core-ds/core-components/commit/624d4c835fd1b85833aff8e79e75afc41e25b536)) +- default className bug ([#13](https://github.com/core-ds/core-components/issues/13)) ([32883b3](https://github.com/core-ds/core-components/commit/32883b3a54f04b558e97e285824c9701fc802f99)) +- `default` className bug ([624d4c8](https://github.com/core-ds/core-components/commit/624d4c835fd1b85833aff8e79e75afc41e25b536)) ### [26.5.2](https://github.com/core-ds/core-components/compare/v26.5.0...v26.5.2) (2022-04-22) - ### Bug Fixes -* **attach:** невозможность загрузить файл с таким же именем после удаления ([#8](https://github.com/core-ds/core-components/issues/8)) ([f323c56](https://github.com/core-ds/core-components/commit/f323c56d0ffee36ab4b42d3c5ab06a0abc35e3be)) +- **attach:** невозможность загрузить файл с таким же именем после удаления ([#8](https://github.com/core-ds/core-components/issues/8)) ([f323c56](https://github.com/core-ds/core-components/commit/f323c56d0ffee36ab4b42d3c5ab06a0abc35e3be)) ## [26.5.1](https://github.com/core-ds/core-components/compare/v26.5.0...v26.5.1) (2022-04-22) - ### Bug Fixes -* **attach:** невозможность загрузить файл с таким же именем после удаления ([#8](https://github.com/core-ds/core-components/issues/8)) ([f323c56](https://github.com/core-ds/core-components/commit/f323c56d0ffee36ab4b42d3c5ab06a0abc35e3be)) +- **attach:** невозможность загрузить файл с таким же именем после удаления ([#8](https://github.com/core-ds/core-components/issues/8)) ([f323c56](https://github.com/core-ds/core-components/commit/f323c56d0ffee36ab4b42d3c5ab06a0abc35e3be)) # Changelog @@ -2075,1423 +2051,1379 @@ All notable changes to this project will be documented in this file. See [standa ## 26.5.0 (2022-04-21) - ### ⚠ BREAKING CHANGES -* **modal:** Большое обновление стилей и темизации +- **modal:** Большое обновление стилей и темизации -* fix(modal): remove unused align -* **bottom-sheet:** Большое обновление стилей, множество дополнительных настроек -* Большое обновление CalendarRange +- fix(modal): remove unused align +- **bottom-sheet:** Большое обновление стилей, множество дополнительных настроек +- Большое обновление CalendarRange -* feat(date-input): add some improvements +- feat(date-input): add some improvements -* feat(date-input): some updates +- feat(date-input): some updates -* feat(date-input): validation +- feat(date-input): validation -* feat(calendar): change period selection logic +- feat(calendar): change period selection logic -* fix(calendar): range styles +- fix(calendar): range styles -* fix(calendar): fix styles, add rangeComplete flag +- fix(calendar): fix styles, add rangeComplete flag -* refactor(calendar-range): temporary +- refactor(calendar-range): temporary -* fix(calendar-range): fix hook +- fix(calendar-range): fix hook -* fix(calendar-range): fix period +- fix(calendar-range): fix period -* fix(calendar-range): fix tests, fix max date +- fix(calendar-range): fix tests, fix max date -* fix: update exports +- fix: update exports -* feat(calendar): allow empty values for PeriodSlider, update today +- feat(calendar): allow empty values for PeriodSlider, update today -* fix(calendar-range): hide error icon +- fix(calendar-range): hide error icon -* chore(calendar-range): demo +- chore(calendar-range): demo -* feat(calendar): use IconButton +- feat(calendar): use IconButton -* feat(calendar-range): add onChange, update demo +- feat(calendar-range): add onChange, update demo -* fix(calendar-range): update width +- fix(calendar-range): update width -* test(calendar-range): update snapshot +- test(calendar-range): update snapshot -* fix: import date-fns separately +- fix: import date-fns separately -* fix(calendar-range): fix rest props +- fix(calendar-range): fix rest props Co-authored-by: dmitrsavk -* **confirmation:** Удалена пропса code -* feat(code-input): ref updates +- **confirmation:** Удалена пропса code -* feat(confirmation): updates, fix tests +- feat(code-input): ref updates -* feat(confirmation): initial +- feat(confirmation): updates, fix tests -* feat(confirmation): updates +- feat(confirmation): initial -* feat(confirmation): update tests +- feat(confirmation): updates -* feat(confirmation): updates +- feat(confirmation): update tests -* feat(confirmation): dont reset code, if error +- feat(confirmation): updates -* test(confirmation): update snapshot -* **confirmation:** Удалена пропса code +- feat(confirmation): dont reset code, if error -Co-authored-by: reme3d2y -* Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- test(confirmation): update snapshot +- **confirmation:** Удалена пропса code + +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. -* **button:** Кнопка размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо - заменить размер на xxs. Можно воспользоваться codemod. -* feat(codemod): add button xs to xxs transformer +- **button:** Кнопка размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо + заменить размер на xxs. Можно воспользоваться codemod. + +- feat(codemod): add button xs to xxs transformer -* feat(tag): добавлен тэг размера 40px, изменены отступы +- feat(tag): добавлен тэг размера 40px, изменены отступы Добавлен тэг размером 40px, изменены отступы. Тем, кто использовал размер xs, надо заменить размер на xxs. -* **button:** Тэг размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо + +- **button:** Тэг размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо заменить размер на xxs. Можно воспользоваться codemod. -* test: update screenshots +- test: update screenshots -* test: update screenshots +- test: update screenshots -* feat(button): linter fix +- feat(button): linter fix -* feat(button): fix min-width +- feat(button): fix min-width -* feat(tag): remove vertical paddings +- feat(tag): remove vertical paddings -* feat(tag): remove vertical paddings +- feat(tag): remove vertical paddings -* feat(button): updates -* **select:** удалена переменная --select-arrow-background -* **calendar-input:** удалена переменная --calendar-input-calendar-icon -* remove dark-theme-injector. remove vars duplications -* buttonRetryText renamed to buttonReturnText +- feat(button): updates +- **select:** удалена переменная --select-arrow-background +- **calendar-input:** удалена переменная --calendar-input-calendar-icon +- remove dark-theme-injector. remove vars duplications +- buttonRetryText renamed to buttonReturnText -Co-authored-by: Alexander Soldatov -* inline-block changes to block +- inline-block changes to block -* chore(release): 18.0.0 [skip ci] +- chore(release): 18.0.0 [skip ci] # [18.0.0](https://github.com/alfa-laboratory/core-components/compare/v17.6.0...v18.0.0) (2021-06-28) ### Bug Fixes -* **skeleton:** inline-block changes to block -* **confirmation:** buttonRetryText renamed to buttonReturnText -Co-authored-by: Alexander Soldatov -* **button:** remove inverted themes -* **stack:** remove z-index, add stack component +- **skeleton:** inline-block changes to block +- **confirmation:** buttonRetryText renamed to buttonReturnText -* feat(modal): remove z-index, add stack component +- **button:** remove inverted themes +- **stack:** remove z-index, add stack component + +- feat(modal): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(notification-manager): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(notification-manager): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(notification): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(notification): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(popover): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(popover): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(select): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(select): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(toast): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(toast): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(tooltip): remove z-index, add stack component +- **stack:** remove z-index, add stack component + +- feat(tooltip): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component -* feat(stack): fix comment +- **stack:** remove z-index, add stack component + +- feat(stack): fix comment -* Revert "feat(modal): remove z-index, add stack component" +- Revert "feat(modal): remove z-index, add stack component" This reverts commit fcae901c6ec58311701cd491296a7b04016a9a65. -* feat(base-modal): remove z-index, add stack component +- feat(base-modal): remove z-index, add stack component remove z-index, add stack component -* **stack:** remove z-index, add stack component - -* test(file-upload-item): update snapshot -* **mq:** mobile-s теперь 360 -* **tooltip:** add wrapper around children component - -* feat(tooltip): add target className prop - -* feat(tooltip): fix passed classNames -* **phone-input:** size L changed to size XL -* **amount-input:** size L changed to size XL -* **pure-input:** size L changed to size XL -* **input-autocomplete:** size L changed to size XL -* **intl-phone-input:** size L changed to size XL -* **input:** size L changed to size XL -* **tag:** size L changed to size XL -* **select-with-tags:** size L changed to size XL -* **tabs:** size L changed to size XL -* **form-control:** size L changed to size XL -* **textarea:** size L changed to size XL -* **select:** size L changed to size XL -* **slider-input:** size L changed to size XL -* **button:** size L changed to size XL -* **confirmation:** Add phone formatting into component. Phone prop doesn't have to be formatted. -* **popover:** Change html structure of popover component. -* --notification-desktop-width var removed -* **badge:** new icon view without fixed size -* **popover:** fix popover transition, change Transition to CSSTransition -* может затронуть кастомную стилизацию контролов -* remove packages/vars/src/breakpoints.css -* **core-components-confirmation:** separate error and error text - -* feat(core-components-confirmation): fix margins -* **core-components-form-control:** Компонент Input теперь зависим от FormField. Большая часть стилей перенесена в + +- **stack:** remove z-index, add stack component + +- test(file-upload-item): update snapshot +- **mq:** mobile-s теперь 360 +- **tooltip:** add wrapper around children component + +- feat(tooltip): add target className prop + +- feat(tooltip): fix passed classNames +- **phone-input:** size L changed to size XL +- **amount-input:** size L changed to size XL +- **pure-input:** size L changed to size XL +- **input-autocomplete:** size L changed to size XL +- **intl-phone-input:** size L changed to size XL +- **input:** size L changed to size XL +- **tag:** size L changed to size XL +- **select-with-tags:** size L changed to size XL +- **tabs:** size L changed to size XL +- **form-control:** size L changed to size XL +- **textarea:** size L changed to size XL +- **select:** size L changed to size XL +- **slider-input:** size L changed to size XL +- **button:** size L changed to size XL +- **confirmation:** Add phone formatting into component. Phone prop doesn't have to be formatted. +- **popover:** Change html structure of popover component. +- --notification-desktop-width var removed +- **badge:** new icon view without fixed size +- **popover:** fix popover transition, change Transition to CSSTransition +- может затронуть кастомную стилизацию контролов +- remove packages/vars/src/breakpoints.css +- **core-components-confirmation:** separate error and error text + +- feat(core-components-confirmation): fix margins +- **core-components-form-control:** Компонент Input теперь зависим от FormField. Большая часть стилей перенесена в FormField -* refactor(core-components-form-control): rename component - -* refactor(core-components-form-control): component improvements - -### Features - -* change repository name ([85dc9c5](https://github.com/core-ds/core-components/commit/85dc9c59ad778afeb1cf9716c2e6adea69641d57)) -* update all screenshots ([8b09f60](https://github.com/core-ds/core-components/commit/8b09f608203b0561652cab030ddc8471b8c952d7)) -* **amount:** add rightAddons, add showPlus, make currency optional ([#955](https://github.com/core-ds/core-components/issues/955)) ([ac35b9a](https://github.com/core-ds/core-components/commit/ac35b9aaf842d88fd28caeb4f888cdf74facf644)) -* **badge:** add screenshots ([4b5d31c](https://github.com/core-ds/core-components/commit/4b5d31c8113c1da084ea0f15976edfea517f6db6)) -* **base-modal:** add component ref for base modal ([#1008](https://github.com/core-ds/core-components/issues/1008)) ([fb13dbd](https://github.com/core-ds/core-components/commit/fb13dbdf6352b10b80a74fa87edfcb1f54b76d5a)) -* **base-modal:** extract modal store to global ([#943](https://github.com/core-ds/core-components/issues/943)) ([9587f17](https://github.com/core-ds/core-components/commit/9587f1773bb690ac6696077509d4a519aa109198)) -* **bottom-sheet:** update-bottom-sheet ([#1025](https://github.com/core-ds/core-components/issues/1025)) ([26fa9aa](https://github.com/core-ds/core-components/commit/26fa9aab68bebf0f7093a38bc0f18a9b596ccf37)), closes [#1032](https://github.com/core-ds/core-components/issues/1032) -* **button:** добавлена кнопка размера 40px, изменены скругления ([#886](https://github.com/core-ds/core-components/issues/886)) ([88e657a](https://github.com/core-ds/core-components/commit/88e657a9f0f68b8b58f6e9437053954ee984f83c)), closes [#890](https://github.com/core-ds/core-components/issues/890) -* **calendar:** add intranet theme ([#1026](https://github.com/core-ds/core-components/issues/1026)) ([292b76c](https://github.com/core-ds/core-components/commit/292b76c100bb12ebb1011d2a9981ba2b2899dd7a)) -* **calendar:** design & logic updates ([#991](https://github.com/core-ds/core-components/issues/991)) ([358142c](https://github.com/core-ds/core-components/commit/358142c6d259e1463954139cc648787cdf461f76)), closes [#993](https://github.com/core-ds/core-components/issues/993) [#990](https://github.com/core-ds/core-components/issues/990) -* **calendar:** split header to header & period-slider ([#939](https://github.com/core-ds/core-components/issues/939)) ([107cee0](https://github.com/core-ds/core-components/commit/107cee0f2b5d609a02b61023b324dcc8c98c5220)) -* **calendar:** мобильные стили ([#867](https://github.com/core-ds/core-components/issues/867)) ([febf545](https://github.com/core-ds/core-components/commit/febf54551f8179a1ba03fe65ed47aa3b20b01472)) -* **calendar:** показываем будущий год ([#900](https://github.com/core-ds/core-components/issues/900)) ([3cd3c63](https://github.com/core-ds/core-components/commit/3cd3c63e5ff88066599d0944a2d3183e63150664)) -* **calendar-input:** add popover z-index ([#924](https://github.com/core-ds/core-components/issues/924)) ([378286d](https://github.com/core-ds/core-components/commit/378286d746ca33aeb755617270f66310712d1c61)) -* **chart:** added border radius to bar charts ([cfd0ad2](https://github.com/core-ds/core-components/commit/cfd0ad2c23a2b80de0bc5dfae7b65a14263e37e9)) -* **checkbox:** состояние ошибки ([#909](https://github.com/core-ds/core-components/issues/909)) ([f81d7d8](https://github.com/core-ds/core-components/commit/f81d7d8ecade7418a2015d57f5cf3a9f31779174)) -* **checkbox-group:** add click theme ([967d585](https://github.com/core-ds/core-components/commit/967d58538c5537fc2b3ac583fb742ebaef86109e)) -* **circular-progress-bar:** new size S ([d34db5c](https://github.com/core-ds/core-components/commit/d34db5cca682bc63f948a0dad322604c8044a6b8)) -* **circular-progress-bar:** ReactNode as title or subtitle ([#1023](https://github.com/core-ds/core-components/issues/1023)) ([7ae6df9](https://github.com/core-ds/core-components/commit/7ae6df9d2e4253f9a94532d155e81032cd96c810)) -* **code-input:** add component ([#932](https://github.com/core-ds/core-components/issues/932)) ([dc40cb5](https://github.com/core-ds/core-components/commit/dc40cb5b28322b4a2dc5735b354a7d45cf34adb9)) -* **collapse:** reset height to auto ([#822](https://github.com/core-ds/core-components/issues/822)) ([f533e3b](https://github.com/core-ds/core-components/commit/f533e3ba1eab5f41539c39ca3b97f698e90ca687)) -* **confirmation:** compact code-input if slotsCount > 6 ([99be0e1](https://github.com/core-ds/core-components/commit/99be0e1744d9782824756c8992fd4b986a589dd7)) -* **confirmation:** большое обновление компонента ([#958](https://github.com/core-ds/core-components/issues/958)) ([3e61e7e](https://github.com/core-ds/core-components/commit/3e61e7e6529662d8fb96acb2898a29fd9c1917ab)) -* **confirmation:** компактный code-input когда символов > 6 ([633d1ff](https://github.com/core-ds/core-components/commit/633d1ffd66c7c9d949c3996f6d4d739a4fcb6b21)) -* **custom-button:** add custom-button component ([983bcd7](https://github.com/core-ds/core-components/commit/983bcd7119c6f674ed15ed5bfe069349449f84c8)) -* **date-input:** add some improvements ([#971](https://github.com/core-ds/core-components/issues/971)) ([47756ca](https://github.com/core-ds/core-components/commit/47756ca1d4eea89f78ed7234e95c02e51dd72e49)) -* **docs:** change readme ([6b11f40](https://github.com/core-ds/core-components/commit/6b11f40fde62d202a500e0bfca4a42b95497d041)) -* **file-upload-item:** обновлен внешний вид ([#902](https://github.com/core-ds/core-components/issues/902)) ([d0f7d1e](https://github.com/core-ds/core-components/commit/d0f7d1ebdf302711a01549e86d0d8a5129b66d82)) -* **filter-tag:** new component ([#1035](https://github.com/core-ds/core-components/issues/1035)) ([f97e9c5](https://github.com/core-ds/core-components/commit/f97e9c59062e56f3bafa855450a33b5f67497143)) -* **hatching-progress-bar:** add component ([#1012](https://github.com/core-ds/core-components/issues/1012)) ([a25a579](https://github.com/core-ds/core-components/commit/a25a5793df91c9e9cf213c7d1215c771c1851141)) -* **icon-view:** add draft component ([f0ab46f](https://github.com/core-ds/core-components/commit/f0ab46fc5241c3856962f19315213c3e45b6c05b)) -* **icon-view:** add tests, some refactoring ([4fee755](https://github.com/core-ds/core-components/commit/4fee755b826024a02f2dab9e9573088284185380)) -* **icon-view:** refactoring ([2579bb0](https://github.com/core-ds/core-components/commit/2579bb016cfdeef0ff0e177f231a1d1a4715b0af)) -* **icon-view:** updates ([7b17f5f](https://github.com/core-ds/core-components/commit/7b17f5ffca39243a13d57fdbd0da31041dc0ea98)) -* **list:** added list & typography presets ([#1047](https://github.com/core-ds/core-components/issues/1047)) ([67b6a77](https://github.com/core-ds/core-components/commit/67b6a77d1327b090b010eb061f83a2e6a0cb67b9)) -* **modal:** update styles ([#1024](https://github.com/core-ds/core-components/issues/1024)) ([fdf2cdc](https://github.com/core-ds/core-components/commit/fdf2cdca9f785b27cd5d3998245a34d42e1240d1)) -* **picker-button:** gap между picker-button и popover в 8px ([#935](https://github.com/core-ds/core-components/issues/935)) ([9b3aa2b](https://github.com/core-ds/core-components/commit/9b3aa2b70b534d8e571baa62b973e1f67667ac43)) -* **select:** add select mobile ([#1016](https://github.com/core-ds/core-components/issues/1016)) ([b3cfb0d](https://github.com/core-ds/core-components/commit/b3cfb0d0e9496ba2e4260e962eaf3f9cf85635c6)) -* add extra classes for radio and checkbox components ([#1039](https://github.com/core-ds/core-components/issues/1039)) ([c3ed089](https://github.com/core-ds/core-components/commit/c3ed089360b25d0f7712f2e7608c5a23f11a95df)) -* add extra content class name prop for radio and checkbox components ([#1048](https://github.com/core-ds/core-components/issues/1048)) ([3c076b9](https://github.com/core-ds/core-components/commit/3c076b939a64dff8f9c66bd65f474ccea76c8cad)) -* **modal:** mobile header ([#1018](https://github.com/core-ds/core-components/issues/1018)) ([54b879f](https://github.com/core-ds/core-components/commit/54b879f500d1124a6956d3d5a57349c856a09904)) -* **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e)) -* **picker-button:** add conditional righAddons prop for custom icon ([#975](https://github.com/core-ds/core-components/issues/975)) ([d2544b7](https://github.com/core-ds/core-components/commit/d2544b74e56deda9cae735e5b3ca6a2d97aef94d)) -* **picker-button:** added new view and updated dropdown options ([#1013](https://github.com/core-ds/core-components/issues/1013)) ([050fb3e](https://github.com/core-ds/core-components/commit/050fb3eb6fd6dde057bbfcad5dd807d354125b63)) -* **popover:** add availableHieght prop, update related snapshots ([43b4ebd](https://github.com/core-ds/core-components/commit/43b4ebd6ba092f22d0dfc845f3f0113b390317dc)), closes [#758](https://github.com/core-ds/core-components/issues/758) -* **progress-bar:** add size prop, additional views, new bg color ([#996](https://github.com/core-ds/core-components/issues/996)) ([63702f7](https://github.com/core-ds/core-components/commit/63702f7d9637e1fe3da502d7c91c4284453b3b48)) -* **select:** add OptionsListWithApply ([#948](https://github.com/core-ds/core-components/issues/948)) ([d8ef8dd](https://github.com/core-ds/core-components/commit/d8ef8dd257dfc100095c923c4f3e317787ed1877)) -* **select:** добавлено свойство z-index для поповера ([#871](https://github.com/core-ds/core-components/issues/871)) ([4a53483](https://github.com/core-ds/core-components/commit/4a534835a9e6c9ec7793733467194536cfd96a91)) -* **select:** чекбоксы в выпадашке множественного выбора [#903](https://github.com/core-ds/core-components/issues/903)) ([f5638ef](https://github.com/core-ds/core-components/commit/f5638ef589468de0dc0473d30871035d8c4efab5)) -* **table:** компоненты для построения таблиц ([#911](https://github.com/core-ds/core-components/issues/911)) ([4ac648a](https://github.com/core-ds/core-components/commit/4ac648abd4de08bf68babc2f122f432d5b14080e)) -* **themes:** introducing intranet theme ([#983](https://github.com/core-ds/core-components/issues/983)) ([85eb9cf](https://github.com/core-ds/core-components/commit/85eb9cfffeef31b886c5123d6333e177c261ac62)) -* **tooltip:** added anchor props ([#1034](https://github.com/core-ds/core-components/issues/1034)) ([822031b](https://github.com/core-ds/core-components/commit/822031b3941184689a2a7ed9938c4ec44debc444)) -* **typography:** новый компонент Typography.TitleMobile ([#1003](https://github.com/core-ds/core-components/issues/1003)) ([9b03cf9](https://github.com/core-ds/core-components/commit/9b03cf90422b05cc927ed98959708430812d1a50)) -* Исправить импорты в сторях. ([#1009](https://github.com/core-ds/core-components/issues/1009)) ([6f7e393](https://github.com/core-ds/core-components/commit/6f7e39350fd572dd3e74c4819829f85c4066b170)) -* Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7)) -* **status:** добавлено 10% прозрачности в цвет фона ([#896](https://github.com/core-ds/core-components/issues/896)) ([b55c62b](https://github.com/core-ds/core-components/commit/b55c62b49cc52a15ff7497b9ad329773fba15959)) -* **stepped-progress-bar:** add view prop, change bg color ([#1000](https://github.com/core-ds/core-components/issues/1000)) ([3e16926](https://github.com/core-ds/core-components/commit/3e1692673e694e3fef2913201e18e8a2e21fc980)) -* **tabs:** add xxs xs sizes to secondary view and fix heights ([#985](https://github.com/core-ds/core-components/issues/985)) ([dd20933](https://github.com/core-ds/core-components/commit/dd20933f7c9a8f08920f7ad21bacb25983d3e93e)) -* **tooltip:** add availableHeight and preventOverflow props ([b401524](https://github.com/core-ds/core-components/commit/b401524b0eb0b9e06593883a889b99198982c718)), closes [#758](https://github.com/core-ds/core-components/issues/758) -* **typography:** export types ([#940](https://github.com/core-ds/core-components/issues/940)) ([498227c](https://github.com/core-ds/core-components/commit/498227c272659a1ebf890eee61c6fecdd110faee)) -* **vars:** build color-mod ([#953](https://github.com/core-ds/core-components/issues/953)) ([aa64366](https://github.com/core-ds/core-components/commit/aa64366d970be46776d23c9d13ebec413b2ac4d9)) -* **vars:** updated typography ([#981](https://github.com/core-ds/core-components/issues/981)) ([95bcce8](https://github.com/core-ds/core-components/commit/95bcce8e07467c635e2a93c55edfb3550a533ba4)) -* обновлённая темизация иконок в инпутах ([ab90d60](https://github.com/core-ds/core-components/commit/ab90d602f239176d0771db38f9cc29dc02a35566)) -* **file-upload-item:** добавлен пропс download ([#844](https://github.com/core-ds/core-components/issues/844)) ([db2a4ca](https://github.com/core-ds/core-components/commit/db2a4ca27ee7a64721138c7c2e918b4657c75489)) -* проставлен role=alert для ошибок ([#850](https://github.com/core-ds/core-components/issues/850)) ([dc634a3](https://github.com/core-ds/core-components/commit/dc634a3d008accfab10192ce234c12ef0ecc7fa9)) -* **amount-input:** add integers only mode ([#766](https://github.com/core-ds/core-components/issues/766)) ([27a2535](https://github.com/core-ds/core-components/commit/27a2535f2de8d787e666c08a8fbfeb67d762f9a1)) -* **amount-input:** allow to use custom suffix ([#767](https://github.com/core-ds/core-components/issues/767)) ([27d9d02](https://github.com/core-ds/core-components/commit/27d9d02fb619fa5946fb3cb678d9b742d74a745b)) -* **attach:** add additional classNames props ([#783](https://github.com/core-ds/core-components/issues/783)) ([bc8e865](https://github.com/core-ds/core-components/commit/bc8e86512a95b8690d2115a71a299c19195fa58d)) -* **attach:** simulate controlled state ([#760](https://github.com/core-ds/core-components/issues/760)) ([5d312bf](https://github.com/core-ds/core-components/commit/5d312bf632cc716bfc7ecb7b487c4af812838aa9)), closes [#743](https://github.com/core-ds/core-components/issues/743) -* **calendar-input:** uses date-input ([#752](https://github.com/core-ds/core-components/issues/752)) ([509dba2](https://github.com/core-ds/core-components/commit/509dba26913ccf6df859a200aa476eeef1df2ddc)) -* **calendar-input:** переход к темизации цвета иконки ([adf1dfd](https://github.com/core-ds/core-components/commit/adf1dfd080c1986976a57fee448183e762892eb0)) -* **chart:** add component ([#835](https://github.com/core-ds/core-components/issues/835)) ([17d840b](https://github.com/core-ds/core-components/commit/17d840b9f9f64474491d3ec58d3cda53ad07f0ca)) -* **chart:** added chart component ([1119943](https://github.com/core-ds/core-components/commit/11199435e9ab53ae159707e94714a34952ad56c1)) -* **chart:** added description ([8275346](https://github.com/core-ds/core-components/commit/827534640af0c0b06c1105755e9435d43cae8acd)) -* **chart:** added props for legend icons height ([5c9b321](https://github.com/core-ds/core-components/commit/5c9b32154e6f39cddd3ac9668830959adba64648)) -* **chart:** bar radius ([e39251a](https://github.com/core-ds/core-components/commit/e39251a37a52b6f434932439da0b86a03a26d901)) -* **chart:** beautifyed ([67cc96e](https://github.com/core-ds/core-components/commit/67cc96e6afc020c3af5491d3d7ba0b89f50dbaf3)) -* **chart:** edited doc ([8728271](https://github.com/core-ds/core-components/commit/8728271dc7f733c9b14a27c83a7136c22ef39ed6)) -* **chart:** fix doc ([9d1e888](https://github.com/core-ds/core-components/commit/9d1e8889615f0701a43a9fbceca867557002ef31)) -* **chart:** fixed after pull master ) ([4c7d241](https://github.com/core-ds/core-components/commit/4c7d241da264cde81e50573f96a2f035c31306e1)) -* **chart:** fixed build error ([2efdd22](https://github.com/core-ds/core-components/commit/2efdd22f27e8229b2ad4cb7d355f61b218ea1bc1)) -* **chart:** fixed comments ([a611b9c](https://github.com/core-ds/core-components/commit/a611b9c1c9bab1d5a15c2021bff270e9bbf5a934)) -* **chart:** fixed comments ([7ad1caf](https://github.com/core-ds/core-components/commit/7ad1caf5be9f2da6a218b2c97cc7d96efb4d286d)) -* **chart:** fixed comments ([555acb6](https://github.com/core-ds/core-components/commit/555acb699549c52f85d0dd58009ab1692344eb44)) -* **chart:** fixed comments ([379e53d](https://github.com/core-ds/core-components/commit/379e53ddf8c857424600d5fc49b41c03f5ac11ea)) -* **chart:** fixed global styles css ([2f8f139](https://github.com/core-ds/core-components/commit/2f8f139137090f185b1c3c2333fe7ceee7a1fff8)) -* **chart:** more description ([9a4c076](https://github.com/core-ds/core-components/commit/9a4c0762782c2f8ccee0e0c7c660514a10119960)) -* **chart:** pulled master ([176f7ae](https://github.com/core-ds/core-components/commit/176f7ae6e7cdb2a3e18d2136523e5be6ecdbde3e)) -* **chart:** resolved conflicts ([7f734ba](https://github.com/core-ds/core-components/commit/7f734bab0347af6e5d56d717d8b5cc0cf192f9f3)) -* **chart:** добавлена возможность скруглять углы и возможность отображать подписи значений для графиков типа bar ([4d81ab5](https://github.com/core-ds/core-components/commit/4d81ab5601b2ed38bc6f0f1187cf7c80c79fe50a)) -* **confirmation:** add custom countdown content, change time format ([#804](https://github.com/core-ds/core-components/issues/804)) ([b87ace1](https://github.com/core-ds/core-components/commit/b87ace190013cc873133bd1fff23cb6ae0ae3800)) -* **confirmation:** design update, new type of error "overlimit" and blocking input ([#841](https://github.com/core-ds/core-components/issues/841)) ([1ea5d31](https://github.com/core-ds/core-components/commit/1ea5d3117552f7cc9fcd78092edf634d9020b693)) -* **date-input:** add component ([#751](https://github.com/core-ds/core-components/issues/751)) ([4b94bee](https://github.com/core-ds/core-components/commit/4b94beec36acc73ac6c62cf37f87061c0ada4b35)) -* **dropzone:** add block prop ([#813](https://github.com/core-ds/core-components/issues/813)) ([39bf4c3](https://github.com/core-ds/core-components/commit/39bf4c3158525d419c75aedec8be81e4a4bb90da)) -* **dropzone:** design improvements (PDS-282) ([#829](https://github.com/core-ds/core-components/issues/829)) ([437ec3c](https://github.com/core-ds/core-components/commit/437ec3c80c507a37c8a24106a6ee6514abd68d04)) -* **file-upload-item:** custom icon ([#849](https://github.com/core-ds/core-components/issues/849)) ([59b8925](https://github.com/core-ds/core-components/commit/59b8925fbb9c631534c49c8dbb68cf493678e9e5)) -* **gallery:** add `canDownload` image prop, some refactoring ([#837](https://github.com/core-ds/core-components/issues/837)) ([b0c6665](https://github.com/core-ds/core-components/commit/b0c6665bb6a3d4b1e9d5bc176149f63ca2bd8542)) -* **gallery:** add component ([#815](https://github.com/core-ds/core-components/issues/815)) ([7ffd20e](https://github.com/core-ds/core-components/commit/7ffd20e2d007f658223d29aa943639c13ad51342)), closes [#774](https://github.com/core-ds/core-components/issues/774) [#795](https://github.com/core-ds/core-components/issues/795) -* **icon-button:** added 'target' attribute, when IconButton is link ([#823](https://github.com/core-ds/core-components/issues/823)) ([b2aab6b](https://github.com/core-ds/core-components/commit/b2aab6be98e01d0e99863f016e08bde384a4ff3c)) -* **icon-button:** Rest props for IconButton from Button ([#805](https://github.com/core-ds/core-components/issues/805)) ([ee4e170](https://github.com/core-ds/core-components/commit/ee4e170b6b59800e283080d36bddfdcfe4b57561)) -* **intl-phone-input:** hide select for countries when one country ([#809](https://github.com/core-ds/core-components/issues/809)) ([bad50af](https://github.com/core-ds/core-components/commit/bad50aff46ab4af5416510944802451873cd08bc)) -* **password-input:** show right addons (PDS-283) ([#828](https://github.com/core-ds/core-components/issues/828)) ([b255acd](https://github.com/core-ds/core-components/commit/b255acdcdbe37b546c6c9100a1645609439af430)) -* **popover:** add useAnchorWidth prop ([#826](https://github.com/core-ds/core-components/issues/826)) ([8df55c4](https://github.com/core-ds/core-components/commit/8df55c4c496467c363c5c09c14d1bd08a9709ebf)), closes [#787](https://github.com/core-ds/core-components/issues/787) -* **select:** controlled open ([#839](https://github.com/core-ds/core-components/issues/839)) ([95d0470](https://github.com/core-ds/core-components/commit/95d0470a86e1a54f4cb4b789bb7e3281a1f0a401)) -* **select:** переход к темизации цвета иконки ([112cd95](https://github.com/core-ds/core-components/commit/112cd95242e27f5065eb2a8349d3afbddfdee638)) -* **themes:** обновлённые темы для calendar-input и select ([5ae76c3](https://github.com/core-ds/core-components/commit/5ae76c314bf33236767056b77969ca7003057532)) -* change error type to ReactNode ([#825](https://github.com/core-ds/core-components/issues/825)) ([c6d95c1](https://github.com/core-ds/core-components/commit/c6d95c1c6239f2b2a3bf2c1639554d8500e794f3)) -* dark themes ([#778](https://github.com/core-ds/core-components/issues/778)) ([d848d16](https://github.com/core-ds/core-components/commit/d848d165b59182e6521d28efc2aadeecebc00d93)) -* **tag:** add inverted colors ([#784](https://github.com/core-ds/core-components/issues/784)) ([d3681ae](https://github.com/core-ds/core-components/commit/d3681aeefe02e5f481d066013911a1877a165bb2)) -* **tooltip:** add TooltipResponsive, add `fallbackPlacements` prop ([#780](https://github.com/core-ds/core-components/issues/780)) ([61d780c](https://github.com/core-ds/core-components/commit/61d780c750bd9c0331d275f1b12b0512bb3d2049)) -* **tooltip:** update shadow and arrow size/position ([2d40988](https://github.com/core-ds/core-components/commit/2d40988f3c376c51907aa8a4845ba25c7c43a2f4)) -* **typography:** add ref ([#834](https://github.com/core-ds/core-components/issues/834)) ([976b16d](https://github.com/core-ds/core-components/commit/976b16dd9ae68c31999bffb3506623db05033ad4)) -* **vars:** updated colors and typography from latest alfa-ui-primitives ([#803](https://github.com/core-ds/core-components/issues/803)) ([0d5b2a3](https://github.com/core-ds/core-components/commit/0d5b2a30a78e70392dd505790a92bc3bc83f9386)) -* add inactive controls (PDS-266) ([#765](https://github.com/core-ds/core-components/issues/765)) ([ec02c89](https://github.com/core-ds/core-components/commit/ec02c89ab6bf038c026ca0a72b3185525334840a)) -* add mods colors ([#770](https://github.com/core-ds/core-components/issues/770)) ([fe985f4](https://github.com/core-ds/core-components/commit/fe985f467b4d47a5152e168d2ab3846872d1a574)) -* custom components for button and link ([#814](https://github.com/core-ds/core-components/issues/814)) ([a623dd0](https://github.com/core-ds/core-components/commit/a623dd021ef611f9994a6587ba6a0d0ee9d8929c)) -* **bottom-sheet:** fix marker gap, fix animation duration ([#750](https://github.com/core-ds/core-components/issues/750)) ([cb04ed8](https://github.com/core-ds/core-components/commit/cb04ed8cc214fac9dba32a0ab39a4399743d5bfc)) -* **confirmation:** fix timer, some loader refactoring ([#754](https://github.com/core-ds/core-components/issues/754)) ([187bb0e](https://github.com/core-ds/core-components/commit/187bb0e72a75c62b117a49917976903257d90bb7)) -* **input:** input mobile theme (PDS-241) ([#737](https://github.com/core-ds/core-components/issues/737)) ([88f6f7c](https://github.com/core-ds/core-components/commit/88f6f7c58968b9564970eaa3d759aa2bc275ca7e)) -* **stepped-progress-bar:** add component ([#747](https://github.com/core-ds/core-components/issues/747)) ([f82e9af](https://github.com/core-ds/core-components/commit/f82e9af075e12e5a34751efc5c7f427283e75c1b)) -* add mobile theme for tag, radio, checkbox (PDS-244/247/248) ([#717](https://github.com/core-ds/core-components/issues/717)) ([36e2d99](https://github.com/core-ds/core-components/commit/36e2d99c716a03e7f319439df9ca47ec43ad4b71)) -* checkbox/radio/switch design updates (PDS-252) ([#735](https://github.com/core-ds/core-components/issues/735)) ([62f3c63](https://github.com/core-ds/core-components/commit/62f3c63279872a80ffb1c018b08addf897597b26)) -* slider input mobile theme (PDS-242) ([#738](https://github.com/core-ds/core-components/issues/738)) ([6e924aa](https://github.com/core-ds/core-components/commit/6e924aa90b63b914b6f5690766e41cddabe18e19)) -* **backdrop:** add component ([948a6c2](https://github.com/core-ds/core-components/commit/948a6c2fb5ec58edb2d087691ce4713d75da6e35)) -* **backdrop:** add component ([2b87958](https://github.com/core-ds/core-components/commit/2b87958e51449645c58bbd02552ce7a908c6bab8)) -* **badge:** add icon color ([d9e9065](https://github.com/core-ds/core-components/commit/d9e906596d157a5e3d7844bbecfb96f64d9f44e1)) -* **badge:** add screenshots ([3bbc8d0](https://github.com/core-ds/core-components/commit/3bbc8d032b0a267e9e6e949af5db6c955e25fb50)) -* **bottom-sheet:** new component (PDS-228) ([#645](https://github.com/core-ds/core-components/issues/645)) ([1f7391d](https://github.com/core-ds/core-components/commit/1f7391df16a270d8a3a28b8ebaf98d0ed0928bc8)), closes [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) -* **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657) -* **button:** add loader minimal display interval ([#634](https://github.com/core-ds/core-components/issues/634)) ([d2f7edc](https://github.com/core-ds/core-components/commit/d2f7edc52c3e43ce3f5db8250446227b869ab731)) -* **button:** experimental active transform (site theme) ([a741e4f](https://github.com/core-ds/core-components/commit/a741e4fb73716902e6a72957e672921c21e7696b)) -* **button:** fix version ([#648](https://github.com/core-ds/core-components/issues/648)) ([ec51599](https://github.com/core-ds/core-components/commit/ec5159910a7fdc103d4f4e8d3d4198db3ffbdcc8)) -* **calendar-input:** toggle calendar on enter ([#618](https://github.com/core-ds/core-components/issues/618)) ([110e836](https://github.com/core-ds/core-components/commit/110e8369dffa9576ec07a517076a11d6ba2e80fa)) -* **calendar-range:** pass props to render calendar in popper ([#702](https://github.com/core-ds/core-components/issues/702)) ([4369e46](https://github.com/core-ds/core-components/commit/4369e462116dc1d240f95f811be67639b10dedb6)) -* **calendar-with-skeleton:** add component ([e940c88](https://github.com/core-ds/core-components/commit/e940c88703a7434e0db4ce0efc27a234455b449c)) -* **collapse:** add ability to change state using prop expanded ([#659](https://github.com/core-ds/core-components/issues/659)) ([809c835](https://github.com/core-ds/core-components/commit/809c8356f6dec0eeb9167bca8483f36bf5845455)) -* **confirmation:** add property for change retry button text ([#720](https://github.com/core-ds/core-components/issues/720)) ([c0f7688](https://github.com/core-ds/core-components/commit/c0f76888cffff8ad4169769bc4615429663352a5)) -* **confirmation:** set up signTitle prop as slot ([#672](https://github.com/core-ds/core-components/issues/672)) ([85e4786](https://github.com/core-ds/core-components/commit/85e47862689f373fd1904495ae7b86d998ad7cec)) -* **confirmation:** styles updates ([#636](https://github.com/core-ds/core-components/issues/636)) ([da00fc5](https://github.com/core-ds/core-components/commit/da00fc5bf80251f5104452ba326711788c2f7240)), closes [#1](https://github.com/core-ds/core-components/issues/1) -* **dark-theme-styles-injector:** add prop for selector ([#709](https://github.com/core-ds/core-components/issues/709)) ([f74cdc7](https://github.com/core-ds/core-components/commit/f74cdc7b312321fcb111f1c64f21714ee403e513)) -* **drawer:** update animtaion ([#643](https://github.com/core-ds/core-components/issues/643)) ([3a3cfc5](https://github.com/core-ds/core-components/commit/3a3cfc5be89908df476f77a35bcf6b9460ecb92a)) -* **dropzone:** add component ([#566](https://github.com/core-ds/core-components/issues/566)) ([693a720](https://github.com/core-ds/core-components/commit/693a720202d78d47e39954edff7b72335904d714)) -* **file-upload-item:** add component ([#571](https://github.com/core-ds/core-components/issues/571)) ([e627350](https://github.com/core-ds/core-components/commit/e627350b3eabfb36aaa67c17411a9b98b551867d)) -* **form-control:** add hidden label instead min-width ([a40ffcf](https://github.com/core-ds/core-components/commit/a40ffcf149282c83a834587a9486bc09b2929f90)) -* **icon-button:** add negative view ([#635](https://github.com/core-ds/core-components/issues/635)) ([7006116](https://github.com/core-ds/core-components/commit/70061167d1e00a786e28c53ebb26e4e174d03311)) -* **input:** pretty webkit autofill ([#660](https://github.com/core-ds/core-components/issues/660)) ([d50e83e](https://github.com/core-ds/core-components/commit/d50e83e627e1641c3634ace505b9abe163ef6530)) -* **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b)) -* **modal:** add layout to footer ([#644](https://github.com/core-ds/core-components/issues/644)) ([eb5a66e](https://github.com/core-ds/core-components/commit/eb5a66ef928df663f4ad0fe048b5d3097b4f4b72)) -* **modal:** fixed position ([#617](https://github.com/core-ds/core-components/issues/617)) ([77db054](https://github.com/core-ds/core-components/commit/77db054b18c1dba6713d9a9d99c95a1ef5c98e8e)) -* **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5)) -* **password-input:** add password input (PDS-233) ([#691](https://github.com/core-ds/core-components/issues/691)) ([d872e4d](https://github.com/core-ds/core-components/commit/d872e4dd18fd5db472864fbc2676749b812da00f)) -* **phone-input:** add 'clearableCountyCode' prop ([#749](https://github.com/core-ds/core-components/issues/749)) ([d110ae7](https://github.com/core-ds/core-components/commit/d110ae76594ccbf7f6d8a5764d3c2a72b1ae9a26)) -* **plate:** update vars ([#668](https://github.com/core-ds/core-components/issues/668)) ([cbecef5](https://github.com/core-ds/core-components/commit/cbecef55e4cfc7231dcaa16b9220cc920547ff18)) -* **select:** add scroll handler ([#756](https://github.com/core-ds/core-components/issues/756)) ([b25351b](https://github.com/core-ds/core-components/commit/b25351b74913244fb131d4aa1bc09900be362258)) -* **select:** add useSelectWithLoading preset ([#693](https://github.com/core-ds/core-components/issues/693)) ([12d542f](https://github.com/core-ds/core-components/commit/12d542f11dddcd022c1ba895e4105115be0b98b2)) -* **select:** dont highlight first option on open ([015a084](https://github.com/core-ds/core-components/commit/015a084be6e5d837b6368afe6ca63a0a4c325435)) -* **select:** label + placeholder ([#535](https://github.com/core-ds/core-components/issues/535)) ([e821c41](https://github.com/core-ds/core-components/commit/e821c41e65d01ad517dab983685506614df0db89)) -* **skeleton:** add display var, change default to block ([#718](https://github.com/core-ds/core-components/issues/718)) ([27aaa60](https://github.com/core-ds/core-components/commit/27aaa605a958d932a52904556ac2fe1dd59356af)) -* **skeleton:** bg animation ([3dac97d](https://github.com/core-ds/core-components/commit/3dac97d18b9c7b2f63f55e2139a1adfb84710b88)) -* **skeleton:** bg animation ([37a52ad](https://github.com/core-ds/core-components/commit/37a52ad3e49f2873aaff86a768599d947a17c754)) -* **slider:** click theme ([15c308a](https://github.com/core-ds/core-components/commit/15c308a50e9fbcd8e40a8681f32aefea5b3d5cf9)) -* **slider-input:** design updates ([#673](https://github.com/core-ds/core-components/issues/673)) ([794e3cc](https://github.com/core-ds/core-components/commit/794e3cc99a3b61ec4faa630469dae7e49a56ee0a)) -* **space:** fix dataTestId ([#625](https://github.com/core-ds/core-components/issues/625)) ([a33ca6b](https://github.com/core-ds/core-components/commit/a33ca6ba791a43252b09c5a6d81dbd206aaec2d7)) -* **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6)) -* **tag:** adjusted colors ([#667](https://github.com/core-ds/core-components/issues/667)) ([ded4ac4](https://github.com/core-ds/core-components/commit/ded4ac4a4e02ee8ec4efdc6d990455caa3ab94bb)) -* **textarea:** add value counter ([#695](https://github.com/core-ds/core-components/issues/695)) ([cbc6bd3](https://github.com/core-ds/core-components/commit/cbc6bd3eaa48e3df2791d23e156c7c664d67ff49)) -* **themes:** confirmation mobile theme ([a85233c](https://github.com/core-ds/core-components/commit/a85233c1e859e933e1c51997678c8a8c6134e353)) -* **tooltip:** add hint view ([#688](https://github.com/core-ds/core-components/issues/688)) ([9f03cd5](https://github.com/core-ds/core-components/commit/9f03cd5956dd8b17025ee9947a10bc059a339846)) -* **tooltip:** add target ref property ([#755](https://github.com/core-ds/core-components/issues/755)) ([9aa962d](https://github.com/core-ds/core-components/commit/9aa962d8b280e8d6af8ac4324a78b4bdebbfc536)) -* **typography:** add rest props ([#682](https://github.com/core-ds/core-components/issues/682)) ([51e1cf8](https://github.com/core-ds/core-components/commit/51e1cf89028c788bfcdbc21ea16acbbe190b5db9)) -* **typography:** monospaceNumbers prop (PDS-255) ([#697](https://github.com/core-ds/core-components/issues/697)) ([42d16a6](https://github.com/core-ds/core-components/commit/42d16a62f6d0781eba44dc1e0b76b28cae37d89a)) -* **vars:** add border-radius-xs ([a4bd8ff](https://github.com/core-ds/core-components/commit/a4bd8ff44d9ed7cf68ca2b0994ab61a80ed358e2)) -* upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696)) ([bf8350e](https://github.com/core-ds/core-components/commit/bf8350ebfd238b6c63ac30545ac32ca933f498d6)), closes [#708](https://github.com/core-ds/core-components/issues/708) [#707](https://github.com/core-ds/core-components/issues/707) [#714](https://github.com/core-ds/core-components/issues/714) [#716](https://github.com/core-ds/core-components/issues/716) [#690](https://github.com/core-ds/core-components/issues/690) [#701](https://github.com/core-ds/core-components/issues/701) [#699](https://github.com/core-ds/core-components/issues/699) [#698](https://github.com/core-ds/core-components/issues/698) [#693](https://github.com/core-ds/core-components/issues/693) [#699](https://github.com/core-ds/core-components/issues/699) [#698](https://github.com/core-ds/core-components/issues/698) [#693](https://github.com/core-ds/core-components/issues/693) [#705](https://github.com/core-ds/core-components/issues/705) [#705](https://github.com/core-ds/core-components/issues/705) [#709](https://github.com/core-ds/core-components/issues/709) [#703](https://github.com/core-ds/core-components/issues/703) [#695](https://github.com/core-ds/core-components/issues/695) [#673](https://github.com/core-ds/core-components/issues/673) [#703](https://github.com/core-ds/core-components/issues/703) [#709](https://github.com/core-ds/core-components/issues/709) [#673](https://github.com/core-ds/core-components/issues/673) [#695](https://github.com/core-ds/core-components/issues/695) [#645](https://github.com/core-ds/core-components/issues/645) [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) [#712](https://github.com/core-ds/core-components/issues/712) [#713](https://github.com/core-ds/core-components/issues/713) [#719](https://github.com/core-ds/core-components/issues/719) [#720](https://github.com/core-ds/core-components/issues/720) [#718](https://github.com/core-ds/core-components/issues/718) [#712](https://github.com/core-ds/core-components/issues/712) [#713](https://github.com/core-ds/core-components/issues/713) [#719](https://github.com/core-ds/core-components/issues/719) [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) [#720](https://github.com/core-ds/core-components/issues/720) [#718](https://github.com/core-ds/core-components/issues/718) [#691](https://github.com/core-ds/core-components/issues/691) [#691](https://github.com/core-ds/core-components/issues/691) [#723](https://github.com/core-ds/core-components/issues/723) [#702](https://github.com/core-ds/core-components/issues/702) [#723](https://github.com/core-ds/core-components/issues/723) [#702](https://github.com/core-ds/core-components/issues/702) [#708](https://github.com/core-ds/core-components/issues/708) [#707](https://github.com/core-ds/core-components/issues/707) [#714](https://github.com/core-ds/core-components/issues/714) [#722](https://github.com/core-ds/core-components/issues/722) -* **alert:** add component ([#548](https://github.com/core-ds/core-components/issues/548)) ([264cbf8](https://github.com/core-ds/core-components/commit/264cbf8f7465d2ecaf043bf0f67530e040fc83f6)) -* **amount-input:** changed size L (72 → 64), added size XL (72) ([a2c0b7c](https://github.com/core-ds/core-components/commit/a2c0b7ce6c208183897064cd6235d69445e3afe5)) -* **badge:** reinvented icon view, visibleIconOutline prop ([#499](https://github.com/core-ds/core-components/issues/499)) ([bad9140](https://github.com/core-ds/core-components/commit/bad91400cb72edcd0878f7a07188e928d4bf3281)) -* **button:** add rel='noopener noreferrer' if target='blank' ([#522](https://github.com/core-ds/core-components/issues/522)) ([a1da871](https://github.com/core-ds/core-components/commit/a1da87118a32195ba844c239f5a0f73e164faa6f)) -* **button:** changed size L (72 → 64), added size XL (72) ([051d964](https://github.com/core-ds/core-components/commit/051d964e83fd7af3703c82facf75345eca66915b)) -* **button:** updated button colors and themes ([#500](https://github.com/core-ds/core-components/issues/500)) ([b34f12d](https://github.com/core-ds/core-components/commit/b34f12db8cebc53641a642de9164075d0ed2dacf)) -* **button:** updated xs button font-weight ([#599](https://github.com/core-ds/core-components/issues/599)) ([b05a554](https://github.com/core-ds/core-components/commit/b05a5547c97afba0d66489eca83a7a04d6c24283)) -* **calendar-input:** remove input width ([#576](https://github.com/core-ds/core-components/issues/576)) ([f0954b0](https://github.com/core-ds/core-components/commit/f0954b0724ead52ea0a60ab8baebd5dfa3638a01)) -* **calendar-range:** allow to select one-day range ([#491](https://github.com/core-ds/core-components/issues/491)) ([7fe56eb](https://github.com/core-ds/core-components/commit/7fe56eb7128146127b9b0732a945f11ee08980f3)) -* **cdn-icon:** add component ([#494](https://github.com/core-ds/core-components/issues/494)) ([a6df885](https://github.com/core-ds/core-components/commit/a6df885077c1c4a5ae76d110f6f5f6e369236182)) -* **confirmation:** add noAttemptsLeftMessage prop ([7dc0e02](https://github.com/core-ds/core-components/commit/7dc0e02074443fd68c13aa0ac54bd966e8968ffc)) -* **confirmation:** always show sms come link ([0a14a54](https://github.com/core-ds/core-components/commit/0a14a54b177ee72ccf8cd8b057ea48db0168c1fb)) -* **confirmation:** confirmation design updates ([69f26e4](https://github.com/core-ds/core-components/commit/69f26e415a195d863686076941b6a3f15f3d1d15)) -* **confirmation:** fix text ([40d4d6b](https://github.com/core-ds/core-components/commit/40d4d6b2261b2e0db79bc160266cc207a1ca3858)) -* **drawer:** add component ([#497](https://github.com/core-ds/core-components/issues/497)) ([5943188](https://github.com/core-ds/core-components/commit/594318886d581e6afca99fcebe9088c222aa3d52)) -* **form-control:** changed size L (72 → 64), added size XL (72) ([4a129f3](https://github.com/core-ds/core-components/commit/4a129f3ca3c80e94489cbc485018e6eb6e542244)) -* **grid:** add component ([#486](https://github.com/core-ds/core-components/issues/486)) ([96bd0f3](https://github.com/core-ds/core-components/commit/96bd0f34047fa4c8a877c75a60cc39f839f20b84)) -* **icon-button:** add component ([#505](https://github.com/core-ds/core-components/issues/505)) ([da8ba6e](https://github.com/core-ds/core-components/commit/da8ba6e4473da87d8043713a592368d500cd284f)) -* **icon-button:** inverted theme ([#550](https://github.com/core-ds/core-components/issues/550)) ([98c3691](https://github.com/core-ds/core-components/commit/98c36919f682041278aa31753f1d18be95358df1)) -* **input:** changed size L (72 → 64), added size XL (72) ([79699e3](https://github.com/core-ds/core-components/commit/79699e34d28075809e537b73911875ff5fc2d406)) -* **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917)) -* **intl-phone-input:** add onCountryChange handler ([#539](https://github.com/core-ds/core-components/issues/539)) ([f8c0cd6](https://github.com/core-ds/core-components/commit/f8c0cd618ced23bbb49a81cfee07c1f45ee20427)) -* **intl-phone-input:** changed size L (72 → 64), added size XL (72) ([9077b7f](https://github.com/core-ds/core-components/commit/9077b7f454035cdc7be611d526a5f9642ae4d76d)) -* **link:** set rel='noopener noreferrer' if target='_blank' ([#520](https://github.com/core-ds/core-components/issues/520)) ([08c556e](https://github.com/core-ds/core-components/commit/08c556ecc0944d121b23566ae54319a1a33899ba)), closes [#519](https://github.com/core-ds/core-components/issues/519) -* **modal:** reinvent modal ([#489](https://github.com/core-ds/core-components/issues/489)) ([06cb8ba](https://github.com/core-ds/core-components/commit/06cb8ba7f7a09445c04ab2a9871a86c1abf4a79c)) -* **mq:** change mobile-s to mobile-xs ([9abf5ba](https://github.com/core-ds/core-components/commit/9abf5bada45287a786610dd6cce7cc047d779012)) -* **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b)) -* **phone-input:** changed size L (72 → 64), added size XL (72) ([13257c5](https://github.com/core-ds/core-components/commit/13257c54543b2f1a870527093df11c532143dab9)) -* **popover:** change animation, add scale ([2e48a02](https://github.com/core-ds/core-components/commit/2e48a02a8f3f7ff9a6df48cf4e6337a8928f67c7)) -* **pure-input:** changed size L (72 → 64), added size XL (72) ([af4cfb5](https://github.com/core-ds/core-components/commit/af4cfb515a25c6dcae32a7e2a0730fe4f9e6e791)) -* **select:** add options-list width ([#578](https://github.com/core-ds/core-components/issues/578)) ([6f1c12b](https://github.com/core-ds/core-components/commit/6f1c12b9196d3ebf87e1ea3e0610f73b8832b771)) -* **select:** add optionsSize ([#577](https://github.com/core-ds/core-components/issues/577)) ([12f3b43](https://github.com/core-ds/core-components/commit/12f3b4342a3dada9db97eb80839a3d7adb9e3747)) -* **select:** add visible-options ([#506](https://github.com/core-ds/core-components/issues/506)) ([0154866](https://github.com/core-ds/core-components/commit/0154866bb8fc8308945d32f115b3ab1e46f98db6)) -* **select:** changed size L (72 → 64), added size XL (72) ([af5dc6a](https://github.com/core-ds/core-components/commit/af5dc6a4f5b52f45bc97f4cc16633aca499aa67a)) -* **select-with-tags:** added collapsed tag list ([#511](https://github.com/core-ds/core-components/issues/511)) ([fe1d551](https://github.com/core-ds/core-components/commit/fe1d551385e9122c205bbe7a679f02a6eb376569)) -* **select-with-tags:** changed size L (72 → 64), added size XL (72) ([523b96f](https://github.com/core-ds/core-components/commit/523b96fa79bc12972ec6ac748105ba20906ba236)) -* **select-with-tags:** design review fixes ([#472](https://github.com/core-ds/core-components/issues/472)) ([0ff989f](https://github.com/core-ds/core-components/commit/0ff989fa09e482a5e9bda1d64bf5eed9241fc451)) -* **skeleton:** updated default theme, click theme ([#549](https://github.com/core-ds/core-components/issues/549)) ([9bf9259](https://github.com/core-ds/core-components/commit/9bf9259d4d1efd73067ea548cdfaf3007b0f8839)) -* **slider-input:** changed size L (72 → 64), added size XL (72) ([f5fda56](https://github.com/core-ds/core-components/commit/f5fda569e0e73a06850914c1e494024a3aaab12c)) -* **status:** add component ([#546](https://github.com/core-ds/core-components/issues/546)) ([52a1f0b](https://github.com/core-ds/core-components/commit/52a1f0bd8578fe34d1c214b93a363e7b76621c17)) -* **tabs:** changed size L (72 → 64), added size XL (72) ([2043939](https://github.com/core-ds/core-components/commit/2043939c5ecdb03c9b84379a3cce21c6f6047530)) -* **tabs:** disabled view ([#513](https://github.com/core-ds/core-components/issues/513)) ([8bdb1a7](https://github.com/core-ds/core-components/commit/8bdb1a789f720c6ccd98ebed3f0ae3c84dbbf52e)) -* **tag:** changed size L (72 → 64), added size XL (72) ([ea43560](https://github.com/core-ds/core-components/commit/ea435601abb79b3bde9e34d60616239e2a0ef6bc)) -* **textarea:** changed size L (72 → 64), added size XL (72) ([175e360](https://github.com/core-ds/core-components/commit/175e360d5acb4eb146c81020fd65dc725588edee)) -* **themes:** list click theme ([#528](https://github.com/core-ds/core-components/issues/528)) ([e54ad60](https://github.com/core-ds/core-components/commit/e54ad605a9f873b06e0fe984bc87bcbb810a2541)) -* **themes:** updated click theme for tabs ([0a4c17e](https://github.com/core-ds/core-components/commit/0a4c17e5628f959d72e0ee6044ca56bd3c890d92)) -* **toast:** remove extra prop ([6a8167a](https://github.com/core-ds/core-components/commit/6a8167a6685a290efc30ac9fc285ddc4b62bd1fe)) -* **toast:** review fixes ([50fea1d](https://github.com/core-ds/core-components/commit/50fea1d764a2b99b66a1212fa56c98958e34f147)) -* **toast:** update popover ([9961bc8](https://github.com/core-ds/core-components/commit/9961bc8a15428c4417af9df9585d8fc55b6a154c)) -* **toast-plate:** add action button theming, fix addons align ([#514](https://github.com/core-ds/core-components/issues/514)) ([20a7c67](https://github.com/core-ds/core-components/commit/20a7c67e89e4b6d3d90a9f1da2eb1b428c8ebf73)) -* **tooltip:** add wrapper around children component ([#587](https://github.com/core-ds/core-components/issues/587)) ([a2ecbb6](https://github.com/core-ds/core-components/commit/a2ecbb67bd517b583284ec0b8365de9e58e753ed)) -* **vars:** 2px gap ([#544](https://github.com/core-ds/core-components/issues/544)) ([e401782](https://github.com/core-ds/core-components/commit/e40178290a02c45bd9ea23ab0deffabd74a69276)) -* **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe)) -* **vars:** fresh colors from alfa-ui-primitives ([2051a0c](https://github.com/core-ds/core-components/commit/2051a0ce3caee3c1a70f36e8c84e575bcd528bab)) -* **vars:** introducing border-radius vars ([1a6fb28](https://github.com/core-ds/core-components/commit/1a6fb287bcfab50048c3a9100645b4dee8cd3395)) -* improve read-only behaviour (PDS-200) ([#502](https://github.com/core-ds/core-components/issues/502)) ([3b3c5e6](https://github.com/core-ds/core-components/commit/3b3c5e664a829351f09f97d742311396dd0c98c6)) -* size vars (xs/s/m/l/xl → 32/48/56/64/72) ([d7254d2](https://github.com/core-ds/core-components/commit/d7254d2963106663e8f04b84bc747b38e4f57632)) -* **with-suffix:** xl size ([d2bb796](https://github.com/core-ds/core-components/commit/d2bb7967b6756f8b06b3484c7900ef7637b1c777)) -* updated design tokens ([#516](https://github.com/core-ds/core-components/issues/516)) ([ef66b65](https://github.com/core-ds/core-components/commit/ef66b65bb35b2ef06292b8da709ccc335eb44735)) -* yet another fixes ([6ecd273](https://github.com/core-ds/core-components/commit/6ecd273b8900e9559e1b8a54a95d1874b4c4a7a3)) -* **amount-input:** added integerLength prop ([881af44](https://github.com/core-ds/core-components/commit/881af44b1823560d522ac07a7359cc6c5739ba0e)) -* **amount-input:** delete zero minor part in passed amount ([#484](https://github.com/core-ds/core-components/issues/484)) ([b787cb1](https://github.com/core-ds/core-components/commit/b787cb1ea1a56bc022470a644e4029bba623b151)) -* **button:** add conditions ([5f034f3](https://github.com/core-ds/core-components/commit/5f034f382fcb1dc1304c9c0b9ccdcff765c5c7fd)) -* **button:** add css to button ([34b23ed](https://github.com/core-ds/core-components/commit/34b23ed2885a39f00928c3df0e485d1966fe6ec0)) -* **button:** design review fixes ([e8f5faf](https://github.com/core-ds/core-components/commit/e8f5faf42b2ea98eff7d5914076a1916008b13b9)) -* **button:** transparent view ([e395049](https://github.com/core-ds/core-components/commit/e39504987bf7c3afb01fc78151bff182199d08cb)) -* **button:** update snapshorts ([29c36ac](https://github.com/core-ds/core-components/commit/29c36ac278407a04be7726996bf50f54c150ba97)) -* **button:** updated addons margin, use gaps ([514fb86](https://github.com/core-ds/core-components/commit/514fb863e41956be7f4888e03a886ab7d35029b1)) -* **calendar:** add component ([#376](https://github.com/core-ds/core-components/issues/376)) ([2994d02](https://github.com/core-ds/core-components/commit/2994d02b49ad172d601f0fc63f89dea20896fd7d)), closes [#2](https://github.com/core-ds/core-components/issues/2) [#2](https://github.com/core-ds/core-components/issues/2) [#413](https://github.com/core-ds/core-components/issues/413) -* **calendar:** add scrolling to selected year when open year select ([#471](https://github.com/core-ds/core-components/issues/471)) ([bf295ab](https://github.com/core-ds/core-components/commit/bf295ab281c80df550cd38d04e86f934e822f3eb)) -* **calendar-range:** add component ([#426](https://github.com/core-ds/core-components/issues/426)) ([7bf76d9](https://github.com/core-ds/core-components/commit/7bf76d9528ffae9b69bf6fdebf8a27e198393eaa)) -* **checkbox:** improved theming ([cb1d196](https://github.com/core-ds/core-components/commit/cb1d196ade34622d5b92fc0ec5c20af5f5e27d3c)) -* **checkbox:** size m ([9fdbf2b](https://github.com/core-ds/core-components/commit/9fdbf2ba938a5ef336020c17041ceaa6c524f1b0)) -* **collapse:** add component ([eea2a52](https://github.com/core-ds/core-components/commit/eea2a52de14dbada541735b7684090aee17a2bcd)) -* **collapse:** codestyle fixes ([74b780a](https://github.com/core-ds/core-components/commit/74b780a51fc0fb80b810e2e621fc08a1e0ca2dc6)) -* **collapse:** codestyle fixes again ([1cd37b7](https://github.com/core-ds/core-components/commit/1cd37b7894cc3b71dc29359c297ba15b261dea08)) -* **collapse:** fix icon ([5f64a69](https://github.com/core-ds/core-components/commit/5f64a69838d2e6803e0d744ce5b3699eefb600f8)) -* **collapse:** fixes ([81d48d0](https://github.com/core-ds/core-components/commit/81d48d0674be40241f781487df47c5fff6ad9658)) -* **collapse:** forgotten ref ([3a256fb](https://github.com/core-ds/core-components/commit/3a256fb74380b70bca89c9f491836caf5078e9cb)) -* **core-components-amount:** add click theme ([b4b0699](https://github.com/core-ds/core-components/commit/b4b0699dcffd2f505935489d66fd0d48b633ecf7)) -* **core-components-amount:** export CurrencyCodes ([1a6155a](https://github.com/core-ds/core-components/commit/1a6155a63655084895831094127404cdbcb0ef54)) -* **core-components-amount-input:** add forward ref ([5471887](https://github.com/core-ds/core-components/commit/5471887361dcb1383ae695f69cc13c201d713607)) -* **core-components-attach:** add Attach component ([#235](https://github.com/core-ds/core-components/issues/235)) ([71aa41c](https://github.com/core-ds/core-components/commit/71aa41c9383c09ae227a1df84585f5f760de350e)), closes [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) -* **core-components-badge:** add component ([#330](https://github.com/core-ds/core-components/issues/330)) ([eb1c617](https://github.com/core-ds/core-components/commit/eb1c617ed03366060f7a60a9bd13396159cfce72)), closes [#327](https://github.com/core-ds/core-components/issues/327) -* **core-components-bank-card:** add component draft ([#208](https://github.com/core-ds/core-components/issues/208)) ([93943b7](https://github.com/core-ds/core-components/commit/93943b7861d8c95ca365bc7545a87d493a793f1e)) -* **core-components-bank-card:** change caret color ([1b69839](https://github.com/core-ds/core-components/commit/1b698399bbcb3afaea80e81f0cbfa9d3d13074ff)) -* **core-components-button:** added nowrap ([#365](https://github.com/core-ds/core-components/issues/365)) ([99a87eb](https://github.com/core-ds/core-components/commit/99a87ebd4c97e325b7724b70991b00ca121601da)) -* **core-components-button:** button themes (click, corp, mobile) ([cf658c3](https://github.com/core-ds/core-components/commit/cf658c388bb0cbf06517b04b4c24f8e5715d8cbe)) -* **core-components-card-image:** add cardImage component ([#326](https://github.com/core-ds/core-components/issues/326)) ([06901af](https://github.com/core-ds/core-components/commit/06901af839f48e5051fc6195446687b756420fc7)) -* **core-components-confirmation:** add confirmation ([#230](https://github.com/core-ds/core-components/issues/230)) ([7a494ba](https://github.com/core-ds/core-components/commit/7a494bafb18af572babb18e7a4fa9a15c2fe6a30)) -* **core-components-confirmation:** fixes ([#311](https://github.com/core-ds/core-components/issues/311)) ([e56a137](https://github.com/core-ds/core-components/commit/e56a137a62e78e56ac63f3d701660fc8a7c5658a)) -* **core-components-confirmation:** separate error and error text ([#329](https://github.com/core-ds/core-components/issues/329)) ([03fc4fb](https://github.com/core-ds/core-components/commit/03fc4fb85fd9f5636493fdf6d79440227c8a0be0)) -* **core-components-fade:** add fade ([459d2c0](https://github.com/core-ds/core-components/commit/459d2c0111f0ab9a3fd6a22c46ed27cbcd1df6e0)) -* **core-components-form-control:** add addons classname ([707cd54](https://github.com/core-ds/core-components/commit/707cd547b2b695cb7585c996efcb8c070b789038)) -* **core-components-form-control:** change l-size height ([c87f908](https://github.com/core-ds/core-components/commit/c87f908fe8174e9d0e976153daac1e46e3a252bd)) -* **core-components-form-control:** set opactiy in disabled state ([#342](https://github.com/core-ds/core-components/issues/342)) ([586a8d1](https://github.com/core-ds/core-components/commit/586a8d15f1be9fe6ceea62ac2231c7ecb1125b7e)) -* **core-components-input:** add addons classname ([9f40cdc](https://github.com/core-ds/core-components/commit/9f40cdc2a79feea9b5b3d5cdb411676f0ff05f35)) -* **core-components-input:** add clear button, some improvements ([4f9a453](https://github.com/core-ds/core-components/commit/4f9a4537db28404281415c4354408386bc4c4021)) -* **core-components-input:** add css-var for clear button icon ([637286c](https://github.com/core-ds/core-components/commit/637286ca68bf9b25653298b4315c97bb145a2089)) -* **core-components-input:** add filled and focused classNames ([ebaac73](https://github.com/core-ds/core-components/commit/ebaac73103caf4601e8df7302af14f79f8a096d1)) -* **core-components-input:** add input wrapper ref ([9c1fba0](https://github.com/core-ds/core-components/commit/9c1fba07c233206eab0defe6e4341fdb0c8b3664)) -* **core-components-input:** add labelClassName ([8494b21](https://github.com/core-ds/core-components/commit/8494b21f3f2027a1439823c4e1237cb9add5cab9)) -* **core-components-input:** add ref tests ([9ed193c](https://github.com/core-ds/core-components/commit/9ed193c1f5f0f4a22a276877893e6d5de4c4a2a0)) -* **core-components-input:** hide clear if input is readonly ([#328](https://github.com/core-ds/core-components/issues/328)) ([93f7ba4](https://github.com/core-ds/core-components/commit/93f7ba429fb8e8f430d3dfadefe8375d6ea2e642)) -* **core-components-input:** update type ([9ab3733](https://github.com/core-ds/core-components/commit/9ab373369c5b692bd3632d43ef1afda7d9ffc63e)) -* **core-components-input:** updated input click theme ([#315](https://github.com/core-ds/core-components/issues/315)) ([69e6f81](https://github.com/core-ds/core-components/commit/69e6f81cc85fac5f5c988e2e409b82ad25ef8a6f)) -* **core-components-intl-phone-input:** add component ([#333](https://github.com/core-ds/core-components/issues/333)) ([4d7c71d](https://github.com/core-ds/core-components/commit/4d7c71d3ace0d44ba1045ab4d2774575e1db65f9)), closes [#336](https://github.com/core-ds/core-components/issues/336) [#334](https://github.com/core-ds/core-components/issues/334) -* **core-components-keyboard-focusable:** add component and hook ([#215](https://github.com/core-ds/core-components/issues/215)) ([f777f72](https://github.com/core-ds/core-components/commit/f777f729e9c880d15b79f58ae9a8f1d5fa6662b1)) -* **core-components-link:** add slots ([#337](https://github.com/core-ds/core-components/issues/337)) ([86f0886](https://github.com/core-ds/core-components/commit/86f0886129f9119a74a5a054232726f871c1634e)) -* **core-components-link:** updated colors and click theme ([573c785](https://github.com/core-ds/core-components/commit/573c78516a41194c9c802eb3ecfdbe7653730311)) -* **core-components-list:** adds a new component ([#296](https://github.com/core-ds/core-components/issues/296)) ([7d5a93d](https://github.com/core-ds/core-components/commit/7d5a93d8318a71d61da91c0bf1a2f88896242fee)) -* **core-components-list-header:** add component ([#344](https://github.com/core-ds/core-components/issues/344)) ([cce69f3](https://github.com/core-ds/core-components/commit/cce69f30d1671d4344e0a85f62516e1f7a1f9266)) -* **core-components-modal:** add modal ([2a71f1b](https://github.com/core-ds/core-components/commit/2a71f1bb2296306df359c9f051fbef44ca0abe6b)) -* **core-components-mq:** add component and hook ([#350](https://github.com/core-ds/core-components/issues/350)) ([6dbd11f](https://github.com/core-ds/core-components/commit/6dbd11f4e3dc369dd645638f46f49b4e0e6c13e6)) -* **core-components-notification:** add component ([#357](https://github.com/core-ds/core-components/issues/357)) ([c6644a0](https://github.com/core-ds/core-components/commit/c6644a018b97dfc68e327bcbcff2edae802921be)), closes [#351](https://github.com/core-ds/core-components/issues/351) -* **core-components-phone-input:** add phone-input ([#192](https://github.com/core-ds/core-components/issues/192)) ([42cedbf](https://github.com/core-ds/core-components/commit/42cedbf9583f1c836cb0825789b0d4b47fbbdddd)) -* **core-components-phone-input:** remove optional chaining ([#222](https://github.com/core-ds/core-components/issues/222)) ([d8a9ca2](https://github.com/core-ds/core-components/commit/d8a9ca2f004bb8bd1df31a5499ead7d7c28e0d80)) -* **core-components-plate:** add component ([62e18bf](https://github.com/core-ds/core-components/commit/62e18bf581651bca66a74c0d02b945522b452b4a)), closes [#340](https://github.com/core-ds/core-components/issues/340) -* **core-components-popover:** add classname for tooltip popover ([c837199](https://github.com/core-ds/core-components/commit/c837199eda8890806388f87a32d61cc88a4165dd)) -* **core-components-progress-bar:** add progress bar component ([39ee713](https://github.com/core-ds/core-components/commit/39ee713522f67f2744fc2f6b4fcb2ac861a55f41)) -* **core-components-pure-input:** change l-size height ([5287559](https://github.com/core-ds/core-components/commit/5287559cbc7a3beac54047884174b26c21cdf453)) -* **core-components-radio:** add radio component ([#183](https://github.com/core-ds/core-components/issues/183)) ([858c81b](https://github.com/core-ds/core-components/commit/858c81b7b3e6bef27b39e719bbecfe1d32f92d19)) -* **core-components-select:** add dataTestId ([83c5dd5](https://github.com/core-ds/core-components/commit/83c5dd5cf8b551a6dcc6c319a6ae69d32113ab34)) -* **core-components-select:** add missing changes ([053b512](https://github.com/core-ds/core-components/commit/053b512382028863c1bb2aa7c6c1e8296cbc29c4)) -* **core-components-select:** inputs & types ([#323](https://github.com/core-ds/core-components/issues/323)) ([0f4d547](https://github.com/core-ds/core-components/commit/0f4d547c3a5792e095de2011db2c6c1e9dbfb386)) -* **core-components-select:** show error icon and arrow both ([#299](https://github.com/core-ds/core-components/issues/299)) ([b563989](https://github.com/core-ds/core-components/commit/b563989a57bf64a9450915d0d0d73687f5358d06)) -* **core-components-skeleton:** adds a new component ([11e6ce9](https://github.com/core-ds/core-components/commit/11e6ce94c8bca6f5b91a9c04c2f750ec232aea23)) -* **core-components-skeleton:** changes styles ([379a8d9](https://github.com/core-ds/core-components/commit/379a8d971ce074242de47972382a78697038864d)) -* **core-components-slider:** add component ([#285](https://github.com/core-ds/core-components/issues/285)) ([57a645e](https://github.com/core-ds/core-components/commit/57a645e735af3218b77c92ce8a66b7efc64f53ad)) -* **core-components-slider-input:** add component ([#288](https://github.com/core-ds/core-components/issues/288)) ([901df73](https://github.com/core-ds/core-components/commit/901df73692bf019a06db7d6d056f2cb6ee9e5f8d)), closes [#294](https://github.com/core-ds/core-components/issues/294) -* **core-components-slider-input:** update stories ([d6a2937](https://github.com/core-ds/core-components/commit/d6a29370739d15427c961b58c553d22c9df87799)) -* **core-components-spinner:** add spinner component ([#360](https://github.com/core-ds/core-components/issues/360)) ([8c6e453](https://github.com/core-ds/core-components/commit/8c6e45341b0ac6232e2fc89ed6860bb8ccbc371c)) -* **core-components-tabs:** add tabs ([#149](https://github.com/core-ds/core-components/issues/149)) ([b08b668](https://github.com/core-ds/core-components/commit/b08b66861fd7c068a1db7e32d3d697ad13acbd6f)), closes [#175](https://github.com/core-ds/core-components/issues/175) [#200](https://github.com/core-ds/core-components/issues/200) -* **core-components-tabs:** addons and container class name ([#361](https://github.com/core-ds/core-components/issues/361)) ([68f1322](https://github.com/core-ds/core-components/commit/68f1322436a5d083a3a98a4405b1d94540e0b8dc)) -* **core-components-tabs:** remove gaps, add sizes ([da7d435](https://github.com/core-ds/core-components/commit/da7d4350b9fb46e8765ec65cf483c7aadab134c3)) -* **core-components-tag:** add click theme ([eeb2400](https://github.com/core-ds/core-components/commit/eeb24000b0f75d48a4780fe069a4698867006b8b)) -* **core-components-tag:** min-width for tags ([fce5ce3](https://github.com/core-ds/core-components/commit/fce5ce382e9b25190504ff3de3a5479527024afa)) -* **core-components-textarea:** add Textarea component ([#221](https://github.com/core-ds/core-components/issues/221)) ([a23b731](https://github.com/core-ds/core-components/commit/a23b73192a7ad3601ea3745f8ac2fdbfaf34346b)), closes [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) -* **core-components-textarea:** change l-size height ([f314bf6](https://github.com/core-ds/core-components/commit/f314bf63b9d1f5d539c53e310ede11c2a8cdd8c7)) -* **core-components-themes:** add tabs click theme ([0ffbc3f](https://github.com/core-ds/core-components/commit/0ffbc3f9d1edbdb13549957a7174871e365e0f40)) -* **core-components-themes:** add tabs site theme, improve plugin ([da5d9ec](https://github.com/core-ds/core-components/commit/da5d9ec07f16b328c15ebebbb55498e25ff866b1)) -* **core-components-themes:** add theming example ([aba4c8a](https://github.com/core-ds/core-components/commit/aba4c8a98a3f577dd89b5e8cf3a2ccfc54b2f16e)) -* **core-components-tooltip:** updated font size and popover shadow ([e0d54b1](https://github.com/core-ds/core-components/commit/e0d54b18ffaa632e52750f30bc6b2b3d710011ca)) -* **core-components-trap-focus:** add trap-focus ([a5be636](https://github.com/core-ds/core-components/commit/a5be6367b5a1683dae00a13dea1ab5bc103083cc)) -* **core-components-typography:** add responsive title ([#362](https://github.com/core-ds/core-components/issues/362)) ([d3af0cd](https://github.com/core-ds/core-components/commit/d3af0cd52bcdbf92a1716e993104360acafcdc61)) -* **core-components-vars:** add breakpoints ([#358](https://github.com/core-ds/core-components/issues/358)) ([9cd5699](https://github.com/core-ds/core-components/commit/9cd569915b4af8c3d92045aea23b2faa054ba241)) -* **core-components-vars:** add new typography styles ([#211](https://github.com/core-ds/core-components/issues/211)) ([7df831f](https://github.com/core-ds/core-components/commit/7df831f396525bec0c57264606a44abd2417a78c)) -* **core-components-vars:** introducing shadows vars ([defc486](https://github.com/core-ds/core-components/commit/defc486204d46ed5b431555b1fe8226dee2046c4)) -* **core-components-vars:** introducing shadows vars ([8ff8aba](https://github.com/core-ds/core-components/commit/8ff8aba0301a20ac652078f9df3f85f79a121ef6)) -* **core-components-vars:** update primitives ([#291](https://github.com/core-ds/core-components/issues/291)) ([d995190](https://github.com/core-ds/core-components/commit/d9951902b1d9325e7e7a88e302d23eafd2705643)) -* **core-components-vars:** updated colors addons ([5206618](https://github.com/core-ds/core-components/commit/5206618ffa8ad9a441120b871e8950196ed6540f)) -* **core-components-with-suffix:** add hoc ([7055c98](https://github.com/core-ds/core-components/commit/7055c98ca5c1c6dda33323522c5168bc6657850b)) -* **core-components-with-suffix:** add hoc ([#301](https://github.com/core-ds/core-components/issues/301)) ([df9b797](https://github.com/core-ds/core-components/commit/df9b79781d3f831360a71dbc0816f795b95e288f)) -* **input-autocomplete:** dont close popover on input click ([#445](https://github.com/core-ds/core-components/issues/445)) ([5b49e54](https://github.com/core-ds/core-components/commit/5b49e542d3e4433024152ba6099d3992a4fc66e3)) -* **input-autocomplete:** revert arrow ([07f0ef4](https://github.com/core-ds/core-components/commit/07f0ef45a7cdd27132861932c7fa93ab0c00a024)) -* **link:** simplify link without addons, fixes [#406](https://github.com/core-ds/core-components/issues/406) ([37288e4](https://github.com/core-ds/core-components/commit/37288e45eb529fcabdf9dc79e0cd04ba015a7d4e)) -* **loader:** updated loader animation ([ec6b50c](https://github.com/core-ds/core-components/commit/ec6b50cf7942d93c89c4c5d0d8e98b3a96ab3509)) -* **modal:** hide ([9d02eba](https://github.com/core-ds/core-components/commit/9d02eba13214038b483dc43d696f38328a95c597)) -* **notification:** move inner content to toast ([8b7a4e9](https://github.com/core-ds/core-components/commit/8b7a4e932a7ac684edc62d2039263d0b9183ff0a)) -* **picker-button:** add compoonent PickerButton ([e14b73d](https://github.com/core-ds/core-components/commit/e14b73db302acd401010b9fd227e33de10eca9fc)) -* **picker-button:** simplify picker-button using colorless icons ([bd0bdba](https://github.com/core-ds/core-components/commit/bd0bdbaa8425bca05b209d7680c9ecadb65235e1)) -* **popover:** fix transition ([f8564bc](https://github.com/core-ds/core-components/commit/f8564bceace99104b521fc92d037f7ef9c635f91)) -* **popover:** prevent flip ([#398](https://github.com/core-ds/core-components/issues/398)) ([c0c1723](https://github.com/core-ds/core-components/commit/c0c1723f15af7b8f09330bc5ce3ea549ea30afa1)) -* **radio:** add addons ([7923354](https://github.com/core-ds/core-components/commit/7923354468ded0a2ea4602c7dae0eb722871c1f1)) -* **radio:** add align ([fe9faec](https://github.com/core-ds/core-components/commit/fe9faecb74b2528f5a2e18f1707dffa28ec29f7d)) -* **radio:** addons, align, block for Checkbox ([78c6f37](https://github.com/core-ds/core-components/commit/78c6f37ef7cb828ac4e8b54bd6edc9d9d4a151ab)) -* **radio:** addons, align, block for Switch ([df81ef9](https://github.com/core-ds/core-components/commit/df81ef9a6ad1c560c43d08741ba0e134a4658af3)) -* **radio:** fix reversed addons of switch ([30721a9](https://github.com/core-ds/core-components/commit/30721a9ee525aca73e9a73565755607b3abcfba3)) -* **radio:** fixes ([12128fb](https://github.com/core-ds/core-components/commit/12128fb8db85c27d0309ef806ef46673f4abbddc)) -* **radio:** fullWidth -> block ([97e0cf6](https://github.com/core-ds/core-components/commit/97e0cf65b0cc9a7dc60ec99ee16d4028a2c724cc)) -* **radio:** improved theming ([3dcb532](https://github.com/core-ds/core-components/commit/3dcb532b8b6d9a4e610a56b557a54f6c68e6ce46)) -* **radio:** lil fixy ([7e8103a](https://github.com/core-ds/core-components/commit/7e8103a863194f0c5115b586aaddd0ba89f75469)) -* **radio:** size m ([c8dfb66](https://github.com/core-ds/core-components/commit/c8dfb66f5a5b3ab5b904edc57ac88ec6003b02ba)) -* **select:** add empty list placeholder prop ([#438](https://github.com/core-ds/core-components/issues/438)) ([75b0c9c](https://github.com/core-ds/core-components/commit/75b0c9c7824b0fcb6d4ae3e238d2eb858d615808)) -* **select:** add exporting select utils ([#436](https://github.com/core-ds/core-components/issues/436)) ([0499ae9](https://github.com/core-ds/core-components/commit/0499ae9f36731d6b25a4f2501c1c760afdb8a687)) -* **select:** allow to use options as selected value ([#393](https://github.com/core-ds/core-components/issues/393)) ([a16f47a](https://github.com/core-ds/core-components/commit/a16f47ac6dd8f10c02a6ea38ec09963fab6f3942)) -* **select:** change arrow icon ([6335973](https://github.com/core-ds/core-components/commit/63359734754308eeca217526d2f4f652f78fc79d)) -* **select:** change optionslist shadow styles ([#397](https://github.com/core-ds/core-components/issues/397)) ([d13c1f8](https://github.com/core-ds/core-components/commit/d13c1f8eacd7a51152a065b5ed358515a3044c18)) -* **select:** popoverPosition, render to body, test issues ([#428](https://github.com/core-ds/core-components/issues/428)) ([7688ec7](https://github.com/core-ds/core-components/commit/7688ec74bce41dac4fff6fd36a61723f7ce1b9d3)), closes [#429](https://github.com/core-ds/core-components/issues/429) -* **select-with-tags:** add select with tags ([#435](https://github.com/core-ds/core-components/issues/435)) ([bc42165](https://github.com/core-ds/core-components/commit/bc42165b73e2c50455534c5c7f7aec4a5d155f75)) -* **slider-input:** use numeric mobile keyboard ([a866dab](https://github.com/core-ds/core-components/commit/a866dabf667f53e62733bd173f16b14c158e2368)) -* **space:** codestyle ([36994db](https://github.com/core-ds/core-components/commit/36994db62086c32f4f583454e880bff915721193)) -* **space:** codestyle ([fc6d760](https://github.com/core-ds/core-components/commit/fc6d7604be3803cf6499dc7d2f034922a7858524)) -* **space:** first Space tests ([9434b91](https://github.com/core-ds/core-components/commit/9434b910f20737b58194c006a4d4d47fb931767f)) -* **space:** just add Space component ([945a456](https://github.com/core-ds/core-components/commit/945a45635e6a90f295c27a61dac9ec08676669c3)) -* **space:** lil fixes ([b9c588a](https://github.com/core-ds/core-components/commit/b9c588ab97e95e01d9962296d453b9bb2f712126)) -* **space:** remove label and more knobs ([e2af148](https://github.com/core-ds/core-components/commit/e2af148d1dc603495e2d6eb559502c6f363aa7f0)) -* **space:** remove label and more knobs 2 ([b85b459](https://github.com/core-ds/core-components/commit/b85b4595303c2ac2e2516db17b562d08da833204)) -* **space:** version ([f262441](https://github.com/core-ds/core-components/commit/f26244139550d96cc2503c60173d0bae7e9dbea5)) -* **switch:** improved theming ([b4ecc39](https://github.com/core-ds/core-components/commit/b4ecc399c706e1de7086e255e57219e3907414e0)) -* **themes:** add button ghost inverted theme ([dd71bbf](https://github.com/core-ds/core-components/commit/dd71bbf94ba3f7cc3502f1ff4f60dad4b023ff9e)) -* **themes:** add dark theme mixins ([#420](https://github.com/core-ds/core-components/issues/420)) ([6cfd317](https://github.com/core-ds/core-components/commit/6cfd31795e937e33cd37262b85057f3e977a900c)) -* **themes:** arrow transform var with click theme ([35d4ef2](https://github.com/core-ds/core-components/commit/35d4ef2db379391c58919445e161c2234b1b16a9)) -* **themes:** fixed click theme for tag ([c0b4fad](https://github.com/core-ds/core-components/commit/c0b4fada71b1f44b5aead6e3a2b51dcccaacb0c4)) -* **themes:** updated button mobile theme ([ebdf5a1](https://github.com/core-ds/core-components/commit/ebdf5a14b912bffcefe087b95d62d4a35531e09f)) -* **themes:** updated tabs border colors ([5a41d86](https://github.com/core-ds/core-components/commit/5a41d86b23fd961e0e7b8a214906363551ae0e41)) -* **themes:** updates ([86bd76f](https://github.com/core-ds/core-components/commit/86bd76fa1cb204b274c0092a5fcc0d984d3f57a1)) -* **toast:** add draft component ([d04fbb3](https://github.com/core-ds/core-components/commit/d04fbb315adda99553f87f5d8e477ff60314a070)) -* **toast:** add new component ([09de8b0](https://github.com/core-ds/core-components/commit/09de8b0ad2684b047d129929506a83127b2ccf99)) -* **toast:** add portal ([439148d](https://github.com/core-ds/core-components/commit/439148d04d950f21b0d7186c1cbc4e681f305d63)) -* **toast:** add stop, start timers ([b28ea98](https://github.com/core-ds/core-components/commit/b28ea982cec94eb9c0a50250d51cf173d0bc0a02)) -* **toast:** fix linter error ([e994512](https://github.com/core-ds/core-components/commit/e9945125a90935e205aee8e4a6bb8b762e352d25)) -* **toast:** fix linter problems ([e8342e8](https://github.com/core-ds/core-components/commit/e8342e89353b6f1a3935473c46a1694b2186561e)) -* **toast:** some fixes ([fe95b5d](https://github.com/core-ds/core-components/commit/fe95b5d8930698ab6d37ab6dd15497af056ac4ee)) -* **toast:** updates ([896ac02](https://github.com/core-ds/core-components/commit/896ac02f251d6b45698bdb35c08eb6131141080a)) -* **toast:** updates ([24cc308](https://github.com/core-ds/core-components/commit/24cc3089a04e7f86ca929192405b71209ed3ebe7)) -* **toast-plate:** change close button position to absolute ([2f9161d](https://github.com/core-ds/core-components/commit/2f9161d8b23647485df7759c1f5a4bbf0c113925)) -* **toast-plate:** design review fixes ([55b58fd](https://github.com/core-ds/core-components/commit/55b58fd1713c89bed3da74ede15487021477545d)) -* **toast-plate:** fix ([4e378ec](https://github.com/core-ds/core-components/commit/4e378ec7cd9901807458ff1c1a09c0cbf3c41401)) -* **toast-plate:** updates ([2303335](https://github.com/core-ds/core-components/commit/230333560732c11cff2c850db41112c398e6ab76)) -* add fieldClassName ([#467](https://github.com/core-ds/core-components/issues/467)) ([8847c5a](https://github.com/core-ds/core-components/commit/8847c5a83187b97ab8f83b0149965a1d3825f89f)) -* add stylelint-core-vars ([#461](https://github.com/core-ds/core-components/issues/461)) ([c2f515e](https://github.com/core-ds/core-components/commit/c2f515e46a590815df66321ae8da011f5b2f24db)) -* **toast-plate:** fix styles ([b600f86](https://github.com/core-ds/core-components/commit/b600f860b37c039f8a4272a9f27aa5689643b614)) -* **toast-plate:** fix styles ([14af3b4](https://github.com/core-ds/core-components/commit/14af3b49fe8803cec870cd946e3835f3b92cd3e8)) -* change form-control styles ([#444](https://github.com/core-ds/core-components/issues/444)) ([2e464a8](https://github.com/core-ds/core-components/commit/2e464a87fba7ae6b60e0f58796f8663c3e456239)) -* read-only state ([#459](https://github.com/core-ds/core-components/issues/459)) ([ed087c7](https://github.com/core-ds/core-components/commit/ed087c7f0440cb7ebdeb2883a3c3998c3c48fa30)) -* **typography:** add default margins ([#446](https://github.com/core-ds/core-components/issues/446)) ([fb98d10](https://github.com/core-ds/core-components/commit/fb98d101651abfb7126dac3a7dee7226972f6a62)) -* **vars:** fresh tokens ([48f2591](https://github.com/core-ds/core-components/commit/48f2591d030e7852fbd239e7d91e4c4c2bed6468)) -* **vars:** new reverse shadows ([6c18699](https://github.com/core-ds/core-components/commit/6c18699b02044e1ba38561d0fcded98d89c67339)) -* add inverted theme for link & button ([#405](https://github.com/core-ds/core-components/issues/405)) ([a3ccf39](https://github.com/core-ds/core-components/commit/a3ccf394369af6d5b0f8c8dd5d64a4b18eeb2155)) -* add styrene font-face ([9dfc8da](https://github.com/core-ds/core-components/commit/9dfc8da61e322e4f7fe915bc63614270cf5f6dd4)) -* add update popover position prop ([#401](https://github.com/core-ds/core-components/issues/401)) ([5588870](https://github.com/core-ds/core-components/commit/5588870b663ba6547bf80853487da4620b2f74d6)) -* adds semantic-release ([1d419e0](https://github.com/core-ds/core-components/commit/1d419e05f1d37db4f7cb04a602e80a894023a23a)) -* icons & arrow ([#356](https://github.com/core-ds/core-components/issues/356)) ([e263356](https://github.com/core-ds/core-components/commit/e263356b7fd1537ae5c434ddc9c5cb074a2e7ab8)) -* improve theme switcher ([#386](https://github.com/core-ds/core-components/issues/386)) ([9c5c4ec](https://github.com/core-ds/core-components/commit/9c5c4ec79e0940f54a76c83bd7017649a0f17093)) -* remove extra vars, update docs ([#370](https://github.com/core-ds/core-components/issues/370)) ([af1b133](https://github.com/core-ds/core-components/commit/af1b1339e768e59a2377409bf164cc8c439bd3bf)) -* use disabled-cursor ([#399](https://github.com/core-ds/core-components/issues/399)) ([ba5ba74](https://github.com/core-ds/core-components/commit/ba5ba7492f2daf4974941130466dcffd3976662b)) -* **themes:** experimental click theme for checkbox/radio/switch ([f5b2263](https://github.com/core-ds/core-components/commit/f5b22636af4b68b12b42158737e11af59e714848)) -* **themes:** updated click theme for tabs size m ([56dd5b6](https://github.com/core-ds/core-components/commit/56dd5b6530085de0a1dc6fc7be6cb78825c438f4)) -* set system font by default in storybook ([c40ab25](https://github.com/core-ds/core-components/commit/c40ab256af022f4688d079c62e895cb4b8a6e69f)) -* update theming docs ([2ceba6d](https://github.com/core-ds/core-components/commit/2ceba6d577857ef0821ea01ee3dd0ec9ddd98fda)) -* add comments to bash ([6149931](https://github.com/core-ds/core-components/commit/61499310c0f928077b887e19621fc50989bac9dc)) -* add demo script ([b5d1c00](https://github.com/core-ds/core-components/commit/b5d1c000e049568768fb6dc018bb8c89a23a8b73)) -* add masked-input ([#76](https://github.com/core-ds/core-components/issues/76)) ([d5c4ba5](https://github.com/core-ds/core-components/commit/d5c4ba51e6ba1e255345a2b570ee54d3c3dfcf5f)) -* delete postInstall ([fd30ef9](https://github.com/core-ds/core-components/commit/fd30ef9eba4e06d81b52e3668d4d38ac2e2ed5ea)) -* fix eslint ([c4f5261](https://github.com/core-ds/core-components/commit/c4f5261ec4ed63f285e0cb7dc0bdbc17e94dc38d)) -* lint fix ([f64c8b9](https://github.com/core-ds/core-components/commit/f64c8b94c801b92b77ab321d3f5990d070e56ca4)) -* modify config for storybook ([c81ad6e](https://github.com/core-ds/core-components/commit/c81ad6e225324c38052fd8aae37001be0ef5c756)) -* post storybook url to PR after push ([#39](https://github.com/core-ds/core-components/issues/39)) ([9acc8ab](https://github.com/core-ds/core-components/commit/9acc8abaff1e48c6a62872b803340212b67ae237)) -* publishing ([bc584e2](https://github.com/core-ds/core-components/commit/bc584e224e17e29fd7178ea096a500264e286685)) -* setup tests ([3e722bd](https://github.com/core-ds/core-components/commit/3e722bda2da14460cbf14cadefafe52b84a2fb76)) -* update demo script ([46d600c](https://github.com/core-ds/core-components/commit/46d600cea9eea44b0372b95d73fca7c4e4d3d404)) -* update dependencies ([a27310a](https://github.com/core-ds/core-components/commit/a27310a23532fad6c719775d35a3032b13432f2c)) -* use custom css-modules naming ([7eacdab](https://github.com/core-ds/core-components/commit/7eacdab49c905486c00fafc19abe38d018765ce8)) -* **base-input:** add base-input ([55ecad6](https://github.com/core-ds/core-components/commit/55ecad6b33f44c6ea3fdd548138d8809f1cc97d8)) -* **button:** add types. add forwardRef ([bd86206](https://github.com/core-ds/core-components/commit/bd86206310cbf3cec2215ccdd81158aa036fadfc)) -* **button:** fixed story ([4811af8](https://github.com/core-ds/core-components/commit/4811af87c8ef9f8f37be6d1dad10621f6698d394)) -* **button:** href prop, updated types & styles ([8745e44](https://github.com/core-ds/core-components/commit/8745e4463deaad04f954bf3d4ae0eca66ddfa99a)) -* **button:** improved button theming ([0d2a255](https://github.com/core-ds/core-components/commit/0d2a2553aafbc34090dbc37edcb2291e0c8f09a6)) -* **button:** keyboard-only focus ([#102](https://github.com/core-ds/core-components/issues/102)) ([739d240](https://github.com/core-ds/core-components/commit/739d240ab3d06b5a232b8c863f54ea888f2f635a)), closes [#125](https://github.com/core-ds/core-components/issues/125) -* **button:** updated button styles ([643429d](https://github.com/core-ds/core-components/commit/643429df73fb0b5d96975de2b4b9020c42e99416)) -* **core-components-amount:** add boilerplate for amount ([5614885](https://github.com/core-ds/core-components/commit/5614885237a9a4843fb312c22c6b5810a3509e63)) -* **core-components-amount:** allow withZeroMinorPart formatting ([e86529d](https://github.com/core-ds/core-components/commit/e86529d72e28e8cde8bffbfd4b4d263129ec4d78)) -* **core-components-amount:** feat, change api, add PureAmount ([f946776](https://github.com/core-ds/core-components/commit/f94677645a8244dedf6f003f901290d5a2c6c16d)) -* **core-components-amount:** implemented amount, add demo ([1e78129](https://github.com/core-ds/core-components/commit/1e781295de03ff4aac5f5a7ec761f22b529716bd)) -* **core-components-button:** add loading state ([5c0a75a](https://github.com/core-ds/core-components/commit/5c0a75a3cae3232ce52be5cd800644c2030abb3b)) -* **core-components-button:** fix button types ([#138](https://github.com/core-ds/core-components/issues/138)) ([6af3a2c](https://github.com/core-ds/core-components/commit/6af3a2c099c52d94fbb91663facfb3d5c79a8492)) -* **core-components-form-control:** add FormControl component ([#127](https://github.com/core-ds/core-components/issues/127)) ([1ea79d1](https://github.com/core-ds/core-components/commit/1ea79d1fc565c2073483a7480893958efff25dff)) -* **core-components-form-control:** allow to hide error icon in theme ([c19a73c](https://github.com/core-ds/core-components/commit/c19a73c676e359f2ecba8b21a53f671b725ec032)) -* **core-components-form-control:** change errors logic ([#150](https://github.com/core-ds/core-components/issues/150)) ([1c0e494](https://github.com/core-ds/core-components/commit/1c0e49489fb59dce68504223744efd290c38d214)) -* **core-components-link:** add new component ([#142](https://github.com/core-ds/core-components/issues/142)) ([33e11eb](https://github.com/core-ds/core-components/commit/33e11eb403fb7d8231e00cf55adf116b914aef3b)) -* **core-components-loader:** add new component ([24f0c35](https://github.com/core-ds/core-components/commit/24f0c3538d79059ee64468ab6c7e372eb5647f76)) -* **core-components-money-input:** add money-input, story, base test ([aab595a](https://github.com/core-ds/core-components/commit/aab595a0e3d705335b7abe7539364206f20806fc)) -* **core-components-money-input:** added smart default placeholder ([dff6e63](https://github.com/core-ds/core-components/commit/dff6e63bd1ed72a1fab9c50a3f3d982da49e531b)) -* **core-components-money-input:** change minority color ([e35b06a](https://github.com/core-ds/core-components/commit/e35b06a74bb43663a8b44fe7d3486b7a7d81af2d)) -* **core-components-money-input:** fix demo according PR comments ([15f339d](https://github.com/core-ds/core-components/commit/15f339d83d8606c82b3a6cc4deeba350bab9f785)) -* **core-components-money-input:** fixes according review comments ([3ba9e0b](https://github.com/core-ds/core-components/commit/3ba9e0b5a653e58898e9f5a72b37a3eaea2fa2da)) -* **core-components-money-input:** fixes according review comments ([0b0c285](https://github.com/core-ds/core-components/commit/0b0c285b40df3e80cf28167c410ddc25b2f405c9)) -* **core-components-money-input:** remove composed props from MoneyInput ([3d3f5b8](https://github.com/core-ds/core-components/commit/3d3f5b83b25990ab56826c5c39e74aa346672f44)) -* **core-components-money-input:** tune to latest requirements ([62fcaf4](https://github.com/core-ds/core-components/commit/62fcaf4038d866271178289e6338e8bc1c01c50e)) -* **core-components-popover:** can render without Transition ([#130](https://github.com/core-ds/core-components/issues/130)) ([2569a32](https://github.com/core-ds/core-components/commit/2569a32994e8de57c4a4a5bce853f706183af749)) -* **core-components-vars:** update alfa-ui-primitives and build colors ([#153](https://github.com/core-ds/core-components/issues/153)) ([007e2d6](https://github.com/core-ds/core-components/commit/007e2d67d5e22e830ca353de3d7ea690b82af73f)) -* **divider:** add divider ([0e4199c](https://github.com/core-ds/core-components/commit/0e4199c6d5b23438442393ef9a8f05594bc39a70)) -* **input:** add new default input ([2314b3b](https://github.com/core-ds/core-components/commit/2314b3b6f47e7b4ebfb3718927ecd593d33b2e1b)) -* **inputs:** icons & addons improvements ([e0abeba](https://github.com/core-ds/core-components/commit/e0abeba1772f8f0c12d01ca9ef5482d80a4e59cc)) -* **inputs:** improve components, update styles & props ([98ff5dd](https://github.com/core-ds/core-components/commit/98ff5dda37e4b55ff5f4bd7c8c9bb80791625935)) -* **inputs:** some refactor. add events & props ([27f5bba](https://github.com/core-ds/core-components/commit/27f5bba60e65181ad848a0628b72711f08377653)) -* **lint:** add lint ([3bd5492](https://github.com/core-ds/core-components/commit/3bd5492bba179083cb26aa99c295a43f8e3be037)) -* **portal:** add new portal component ([#75](https://github.com/core-ds/core-components/issues/75)) ([80d5499](https://github.com/core-ds/core-components/commit/80d5499edfc75c6c382feb3fa638c844c54edd11)) -* **select:** add select component ([#118](https://github.com/core-ds/core-components/issues/118)) ([8892bd9](https://github.com/core-ds/core-components/commit/8892bd94a6be3ad8ba1e609545becadc8be54b47)) -* **stories:** move to mdx stories ([#104](https://github.com/core-ds/core-components/issues/104)) ([40d6aff](https://github.com/core-ds/core-components/commit/40d6aff309e93dd7072c325c6752f067670fb263)) -* **storybook:** add @storybook/addon-docs. update stories ([1e66461](https://github.com/core-ds/core-components/commit/1e66461164ac48252a305477a78ab49356a12343)) -* **storybook:** add theme switcher to storybook ([#199](https://github.com/core-ds/core-components/issues/199)) ([7794f80](https://github.com/core-ds/core-components/commit/7794f80dc83cba171ffe7282e54d5ce0f4bd8245)) -* **switch:** add new component ([4e23acd](https://github.com/core-ds/core-components/commit/4e23acd4d05db21930d137de72e55fc9732332d3)) -* **tag:** add new component Tag ([1101b57](https://github.com/core-ds/core-components/commit/1101b5792eda538b2c508ff6ace7294c0544d1f0)) -* **tag:** remove pointer-events none style ([#224](https://github.com/core-ds/core-components/issues/224)) ([dcaec57](https://github.com/core-ds/core-components/commit/dcaec5712f31cc094f4cacda0a3146e0564d86b3)) -* **themes:** add themes structure ([#108](https://github.com/core-ds/core-components/issues/108)) ([eb05b6d](https://github.com/core-ds/core-components/commit/eb05b6df0d56c76f39ebdcf6a1a6de079c3aa63b)) -* **typography:** add tools for mixin building ([e995924](https://github.com/core-ds/core-components/commit/e99592428c15573e9097a6457dd33361f5a75e85)) -* **typography:** update tokens & scripts. rebuild ([91c7c76](https://github.com/core-ds/core-components/commit/91c7c769d9623cc38f9b44a38d3a027f9fed7136)) -* **vars:** add index.css ([#90](https://github.com/core-ds/core-components/issues/90)) ([d9f3af1](https://github.com/core-ds/core-components/commit/d9f3af1521187d406271fed448dc4af498beb39e)) -* **vars:** add negative gaps ([#99](https://github.com/core-ds/core-components/issues/99)) ([5dc2cf4](https://github.com/core-ds/core-components/commit/5dc2cf404558d705411f248b353aa4841a508799)) - - -### Bug Fixes - -* lock and docs ([#6](https://github.com/core-ds/core-components/issues/6)) ([54baf93](https://github.com/core-ds/core-components/commit/54baf93a7263a64a011d2be09bdc64762eae50b6)) -* fix ui-primitives ([#1](https://github.com/core-ds/core-components/issues/1)) ([4af3400](https://github.com/core-ds/core-components/commit/4af34004a28a8098e9d1348e313a8a5612a489c2)) -* **amount-input:** позволяем использовать строки, не рисуем 0 если передана пустая строка ([#941](https://github.com/core-ds/core-components/issues/941)) ([51c954f](https://github.com/core-ds/core-components/commit/51c954f238e7dbdbdbbd517e81e0e944f880ded6)) -* **attach:** always clear input ([#1038](https://github.com/core-ds/core-components/issues/1038)) ([f3e85f2](https://github.com/core-ds/core-components/commit/f3e85f299c4e42253d0354cdd61e005d9fe927f0)) -* **bottom-sheet:** fix bottom-sheet swipeable marker ([#1044](https://github.com/core-ds/core-components/issues/1044)) ([0734e55](https://github.com/core-ds/core-components/commit/0734e55cc0e394fb33452f875ffcf47819277aee)) -* **bottom-sheet:** fix double calling onClose fn ([#962](https://github.com/core-ds/core-components/issues/962)) ([feda2a4](https://github.com/core-ds/core-components/commit/feda2a4c8d3a4f40a1ab9c40eb21f5359e4fa538)) -* **bottom-sheet:** fix prop headerClassName ([#1057](https://github.com/core-ds/core-components/issues/1057)) ([2fb3290](https://github.com/core-ds/core-components/commit/2fb329047fd1ef997082d127d9f26195dbfe57ad)) -* **button:** решение проблемы с тултипом и заблокированной кнопкой ([#920](https://github.com/core-ds/core-components/issues/920)) ([d04f311](https://github.com/core-ds/core-components/commit/d04f31109baf340a4dc7264d3b8ab13109a5a68c)), closes [#799](https://github.com/core-ds/core-components/issues/799) -* **button:** убраны лишние отступы для вида ghost ([#933](https://github.com/core-ds/core-components/issues/933)) ([f43cdf6](https://github.com/core-ds/core-components/commit/f43cdf6afe349d2c7cb0d8436123e63aed347b54)) -* **button:** удален вызов console.warn, если process.env.NODE_ENV !== 'development' ([d3e14ce](https://github.com/core-ds/core-components/commit/d3e14cef7835b5512e4848c5a1048475a8990018)) -* **calendar-range:** correct highlights ([#1002](https://github.com/core-ds/core-components/issues/1002)) ([5c12da2](https://github.com/core-ds/core-components/commit/5c12da2eb72b146b0a5f58447312f96f4b424c48)) -* **cdn-icon:** add className prop ([#957](https://github.com/core-ds/core-components/issues/957)) ([86f2139](https://github.com/core-ds/core-components/commit/86f2139fc56fe1cd2669d05d7953075aa8982e22)) -* **checkbox:** increased checkbox's hint line-height from 18px to 20px ([#1007](https://github.com/core-ds/core-components/issues/1007)) ([c7ee918](https://github.com/core-ds/core-components/commit/c7ee918de443339ac06f82196636dbb48ef8c737)), closes [#969](https://github.com/core-ds/core-components/issues/969) -* **code-input:** code-input-request-animation-frame-fix ([#1014](https://github.com/core-ds/core-components/issues/1014)) ([ad1478e](https://github.com/core-ds/core-components/commit/ad1478ebfd17679e8a2792462c619f525e5b7bb9)) -* **docs:** upd readme ([1b83933](https://github.com/core-ds/core-components/commit/1b839330a9356b2aa2da92b6ba1376bc27c9eee9)) -* **dropzone:** корректный сброс dragCounter ([#944](https://github.com/core-ds/core-components/issues/944)) ([091b4a4](https://github.com/core-ds/core-components/commit/091b4a4b2f42fb0b84581c875a18c14c735eb92b)) -* **file-upload-item:** корректная обрезка контента ([#942](https://github.com/core-ds/core-components/issues/942)) ([5a285f2](https://github.com/core-ds/core-components/commit/5a285f2c1259dab270f52b438203fe7d40c07b29)) -* **filter-tag:** move onClick from btn to div ([#1049](https://github.com/core-ds/core-components/issues/1049)) ([616a90a](https://github.com/core-ds/core-components/commit/616a90af9b0b95de324d3475572d5ac85d3e7a2a)) -* **gallery:** update header button's tooltip position ([#979](https://github.com/core-ds/core-components/issues/979)) ([8e2acfc](https://github.com/core-ds/core-components/commit/8e2acfcb772cf4d8051c185a3f1caaaf507b5bc9)) -* **icon-view:** fix bg-color ([#980](https://github.com/core-ds/core-components/issues/980)) ([2fbad56](https://github.com/core-ds/core-components/commit/2fbad5671d64056a4af81c4fe281a82c415ffeb5)) -* **icon-view:** fix types ([#961](https://github.com/core-ds/core-components/issues/961)) ([74152f3](https://github.com/core-ds/core-components/commit/74152f3bd6d776bebeabea65d5971b57cc486b2e)) -* **input:** компонент иконки для кнопки очистки ([#930](https://github.com/core-ds/core-components/issues/930)) ([37049af](https://github.com/core-ds/core-components/commit/37049af84ed475e1932c91f1907fb604893be7d7)) -* **input-autocomplete:** open list on backspace ([#964](https://github.com/core-ds/core-components/issues/964)) ([4d4f126](https://github.com/core-ds/core-components/commit/4d4f1267a98f05c184267564cd0a2517803bd08b)) -* **loader:** fix animation in IE ([#970](https://github.com/core-ds/core-components/issues/970)) ([03df943](https://github.com/core-ds/core-components/commit/03df9438f00bda639aae78aadb940161112a2672)) -* **picker-button:** fixed type of picker-button size prop ([#1006](https://github.com/core-ds/core-components/issues/1006)) ([38b56c1](https://github.com/core-ds/core-components/commit/38b56c11d45410a258e18d411aa0ce12b8a6c7e4)), closes [#986](https://github.com/core-ds/core-components/issues/986) -* **select:** change corp shadow ([#1004](https://github.com/core-ds/core-components/issues/1004)) ([ea664f6](https://github.com/core-ds/core-components/commit/ea664f67ce81b66b31aab348cc0c68085711de8a)) -* **skeleton:** added dataTestId ([18e4af8](https://github.com/core-ds/core-components/commit/18e4af805bd4e49a1a3c303cb3b4d9a3a9dd5751)) -* **themes:** fix build themes mobile & intranet ([#1055](https://github.com/core-ds/core-components/issues/1055)) ([f95f035](https://github.com/core-ds/core-components/commit/f95f035bdeee3071e2f2ebfaa35c0cc10585044b)) -* **themes:** Добавил пропущенные [@imports](https://github.com/imports) из themes/src/default.css ([#1053](https://github.com/core-ds/core-components/issues/1053)) ([06f0427](https://github.com/core-ds/core-components/commit/06f0427e4089db902bb269ab3b31f935921cff9f)), closes [#1052](https://github.com/core-ds/core-components/issues/1052) -* add missing dependency ([#1041](https://github.com/core-ds/core-components/issues/1041)) ([3b06d3a](https://github.com/core-ds/core-components/commit/3b06d3a25f76e401a0146e163f8a61585f3eebf1)) -* fix modal and bottom-sheet dark mode ([#1043](https://github.com/core-ds/core-components/issues/1043)) ([cad36a2](https://github.com/core-ds/core-components/commit/cad36a25b28bfa71296c3dd9dc325eec28b5c241)) -* **intl-phone-input:** design fixes ([#1030](https://github.com/core-ds/core-components/issues/1030)) ([27cfb9b](https://github.com/core-ds/core-components/commit/27cfb9be1cac9f0aac151ae2121c426fb123fb3f)) -* **radio-group:** add missing 'value' attribute to 'input' tag ([#1033](https://github.com/core-ds/core-components/issues/1033)) ([0f9cf0e](https://github.com/core-ds/core-components/commit/0f9cf0ecd74f4764ccd0b2839ba0cdf1b96e75cb)), closes [#1031](https://github.com/core-ds/core-components/issues/1031) -* **select-with-tags:** update tag size to xxs ([#960](https://github.com/core-ds/core-components/issues/960)) ([4234826](https://github.com/core-ds/core-components/commit/4234826e5dedebc1e6555dfba181981eea4db69f)) -* **table:** update styles ([#1036](https://github.com/core-ds/core-components/issues/1036)) ([3fe236d](https://github.com/core-ds/core-components/commit/3fe236dfb584c3e96fc7fb8c499aee3e9e12e64e)) -* changed dropdown component's box shadow styles ([#1010](https://github.com/core-ds/core-components/issues/1010)) ([2f997f5](https://github.com/core-ds/core-components/commit/2f997f5722c89b38a8064924b73c0a8046025aea)) -* imports for glyph icons ([#994](https://github.com/core-ds/core-components/issues/994)) ([8e807f2](https://github.com/core-ds/core-components/commit/8e807f26abf0f942fe8eadbd201caecb297b35dc)) -* move icon from select to picker-button ([#1020](https://github.com/core-ds/core-components/issues/1020)) ([0d23257](https://github.com/core-ds/core-components/commit/0d23257b561329092be551d237389cc06c3d5607)) -* update glyph deps ([#1019](https://github.com/core-ds/core-components/issues/1019)) ([3e910d0](https://github.com/core-ds/core-components/commit/3e910d0801c4c46bcd399163200c1f7bfaba375e)) -* **table:** fix th paddings ([#951](https://github.com/core-ds/core-components/issues/951)) ([2d916c1](https://github.com/core-ds/core-components/commit/2d916c16a388b0949db2d0ae00c852c0acac6d28)) -* **table:** фикс высоты раскрывающейся ячейки ([#946](https://github.com/core-ds/core-components/issues/946)) ([643f9a5](https://github.com/core-ds/core-components/commit/643f9a556748bafc46a5c6f8c458c07770b11b17)) -* **themes:** fix font weight mobile button ([#972](https://github.com/core-ds/core-components/issues/972)) ([447a89d](https://github.com/core-ds/core-components/commit/447a89dde25aa7659d771ae1c722086354323706)) -* **typography:** changed styrene font styles for title responsive ([#1017](https://github.com/core-ds/core-components/issues/1017)) ([540b0b5](https://github.com/core-ds/core-components/commit/540b0b59cf99a4cee0798f50b94e6449be4aa3c6)) -* **vars:** remove unused colors ([#945](https://github.com/core-ds/core-components/issues/945)) ([310a70a](https://github.com/core-ds/core-components/commit/310a70a8be6bff687861d3d643ebc347ecf6cd6d)) -* add missing vars imports ([#931](https://github.com/core-ds/core-components/issues/931)) ([35ba847](https://github.com/core-ds/core-components/commit/35ba847d39924e713166d79ae6d64444131794a1)) -* **picker-button:** wrap field with div ([b51bce8](https://github.com/core-ds/core-components/commit/b51bce85b39583e7bb1107f56c6e64a6f2b96d5c)), closes [#914](https://github.com/core-ds/core-components/issues/914) -* revert 0e8124552206f96149d104f65cff1667e857bf01 ([#916](https://github.com/core-ds/core-components/issues/916)) ([953fbcf](https://github.com/core-ds/core-components/commit/953fbcfec46a40089a5cfde670597315269b05f5)) -* новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([0e81245](https://github.com/core-ds/core-components/commit/0e8124552206f96149d104f65cff1667e857bf01)) -* новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([#917](https://github.com/core-ds/core-components/issues/917)) ([224831f](https://github.com/core-ds/core-components/commit/224831f41ed2de49dc1a228dc081b0629cf274b1)) -* актуализируем @alfalab/utils ([#897](https://github.com/core-ds/core-components/issues/897)) ([30fb88e](https://github.com/core-ds/core-components/commit/30fb88eee36f68cabf80069e5125d911fabde4a5)) -* **bank-card:** improve docs, fix focus bg ([#830](https://github.com/core-ds/core-components/issues/830)) ([1d8171c](https://github.com/core-ds/core-components/commit/1d8171ce5c76831c350fcf636dd48bad2c3db118)) -* **bank-card:** фикс цвета иконки ([#898](https://github.com/core-ds/core-components/issues/898)) ([66c2659](https://github.com/core-ds/core-components/commit/66c265919e7452af324ceabd26813a8be19b4839)) -* **base-modal:** modal scroll ([#820](https://github.com/core-ds/core-components/issues/820)) ([1b2d94a](https://github.com/core-ds/core-components/commit/1b2d94ad45e04145bf1292d749ae2028702dc622)) -* **base-select:** lazy loading ([#831](https://github.com/core-ds/core-components/issues/831)) ([78f2b86](https://github.com/core-ds/core-components/commit/78f2b86221d8af7bf5019104aba743546fc31b45)) -* **calendar-input:** remove popover border in click theme ([7a76759](https://github.com/core-ds/core-components/commit/7a76759ccc5741a03a4c90f97cce6f67255b1c4b)) -* **calendar-input:** update border-radius ([0d06aca](https://github.com/core-ds/core-components/commit/0d06aca7162c85f987c1172ea037b5b3bc66f8c5)) -* **calendar-input:** обновлён в теме click ([da5d960](https://github.com/core-ds/core-components/commit/da5d9607ce80742bd6780a5bad11b07b3617b44c)) -* **calendar-input:** рендер rightAddons, фикс затертых пропсов ([#895](https://github.com/core-ds/core-components/issues/895)) ([1eabd29](https://github.com/core-ds/core-components/commit/1eabd2902cd1bd62517284313f79cf31189cf525)) -* **calendar-range:** fix default month to ([#868](https://github.com/core-ds/core-components/issues/868)) ([1f9fb97](https://github.com/core-ds/core-components/commit/1f9fb9709292d28300c3fc4386ffd858b2efd852)) -* **chart:** fix deps, export types ([b46450a](https://github.com/core-ds/core-components/commit/b46450ae954b10f0138c393482fe1271b001f085)) -* **collapse:** dynamic content height ([#864](https://github.com/core-ds/core-components/issues/864)) ([e96c86b](https://github.com/core-ds/core-components/commit/e96c86bde70d58e4311a2c6bcd6d7407be0f4c44)) -* **custom-button:** fix color variable & component description ([5b9df4d](https://github.com/core-ds/core-components/commit/5b9df4dffa070b8339f0e208c0d14c72ecdb2012)) -* **custom-button:** fix props type ([a1bf943](https://github.com/core-ds/core-components/commit/a1bf94319b8844cbb3fc7d4626d2232357d72f63)) -* **dropzone:** изменение темы клика ([#893](https://github.com/core-ds/core-components/issues/893)) ([cadc6da](https://github.com/core-ds/core-components/commit/cadc6da29896e6a033bac8e91723b20beb404b32)) -* **file-upload-item:** fix description prop ([#836](https://github.com/core-ds/core-components/issues/836)) ([e15cf1d](https://github.com/core-ds/core-components/commit/e15cf1dad438e22ac31984bfcf8531981b88c6de)) -* **input:** clear icon ([51debd4](https://github.com/core-ds/core-components/commit/51debd46ea2176486cfc1945d74e8d56a4b9387b)) -* **intl-phone-input:** fix carret position on backspace ([#840](https://github.com/core-ds/core-components/issues/840)) ([c786ac1](https://github.com/core-ds/core-components/commit/c786ac17bd086833f3200570e812028ec4580554)), closes [#806](https://github.com/core-ds/core-components/issues/806) -* **modal:** add spreading backdrop props ([#870](https://github.com/core-ds/core-components/issues/870)) ([b523426](https://github.com/core-ds/core-components/commit/b52342616adf1f4b227f603264b70474e53c16f8)) -* **notification:** set word-break: break-word in notif ([8f7615d](https://github.com/core-ds/core-components/commit/8f7615d2f497d97c0811868e14bf4ccd51710f31)) -* **notification:** убрал word-break: break-all ([db0d2b2](https://github.com/core-ds/core-components/commit/db0d2b28d12101f1a7bae395cbf17d570b88cc83)) -* **plate:** check is click inside component, popover issue ([bea8a7d](https://github.com/core-ds/core-components/commit/bea8a7dc199d7aced3ec8b5e9ab76568f0cba839)) -* **plate:** активный курсор только для foldable плашек ([#912](https://github.com/core-ds/core-components/issues/912)) ([06a38bd](https://github.com/core-ds/core-components/commit/06a38bd6bd07d016d670e600b373791aabe3d3ea)) -* **radio:** условный рендер подсказки и лейбла ([#892](https://github.com/core-ds/core-components/issues/892)) ([b744c15](https://github.com/core-ds/core-components/commit/b744c159f3779c5bf555041e7762f9653efb7b0e)), closes [#869](https://github.com/core-ds/core-components/issues/869) -* **skeleton:** prevent component unmount ([#887](https://github.com/core-ds/core-components/issues/887)) ([1bd4dc3](https://github.com/core-ds/core-components/commit/1bd4dc3147622f75802dd8e574175dbbf02cca54)) -* **slider-input:** classnames overriding ([#891](https://github.com/core-ds/core-components/issues/891)) ([d63d676](https://github.com/core-ds/core-components/commit/d63d67628c88e54b38244b1f57969844379d311f)) -* bump react-popper ([#847](https://github.com/core-ds/core-components/issues/847)) ([e8d284b](https://github.com/core-ds/core-components/commit/e8d284bfdfb4aa1fa0ea9e11f6e59c117b309782)) -* confirmation & input ([#833](https://github.com/core-ds/core-components/issues/833)) ([f3c0d62](https://github.com/core-ds/core-components/commit/f3c0d62c15b3812205b71685c2d37c0a986677ee)) -* cssm build ([bbc0a47](https://github.com/core-ds/core-components/commit/bbc0a472a0f68a5b239c4734bdce452f1a107ea6)) -* fix classNames hash ([#884](https://github.com/core-ds/core-components/issues/884)) ([60f58f2](https://github.com/core-ds/core-components/commit/60f58f223106869b15f6b19f466a70b0936a5a1d)) -* **tabs:** height styles ([#810](https://github.com/core-ds/core-components/issues/810)) ([b3b96e7](https://github.com/core-ds/core-components/commit/b3b96e7efb4771c0009c29e851ce1d69f4c61ff4)) -* **tabs:** hide native scrollbar on scrollable tabs properly ([0134956](https://github.com/core-ds/core-components/commit/0134956f2af01720500f7ad06caeeb4569e74d50)), closes [#879](https://github.com/core-ds/core-components/issues/879) -* **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7)) -* input & textarea disabled color on safari ([39ea4ef](https://github.com/core-ds/core-components/commit/39ea4ef7e948016a4ffa17c563cfdd13169a3c2b)) -* wrong mobile colors ([#832](https://github.com/core-ds/core-components/issues/832)) ([d9e275b](https://github.com/core-ds/core-components/commit/d9e275b6ac60e635dec4b655bfc859f079cb9840)) -* понижена версия react-hooks, чтобы не дропать 10ую ноду. Пакет перенесен devDeps ([#852](https://github.com/core-ds/core-components/issues/852)) ([662754a](https://github.com/core-ds/core-components/commit/662754a354b2286114fdff16fa0f7a9ccb5b769d)) -* фикс цвета disabled в Safari для Input и Textarea ([efaa693](https://github.com/core-ds/core-components/commit/efaa693c8e34569df05c951c09c89895d4d949dc)) -* **amount-input:** fix float in amount input ([a9e1802](https://github.com/core-ds/core-components/commit/a9e180285073e29a05703a991c946e2c1247177a)) -* **amount-input:** remove caret-color override ([#773](https://github.com/core-ds/core-components/issues/773)) ([93311d0](https://github.com/core-ds/core-components/commit/93311d0a8e170c14c6cbfa28414d2538f78ddd3f)) -* **attach:** fix drag counter & styles ([#786](https://github.com/core-ds/core-components/issues/786)) ([b075725](https://github.com/core-ds/core-components/commit/b0757250ea57a6e5db64a5026315f8837e8a3303)) -* **backdrop:** styles ([82bdfa7](https://github.com/core-ds/core-components/commit/82bdfa7759240755f74bf12906c395d633f464e4)) -* **badge:** fix name ([207d3d3](https://github.com/core-ds/core-components/commit/207d3d30171a84ff4021cd119c0da1316a92d14c)) -* **base-modal:** correct cb ([256a142](https://github.com/core-ds/core-components/commit/256a142398a9ada34386e92d012185763cedef5a)) -* **base-modal:** fix has scroll bug ([#712](https://github.com/core-ds/core-components/issues/712)) ([a6749a1](https://github.com/core-ds/core-components/commit/a6749a149d511b28cc59aaec188d59c380c64243)) -* **base-modal:** restore body styles on unmount ([#671](https://github.com/core-ds/core-components/issues/671)) ([963a6b1](https://github.com/core-ds/core-components/commit/963a6b18b13924a09cda672a662d0b402d00e75b)) -* **base-modal:** resubscribe observer when content node changed ([2fef06e](https://github.com/core-ds/core-components/commit/2fef06eea01354f58663a5f4470606123d31f9d4)) -* **button:** fixed alignment of several buttons in a row ([#561](https://github.com/core-ds/core-components/issues/561)) ([8d9e1e2](https://github.com/core-ds/core-components/commit/8d9e1e2f7a4ba8c5c986bb833f7424b38601d463)) -* **button:** loader position in ie ([#661](https://github.com/core-ds/core-components/issues/661)) ([6f0ddab](https://github.com/core-ds/core-components/commit/6f0ddab3a3e59672f20b0f2239a4de6ba548edb1)) -* **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e)) -* **calendar:** fix min\max ([6bd4944](https://github.com/core-ds/core-components/commit/6bd49447492b10583973cdfc43350cf8f96c1ecb)) -* **calendar:** fix select-button disabled+selected state ([4f54c01](https://github.com/core-ds/core-components/commit/4f54c01451a2532fd377d3590869dfa52c968dcf)) -* **calendar:** ie fixes ([#628](https://github.com/core-ds/core-components/issues/628)) ([983509c](https://github.com/core-ds/core-components/commit/983509cd1cfe5be64a8627fed44ec55d989eb8a2)) -* **calendar:** limit defaultMonth ([636fa5b](https://github.com/core-ds/core-components/commit/636fa5b1363fbdea8516b95ac758aee65b8cffba)) -* **calendar-input:** allow to pass all props via calendarProps ([#653](https://github.com/core-ds/core-components/issues/653)) ([82c4675](https://github.com/core-ds/core-components/commit/82c4675e2f64b282f9d9772825874a6e1854704b)) -* **calendar-input:** call onchange with empty value ([3fbc73a](https://github.com/core-ds/core-components/commit/3fbc73a1d32586161b6fe527f76ca27cd54abebb)) -* **calendar-input:** extends calendarProps type ([8bf4f58](https://github.com/core-ds/core-components/commit/8bf4f587c1a36471318f7cc02968d1de2a125e11)) -* **calendar-input:** z-index increased ([8e0df44](https://github.com/core-ds/core-components/commit/8e0df445a1be317291f2d35e2f4d4afb9d24609c)) -* **calendar-with-skeleton:** ref & six weeks height issues ([#705](https://github.com/core-ds/core-components/issues/705)) ([907ebe1](https://github.com/core-ds/core-components/commit/907ebe18641ee2e7e91fc4622527404c20867a54)) -* **checkbox:** fix layout ([#790](https://github.com/core-ds/core-components/issues/790)) ([8aa18b4](https://github.com/core-ds/core-components/commit/8aa18b48167eeb5df225ff854d3ca337cd43d4f2)) -* **confirmation:** add font feature settings ([#540](https://github.com/core-ds/core-components/issues/540)) ([08057f6](https://github.com/core-ds/core-components/commit/08057f6930e9cd19c0213442a4915e366d26e607)) -* **confirmation:** fix bug with timers ([2bdb105](https://github.com/core-ds/core-components/commit/2bdb10505ebb91713bca0b56e4d10af08cbcd4ed)) -* **dark-theme-styles-injector:** fix rendering passed styles ([#723](https://github.com/core-ds/core-components/issues/723)) ([882841c](https://github.com/core-ds/core-components/commit/882841c1c43d5570652ab3fcc199958060b92c57)) -* **drawer:** backdrop styles ([04da4fa](https://github.com/core-ds/core-components/commit/04da4fac310dbe2634ea4130ead480a88d47ee8e)) -* **drawer:** lost vars ([#632](https://github.com/core-ds/core-components/issues/632)) ([82a8e46](https://github.com/core-ds/core-components/commit/82a8e461fc16d4ae8b6d3d268c92f7dc969e81f8)) -* **dropzone:** add pointer-events none to overlay ([#677](https://github.com/core-ds/core-components/issues/677)) ([5f9077a](https://github.com/core-ds/core-components/commit/5f9077a7c6c88272c7e9e67ec243488249cc5ded)) -* **form-control:** l size offset between value and label (PDS-270) ([#781](https://github.com/core-ds/core-components/issues/781)) ([311f8a0](https://github.com/core-ds/core-components/commit/311f8a0eaa97cf7d0c89d4a3cdfc443aef2d763c)) -* **gaps:** add description ([#562](https://github.com/core-ds/core-components/issues/562)) ([0e0b2d3](https://github.com/core-ds/core-components/commit/0e0b2d3ffa5fe83f3282acf6b3db80c1ddd09b1f)) -* **icon-button:** fix typo in css variable ([#675](https://github.com/core-ds/core-components/issues/675)) ([b227d07](https://github.com/core-ds/core-components/commit/b227d073797f995baf2474a52f4f6df7c6555e91)) -* **input:** autofocus ([#761](https://github.com/core-ds/core-components/issues/761)) ([e2880de](https://github.com/core-ds/core-components/commit/e2880de6cff33b156bea58286bb46e0803e254a5)) -* **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782) -* **input-autocomplete:** popover height with dynamic height options ([da24758](https://github.com/core-ds/core-components/commit/da247589a35ba33742f95fc96ed63b0ba65cdf11)) -* **intl-phone-input:** remove changing unclearable country code ([#730](https://github.com/core-ds/core-components/issues/730)) ([6d219d6](https://github.com/core-ds/core-components/commit/6d219d622e4da60aada0e10d3c442510f597b1b9)) -* **intl-phone-input:** revert fix carret position on backspace ([772dcf5](https://github.com/core-ds/core-components/commit/772dcf588ba2d28ab9b02f81d0bf538bf016cae0)) -* **masked-input:** inline module types ([#692](https://github.com/core-ds/core-components/issues/692)) ([004e60a](https://github.com/core-ds/core-components/commit/004e60ab61f51251b9d65d4d04fd9562eda5e766)) -* **modal:** click theme sticky footer bg ([#641](https://github.com/core-ds/core-components/issues/641)) ([215a155](https://github.com/core-ds/core-components/commit/215a155030d9966508afa1b8ee8059cc422a2765)) -* **modal:** fix styles ([#665](https://github.com/core-ds/core-components/issues/665)) ([06f3615](https://github.com/core-ds/core-components/commit/06f3615c532f8ec2932d8a4d1fcbb1f5ee6b6a30)) -* **modal:** fullscreen & header title styles ([#580](https://github.com/core-ds/core-components/issues/580)) ([39fa494](https://github.com/core-ds/core-components/commit/39fa4940223b6187a391ff6c0b6706ae8a333dc0)) -* **modal:** max-width 100% ([#794](https://github.com/core-ds/core-components/issues/794)) ([793a765](https://github.com/core-ds/core-components/commit/793a765e7d5dc251eee810acde4605e139565906)) -* **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552)) -* **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e)) -* **plate:** alert in plate cascade issue ([#793](https://github.com/core-ds/core-components/issues/793)) ([dbc20e5](https://github.com/core-ds/core-components/commit/dbc20e558f2b6452e70052b5abc3faf8533709d4)) -* **select:** add aria-disabled when disabled ([#662](https://github.com/core-ds/core-components/issues/662)) ([bd93614](https://github.com/core-ds/core-components/commit/bd93614530567515af8e9bee3a7e0e08c8528b4c)) -* **select:** fix hidden label ([#652](https://github.com/core-ds/core-components/issues/652)) ([a5fecfc](https://github.com/core-ds/core-components/commit/a5fecfc16db2a7bad73282706c2c588b235acf8a)) -* **select:** lazy loading select ([#797](https://github.com/core-ds/core-components/issues/797)) ([68b5602](https://github.com/core-ds/core-components/commit/68b560208ff288657aa1698387c617c7c1449a8d)) -* **select:** options list width calc ([5294af7](https://github.com/core-ds/core-components/commit/5294af78ef61b50edde42ed255e66e6ea004c0fd)) -* **select:** recalc height on options changed ([#536](https://github.com/core-ds/core-components/issues/536)) ([4c27c19](https://github.com/core-ds/core-components/commit/4c27c197882256e507ec83678da4811f6285c2fe)) -* **select:** recalc options-list width when open ([#640](https://github.com/core-ds/core-components/issues/640)) ([1a7a3c2](https://github.com/core-ds/core-components/commit/1a7a3c2f596e438686a59999411ef7a437dc00fe)) -* **select:** remove wron prop passed into renderOption method ([#791](https://github.com/core-ds/core-components/issues/791)) ([5231813](https://github.com/core-ds/core-components/commit/523181355ebde537aa802f86c27e867d9261095a)) -* add missing deps ([4f4a540](https://github.com/core-ds/core-components/commit/4f4a54059f141e41e430199b1a2c30fedf62b081)) -* extend hint type to ReactNode ([#792](https://github.com/core-ds/core-components/issues/792)) ([d02784e](https://github.com/core-ds/core-components/commit/d02784e392f5ca3a30ae009109fbb6351967f746)) -* move icon from date input to calendar input ([#768](https://github.com/core-ds/core-components/issues/768)) ([040bd42](https://github.com/core-ds/core-components/commit/040bd423279eb535f1ea924599ee16c296453e3f)) -* select & calendar-input use glyph icons ([#742](https://github.com/core-ds/core-components/issues/742)) ([6b04ae4](https://github.com/core-ds/core-components/commit/6b04ae49fc4f3805ef362dcb68939b72fc99814b)) -* **intl-phone-input:** format input value ([#703](https://github.com/core-ds/core-components/issues/703)) ([b5e91ed](https://github.com/core-ds/core-components/commit/b5e91edf03867f5dc93fab78425f7c1a128afd9b)) -* **modal:** header height & paddings ([#676](https://github.com/core-ds/core-components/issues/676)) ([d8945c6](https://github.com/core-ds/core-components/commit/d8945c6839b059325ad2a90ca4fc6eda2da3b4c2)) -* **modal:** restore styles after exited ([#663](https://github.com/core-ds/core-components/issues/663)) ([48a8d69](https://github.com/core-ds/core-components/commit/48a8d6986dcde6c191d8411d51f28e6f399e26e6)) -* **phone-input:** value prop ([#757](https://github.com/core-ds/core-components/issues/757)) ([3ba0168](https://github.com/core-ds/core-components/commit/3ba01686ffa950bd74d9ab28bfa961c6cf74a5d8)) -* **select:** calc height in effect ([#689](https://github.com/core-ds/core-components/issues/689)) ([83f8745](https://github.com/core-ds/core-components/commit/83f87454bcacfbb3473c688e222af3185daef5a9)) -* **select:** fix checkmark ([#681](https://github.com/core-ds/core-components/issues/681)) ([71a51dc](https://github.com/core-ds/core-components/commit/71a51dc0204165827724fd444d3279f8cc6ccfcd)) -* **select:** fix checkmark position on click theme ([#699](https://github.com/core-ds/core-components/issues/699)) ([0a3bab5](https://github.com/core-ds/core-components/commit/0a3bab52278b4db8f327a8bf5da97cfb5acecc6a)) -* **select:** fix top bottom paddings ([#683](https://github.com/core-ds/core-components/issues/683)) ([866bc3b](https://github.com/core-ds/core-components/commit/866bc3bee9428f0f67f443b3be0ae23342213b0d)) -* **select:** optionsListWidth prop ([#685](https://github.com/core-ds/core-components/issues/685)) ([3b87e73](https://github.com/core-ds/core-components/commit/3b87e73fdba18c0d41883e47fe4c13976988f2e6)) -* **select:** update optgroup styles ([#679](https://github.com/core-ds/core-components/issues/679)) ([63a06ce](https://github.com/core-ds/core-components/commit/63a06ce4776e22f9374fe689b62e949772443fda)) -* **select-with-tags:** changed includes method for IE11 support ([#651](https://github.com/core-ds/core-components/issues/651)) ([254bca3](https://github.com/core-ds/core-components/commit/254bca3df02107dfffc5175f74e35162453c20d0)) -* **skeleton:** remove vars that purge kills ([886d1b2](https://github.com/core-ds/core-components/commit/886d1b24b144d9d277821d3264f71a93c7a1b146)) -* **space:** remove last element margin ([#713](https://github.com/core-ds/core-components/issues/713)) ([bc36cf7](https://github.com/core-ds/core-components/commit/bc36cf7db35cbd7c5d36c178a50bbd27d2f11b0c)) -* **tooltip:** fix bug with controlled state ([#759](https://github.com/core-ds/core-components/issues/759)) ([dd0144e](https://github.com/core-ds/core-components/commit/dd0144e880e0dac6bac1ab9d15832341761993e9)) -* **typography:** add missing weight styles ([#719](https://github.com/core-ds/core-components/issues/719)) ([6b855aa](https://github.com/core-ds/core-components/commit/6b855aa97eff918e0e16f957c4c05bb7f2d8f4fe)) -* update popover versions ([#646](https://github.com/core-ds/core-components/issues/646)) ([199cf80](https://github.com/core-ds/core-components/commit/199cf80cd60e6edf0ac5d41c7eb258ab05d3b534)) -* **select-with-tags:** tag box-sizing issue ([#589](https://github.com/core-ds/core-components/issues/589)) ([9bc9a44](https://github.com/core-ds/core-components/commit/9bc9a4484b1e46372bce5fc16663f3ac05378310)) -* **skeleton:** remove extra bottom margin ([#619](https://github.com/core-ds/core-components/issues/619)) ([8f83022](https://github.com/core-ds/core-components/commit/8f83022c5a89e2f0b63449970437d0ca00129e5d)) -* **toast-plate:** fix children margin ([#583](https://github.com/core-ds/core-components/issues/583)) ([3b2a964](https://github.com/core-ds/core-components/commit/3b2a96408c56a08eb8796c83a344df20bd4ae032)) -* **toast-plate:** fix cross color ([#642](https://github.com/core-ds/core-components/issues/642)) ([96a17fd](https://github.com/core-ds/core-components/commit/96a17fdcd28a37519845d5a0c40809f107e3031f)) -* border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073)) -* fix types importing in root package ([#569](https://github.com/core-ds/core-components/issues/569)) ([bdb362a](https://github.com/core-ds/core-components/commit/bdb362ad7e23b6ffee8a0299ff91a49cad1f66c2)) -* one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc)) -* update plugin ([#627](https://github.com/core-ds/core-components/issues/627)) ([5bb78f2](https://github.com/core-ds/core-components/commit/5bb78f231e525d0f86ec7fb8ccd8af65121c5169)) -* **select:** virtual list wrong height ([8708228](https://github.com/core-ds/core-components/commit/8708228749acdeed0d1dfe4b9538dc22683e7f28)) -* **select-with-tags:** fixed styles ([#543](https://github.com/core-ds/core-components/issues/543)) ([206db51](https://github.com/core-ds/core-components/commit/206db5138c8ba2869c5ac458609928c4753cc83b)) -* **select-with-tags:** missed dot ([c3c98d0](https://github.com/core-ds/core-components/commit/c3c98d0106072a431a616e8420edb01d83ad5fce)) -* **select-with-tags:** remove pointer events from placeholder ([#545](https://github.com/core-ds/core-components/issues/545)) ([41b860b](https://github.com/core-ds/core-components/commit/41b860bd550b71d2025081d76d7c1240258ecaf9)) -* **slider-input:** label + info + error issue ([147bb71](https://github.com/core-ds/core-components/commit/147bb716ab6dc500aaf0923d5442560c743e6b66)) -* **tabs:** fix ssr rendering ([#621](https://github.com/core-ds/core-components/issues/621)) ([e45efe7](https://github.com/core-ds/core-components/commit/e45efe78ff2583b92393e9c271f07fe3718b9d40)) -* **tabs:** fix tabs hidden ([#816](https://github.com/core-ds/core-components/issues/816)) ([68468dd](https://github.com/core-ds/core-components/commit/68468dd6e74a465f2d4bcde87d7852bcaf934783)) -* **tabs:** фикс бага при скрытии табов ([#851](https://github.com/core-ds/core-components/issues/851)) ([5d5dcd9](https://github.com/core-ds/core-components/commit/5d5dcd966fface279921bea5610e9b3af3f2117b)) -* **textarea:** missing vars ([#817](https://github.com/core-ds/core-components/issues/817)) ([d03231f](https://github.com/core-ds/core-components/commit/d03231f24c826f540ecc8c6ddeb2b3e3fec38b6a)) -* radio/checkbox ([#594](https://github.com/core-ds/core-components/issues/594)) ([4c9c13f](https://github.com/core-ds/core-components/commit/4c9c13fdf4ab3db9a6b176aeaba529c9b23f971b)) -* **amount:** fix story ([#463](https://github.com/core-ds/core-components/issues/463)) ([3e1d6c1](https://github.com/core-ds/core-components/commit/3e1d6c178cc7b0305b0f82e79588bf4d1fa40f91)) -* **calendar:** fix years-table position ([#474](https://github.com/core-ds/core-components/issues/474)) ([0f8cfe2](https://github.com/core-ds/core-components/commit/0f8cfe2b7405989f69d4df964bc2df7858c20ac6)) -* **calendar:** fixes ([#498](https://github.com/core-ds/core-components/issues/498)) ([410630e](https://github.com/core-ds/core-components/commit/410630e3cdd093027444207f16a0f942a62b86de)) -* **calendar:** set max date to years calculation ([#441](https://github.com/core-ds/core-components/issues/441)) ([ec9fd36](https://github.com/core-ds/core-components/commit/ec9fd36c278bcb8cca209eb5a15690c5ac0dd3d8)) -* **calendar:** snapshots timezone issue ([#448](https://github.com/core-ds/core-components/issues/448)) ([18f8080](https://github.com/core-ds/core-components/commit/18f80805499a78cec06377472cdf8d0e81b2378d)) -* **calendar:** vars import ([b8cabec](https://github.com/core-ds/core-components/commit/b8cabec5811e2ac0839d05335edee568dc360f54)) -* **calendar-input:** vars import, fix pattern ([f1f9336](https://github.com/core-ds/core-components/commit/f1f9336d7ae5ed62b4ee5123636fe1950bc25f34)) -* **calendar-range:** fix snapshot ([a135dde](https://github.com/core-ds/core-components/commit/a135ddee4ae99c576df85133984a247231fbb786)) -* **divider:** missed vars ([afeb14e](https://github.com/core-ds/core-components/commit/afeb14ea21281d49fdd24a456f4f18aaa6452cc9)) -* **form-control:** ff blink ([490ff25](https://github.com/core-ds/core-components/commit/490ff257eacb61c5d0d7f8861d12e43af9df3a55)) -* **input:** prevent autocomplete to change bgcolor ([#468](https://github.com/core-ds/core-components/issues/468)) ([d00abe3](https://github.com/core-ds/core-components/commit/d00abe396fad28d6e22887cf5878367d9a6997f8)) -* **input:** set aria-label attr when label passed ([#462](https://github.com/core-ds/core-components/issues/462)) ([c8e4489](https://github.com/core-ds/core-components/commit/c8e448929e9f1a63e9391dda4db2b0d3a7d94902)) -* **input-autocomplete:** fix mousedown issue ([#473](https://github.com/core-ds/core-components/issues/473)) ([889d5ff](https://github.com/core-ds/core-components/commit/889d5ffa35a6f2163107b646165dc2ecd2401887)) -* **loader:** fixed animation start ([4df4712](https://github.com/core-ds/core-components/commit/4df47121429793652f9c838ec306072136f75931)) -* **modal:** fix comments issues ([3c5c9e2](https://github.com/core-ds/core-components/commit/3c5c9e2704070a41cc466fd3ea7881ff13ea1edd)) -* **modal:** fix comments issues ([dd8370f](https://github.com/core-ds/core-components/commit/dd8370f79264d29c5de5b5fa558339cf98384486)) -* **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1)) -* **phone-input:** fix caret ([#493](https://github.com/core-ds/core-components/issues/493)) ([b510257](https://github.com/core-ds/core-components/commit/b510257a7793041766a1d7f4f0a8eae61ee69a8d)) -* **picker-button:** fix test ([639fbe6](https://github.com/core-ds/core-components/commit/639fbe69f5771e5ffbff5fe65a5e46d009a6bd7c)) -* **picker-button:** remove global style ([281ed10](https://github.com/core-ds/core-components/commit/281ed10010756c8337cfa1965da2a58e8a1dfe42)) -* **plate:** fixed --arrow-transform var, tuned transition ([#509](https://github.com/core-ds/core-components/issues/509)) ([dd51018](https://github.com/core-ds/core-components/commit/dd510185db28fefb102b287ae5022cf42e8072dc)) -* **portal:** revert "portal related issues" ([407489a](https://github.com/core-ds/core-components/commit/407489a4278f16806900e97fd2af3655e5b8b071)) -* **portal:** revert "update portal" ([d93aeb1](https://github.com/core-ds/core-components/commit/d93aeb1afdbef0c590d1586c7cd0c6d66f89da9b)) -* **select:** fix safari overflow bug ([#492](https://github.com/core-ds/core-components/issues/492)) ([a273dc1](https://github.com/core-ds/core-components/commit/a273dc1372d171b0a36ad7acfa6e50e65b10a889)) -* **select:** min width bug ([#524](https://github.com/core-ds/core-components/issues/524)) ([cdd686b](https://github.com/core-ds/core-components/commit/cdd686ba0780fdde982fff6629afd2fa798f9479)) -* **space:** removed excess div ([776e093](https://github.com/core-ds/core-components/commit/776e09393cc74eb31e4e56d3fba29a797f813a7f)) -* **switch:** box-sizing issue ([#490](https://github.com/core-ds/core-components/issues/490)) ([73c9eb0](https://github.com/core-ds/core-components/commit/73c9eb0b682a7d8168ae97b9a524d56c65fbd5a5)) -* **tag:** fix formatting ([#480](https://github.com/core-ds/core-components/issues/480)) ([111bf08](https://github.com/core-ds/core-components/commit/111bf08c068f4efe400ce6a25a60280a50fda7b4)) -* **themes:** corp theme ([#512](https://github.com/core-ds/core-components/issues/512)) ([6226238](https://github.com/core-ds/core-components/commit/6226238be1104550622eba1b842dac5ed9828d83)) -* **themes:** fixed button corp theme ([4dec71c](https://github.com/core-ds/core-components/commit/4dec71ccc9bd321a9d7a50dba221b13267b092f9)) -* **themes:** fixed click theme for tabs size S ([#510](https://github.com/core-ds/core-components/issues/510)) ([1ce93e5](https://github.com/core-ds/core-components/commit/1ce93e55d0622951e8db652f16b883a151a75e79)) -* **themes:** lost core vars ([#534](https://github.com/core-ds/core-components/issues/534)) ([54a23c9](https://github.com/core-ds/core-components/commit/54a23c90997c4aa90944d0391f2aab27f799353d)) -* **toast-plate:** polish toast-plate themes ([#527](https://github.com/core-ds/core-components/issues/527)) ([57d73d4](https://github.com/core-ds/core-components/commit/57d73d47b089997b2cc0d85e37b70f068c945e50)) -* add fallback for IE for width: max-content ([22a88bb](https://github.com/core-ds/core-components/commit/22a88bb40b40e8ea6d8a7d618c2957ed33751a86)) -* adds semantic release configs again ([01231a3](https://github.com/core-ds/core-components/commit/01231a3e0de52beb226d5f4bb350db54478307d3)) -* change icons imports paths ([#437](https://github.com/core-ds/core-components/issues/437)) ([e3d4e25](https://github.com/core-ds/core-components/commit/e3d4e2504b282810973eab14201844cd084c4237)) -* fix style for form-control and base-select ([51f9800](https://github.com/core-ds/core-components/commit/51f9800f13a3c4d682be310fe155c2aaddcc7191)) -* form-control colors ([#503](https://github.com/core-ds/core-components/issues/503)) ([784e05e](https://github.com/core-ds/core-components/commit/784e05ecebf2cf9991447bf2dbac4b1dd36b9792)) -* snapshots ([6d387a8](https://github.com/core-ds/core-components/commit/6d387a802a5eb1a5b150cb47ec35b5cbe3f086d7)) -* subComponentName ([8064ac6](https://github.com/core-ds/core-components/commit/8064ac67af83750673ac2dde4794b2ec8fc04f2e)) -* update data and utils dependencies ([#496](https://github.com/core-ds/core-components/issues/496)) ([76eba5d](https://github.com/core-ds/core-components/commit/76eba5dec90fc8f7616018171ddbf97ddfe091ce)) -* update versions ([1d83612](https://github.com/core-ds/core-components/commit/1d8361241fecb6be83e3ce8b546f19def1efc592)) -* update versions ([d1b69a3](https://github.com/core-ds/core-components/commit/d1b69a3f0f488bdef5bea2b3aafc0e275058f321)) -* update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70)) -* delete extra cn ([#415](https://github.com/core-ds/core-components/issues/415)) ([d08966f](https://github.com/core-ds/core-components/commit/d08966fd00459d497640d27a27afa5d0d0fddab9)) -* **button:** design review fixes ([4eca9d1](https://github.com/core-ds/core-components/commit/4eca9d10185f6ffc42644086e679ba7f361cc4f1)) -* **button:** show loader when href is set ([#374](https://github.com/core-ds/core-components/issues/374)) ([79d6750](https://github.com/core-ds/core-components/commit/79d675007a86fe1e36e77376ba7a3afa3b8045e8)) -* **calendar-input:** fix focus issue ([60af1b9](https://github.com/core-ds/core-components/commit/60af1b92d076ce393ac308b64b93af182a68c933)) -* **calendar-input:** fix story ([ff2732d](https://github.com/core-ds/core-components/commit/ff2732da4c7dc35819aebdfdc224472d932a42a2)) -* **circular-progress-bar:** change max-height ([b587c87](https://github.com/core-ds/core-components/commit/b587c8747fe242b32ea11ebad38ef960cf5669b6)) -* **circular-progress-bar:** fix label width ([#395](https://github.com/core-ds/core-components/issues/395)) ([1d3cb6b](https://github.com/core-ds/core-components/commit/1d3cb6b134bc85febd89ad8183f537abbda18482)), closes [#394](https://github.com/core-ds/core-components/issues/394) -* **confirmation:** fix symbols deleting ([#392](https://github.com/core-ds/core-components/issues/392)) ([fee41f1](https://github.com/core-ds/core-components/commit/fee41f17dfb84f9af2ad40e6150e1026ff07ada9)) -* **core-components-*:** fix undefined refs ([ea5dac0](https://github.com/core-ds/core-components/commit/ea5dac0c5e4371a7224c0a2eddbd80a257675961)) -* **core-components-*:** portal related issues ([a5735fb](https://github.com/core-ds/core-components/commit/a5735fbc17110372464fdc7fa0c59bd072c1b525)) -* **core-components-amount-input:** missing handlers ([be512d5](https://github.com/core-ds/core-components/commit/be512d51fae847f2dd7a4e939adbbd93aadcff67)) -* **core-components-bank-card:** deleting issue, add useCallback ([#309](https://github.com/core-ds/core-components/issues/309)) ([5f768bd](https://github.com/core-ds/core-components/commit/5f768bd3b0242d4f0adae25c33b8c38575bfedef)) -* **core-components-bank-card:** label styles ([#316](https://github.com/core-ds/core-components/issues/316)) ([31ea1ce](https://github.com/core-ds/core-components/commit/31ea1cec588cacd425b35b3e71d4a18925b71a5a)) -* **core-components-button:** add text align ([#306](https://github.com/core-ds/core-components/issues/306)) ([a60a4dc](https://github.com/core-ds/core-components/commit/a60a4dcb7f7280c6c4e4628deb48456fde3c6171)) -* **core-components-button:** fixed primary button background color ([874e203](https://github.com/core-ds/core-components/commit/874e20336bea6500c75b207bf2cc14262bb878ff)) -* **core-components-confirmation:** fix showed keyboard on old devices ([#341](https://github.com/core-ds/core-components/issues/341)) ([7165ed1](https://github.com/core-ds/core-components/commit/7165ed1846910ffcef685cb35f8ec9afd802116f)) -* **core-components-form-control:** fix hover state ([#317](https://github.com/core-ds/core-components/issues/317)) ([41b2d51](https://github.com/core-ds/core-components/commit/41b2d51fdbf2fc729a1180d6a515ee56b521c555)) -* **core-components-portal:** update portal ([5638163](https://github.com/core-ds/core-components/commit/5638163e98e6c0c4a9ea3254761fe1fdb739c78e)) -* **core-components-tabs:** fix styles build ([#310](https://github.com/core-ds/core-components/issues/310)) ([d05a0ef](https://github.com/core-ds/core-components/commit/d05a0ef86880903e3e33703ef245655cf11e66e7)), closes [#314](https://github.com/core-ds/core-components/issues/314) -* **core-components-themes:** add all vars import ([6d50c3e](https://github.com/core-ds/core-components/commit/6d50c3e089f0e31721adaaf0b56b741b8dec6a7a)) -* **core-components-themes:** process color-mod, fix vars ([5d77f9b](https://github.com/core-ds/core-components/commit/5d77f9be7766f13ac100130a2ff95f6735fe05d9)) -* **core-components-vars:** import colors-transparent in index ([2109973](https://github.com/core-ds/core-components/commit/2109973ecfd4549f0cb2d711ee19ddd07faa415d)) -* **core-components-with-suffix:** add text styles ([b4dbabe](https://github.com/core-ds/core-components/commit/b4dbabe06b4af072b9cb8e05d54861a587c3f41a)) -* **core-components-with-suffix:** fix stories ([6226300](https://github.com/core-ds/core-components/commit/6226300716354fef9f01d2fa40dbf294d47aa5ba)) -* **form-control:** fix height ([#380](https://github.com/core-ds/core-components/issues/380)) ([afc3722](https://github.com/core-ds/core-components/commit/afc3722dc08eb3f742eaec53be5b0233afad02c3)) -* **mq:** use addListener and removeListener ([#402](https://github.com/core-ds/core-components/issues/402)) ([9918383](https://github.com/core-ds/core-components/commit/9918383c31b07ea2aad253765f2f17a88d00b943)) -* **plate:** remove redunadant className ([#373](https://github.com/core-ds/core-components/issues/373)) ([fdd6b3d](https://github.com/core-ds/core-components/commit/fdd6b3dabb0b5b607d6c84471640c73e65128d0e)), closes [#366](https://github.com/core-ds/core-components/issues/366) -* **select:** fix wrong options height ([18f26d9](https://github.com/core-ds/core-components/commit/18f26d9e6c0d9b99c4396f0b6d86b352014fac0a)) -* **themes:** add missing variables import ([#449](https://github.com/core-ds/core-components/issues/449)) ([456c045](https://github.com/core-ds/core-components/commit/456c0450b484863287c24088eefc51d6d7396570)), closes [#442](https://github.com/core-ds/core-components/issues/442) -* **themes:** fix corp button themes ([#425](https://github.com/core-ds/core-components/issues/425)) ([2e49682](https://github.com/core-ds/core-components/commit/2e4968281a01c197bf98c37b791022fd8182d3a5)) -* **themes:** fixed click select theme ([68dd29e](https://github.com/core-ds/core-components/commit/68dd29e6e0dcbdf4378687e9550d02c875d11b20)) -* **tooltip:** execute tooltip's target missing callbacks ([#443](https://github.com/core-ds/core-components/issues/443)) ([237cef1](https://github.com/core-ds/core-components/commit/237cef12805284bc036ddc59789771a3ad9c9210)) -* snapshots ([03a70ef](https://github.com/core-ds/core-components/commit/03a70ef8c30e901347e718784a107d23bad127d6)) -* **core-components-*:** fix class properties transform ([f407938](https://github.com/core-ds/core-components/commit/f4079384388728251fd90154758fc4aa100f50d6)) -* **core-components-*:** remove optional chaining to fix build issues ([75b0e7a](https://github.com/core-ds/core-components/commit/75b0e7a701c1f2891533d1242e7c83a83854f414)) -* **core-components-modal:** fix lint issues ([5fc1eb4](https://github.com/core-ds/core-components/commit/5fc1eb4c4a42dde687e2255e6a544b7a0e1b193f)) -* **list:** apply --list-marker-color only to marker ([5479f47](https://github.com/core-ds/core-components/commit/5479f47dd44fc8d9cfedb84f7787e5af84c1f41d)) -* **modal:** fix class properties transform ([f6a1de5](https://github.com/core-ds/core-components/commit/f6a1de5b769bcf7605cc992a7e9ebf63445d1169)) -* **picker-button:** fix icon color ([f8d97b4](https://github.com/core-ds/core-components/commit/f8d97b44680fa2ace1539b11b5d0a318d45094aa)) -* **themes:** remove imports from mixins ([4d878b5](https://github.com/core-ds/core-components/commit/4d878b59e46c1cfc1799182367421402af6462db)) -* changed secrets variables ([4afa0b7](https://github.com/core-ds/core-components/commit/4afa0b72d1ee93b0faa816a202ec24ed49bd2096)) -* fix ie bundle ([#385](https://github.com/core-ds/core-components/issues/385)) ([9ca6024](https://github.com/core-ds/core-components/commit/9ca60245991903600c0308c9cd30955f39bd914f)) -* fix version ([0c3cff0](https://github.com/core-ds/core-components/commit/0c3cff0adaf276bcc9e1f57f5da56e44ebd64b3c)) -* slightly better and safer ie fixes ([0e34b4f](https://github.com/core-ds/core-components/commit/0e34b4fb9800a435c05dc8f83146ce5617cf99a5)) -* theme-switcher select value ([845de5d](https://github.com/core-ds/core-components/commit/845de5d5124a2459cad2cf40dd015d6580e68700)) -* **radio:** fix input width ([#378](https://github.com/core-ds/core-components/issues/378)) ([369684e](https://github.com/core-ds/core-components/commit/369684ed2ce7aae07a00941e663accf82f8f2763)) -* storybook build with assets ([0d2e819](https://github.com/core-ds/core-components/commit/0d2e819ae27900e9022bae53dac5a381336871a0)) -* typings issue ([dd17a7b](https://github.com/core-ds/core-components/commit/dd17a7b0c04413dce337c2eecd8bc197e580e067)) -* **checkbox-group:** fix css classnames ([1ec07fa](https://github.com/core-ds/core-components/commit/1ec07faa276bfa20917b1ff4decfde2c81c66ffe)) -* **core-components-amount-input:** fix console error ([461d435](https://github.com/core-ds/core-components/commit/461d435643d6b5908344fadfe66927dd48ed014c)) -* **core-components-amount-input:** resolve [#281](https://github.com/core-ds/core-components/issues/281) ([7e91e9e](https://github.com/core-ds/core-components/commit/7e91e9ed5c4902be979e7dde8818698d71017e68)) -* **core-components-bank-card:** fix test ([77c72db](https://github.com/core-ds/core-components/commit/77c72db21f3bef02f07295015331d55da9c27621)) -* **core-components-button:** background in loading state ([2064e59](https://github.com/core-ds/core-components/commit/2064e593914354258cd47a4da9ca65cf26585542)) -* **core-components-button:** disabled styles are back ([bf81264](https://github.com/core-ds/core-components/commit/bf81264bb922ea98752adb9b2a6b09c946d48ed9)) -* **core-components-button:** fix block button width ([4abf5d9](https://github.com/core-ds/core-components/commit/4abf5d9d915909c4b5b4beddad7d287df812beb4)) -* **core-components-button:** fix button loading state ([eac3c3c](https://github.com/core-ds/core-components/commit/eac3c3ca888ee0092a1693b9a39843c1dd9a75f1)) -* **core-components-button:** fix loader position ([#236](https://github.com/core-ds/core-components/issues/236)) ([697c44a](https://github.com/core-ds/core-components/commit/697c44a0559515f593541909fabc7145a66ee7e1)) -* **core-components-checkbox-group:** fix classnames to camelcase ([522af20](https://github.com/core-ds/core-components/commit/522af2088bbc7ef9343b4f6c3de5bb7ee51c6202)) -* **core-components-input:** fix clear button, fix focus issues ([24fc3c6](https://github.com/core-ds/core-components/commit/24fc3c603e92418e8589c09bed2ca5d8bdf57f5a)) -* **core-components-money-input:** add todo ([612c88c](https://github.com/core-ds/core-components/commit/612c88c87197e3c42332291f81dd1a918599f637)) -* **core-components-money-input:** fix bold ([4625eee](https://github.com/core-ds/core-components/commit/4625eee240f1024e3934e205b4a20845f8da1542)) -* **core-components-money-input:** fix build ([c68fa08](https://github.com/core-ds/core-components/commit/c68fa0890965a5415b1acc7fab144eaaabbb9676)) -* **core-components-money-input:** fix default placeholder ([2efbcbd](https://github.com/core-ds/core-components/commit/2efbcbd49fbc2c02a6644867bfa25c96b3943223)) -* **core-components-money-input:** fix demo ([2b22f2d](https://github.com/core-ds/core-components/commit/2b22f2db919ff0e9bd1c393234154234b3675582)) -* **core-components-money-input:** fix dependency ([1ea92b7](https://github.com/core-ds/core-components/commit/1ea92b78aacaf5421ddaa867c795ecf4ed4d9318)) -* **core-components-money-input:** fix zindex ([0688bd9](https://github.com/core-ds/core-components/commit/0688bd925a52a3b0d1ce28779b75e626a961627d)) -* **core-components-money-input:** remove temp wrapper ([fc6e904](https://github.com/core-ds/core-components/commit/fc6e904aeb2df1b05b172c59d4897418e67c7993)) -* **core-components-money-input:** type for currency according comments ([078069d](https://github.com/core-ds/core-components/commit/078069d523c545b8d7b3d7edb2f8676a2aa4a522)) -* **core-components-phone-input:** fix controlled value bug ([#248](https://github.com/core-ds/core-components/issues/248)) ([62c3cd2](https://github.com/core-ds/core-components/commit/62c3cd25ccf3657e70fb5ebafa5e0ac2e9a8c1da)), closes [#253](https://github.com/core-ds/core-components/issues/253) -* **core-components-popover:** add missing styles ([578f1cb](https://github.com/core-ds/core-components/commit/578f1cb20cad08fec606b6da11c961552ca990d1)) -* **core-components-progress-bar:** refactor, snapshot tests fix ([7b0b553](https://github.com/core-ds/core-components/commit/7b0b553eafce92307bec53d0d35f847969bf8904)) -* **core-components-progress-bar:** use theme ([#201](https://github.com/core-ds/core-components/issues/201)) ([a9ab773](https://github.com/core-ds/core-components/commit/a9ab773d75f4fcbc68ad648b378cfb3c2b9c0c19)) -* **core-components-select:** fix typings, add id ([341d79d](https://github.com/core-ds/core-components/commit/341d79dad610fce77b28cff31382e38152b02d3b)) -* **core-components-select:** fix typings, unused css ([c223dbb](https://github.com/core-ds/core-components/commit/c223dbb9245f7cc6113a76077f458c4bdcd75462)) -* **core-components-select:** remove default autocomplete ([a223433](https://github.com/core-ds/core-components/commit/a2234334eaf145582a39bc045b84d61a97a7660c)) -* **core-components-skeleton:** fix styles ([0aac24f](https://github.com/core-ds/core-components/commit/0aac24f3e7ed536fef560abec9627daf42a688df)) -* **core-components-tabs:** fix css-modules build ([#239](https://github.com/core-ds/core-components/issues/239)) ([0e9d8d0](https://github.com/core-ds/core-components/commit/0e9d8d073dc000484816c8d10beddff12e0c463e)) -* **core-components-tabs:** recalc line styles on render ([#250](https://github.com/core-ds/core-components/issues/250)) ([b9fd710](https://github.com/core-ds/core-components/commit/b9fd7105c19809fc682f60fca275bd645e082c85)) -* **core-components-themes:** fix site theme ([97f5caa](https://github.com/core-ds/core-components/commit/97f5caab5f3ce546d382a711c726bed5b54724ab)) -* **core-components-themes:** temp fix for color-mod ([94a79a0](https://github.com/core-ds/core-components/commit/94a79a08d53266963d3d96bf3c5c41321629d360)) -* 🐛 use mixinsDir to import mixins ([#182](https://github.com/core-ds/core-components/issues/182)) ([06a6f2d](https://github.com/core-ds/core-components/commit/06a6f2dde49db07681d09a5afb94e91ab1c9da04)), closes [#181](https://github.com/core-ds/core-components/issues/181) -* add missing deps ([231402b](https://github.com/core-ds/core-components/commit/231402b2f054defddea4afd4eaf94f5d1791ccb4)) -* add new colors, fix typography ([e50365e](https://github.com/core-ds/core-components/commit/e50365e7e7c6d17422aff61c266b3a1b55a0ecf3)) -* build issues ([cdacf43](https://github.com/core-ds/core-components/commit/cdacf43a0b8f24a4b2b6ca97d0c008b30692c841)) -* fix import example ([#237](https://github.com/core-ds/core-components/issues/237)) ([0ea47b5](https://github.com/core-ds/core-components/commit/0ea47b59138690cb294314883da7298e7b5d0195)) -* fix import replacement ([5354d06](https://github.com/core-ds/core-components/commit/5354d0604125d9d21c2939987cecd10d428a509f)), closes [#170](https://github.com/core-ds/core-components/issues/170) -* fix radio & checkbox colors ([56a0a16](https://github.com/core-ds/core-components/commit/56a0a16d1259f05b51b06ba81035003eadc1f2b3)) -* fixed themes and default font-family ([6bab367](https://github.com/core-ds/core-components/commit/6bab367eb0df53c7d42e31c5e404859638d8d6c9)) -* use correct vars ([171c45d](https://github.com/core-ds/core-components/commit/171c45da81d6e8df6b76a8333068d7ccbe68466c)) -* fix 4 spaces ([049cfa9](https://github.com/core-ds/core-components/commit/049cfa919cfd96315f716d724c0ea670c667aae2)) -* fix issues accodring to PR [#36](https://github.com/core-ds/core-components/issues/36) ([9c57325](https://github.com/core-ds/core-components/commit/9c5732519063c89fa5a544ae87611cc1244ee78b)) -* fix lint errors ([86fa366](https://github.com/core-ds/core-components/commit/86fa36694323671bd3e4bbb28980134d4e7e2ce2)) -* fixed linter errors ([0c9f9c6](https://github.com/core-ds/core-components/commit/0c9f9c69127ba979a03e66dd80f4be083d2760ce)) -* prepare inputs. move @types/jest to devDeps ([5f30dbb](https://github.com/core-ds/core-components/commit/5f30dbb064b468e54159914604426c8ec3310522)) -* restore babel config ([50eaa68](https://github.com/core-ds/core-components/commit/50eaa682c93733a4d5f1dc0fbcd32a4214b643f3)) -* update scripts & snapshots ([ce35a02](https://github.com/core-ds/core-components/commit/ce35a026850700af09953e47006bce0885c920aa)) -* **build-root-package:** several hyphens in dir name ([aeb5dfb](https://github.com/core-ds/core-components/commit/aeb5dfba8a88153762602a9c20c8db478ae2943f)) -* **button:** add missing href ([756d84b](https://github.com/core-ds/core-components/commit/756d84b775298045cdb205bc2f5155d04c6d4f35)) -* **button:** remove unused deps ([f287d48](https://github.com/core-ds/core-components/commit/f287d48dadab80b2f98e43c5a9d74029d4286303)) -* **button:** transition duration fix ([cd49653](https://github.com/core-ds/core-components/commit/cd49653db2670f9c846fb9d839f3c75d8e1c1f54)) -* **core-components-button:** iconOnly button min-width fix ([ecdf518](https://github.com/core-ds/core-components/commit/ecdf518c89a931b649a6c917caa45b9f4dc2dc7b)) -* **core-components-popover:** change box-sizing to border-box ([#121](https://github.com/core-ds/core-components/issues/121)) ([2a6883d](https://github.com/core-ds/core-components/commit/2a6883d6832713d197447e23ada822ea07bed5f4)) -* **core-components-popover:** make transition props optional ([#119](https://github.com/core-ds/core-components/issues/119)) ([dce9249](https://github.com/core-ds/core-components/commit/dce924922b67dff1c4ea6b173bd2b70874b56270)) -* **core-components-select:** fix onOpen description ([b28f75a](https://github.com/core-ds/core-components/commit/b28f75afe180dd252900139147f2c7c8df92aeb8)) -* **core-components-select:** move select vars to separate file ([8e09aba](https://github.com/core-ds/core-components/commit/8e09abaa90d8a91298be69ef136770588630d824)) -* **core-components-tag:** fix tag background ([#151](https://github.com/core-ds/core-components/issues/151)) ([03b465b](https://github.com/core-ds/core-components/commit/03b465b9f6c231375da8803382ed3539b2e7743a)) -* **core-components-tooltip:** change tooltip timer to ref ([#207](https://github.com/core-ds/core-components/issues/207)) ([139f0a7](https://github.com/core-ds/core-components/commit/139f0a74d414f3c1dde11b46ecf96a984b599359)) -* **core-components-tooltip:** pass target original classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([d253f8a](https://github.com/core-ds/core-components/commit/d253f8a363a0b4c605ee897a9b3172fdf977a073)) -* **deploy:** fix demo-build for master branch ([fc46861](https://github.com/core-ds/core-components/commit/fc46861e0c8b9664abda0efaba42a175504ab02f)) -* **deps:** fix wrong dependencies ([#92](https://github.com/core-ds/core-components/issues/92)) ([085e2ce](https://github.com/core-ds/core-components/commit/085e2cef73841178322c89ef90e90747e6971adf)) -* **divider:** delete default margin ([c514bf3](https://github.com/core-ds/core-components/commit/c514bf386755b7e29f36ae148deea7a08c7984da)) -* **divider:** remarks from PR ([5df2c6f](https://github.com/core-ds/core-components/commit/5df2c6fae1d7eab7aaa77604e4f0f09c3304e1ab)) -* **divider:** style ([d718a69](https://github.com/core-ds/core-components/commit/d718a6922f38ec0e60eea23ebe1803a8798de8fa)) -* **input:** fix l bottom margin ([c41a840](https://github.com/core-ds/core-components/commit/c41a8408e1c8f338be4a787bb06d51be7f1e66da)) -* **input:** fix render fn ([4cf8ef1](https://github.com/core-ds/core-components/commit/4cf8ef18dc8fc703f50ebf70877762b8bcac7a71)) -* **input:** fix wrong filled state ([#109](https://github.com/core-ds/core-components/issues/109)) ([576495a](https://github.com/core-ds/core-components/commit/576495ac639278bf5e873535173736a8082d1b44)) -* **input:** pass sub as BaseInput child ([b60d64c](https://github.com/core-ds/core-components/commit/b60d64ca432ccf94b7472116f04010327b7c9c72)) -* **inputs:** border-box fix ([81752e1](https://github.com/core-ds/core-components/commit/81752e189382e7c2dc3982b50291b9be5827cea1)) -* **inputs:** fix css vars ([1e233a2](https://github.com/core-ds/core-components/commit/1e233a26423c544ead925851a2e7925402710951)) -* **inputs:** fix input width ([9ed950f](https://github.com/core-ds/core-components/commit/9ed950f103057c74cf02ff4a95a7a6ba868aced8)) -* **inputs:** fix placeholders styles ([e404483](https://github.com/core-ds/core-components/commit/e4044838c96b527228a78a33ee24104c4899c80f)) -* **inputs:** fix styles and types ([cb6b189](https://github.com/core-ds/core-components/commit/cb6b18957d86410deddfae2d41fea0ed201e4073)) -* **inputs:** l size side paddings ([b9688a2](https://github.com/core-ds/core-components/commit/b9688a246aec4c5e442e6ee7a84a77c87d95371b)) -* **inputs:** remove from state, detect by value prop ([208c07e](https://github.com/core-ds/core-components/commit/208c07e9a73640f43950779615d4ec3f39e61c66)) -* **inputs:** remove file type. fix styles. withIcon -> rightAddons ([f149aa8](https://github.com/core-ds/core-components/commit/f149aa88de2f94329e5c905846034d619589a7bf)) -* **inputs:** styles fixes ([9a3199e](https://github.com/core-ds/core-components/commit/9a3199ef03d8e6a97d48c376b79938c2f1bf1372)) -* **masked-input,switch:** fix wrong main field ([76d0e4e](https://github.com/core-ds/core-components/commit/76d0e4e6b05973977f49ef5edeb56790daffa566)) -* **switch:** fix global tag styling ([66ce011](https://github.com/core-ds/core-components/commit/66ce0111b0e4c47e957f94afbf66f1ff50cab607)) -* **switch:** replace div with span ([69624f9](https://github.com/core-ds/core-components/commit/69624f9c2a2e07aa91829a8940245e83e7576d05)) -* **tabs:** optional children ([#572](https://github.com/core-ds/core-components/issues/572)) ([b03ee8c](https://github.com/core-ds/core-components/commit/b03ee8ca7f37e9c5b8a46d4a04123792cdc1bfa6)) -* **tag:** add height in ie (fix bug with flex and align-items) ([9fd2abd](https://github.com/core-ds/core-components/commit/9fd2abd401d92e01e853ce5a3f497645d74b8e04)) -* **tag:** fix disabled state ([#110](https://github.com/core-ds/core-components/issues/110)) ([a622101](https://github.com/core-ds/core-components/commit/a622101cb448e623e95ae9bfecc310548ac52dbe)) -* **tag:** fix styles ([#80](https://github.com/core-ds/core-components/issues/80)) ([bc80ba4](https://github.com/core-ds/core-components/commit/bc80ba47366a91d998d764675e17aeaed3c31666)) -* **tests:** rewrite tests titles ([d0f16ad](https://github.com/core-ds/core-components/commit/d0f16ad812cb098ba9cbf612bde245784dfb6227)) -* **themes:** fixes border-radius ([9d152d9](https://github.com/core-ds/core-components/commit/9d152d9ae0e70736cf78f3a014b6710dc8aa2331)) -* **toast:** remove extra timer clearing ([#559](https://github.com/core-ds/core-components/issues/559)) ([ae5d811](https://github.com/core-ds/core-components/commit/ae5d81169d4db0427ae5baf0bffd784adee184ee)) -* **tsconfig:** fix local module resolution ([f8faadf](https://github.com/core-ds/core-components/commit/f8faadfdfea9e8b570c77e1c8b3bf462ea6d26e6)) -* **typography:** add prettier-ignore to fix mixin breaking. rebuild ([6909df6](https://github.com/core-ds/core-components/commit/6909df62bbc9b0dd67143cdb950dd8e50bf54067)) -* **update-colors.js:** fix it ([c9b8c68](https://github.com/core-ds/core-components/commit/c9b8c68b8ac07e2bff33399cc1a99405bb71132d)) -* **vars:** fix build for vars. add typography to index ([cc00344](https://github.com/core-ds/core-components/commit/cc00344d6db8e60b0b230829d8bed4ef5f20c9d1)) - - -* refactor/calendar-range (#984) ([714f615](https://github.com/core-ds/core-components/commit/714f61590586bafe1060e652943e95c133ed002a)), closes [#984](https://github.com/core-ds/core-components/issues/984) -* Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521) +- refactor(core-components-form-control): rename component + +- refactor(core-components-form-control): component improvements + +### Features + +- change repository name ([85dc9c5](https://github.com/core-ds/core-components/commit/85dc9c59ad778afeb1cf9716c2e6adea69641d57)) +- update all screenshots ([8b09f60](https://github.com/core-ds/core-components/commit/8b09f608203b0561652cab030ddc8471b8c952d7)) +- **amount:** add rightAddons, add showPlus, make currency optional ([#955](https://github.com/core-ds/core-components/issues/955)) ([ac35b9a](https://github.com/core-ds/core-components/commit/ac35b9aaf842d88fd28caeb4f888cdf74facf644)) +- **badge:** add screenshots ([4b5d31c](https://github.com/core-ds/core-components/commit/4b5d31c8113c1da084ea0f15976edfea517f6db6)) +- **base-modal:** add component ref for base modal ([#1008](https://github.com/core-ds/core-components/issues/1008)) ([fb13dbd](https://github.com/core-ds/core-components/commit/fb13dbdf6352b10b80a74fa87edfcb1f54b76d5a)) +- **base-modal:** extract modal store to global ([#943](https://github.com/core-ds/core-components/issues/943)) ([9587f17](https://github.com/core-ds/core-components/commit/9587f1773bb690ac6696077509d4a519aa109198)) +- **bottom-sheet:** update-bottom-sheet ([#1025](https://github.com/core-ds/core-components/issues/1025)) ([26fa9aa](https://github.com/core-ds/core-components/commit/26fa9aab68bebf0f7093a38bc0f18a9b596ccf37)), closes [#1032](https://github.com/core-ds/core-components/issues/1032) +- **button:** добавлена кнопка размера 40px, изменены скругления ([#886](https://github.com/core-ds/core-components/issues/886)) ([88e657a](https://github.com/core-ds/core-components/commit/88e657a9f0f68b8b58f6e9437053954ee984f83c)), closes [#890](https://github.com/core-ds/core-components/issues/890) +- **calendar:** add intranet theme ([#1026](https://github.com/core-ds/core-components/issues/1026)) ([292b76c](https://github.com/core-ds/core-components/commit/292b76c100bb12ebb1011d2a9981ba2b2899dd7a)) +- **calendar:** design & logic updates ([#991](https://github.com/core-ds/core-components/issues/991)) ([358142c](https://github.com/core-ds/core-components/commit/358142c6d259e1463954139cc648787cdf461f76)), closes [#993](https://github.com/core-ds/core-components/issues/993) [#990](https://github.com/core-ds/core-components/issues/990) +- **calendar:** split header to header & period-slider ([#939](https://github.com/core-ds/core-components/issues/939)) ([107cee0](https://github.com/core-ds/core-components/commit/107cee0f2b5d609a02b61023b324dcc8c98c5220)) +- **calendar:** мобильные стили ([#867](https://github.com/core-ds/core-components/issues/867)) ([febf545](https://github.com/core-ds/core-components/commit/febf54551f8179a1ba03fe65ed47aa3b20b01472)) +- **calendar:** показываем будущий год ([#900](https://github.com/core-ds/core-components/issues/900)) ([3cd3c63](https://github.com/core-ds/core-components/commit/3cd3c63e5ff88066599d0944a2d3183e63150664)) +- **calendar-input:** add popover z-index ([#924](https://github.com/core-ds/core-components/issues/924)) ([378286d](https://github.com/core-ds/core-components/commit/378286d746ca33aeb755617270f66310712d1c61)) +- **chart:** added border radius to bar charts ([cfd0ad2](https://github.com/core-ds/core-components/commit/cfd0ad2c23a2b80de0bc5dfae7b65a14263e37e9)) +- **checkbox:** состояние ошибки ([#909](https://github.com/core-ds/core-components/issues/909)) ([f81d7d8](https://github.com/core-ds/core-components/commit/f81d7d8ecade7418a2015d57f5cf3a9f31779174)) +- **checkbox-group:** add click theme ([967d585](https://github.com/core-ds/core-components/commit/967d58538c5537fc2b3ac583fb742ebaef86109e)) +- **circular-progress-bar:** new size S ([d34db5c](https://github.com/core-ds/core-components/commit/d34db5cca682bc63f948a0dad322604c8044a6b8)) +- **circular-progress-bar:** ReactNode as title or subtitle ([#1023](https://github.com/core-ds/core-components/issues/1023)) ([7ae6df9](https://github.com/core-ds/core-components/commit/7ae6df9d2e4253f9a94532d155e81032cd96c810)) +- **code-input:** add component ([#932](https://github.com/core-ds/core-components/issues/932)) ([dc40cb5](https://github.com/core-ds/core-components/commit/dc40cb5b28322b4a2dc5735b354a7d45cf34adb9)) +- **collapse:** reset height to auto ([#822](https://github.com/core-ds/core-components/issues/822)) ([f533e3b](https://github.com/core-ds/core-components/commit/f533e3ba1eab5f41539c39ca3b97f698e90ca687)) +- **confirmation:** compact code-input if slotsCount > 6 ([99be0e1](https://github.com/core-ds/core-components/commit/99be0e1744d9782824756c8992fd4b986a589dd7)) +- **confirmation:** большое обновление компонента ([#958](https://github.com/core-ds/core-components/issues/958)) ([3e61e7e](https://github.com/core-ds/core-components/commit/3e61e7e6529662d8fb96acb2898a29fd9c1917ab)) +- **confirmation:** компактный code-input когда символов > 6 ([633d1ff](https://github.com/core-ds/core-components/commit/633d1ffd66c7c9d949c3996f6d4d739a4fcb6b21)) +- **custom-button:** add custom-button component ([983bcd7](https://github.com/core-ds/core-components/commit/983bcd7119c6f674ed15ed5bfe069349449f84c8)) +- **date-input:** add some improvements ([#971](https://github.com/core-ds/core-components/issues/971)) ([47756ca](https://github.com/core-ds/core-components/commit/47756ca1d4eea89f78ed7234e95c02e51dd72e49)) +- **docs:** change readme ([6b11f40](https://github.com/core-ds/core-components/commit/6b11f40fde62d202a500e0bfca4a42b95497d041)) +- **file-upload-item:** обновлен внешний вид ([#902](https://github.com/core-ds/core-components/issues/902)) ([d0f7d1e](https://github.com/core-ds/core-components/commit/d0f7d1ebdf302711a01549e86d0d8a5129b66d82)) +- **filter-tag:** new component ([#1035](https://github.com/core-ds/core-components/issues/1035)) ([f97e9c5](https://github.com/core-ds/core-components/commit/f97e9c59062e56f3bafa855450a33b5f67497143)) +- **hatching-progress-bar:** add component ([#1012](https://github.com/core-ds/core-components/issues/1012)) ([a25a579](https://github.com/core-ds/core-components/commit/a25a5793df91c9e9cf213c7d1215c771c1851141)) +- **icon-view:** add draft component ([f0ab46f](https://github.com/core-ds/core-components/commit/f0ab46fc5241c3856962f19315213c3e45b6c05b)) +- **icon-view:** add tests, some refactoring ([4fee755](https://github.com/core-ds/core-components/commit/4fee755b826024a02f2dab9e9573088284185380)) +- **icon-view:** refactoring ([2579bb0](https://github.com/core-ds/core-components/commit/2579bb016cfdeef0ff0e177f231a1d1a4715b0af)) +- **icon-view:** updates ([7b17f5f](https://github.com/core-ds/core-components/commit/7b17f5ffca39243a13d57fdbd0da31041dc0ea98)) +- **list:** added list & typography presets ([#1047](https://github.com/core-ds/core-components/issues/1047)) ([67b6a77](https://github.com/core-ds/core-components/commit/67b6a77d1327b090b010eb061f83a2e6a0cb67b9)) +- **modal:** update styles ([#1024](https://github.com/core-ds/core-components/issues/1024)) ([fdf2cdc](https://github.com/core-ds/core-components/commit/fdf2cdca9f785b27cd5d3998245a34d42e1240d1)) +- **picker-button:** gap между picker-button и popover в 8px ([#935](https://github.com/core-ds/core-components/issues/935)) ([9b3aa2b](https://github.com/core-ds/core-components/commit/9b3aa2b70b534d8e571baa62b973e1f67667ac43)) +- **select:** add select mobile ([#1016](https://github.com/core-ds/core-components/issues/1016)) ([b3cfb0d](https://github.com/core-ds/core-components/commit/b3cfb0d0e9496ba2e4260e962eaf3f9cf85635c6)) +- add extra classes for radio and checkbox components ([#1039](https://github.com/core-ds/core-components/issues/1039)) ([c3ed089](https://github.com/core-ds/core-components/commit/c3ed089360b25d0f7712f2e7608c5a23f11a95df)) +- add extra content class name prop for radio and checkbox components ([#1048](https://github.com/core-ds/core-components/issues/1048)) ([3c076b9](https://github.com/core-ds/core-components/commit/3c076b939a64dff8f9c66bd65f474ccea76c8cad)) +- **modal:** mobile header ([#1018](https://github.com/core-ds/core-components/issues/1018)) ([54b879f](https://github.com/core-ds/core-components/commit/54b879f500d1124a6956d3d5a57349c856a09904)) +- **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e)) +- **picker-button:** add conditional righAddons prop for custom icon ([#975](https://github.com/core-ds/core-components/issues/975)) ([d2544b7](https://github.com/core-ds/core-components/commit/d2544b74e56deda9cae735e5b3ca6a2d97aef94d)) +- **picker-button:** added new view and updated dropdown options ([#1013](https://github.com/core-ds/core-components/issues/1013)) ([050fb3e](https://github.com/core-ds/core-components/commit/050fb3eb6fd6dde057bbfcad5dd807d354125b63)) +- **popover:** add availableHieght prop, update related snapshots ([43b4ebd](https://github.com/core-ds/core-components/commit/43b4ebd6ba092f22d0dfc845f3f0113b390317dc)), closes [#758](https://github.com/core-ds/core-components/issues/758) +- **progress-bar:** add size prop, additional views, new bg color ([#996](https://github.com/core-ds/core-components/issues/996)) ([63702f7](https://github.com/core-ds/core-components/commit/63702f7d9637e1fe3da502d7c91c4284453b3b48)) +- **select:** add OptionsListWithApply ([#948](https://github.com/core-ds/core-components/issues/948)) ([d8ef8dd](https://github.com/core-ds/core-components/commit/d8ef8dd257dfc100095c923c4f3e317787ed1877)) +- **select:** добавлено свойство z-index для поповера ([#871](https://github.com/core-ds/core-components/issues/871)) ([4a53483](https://github.com/core-ds/core-components/commit/4a534835a9e6c9ec7793733467194536cfd96a91)) +- **select:** чекбоксы в выпадашке множественного выбора [#903](https://github.com/core-ds/core-components/issues/903)) ([f5638ef](https://github.com/core-ds/core-components/commit/f5638ef589468de0dc0473d30871035d8c4efab5)) +- **table:** компоненты для построения таблиц ([#911](https://github.com/core-ds/core-components/issues/911)) ([4ac648a](https://github.com/core-ds/core-components/commit/4ac648abd4de08bf68babc2f122f432d5b14080e)) +- **themes:** introducing intranet theme ([#983](https://github.com/core-ds/core-components/issues/983)) ([85eb9cf](https://github.com/core-ds/core-components/commit/85eb9cfffeef31b886c5123d6333e177c261ac62)) +- **tooltip:** added anchor props ([#1034](https://github.com/core-ds/core-components/issues/1034)) ([822031b](https://github.com/core-ds/core-components/commit/822031b3941184689a2a7ed9938c4ec44debc444)) +- **typography:** новый компонент Typography.TitleMobile ([#1003](https://github.com/core-ds/core-components/issues/1003)) ([9b03cf9](https://github.com/core-ds/core-components/commit/9b03cf90422b05cc927ed98959708430812d1a50)) +- Исправить импорты в сторях. ([#1009](https://github.com/core-ds/core-components/issues/1009)) ([6f7e393](https://github.com/core-ds/core-components/commit/6f7e39350fd572dd3e74c4819829f85c4066b170)) +- Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7)) +- **status:** добавлено 10% прозрачности в цвет фона ([#896](https://github.com/core-ds/core-components/issues/896)) ([b55c62b](https://github.com/core-ds/core-components/commit/b55c62b49cc52a15ff7497b9ad329773fba15959)) +- **stepped-progress-bar:** add view prop, change bg color ([#1000](https://github.com/core-ds/core-components/issues/1000)) ([3e16926](https://github.com/core-ds/core-components/commit/3e1692673e694e3fef2913201e18e8a2e21fc980)) +- **tabs:** add xxs xs sizes to secondary view and fix heights ([#985](https://github.com/core-ds/core-components/issues/985)) ([dd20933](https://github.com/core-ds/core-components/commit/dd20933f7c9a8f08920f7ad21bacb25983d3e93e)) +- **tooltip:** add availableHeight and preventOverflow props ([b401524](https://github.com/core-ds/core-components/commit/b401524b0eb0b9e06593883a889b99198982c718)), closes [#758](https://github.com/core-ds/core-components/issues/758) +- **typography:** export types ([#940](https://github.com/core-ds/core-components/issues/940)) ([498227c](https://github.com/core-ds/core-components/commit/498227c272659a1ebf890eee61c6fecdd110faee)) +- **vars:** build color-mod ([#953](https://github.com/core-ds/core-components/issues/953)) ([aa64366](https://github.com/core-ds/core-components/commit/aa64366d970be46776d23c9d13ebec413b2ac4d9)) +- **vars:** updated typography ([#981](https://github.com/core-ds/core-components/issues/981)) ([95bcce8](https://github.com/core-ds/core-components/commit/95bcce8e07467c635e2a93c55edfb3550a533ba4)) +- обновлённая темизация иконок в инпутах ([ab90d60](https://github.com/core-ds/core-components/commit/ab90d602f239176d0771db38f9cc29dc02a35566)) +- **file-upload-item:** добавлен пропс download ([#844](https://github.com/core-ds/core-components/issues/844)) ([db2a4ca](https://github.com/core-ds/core-components/commit/db2a4ca27ee7a64721138c7c2e918b4657c75489)) +- проставлен role=alert для ошибок ([#850](https://github.com/core-ds/core-components/issues/850)) ([dc634a3](https://github.com/core-ds/core-components/commit/dc634a3d008accfab10192ce234c12ef0ecc7fa9)) +- **amount-input:** add integers only mode ([#766](https://github.com/core-ds/core-components/issues/766)) ([27a2535](https://github.com/core-ds/core-components/commit/27a2535f2de8d787e666c08a8fbfeb67d762f9a1)) +- **amount-input:** allow to use custom suffix ([#767](https://github.com/core-ds/core-components/issues/767)) ([27d9d02](https://github.com/core-ds/core-components/commit/27d9d02fb619fa5946fb3cb678d9b742d74a745b)) +- **attach:** add additional classNames props ([#783](https://github.com/core-ds/core-components/issues/783)) ([bc8e865](https://github.com/core-ds/core-components/commit/bc8e86512a95b8690d2115a71a299c19195fa58d)) +- **attach:** simulate controlled state ([#760](https://github.com/core-ds/core-components/issues/760)) ([5d312bf](https://github.com/core-ds/core-components/commit/5d312bf632cc716bfc7ecb7b487c4af812838aa9)), closes [#743](https://github.com/core-ds/core-components/issues/743) +- **calendar-input:** uses date-input ([#752](https://github.com/core-ds/core-components/issues/752)) ([509dba2](https://github.com/core-ds/core-components/commit/509dba26913ccf6df859a200aa476eeef1df2ddc)) +- **calendar-input:** переход к темизации цвета иконки ([adf1dfd](https://github.com/core-ds/core-components/commit/adf1dfd080c1986976a57fee448183e762892eb0)) +- **chart:** add component ([#835](https://github.com/core-ds/core-components/issues/835)) ([17d840b](https://github.com/core-ds/core-components/commit/17d840b9f9f64474491d3ec58d3cda53ad07f0ca)) +- **chart:** added chart component ([1119943](https://github.com/core-ds/core-components/commit/11199435e9ab53ae159707e94714a34952ad56c1)) +- **chart:** added description ([8275346](https://github.com/core-ds/core-components/commit/827534640af0c0b06c1105755e9435d43cae8acd)) +- **chart:** added props for legend icons height ([5c9b321](https://github.com/core-ds/core-components/commit/5c9b32154e6f39cddd3ac9668830959adba64648)) +- **chart:** bar radius ([e39251a](https://github.com/core-ds/core-components/commit/e39251a37a52b6f434932439da0b86a03a26d901)) +- **chart:** beautifyed ([67cc96e](https://github.com/core-ds/core-components/commit/67cc96e6afc020c3af5491d3d7ba0b89f50dbaf3)) +- **chart:** edited doc ([8728271](https://github.com/core-ds/core-components/commit/8728271dc7f733c9b14a27c83a7136c22ef39ed6)) +- **chart:** fix doc ([9d1e888](https://github.com/core-ds/core-components/commit/9d1e8889615f0701a43a9fbceca867557002ef31)) +- **chart:** fixed after pull master ) ([4c7d241](https://github.com/core-ds/core-components/commit/4c7d241da264cde81e50573f96a2f035c31306e1)) +- **chart:** fixed build error ([2efdd22](https://github.com/core-ds/core-components/commit/2efdd22f27e8229b2ad4cb7d355f61b218ea1bc1)) +- **chart:** fixed comments ([a611b9c](https://github.com/core-ds/core-components/commit/a611b9c1c9bab1d5a15c2021bff270e9bbf5a934)) +- **chart:** fixed comments ([7ad1caf](https://github.com/core-ds/core-components/commit/7ad1caf5be9f2da6a218b2c97cc7d96efb4d286d)) +- **chart:** fixed comments ([555acb6](https://github.com/core-ds/core-components/commit/555acb699549c52f85d0dd58009ab1692344eb44)) +- **chart:** fixed comments ([379e53d](https://github.com/core-ds/core-components/commit/379e53ddf8c857424600d5fc49b41c03f5ac11ea)) +- **chart:** fixed global styles css ([2f8f139](https://github.com/core-ds/core-components/commit/2f8f139137090f185b1c3c2333fe7ceee7a1fff8)) +- **chart:** more description ([9a4c076](https://github.com/core-ds/core-components/commit/9a4c0762782c2f8ccee0e0c7c660514a10119960)) +- **chart:** pulled master ([176f7ae](https://github.com/core-ds/core-components/commit/176f7ae6e7cdb2a3e18d2136523e5be6ecdbde3e)) +- **chart:** resolved conflicts ([7f734ba](https://github.com/core-ds/core-components/commit/7f734bab0347af6e5d56d717d8b5cc0cf192f9f3)) +- **chart:** добавлена возможность скруглять углы и возможность отображать подписи значений для графиков типа bar ([4d81ab5](https://github.com/core-ds/core-components/commit/4d81ab5601b2ed38bc6f0f1187cf7c80c79fe50a)) +- **confirmation:** add custom countdown content, change time format ([#804](https://github.com/core-ds/core-components/issues/804)) ([b87ace1](https://github.com/core-ds/core-components/commit/b87ace190013cc873133bd1fff23cb6ae0ae3800)) +- **confirmation:** design update, new type of error "overlimit" and blocking input ([#841](https://github.com/core-ds/core-components/issues/841)) ([1ea5d31](https://github.com/core-ds/core-components/commit/1ea5d3117552f7cc9fcd78092edf634d9020b693)) +- **date-input:** add component ([#751](https://github.com/core-ds/core-components/issues/751)) ([4b94bee](https://github.com/core-ds/core-components/commit/4b94beec36acc73ac6c62cf37f87061c0ada4b35)) +- **dropzone:** add block prop ([#813](https://github.com/core-ds/core-components/issues/813)) ([39bf4c3](https://github.com/core-ds/core-components/commit/39bf4c3158525d419c75aedec8be81e4a4bb90da)) +- **dropzone:** design improvements (PDS-282) ([#829](https://github.com/core-ds/core-components/issues/829)) ([437ec3c](https://github.com/core-ds/core-components/commit/437ec3c80c507a37c8a24106a6ee6514abd68d04)) +- **file-upload-item:** custom icon ([#849](https://github.com/core-ds/core-components/issues/849)) ([59b8925](https://github.com/core-ds/core-components/commit/59b8925fbb9c631534c49c8dbb68cf493678e9e5)) +- **gallery:** add `canDownload` image prop, some refactoring ([#837](https://github.com/core-ds/core-components/issues/837)) ([b0c6665](https://github.com/core-ds/core-components/commit/b0c6665bb6a3d4b1e9d5bc176149f63ca2bd8542)) +- **gallery:** add component ([#815](https://github.com/core-ds/core-components/issues/815)) ([7ffd20e](https://github.com/core-ds/core-components/commit/7ffd20e2d007f658223d29aa943639c13ad51342)), closes [#774](https://github.com/core-ds/core-components/issues/774) [#795](https://github.com/core-ds/core-components/issues/795) +- **icon-button:** added 'target' attribute, when IconButton is link ([#823](https://github.com/core-ds/core-components/issues/823)) ([b2aab6b](https://github.com/core-ds/core-components/commit/b2aab6be98e01d0e99863f016e08bde384a4ff3c)) +- **icon-button:** Rest props for IconButton from Button ([#805](https://github.com/core-ds/core-components/issues/805)) ([ee4e170](https://github.com/core-ds/core-components/commit/ee4e170b6b59800e283080d36bddfdcfe4b57561)) +- **intl-phone-input:** hide select for countries when one country ([#809](https://github.com/core-ds/core-components/issues/809)) ([bad50af](https://github.com/core-ds/core-components/commit/bad50aff46ab4af5416510944802451873cd08bc)) +- **password-input:** show right addons (PDS-283) ([#828](https://github.com/core-ds/core-components/issues/828)) ([b255acd](https://github.com/core-ds/core-components/commit/b255acdcdbe37b546c6c9100a1645609439af430)) +- **popover:** add useAnchorWidth prop ([#826](https://github.com/core-ds/core-components/issues/826)) ([8df55c4](https://github.com/core-ds/core-components/commit/8df55c4c496467c363c5c09c14d1bd08a9709ebf)), closes [#787](https://github.com/core-ds/core-components/issues/787) +- **select:** controlled open ([#839](https://github.com/core-ds/core-components/issues/839)) ([95d0470](https://github.com/core-ds/core-components/commit/95d0470a86e1a54f4cb4b789bb7e3281a1f0a401)) +- **select:** переход к темизации цвета иконки ([112cd95](https://github.com/core-ds/core-components/commit/112cd95242e27f5065eb2a8349d3afbddfdee638)) +- **themes:** обновлённые темы для calendar-input и select ([5ae76c3](https://github.com/core-ds/core-components/commit/5ae76c314bf33236767056b77969ca7003057532)) +- change error type to ReactNode ([#825](https://github.com/core-ds/core-components/issues/825)) ([c6d95c1](https://github.com/core-ds/core-components/commit/c6d95c1c6239f2b2a3bf2c1639554d8500e794f3)) +- dark themes ([#778](https://github.com/core-ds/core-components/issues/778)) ([d848d16](https://github.com/core-ds/core-components/commit/d848d165b59182e6521d28efc2aadeecebc00d93)) +- **tag:** add inverted colors ([#784](https://github.com/core-ds/core-components/issues/784)) ([d3681ae](https://github.com/core-ds/core-components/commit/d3681aeefe02e5f481d066013911a1877a165bb2)) +- **tooltip:** add TooltipResponsive, add `fallbackPlacements` prop ([#780](https://github.com/core-ds/core-components/issues/780)) ([61d780c](https://github.com/core-ds/core-components/commit/61d780c750bd9c0331d275f1b12b0512bb3d2049)) +- **tooltip:** update shadow and arrow size/position ([2d40988](https://github.com/core-ds/core-components/commit/2d40988f3c376c51907aa8a4845ba25c7c43a2f4)) +- **typography:** add ref ([#834](https://github.com/core-ds/core-components/issues/834)) ([976b16d](https://github.com/core-ds/core-components/commit/976b16dd9ae68c31999bffb3506623db05033ad4)) +- **vars:** updated colors and typography from latest alfa-ui-primitives ([#803](https://github.com/core-ds/core-components/issues/803)) ([0d5b2a3](https://github.com/core-ds/core-components/commit/0d5b2a30a78e70392dd505790a92bc3bc83f9386)) +- add inactive controls (PDS-266) ([#765](https://github.com/core-ds/core-components/issues/765)) ([ec02c89](https://github.com/core-ds/core-components/commit/ec02c89ab6bf038c026ca0a72b3185525334840a)) +- add mods colors ([#770](https://github.com/core-ds/core-components/issues/770)) ([fe985f4](https://github.com/core-ds/core-components/commit/fe985f467b4d47a5152e168d2ab3846872d1a574)) +- custom components for button and link ([#814](https://github.com/core-ds/core-components/issues/814)) ([a623dd0](https://github.com/core-ds/core-components/commit/a623dd021ef611f9994a6587ba6a0d0ee9d8929c)) +- **bottom-sheet:** fix marker gap, fix animation duration ([#750](https://github.com/core-ds/core-components/issues/750)) ([cb04ed8](https://github.com/core-ds/core-components/commit/cb04ed8cc214fac9dba32a0ab39a4399743d5bfc)) +- **confirmation:** fix timer, some loader refactoring ([#754](https://github.com/core-ds/core-components/issues/754)) ([187bb0e](https://github.com/core-ds/core-components/commit/187bb0e72a75c62b117a49917976903257d90bb7)) +- **input:** input mobile theme (PDS-241) ([#737](https://github.com/core-ds/core-components/issues/737)) ([88f6f7c](https://github.com/core-ds/core-components/commit/88f6f7c58968b9564970eaa3d759aa2bc275ca7e)) +- **stepped-progress-bar:** add component ([#747](https://github.com/core-ds/core-components/issues/747)) ([f82e9af](https://github.com/core-ds/core-components/commit/f82e9af075e12e5a34751efc5c7f427283e75c1b)) +- add mobile theme for tag, radio, checkbox (PDS-244/247/248) ([#717](https://github.com/core-ds/core-components/issues/717)) ([36e2d99](https://github.com/core-ds/core-components/commit/36e2d99c716a03e7f319439df9ca47ec43ad4b71)) +- checkbox/radio/switch design updates (PDS-252) ([#735](https://github.com/core-ds/core-components/issues/735)) ([62f3c63](https://github.com/core-ds/core-components/commit/62f3c63279872a80ffb1c018b08addf897597b26)) +- slider input mobile theme (PDS-242) ([#738](https://github.com/core-ds/core-components/issues/738)) ([6e924aa](https://github.com/core-ds/core-components/commit/6e924aa90b63b914b6f5690766e41cddabe18e19)) +- **backdrop:** add component ([948a6c2](https://github.com/core-ds/core-components/commit/948a6c2fb5ec58edb2d087691ce4713d75da6e35)) +- **backdrop:** add component ([2b87958](https://github.com/core-ds/core-components/commit/2b87958e51449645c58bbd02552ce7a908c6bab8)) +- **badge:** add icon color ([d9e9065](https://github.com/core-ds/core-components/commit/d9e906596d157a5e3d7844bbecfb96f64d9f44e1)) +- **badge:** add screenshots ([3bbc8d0](https://github.com/core-ds/core-components/commit/3bbc8d032b0a267e9e6e949af5db6c955e25fb50)) +- **bottom-sheet:** new component (PDS-228) ([#645](https://github.com/core-ds/core-components/issues/645)) ([1f7391d](https://github.com/core-ds/core-components/commit/1f7391df16a270d8a3a28b8ebaf98d0ed0928bc8)), closes [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) +- **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657) +- **button:** add loader minimal display interval ([#634](https://github.com/core-ds/core-components/issues/634)) ([d2f7edc](https://github.com/core-ds/core-components/commit/d2f7edc52c3e43ce3f5db8250446227b869ab731)) +- **button:** experimental active transform (site theme) ([a741e4f](https://github.com/core-ds/core-components/commit/a741e4fb73716902e6a72957e672921c21e7696b)) +- **button:** fix version ([#648](https://github.com/core-ds/core-components/issues/648)) ([ec51599](https://github.com/core-ds/core-components/commit/ec5159910a7fdc103d4f4e8d3d4198db3ffbdcc8)) +- **calendar-input:** toggle calendar on enter ([#618](https://github.com/core-ds/core-components/issues/618)) ([110e836](https://github.com/core-ds/core-components/commit/110e8369dffa9576ec07a517076a11d6ba2e80fa)) +- **calendar-range:** pass props to render calendar in popper ([#702](https://github.com/core-ds/core-components/issues/702)) ([4369e46](https://github.com/core-ds/core-components/commit/4369e462116dc1d240f95f811be67639b10dedb6)) +- **calendar-with-skeleton:** add component ([e940c88](https://github.com/core-ds/core-components/commit/e940c88703a7434e0db4ce0efc27a234455b449c)) +- **collapse:** add ability to change state using prop expanded ([#659](https://github.com/core-ds/core-components/issues/659)) ([809c835](https://github.com/core-ds/core-components/commit/809c8356f6dec0eeb9167bca8483f36bf5845455)) +- **confirmation:** add property for change retry button text ([#720](https://github.com/core-ds/core-components/issues/720)) ([c0f7688](https://github.com/core-ds/core-components/commit/c0f76888cffff8ad4169769bc4615429663352a5)) +- **confirmation:** set up signTitle prop as slot ([#672](https://github.com/core-ds/core-components/issues/672)) ([85e4786](https://github.com/core-ds/core-components/commit/85e47862689f373fd1904495ae7b86d998ad7cec)) +- **confirmation:** styles updates ([#636](https://github.com/core-ds/core-components/issues/636)) ([da00fc5](https://github.com/core-ds/core-components/commit/da00fc5bf80251f5104452ba326711788c2f7240)), closes [#1](https://github.com/core-ds/core-components/issues/1) +- **dark-theme-styles-injector:** add prop for selector ([#709](https://github.com/core-ds/core-components/issues/709)) ([f74cdc7](https://github.com/core-ds/core-components/commit/f74cdc7b312321fcb111f1c64f21714ee403e513)) +- **drawer:** update animtaion ([#643](https://github.com/core-ds/core-components/issues/643)) ([3a3cfc5](https://github.com/core-ds/core-components/commit/3a3cfc5be89908df476f77a35bcf6b9460ecb92a)) +- **dropzone:** add component ([#566](https://github.com/core-ds/core-components/issues/566)) ([693a720](https://github.com/core-ds/core-components/commit/693a720202d78d47e39954edff7b72335904d714)) +- **file-upload-item:** add component ([#571](https://github.com/core-ds/core-components/issues/571)) ([e627350](https://github.com/core-ds/core-components/commit/e627350b3eabfb36aaa67c17411a9b98b551867d)) +- **form-control:** add hidden label instead min-width ([a40ffcf](https://github.com/core-ds/core-components/commit/a40ffcf149282c83a834587a9486bc09b2929f90)) +- **icon-button:** add negative view ([#635](https://github.com/core-ds/core-components/issues/635)) ([7006116](https://github.com/core-ds/core-components/commit/70061167d1e00a786e28c53ebb26e4e174d03311)) +- **input:** pretty webkit autofill ([#660](https://github.com/core-ds/core-components/issues/660)) ([d50e83e](https://github.com/core-ds/core-components/commit/d50e83e627e1641c3634ace505b9abe163ef6530)) +- **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b)) +- **modal:** add layout to footer ([#644](https://github.com/core-ds/core-components/issues/644)) ([eb5a66e](https://github.com/core-ds/core-components/commit/eb5a66ef928df663f4ad0fe048b5d3097b4f4b72)) +- **modal:** fixed position ([#617](https://github.com/core-ds/core-components/issues/617)) ([77db054](https://github.com/core-ds/core-components/commit/77db054b18c1dba6713d9a9d99c95a1ef5c98e8e)) +- **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5)) +- **password-input:** add password input (PDS-233) ([#691](https://github.com/core-ds/core-components/issues/691)) ([d872e4d](https://github.com/core-ds/core-components/commit/d872e4dd18fd5db472864fbc2676749b812da00f)) +- **phone-input:** add 'clearableCountyCode' prop ([#749](https://github.com/core-ds/core-components/issues/749)) ([d110ae7](https://github.com/core-ds/core-components/commit/d110ae76594ccbf7f6d8a5764d3c2a72b1ae9a26)) +- **plate:** update vars ([#668](https://github.com/core-ds/core-components/issues/668)) ([cbecef5](https://github.com/core-ds/core-components/commit/cbecef55e4cfc7231dcaa16b9220cc920547ff18)) +- **select:** add scroll handler ([#756](https://github.com/core-ds/core-components/issues/756)) ([b25351b](https://github.com/core-ds/core-components/commit/b25351b74913244fb131d4aa1bc09900be362258)) +- **select:** add useSelectWithLoading preset ([#693](https://github.com/core-ds/core-components/issues/693)) ([12d542f](https://github.com/core-ds/core-components/commit/12d542f11dddcd022c1ba895e4105115be0b98b2)) +- **select:** dont highlight first option on open ([015a084](https://github.com/core-ds/core-components/commit/015a084be6e5d837b6368afe6ca63a0a4c325435)) +- **select:** label + placeholder ([#535](https://github.com/core-ds/core-components/issues/535)) ([e821c41](https://github.com/core-ds/core-components/commit/e821c41e65d01ad517dab983685506614df0db89)) +- **skeleton:** add display var, change default to block ([#718](https://github.com/core-ds/core-components/issues/718)) ([27aaa60](https://github.com/core-ds/core-components/commit/27aaa605a958d932a52904556ac2fe1dd59356af)) +- **skeleton:** bg animation ([3dac97d](https://github.com/core-ds/core-components/commit/3dac97d18b9c7b2f63f55e2139a1adfb84710b88)) +- **skeleton:** bg animation ([37a52ad](https://github.com/core-ds/core-components/commit/37a52ad3e49f2873aaff86a768599d947a17c754)) +- **slider:** click theme ([15c308a](https://github.com/core-ds/core-components/commit/15c308a50e9fbcd8e40a8681f32aefea5b3d5cf9)) +- **slider-input:** design updates ([#673](https://github.com/core-ds/core-components/issues/673)) ([794e3cc](https://github.com/core-ds/core-components/commit/794e3cc99a3b61ec4faa630469dae7e49a56ee0a)) +- **space:** fix dataTestId ([#625](https://github.com/core-ds/core-components/issues/625)) ([a33ca6b](https://github.com/core-ds/core-components/commit/a33ca6ba791a43252b09c5a6d81dbd206aaec2d7)) +- **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6)) +- **tag:** adjusted colors ([#667](https://github.com/core-ds/core-components/issues/667)) ([ded4ac4](https://github.com/core-ds/core-components/commit/ded4ac4a4e02ee8ec4efdc6d990455caa3ab94bb)) +- **textarea:** add value counter ([#695](https://github.com/core-ds/core-components/issues/695)) ([cbc6bd3](https://github.com/core-ds/core-components/commit/cbc6bd3eaa48e3df2791d23e156c7c664d67ff49)) +- **themes:** confirmation mobile theme ([a85233c](https://github.com/core-ds/core-components/commit/a85233c1e859e933e1c51997678c8a8c6134e353)) +- **tooltip:** add hint view ([#688](https://github.com/core-ds/core-components/issues/688)) ([9f03cd5](https://github.com/core-ds/core-components/commit/9f03cd5956dd8b17025ee9947a10bc059a339846)) +- **tooltip:** add target ref property ([#755](https://github.com/core-ds/core-components/issues/755)) ([9aa962d](https://github.com/core-ds/core-components/commit/9aa962d8b280e8d6af8ac4324a78b4bdebbfc536)) +- **typography:** add rest props ([#682](https://github.com/core-ds/core-components/issues/682)) ([51e1cf8](https://github.com/core-ds/core-components/commit/51e1cf89028c788bfcdbc21ea16acbbe190b5db9)) +- **typography:** monospaceNumbers prop (PDS-255) ([#697](https://github.com/core-ds/core-components/issues/697)) ([42d16a6](https://github.com/core-ds/core-components/commit/42d16a62f6d0781eba44dc1e0b76b28cae37d89a)) +- **vars:** add border-radius-xs ([a4bd8ff](https://github.com/core-ds/core-components/commit/a4bd8ff44d9ed7cf68ca2b0994ab61a80ed358e2)) +- upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696)) ([bf8350e](https://github.com/core-ds/core-components/commit/bf8350ebfd238b6c63ac30545ac32ca933f498d6)), closes [#708](https://github.com/core-ds/core-components/issues/708) [#707](https://github.com/core-ds/core-components/issues/707) [#714](https://github.com/core-ds/core-components/issues/714) [#716](https://github.com/core-ds/core-components/issues/716) [#690](https://github.com/core-ds/core-components/issues/690) [#701](https://github.com/core-ds/core-components/issues/701) [#699](https://github.com/core-ds/core-components/issues/699) [#698](https://github.com/core-ds/core-components/issues/698) [#693](https://github.com/core-ds/core-components/issues/693) [#699](https://github.com/core-ds/core-components/issues/699) [#698](https://github.com/core-ds/core-components/issues/698) [#693](https://github.com/core-ds/core-components/issues/693) [#705](https://github.com/core-ds/core-components/issues/705) [#705](https://github.com/core-ds/core-components/issues/705) [#709](https://github.com/core-ds/core-components/issues/709) [#703](https://github.com/core-ds/core-components/issues/703) [#695](https://github.com/core-ds/core-components/issues/695) [#673](https://github.com/core-ds/core-components/issues/673) [#703](https://github.com/core-ds/core-components/issues/703) [#709](https://github.com/core-ds/core-components/issues/709) [#673](https://github.com/core-ds/core-components/issues/673) [#695](https://github.com/core-ds/core-components/issues/695) [#645](https://github.com/core-ds/core-components/issues/645) [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) [#712](https://github.com/core-ds/core-components/issues/712) [#713](https://github.com/core-ds/core-components/issues/713) [#719](https://github.com/core-ds/core-components/issues/719) [#720](https://github.com/core-ds/core-components/issues/720) [#718](https://github.com/core-ds/core-components/issues/718) [#712](https://github.com/core-ds/core-components/issues/712) [#713](https://github.com/core-ds/core-components/issues/713) [#719](https://github.com/core-ds/core-components/issues/719) [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) [#720](https://github.com/core-ds/core-components/issues/720) [#718](https://github.com/core-ds/core-components/issues/718) [#691](https://github.com/core-ds/core-components/issues/691) [#691](https://github.com/core-ds/core-components/issues/691) [#723](https://github.com/core-ds/core-components/issues/723) [#702](https://github.com/core-ds/core-components/issues/702) [#723](https://github.com/core-ds/core-components/issues/723) [#702](https://github.com/core-ds/core-components/issues/702) [#708](https://github.com/core-ds/core-components/issues/708) [#707](https://github.com/core-ds/core-components/issues/707) [#714](https://github.com/core-ds/core-components/issues/714) [#722](https://github.com/core-ds/core-components/issues/722) +- **alert:** add component ([#548](https://github.com/core-ds/core-components/issues/548)) ([264cbf8](https://github.com/core-ds/core-components/commit/264cbf8f7465d2ecaf043bf0f67530e040fc83f6)) +- **amount-input:** changed size L (72 → 64), added size XL (72) ([a2c0b7c](https://github.com/core-ds/core-components/commit/a2c0b7ce6c208183897064cd6235d69445e3afe5)) +- **badge:** reinvented icon view, visibleIconOutline prop ([#499](https://github.com/core-ds/core-components/issues/499)) ([bad9140](https://github.com/core-ds/core-components/commit/bad91400cb72edcd0878f7a07188e928d4bf3281)) +- **button:** add rel='noopener noreferrer' if target='blank' ([#522](https://github.com/core-ds/core-components/issues/522)) ([a1da871](https://github.com/core-ds/core-components/commit/a1da87118a32195ba844c239f5a0f73e164faa6f)) +- **button:** changed size L (72 → 64), added size XL (72) ([051d964](https://github.com/core-ds/core-components/commit/051d964e83fd7af3703c82facf75345eca66915b)) +- **button:** updated button colors and themes ([#500](https://github.com/core-ds/core-components/issues/500)) ([b34f12d](https://github.com/core-ds/core-components/commit/b34f12db8cebc53641a642de9164075d0ed2dacf)) +- **button:** updated xs button font-weight ([#599](https://github.com/core-ds/core-components/issues/599)) ([b05a554](https://github.com/core-ds/core-components/commit/b05a5547c97afba0d66489eca83a7a04d6c24283)) +- **calendar-input:** remove input width ([#576](https://github.com/core-ds/core-components/issues/576)) ([f0954b0](https://github.com/core-ds/core-components/commit/f0954b0724ead52ea0a60ab8baebd5dfa3638a01)) +- **calendar-range:** allow to select one-day range ([#491](https://github.com/core-ds/core-components/issues/491)) ([7fe56eb](https://github.com/core-ds/core-components/commit/7fe56eb7128146127b9b0732a945f11ee08980f3)) +- **cdn-icon:** add component ([#494](https://github.com/core-ds/core-components/issues/494)) ([a6df885](https://github.com/core-ds/core-components/commit/a6df885077c1c4a5ae76d110f6f5f6e369236182)) +- **confirmation:** add noAttemptsLeftMessage prop ([7dc0e02](https://github.com/core-ds/core-components/commit/7dc0e02074443fd68c13aa0ac54bd966e8968ffc)) +- **confirmation:** always show sms come link ([0a14a54](https://github.com/core-ds/core-components/commit/0a14a54b177ee72ccf8cd8b057ea48db0168c1fb)) +- **confirmation:** confirmation design updates ([69f26e4](https://github.com/core-ds/core-components/commit/69f26e415a195d863686076941b6a3f15f3d1d15)) +- **confirmation:** fix text ([40d4d6b](https://github.com/core-ds/core-components/commit/40d4d6b2261b2e0db79bc160266cc207a1ca3858)) +- **drawer:** add component ([#497](https://github.com/core-ds/core-components/issues/497)) ([5943188](https://github.com/core-ds/core-components/commit/594318886d581e6afca99fcebe9088c222aa3d52)) +- **form-control:** changed size L (72 → 64), added size XL (72) ([4a129f3](https://github.com/core-ds/core-components/commit/4a129f3ca3c80e94489cbc485018e6eb6e542244)) +- **grid:** add component ([#486](https://github.com/core-ds/core-components/issues/486)) ([96bd0f3](https://github.com/core-ds/core-components/commit/96bd0f34047fa4c8a877c75a60cc39f839f20b84)) +- **icon-button:** add component ([#505](https://github.com/core-ds/core-components/issues/505)) ([da8ba6e](https://github.com/core-ds/core-components/commit/da8ba6e4473da87d8043713a592368d500cd284f)) +- **icon-button:** inverted theme ([#550](https://github.com/core-ds/core-components/issues/550)) ([98c3691](https://github.com/core-ds/core-components/commit/98c36919f682041278aa31753f1d18be95358df1)) +- **input:** changed size L (72 → 64), added size XL (72) ([79699e3](https://github.com/core-ds/core-components/commit/79699e34d28075809e537b73911875ff5fc2d406)) +- **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917)) +- **intl-phone-input:** add onCountryChange handler ([#539](https://github.com/core-ds/core-components/issues/539)) ([f8c0cd6](https://github.com/core-ds/core-components/commit/f8c0cd618ced23bbb49a81cfee07c1f45ee20427)) +- **intl-phone-input:** changed size L (72 → 64), added size XL (72) ([9077b7f](https://github.com/core-ds/core-components/commit/9077b7f454035cdc7be611d526a5f9642ae4d76d)) +- **link:** set rel='noopener noreferrer' if target='\_blank' ([#520](https://github.com/core-ds/core-components/issues/520)) ([08c556e](https://github.com/core-ds/core-components/commit/08c556ecc0944d121b23566ae54319a1a33899ba)), closes [#519](https://github.com/core-ds/core-components/issues/519) +- **modal:** reinvent modal ([#489](https://github.com/core-ds/core-components/issues/489)) ([06cb8ba](https://github.com/core-ds/core-components/commit/06cb8ba7f7a09445c04ab2a9871a86c1abf4a79c)) +- **mq:** change mobile-s to mobile-xs ([9abf5ba](https://github.com/core-ds/core-components/commit/9abf5bada45287a786610dd6cce7cc047d779012)) +- **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b)) +- **phone-input:** changed size L (72 → 64), added size XL (72) ([13257c5](https://github.com/core-ds/core-components/commit/13257c54543b2f1a870527093df11c532143dab9)) +- **popover:** change animation, add scale ([2e48a02](https://github.com/core-ds/core-components/commit/2e48a02a8f3f7ff9a6df48cf4e6337a8928f67c7)) +- **pure-input:** changed size L (72 → 64), added size XL (72) ([af4cfb5](https://github.com/core-ds/core-components/commit/af4cfb515a25c6dcae32a7e2a0730fe4f9e6e791)) +- **select:** add options-list width ([#578](https://github.com/core-ds/core-components/issues/578)) ([6f1c12b](https://github.com/core-ds/core-components/commit/6f1c12b9196d3ebf87e1ea3e0610f73b8832b771)) +- **select:** add optionsSize ([#577](https://github.com/core-ds/core-components/issues/577)) ([12f3b43](https://github.com/core-ds/core-components/commit/12f3b4342a3dada9db97eb80839a3d7adb9e3747)) +- **select:** add visible-options ([#506](https://github.com/core-ds/core-components/issues/506)) ([0154866](https://github.com/core-ds/core-components/commit/0154866bb8fc8308945d32f115b3ab1e46f98db6)) +- **select:** changed size L (72 → 64), added size XL (72) ([af5dc6a](https://github.com/core-ds/core-components/commit/af5dc6a4f5b52f45bc97f4cc16633aca499aa67a)) +- **select-with-tags:** added collapsed tag list ([#511](https://github.com/core-ds/core-components/issues/511)) ([fe1d551](https://github.com/core-ds/core-components/commit/fe1d551385e9122c205bbe7a679f02a6eb376569)) +- **select-with-tags:** changed size L (72 → 64), added size XL (72) ([523b96f](https://github.com/core-ds/core-components/commit/523b96fa79bc12972ec6ac748105ba20906ba236)) +- **select-with-tags:** design review fixes ([#472](https://github.com/core-ds/core-components/issues/472)) ([0ff989f](https://github.com/core-ds/core-components/commit/0ff989fa09e482a5e9bda1d64bf5eed9241fc451)) +- **skeleton:** updated default theme, click theme ([#549](https://github.com/core-ds/core-components/issues/549)) ([9bf9259](https://github.com/core-ds/core-components/commit/9bf9259d4d1efd73067ea548cdfaf3007b0f8839)) +- **slider-input:** changed size L (72 → 64), added size XL (72) ([f5fda56](https://github.com/core-ds/core-components/commit/f5fda569e0e73a06850914c1e494024a3aaab12c)) +- **status:** add component ([#546](https://github.com/core-ds/core-components/issues/546)) ([52a1f0b](https://github.com/core-ds/core-components/commit/52a1f0bd8578fe34d1c214b93a363e7b76621c17)) +- **tabs:** changed size L (72 → 64), added size XL (72) ([2043939](https://github.com/core-ds/core-components/commit/2043939c5ecdb03c9b84379a3cce21c6f6047530)) +- **tabs:** disabled view ([#513](https://github.com/core-ds/core-components/issues/513)) ([8bdb1a7](https://github.com/core-ds/core-components/commit/8bdb1a789f720c6ccd98ebed3f0ae3c84dbbf52e)) +- **tag:** changed size L (72 → 64), added size XL (72) ([ea43560](https://github.com/core-ds/core-components/commit/ea435601abb79b3bde9e34d60616239e2a0ef6bc)) +- **textarea:** changed size L (72 → 64), added size XL (72) ([175e360](https://github.com/core-ds/core-components/commit/175e360d5acb4eb146c81020fd65dc725588edee)) +- **themes:** list click theme ([#528](https://github.com/core-ds/core-components/issues/528)) ([e54ad60](https://github.com/core-ds/core-components/commit/e54ad605a9f873b06e0fe984bc87bcbb810a2541)) +- **themes:** updated click theme for tabs ([0a4c17e](https://github.com/core-ds/core-components/commit/0a4c17e5628f959d72e0ee6044ca56bd3c890d92)) +- **toast:** remove extra prop ([6a8167a](https://github.com/core-ds/core-components/commit/6a8167a6685a290efc30ac9fc285ddc4b62bd1fe)) +- **toast:** review fixes ([50fea1d](https://github.com/core-ds/core-components/commit/50fea1d764a2b99b66a1212fa56c98958e34f147)) +- **toast:** update popover ([9961bc8](https://github.com/core-ds/core-components/commit/9961bc8a15428c4417af9df9585d8fc55b6a154c)) +- **toast-plate:** add action button theming, fix addons align ([#514](https://github.com/core-ds/core-components/issues/514)) ([20a7c67](https://github.com/core-ds/core-components/commit/20a7c67e89e4b6d3d90a9f1da2eb1b428c8ebf73)) +- **tooltip:** add wrapper around children component ([#587](https://github.com/core-ds/core-components/issues/587)) ([a2ecbb6](https://github.com/core-ds/core-components/commit/a2ecbb67bd517b583284ec0b8365de9e58e753ed)) +- **vars:** 2px gap ([#544](https://github.com/core-ds/core-components/issues/544)) ([e401782](https://github.com/core-ds/core-components/commit/e40178290a02c45bd9ea23ab0deffabd74a69276)) +- **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe)) +- **vars:** fresh colors from alfa-ui-primitives ([2051a0c](https://github.com/core-ds/core-components/commit/2051a0ce3caee3c1a70f36e8c84e575bcd528bab)) +- **vars:** introducing border-radius vars ([1a6fb28](https://github.com/core-ds/core-components/commit/1a6fb287bcfab50048c3a9100645b4dee8cd3395)) +- improve read-only behaviour (PDS-200) ([#502](https://github.com/core-ds/core-components/issues/502)) ([3b3c5e6](https://github.com/core-ds/core-components/commit/3b3c5e664a829351f09f97d742311396dd0c98c6)) +- size vars (xs/s/m/l/xl → 32/48/56/64/72) ([d7254d2](https://github.com/core-ds/core-components/commit/d7254d2963106663e8f04b84bc747b38e4f57632)) +- **with-suffix:** xl size ([d2bb796](https://github.com/core-ds/core-components/commit/d2bb7967b6756f8b06b3484c7900ef7637b1c777)) +- updated design tokens ([#516](https://github.com/core-ds/core-components/issues/516)) ([ef66b65](https://github.com/core-ds/core-components/commit/ef66b65bb35b2ef06292b8da709ccc335eb44735)) +- yet another fixes ([6ecd273](https://github.com/core-ds/core-components/commit/6ecd273b8900e9559e1b8a54a95d1874b4c4a7a3)) +- **amount-input:** added integerLength prop ([881af44](https://github.com/core-ds/core-components/commit/881af44b1823560d522ac07a7359cc6c5739ba0e)) +- **amount-input:** delete zero minor part in passed amount ([#484](https://github.com/core-ds/core-components/issues/484)) ([b787cb1](https://github.com/core-ds/core-components/commit/b787cb1ea1a56bc022470a644e4029bba623b151)) +- **button:** add conditions ([5f034f3](https://github.com/core-ds/core-components/commit/5f034f382fcb1dc1304c9c0b9ccdcff765c5c7fd)) +- **button:** add css to button ([34b23ed](https://github.com/core-ds/core-components/commit/34b23ed2885a39f00928c3df0e485d1966fe6ec0)) +- **button:** design review fixes ([e8f5faf](https://github.com/core-ds/core-components/commit/e8f5faf42b2ea98eff7d5914076a1916008b13b9)) +- **button:** transparent view ([e395049](https://github.com/core-ds/core-components/commit/e39504987bf7c3afb01fc78151bff182199d08cb)) +- **button:** update snapshorts ([29c36ac](https://github.com/core-ds/core-components/commit/29c36ac278407a04be7726996bf50f54c150ba97)) +- **button:** updated addons margin, use gaps ([514fb86](https://github.com/core-ds/core-components/commit/514fb863e41956be7f4888e03a886ab7d35029b1)) +- **calendar:** add component ([#376](https://github.com/core-ds/core-components/issues/376)) ([2994d02](https://github.com/core-ds/core-components/commit/2994d02b49ad172d601f0fc63f89dea20896fd7d)), closes [#2](https://github.com/core-ds/core-components/issues/2) [#2](https://github.com/core-ds/core-components/issues/2) [#413](https://github.com/core-ds/core-components/issues/413) +- **calendar:** add scrolling to selected year when open year select ([#471](https://github.com/core-ds/core-components/issues/471)) ([bf295ab](https://github.com/core-ds/core-components/commit/bf295ab281c80df550cd38d04e86f934e822f3eb)) +- **calendar-range:** add component ([#426](https://github.com/core-ds/core-components/issues/426)) ([7bf76d9](https://github.com/core-ds/core-components/commit/7bf76d9528ffae9b69bf6fdebf8a27e198393eaa)) +- **checkbox:** improved theming ([cb1d196](https://github.com/core-ds/core-components/commit/cb1d196ade34622d5b92fc0ec5c20af5f5e27d3c)) +- **checkbox:** size m ([9fdbf2b](https://github.com/core-ds/core-components/commit/9fdbf2ba938a5ef336020c17041ceaa6c524f1b0)) +- **collapse:** add component ([eea2a52](https://github.com/core-ds/core-components/commit/eea2a52de14dbada541735b7684090aee17a2bcd)) +- **collapse:** codestyle fixes ([74b780a](https://github.com/core-ds/core-components/commit/74b780a51fc0fb80b810e2e621fc08a1e0ca2dc6)) +- **collapse:** codestyle fixes again ([1cd37b7](https://github.com/core-ds/core-components/commit/1cd37b7894cc3b71dc29359c297ba15b261dea08)) +- **collapse:** fix icon ([5f64a69](https://github.com/core-ds/core-components/commit/5f64a69838d2e6803e0d744ce5b3699eefb600f8)) +- **collapse:** fixes ([81d48d0](https://github.com/core-ds/core-components/commit/81d48d0674be40241f781487df47c5fff6ad9658)) +- **collapse:** forgotten ref ([3a256fb](https://github.com/core-ds/core-components/commit/3a256fb74380b70bca89c9f491836caf5078e9cb)) +- **core-components-amount:** add click theme ([b4b0699](https://github.com/core-ds/core-components/commit/b4b0699dcffd2f505935489d66fd0d48b633ecf7)) +- **core-components-amount:** export CurrencyCodes ([1a6155a](https://github.com/core-ds/core-components/commit/1a6155a63655084895831094127404cdbcb0ef54)) +- **core-components-amount-input:** add forward ref ([5471887](https://github.com/core-ds/core-components/commit/5471887361dcb1383ae695f69cc13c201d713607)) +- **core-components-attach:** add Attach component ([#235](https://github.com/core-ds/core-components/issues/235)) ([71aa41c](https://github.com/core-ds/core-components/commit/71aa41c9383c09ae227a1df84585f5f760de350e)), closes [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) +- **core-components-badge:** add component ([#330](https://github.com/core-ds/core-components/issues/330)) ([eb1c617](https://github.com/core-ds/core-components/commit/eb1c617ed03366060f7a60a9bd13396159cfce72)), closes [#327](https://github.com/core-ds/core-components/issues/327) +- **core-components-bank-card:** add component draft ([#208](https://github.com/core-ds/core-components/issues/208)) ([93943b7](https://github.com/core-ds/core-components/commit/93943b7861d8c95ca365bc7545a87d493a793f1e)) +- **core-components-bank-card:** change caret color ([1b69839](https://github.com/core-ds/core-components/commit/1b698399bbcb3afaea80e81f0cbfa9d3d13074ff)) +- **core-components-button:** added nowrap ([#365](https://github.com/core-ds/core-components/issues/365)) ([99a87eb](https://github.com/core-ds/core-components/commit/99a87ebd4c97e325b7724b70991b00ca121601da)) +- **core-components-button:** button themes (click, corp, mobile) ([cf658c3](https://github.com/core-ds/core-components/commit/cf658c388bb0cbf06517b04b4c24f8e5715d8cbe)) +- **core-components-card-image:** add cardImage component ([#326](https://github.com/core-ds/core-components/issues/326)) ([06901af](https://github.com/core-ds/core-components/commit/06901af839f48e5051fc6195446687b756420fc7)) +- **core-components-confirmation:** add confirmation ([#230](https://github.com/core-ds/core-components/issues/230)) ([7a494ba](https://github.com/core-ds/core-components/commit/7a494bafb18af572babb18e7a4fa9a15c2fe6a30)) +- **core-components-confirmation:** fixes ([#311](https://github.com/core-ds/core-components/issues/311)) ([e56a137](https://github.com/core-ds/core-components/commit/e56a137a62e78e56ac63f3d701660fc8a7c5658a)) +- **core-components-confirmation:** separate error and error text ([#329](https://github.com/core-ds/core-components/issues/329)) ([03fc4fb](https://github.com/core-ds/core-components/commit/03fc4fb85fd9f5636493fdf6d79440227c8a0be0)) +- **core-components-fade:** add fade ([459d2c0](https://github.com/core-ds/core-components/commit/459d2c0111f0ab9a3fd6a22c46ed27cbcd1df6e0)) +- **core-components-form-control:** add addons classname ([707cd54](https://github.com/core-ds/core-components/commit/707cd547b2b695cb7585c996efcb8c070b789038)) +- **core-components-form-control:** change l-size height ([c87f908](https://github.com/core-ds/core-components/commit/c87f908fe8174e9d0e976153daac1e46e3a252bd)) +- **core-components-form-control:** set opactiy in disabled state ([#342](https://github.com/core-ds/core-components/issues/342)) ([586a8d1](https://github.com/core-ds/core-components/commit/586a8d15f1be9fe6ceea62ac2231c7ecb1125b7e)) +- **core-components-input:** add addons classname ([9f40cdc](https://github.com/core-ds/core-components/commit/9f40cdc2a79feea9b5b3d5cdb411676f0ff05f35)) +- **core-components-input:** add clear button, some improvements ([4f9a453](https://github.com/core-ds/core-components/commit/4f9a4537db28404281415c4354408386bc4c4021)) +- **core-components-input:** add css-var for clear button icon ([637286c](https://github.com/core-ds/core-components/commit/637286ca68bf9b25653298b4315c97bb145a2089)) +- **core-components-input:** add filled and focused classNames ([ebaac73](https://github.com/core-ds/core-components/commit/ebaac73103caf4601e8df7302af14f79f8a096d1)) +- **core-components-input:** add input wrapper ref ([9c1fba0](https://github.com/core-ds/core-components/commit/9c1fba07c233206eab0defe6e4341fdb0c8b3664)) +- **core-components-input:** add labelClassName ([8494b21](https://github.com/core-ds/core-components/commit/8494b21f3f2027a1439823c4e1237cb9add5cab9)) +- **core-components-input:** add ref tests ([9ed193c](https://github.com/core-ds/core-components/commit/9ed193c1f5f0f4a22a276877893e6d5de4c4a2a0)) +- **core-components-input:** hide clear if input is readonly ([#328](https://github.com/core-ds/core-components/issues/328)) ([93f7ba4](https://github.com/core-ds/core-components/commit/93f7ba429fb8e8f430d3dfadefe8375d6ea2e642)) +- **core-components-input:** update type ([9ab3733](https://github.com/core-ds/core-components/commit/9ab373369c5b692bd3632d43ef1afda7d9ffc63e)) +- **core-components-input:** updated input click theme ([#315](https://github.com/core-ds/core-components/issues/315)) ([69e6f81](https://github.com/core-ds/core-components/commit/69e6f81cc85fac5f5c988e2e409b82ad25ef8a6f)) +- **core-components-intl-phone-input:** add component ([#333](https://github.com/core-ds/core-components/issues/333)) ([4d7c71d](https://github.com/core-ds/core-components/commit/4d7c71d3ace0d44ba1045ab4d2774575e1db65f9)), closes [#336](https://github.com/core-ds/core-components/issues/336) [#334](https://github.com/core-ds/core-components/issues/334) +- **core-components-keyboard-focusable:** add component and hook ([#215](https://github.com/core-ds/core-components/issues/215)) ([f777f72](https://github.com/core-ds/core-components/commit/f777f729e9c880d15b79f58ae9a8f1d5fa6662b1)) +- **core-components-link:** add slots ([#337](https://github.com/core-ds/core-components/issues/337)) ([86f0886](https://github.com/core-ds/core-components/commit/86f0886129f9119a74a5a054232726f871c1634e)) +- **core-components-link:** updated colors and click theme ([573c785](https://github.com/core-ds/core-components/commit/573c78516a41194c9c802eb3ecfdbe7653730311)) +- **core-components-list:** adds a new component ([#296](https://github.com/core-ds/core-components/issues/296)) ([7d5a93d](https://github.com/core-ds/core-components/commit/7d5a93d8318a71d61da91c0bf1a2f88896242fee)) +- **core-components-list-header:** add component ([#344](https://github.com/core-ds/core-components/issues/344)) ([cce69f3](https://github.com/core-ds/core-components/commit/cce69f30d1671d4344e0a85f62516e1f7a1f9266)) +- **core-components-modal:** add modal ([2a71f1b](https://github.com/core-ds/core-components/commit/2a71f1bb2296306df359c9f051fbef44ca0abe6b)) +- **core-components-mq:** add component and hook ([#350](https://github.com/core-ds/core-components/issues/350)) ([6dbd11f](https://github.com/core-ds/core-components/commit/6dbd11f4e3dc369dd645638f46f49b4e0e6c13e6)) +- **core-components-notification:** add component ([#357](https://github.com/core-ds/core-components/issues/357)) ([c6644a0](https://github.com/core-ds/core-components/commit/c6644a018b97dfc68e327bcbcff2edae802921be)), closes [#351](https://github.com/core-ds/core-components/issues/351) +- **core-components-phone-input:** add phone-input ([#192](https://github.com/core-ds/core-components/issues/192)) ([42cedbf](https://github.com/core-ds/core-components/commit/42cedbf9583f1c836cb0825789b0d4b47fbbdddd)) +- **core-components-phone-input:** remove optional chaining ([#222](https://github.com/core-ds/core-components/issues/222)) ([d8a9ca2](https://github.com/core-ds/core-components/commit/d8a9ca2f004bb8bd1df31a5499ead7d7c28e0d80)) +- **core-components-plate:** add component ([62e18bf](https://github.com/core-ds/core-components/commit/62e18bf581651bca66a74c0d02b945522b452b4a)), closes [#340](https://github.com/core-ds/core-components/issues/340) +- **core-components-popover:** add classname for tooltip popover ([c837199](https://github.com/core-ds/core-components/commit/c837199eda8890806388f87a32d61cc88a4165dd)) +- **core-components-progress-bar:** add progress bar component ([39ee713](https://github.com/core-ds/core-components/commit/39ee713522f67f2744fc2f6b4fcb2ac861a55f41)) +- **core-components-pure-input:** change l-size height ([5287559](https://github.com/core-ds/core-components/commit/5287559cbc7a3beac54047884174b26c21cdf453)) +- **core-components-radio:** add radio component ([#183](https://github.com/core-ds/core-components/issues/183)) ([858c81b](https://github.com/core-ds/core-components/commit/858c81b7b3e6bef27b39e719bbecfe1d32f92d19)) +- **core-components-select:** add dataTestId ([83c5dd5](https://github.com/core-ds/core-components/commit/83c5dd5cf8b551a6dcc6c319a6ae69d32113ab34)) +- **core-components-select:** add missing changes ([053b512](https://github.com/core-ds/core-components/commit/053b512382028863c1bb2aa7c6c1e8296cbc29c4)) +- **core-components-select:** inputs & types ([#323](https://github.com/core-ds/core-components/issues/323)) ([0f4d547](https://github.com/core-ds/core-components/commit/0f4d547c3a5792e095de2011db2c6c1e9dbfb386)) +- **core-components-select:** show error icon and arrow both ([#299](https://github.com/core-ds/core-components/issues/299)) ([b563989](https://github.com/core-ds/core-components/commit/b563989a57bf64a9450915d0d0d73687f5358d06)) +- **core-components-skeleton:** adds a new component ([11e6ce9](https://github.com/core-ds/core-components/commit/11e6ce94c8bca6f5b91a9c04c2f750ec232aea23)) +- **core-components-skeleton:** changes styles ([379a8d9](https://github.com/core-ds/core-components/commit/379a8d971ce074242de47972382a78697038864d)) +- **core-components-slider:** add component ([#285](https://github.com/core-ds/core-components/issues/285)) ([57a645e](https://github.com/core-ds/core-components/commit/57a645e735af3218b77c92ce8a66b7efc64f53ad)) +- **core-components-slider-input:** add component ([#288](https://github.com/core-ds/core-components/issues/288)) ([901df73](https://github.com/core-ds/core-components/commit/901df73692bf019a06db7d6d056f2cb6ee9e5f8d)), closes [#294](https://github.com/core-ds/core-components/issues/294) +- **core-components-slider-input:** update stories ([d6a2937](https://github.com/core-ds/core-components/commit/d6a29370739d15427c961b58c553d22c9df87799)) +- **core-components-spinner:** add spinner component ([#360](https://github.com/core-ds/core-components/issues/360)) ([8c6e453](https://github.com/core-ds/core-components/commit/8c6e45341b0ac6232e2fc89ed6860bb8ccbc371c)) +- **core-components-tabs:** add tabs ([#149](https://github.com/core-ds/core-components/issues/149)) ([b08b668](https://github.com/core-ds/core-components/commit/b08b66861fd7c068a1db7e32d3d697ad13acbd6f)), closes [#175](https://github.com/core-ds/core-components/issues/175) [#200](https://github.com/core-ds/core-components/issues/200) +- **core-components-tabs:** addons and container class name ([#361](https://github.com/core-ds/core-components/issues/361)) ([68f1322](https://github.com/core-ds/core-components/commit/68f1322436a5d083a3a98a4405b1d94540e0b8dc)) +- **core-components-tabs:** remove gaps, add sizes ([da7d435](https://github.com/core-ds/core-components/commit/da7d4350b9fb46e8765ec65cf483c7aadab134c3)) +- **core-components-tag:** add click theme ([eeb2400](https://github.com/core-ds/core-components/commit/eeb24000b0f75d48a4780fe069a4698867006b8b)) +- **core-components-tag:** min-width for tags ([fce5ce3](https://github.com/core-ds/core-components/commit/fce5ce382e9b25190504ff3de3a5479527024afa)) +- **core-components-textarea:** add Textarea component ([#221](https://github.com/core-ds/core-components/issues/221)) ([a23b731](https://github.com/core-ds/core-components/commit/a23b73192a7ad3601ea3745f8ac2fdbfaf34346b)), closes [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) +- **core-components-textarea:** change l-size height ([f314bf6](https://github.com/core-ds/core-components/commit/f314bf63b9d1f5d539c53e310ede11c2a8cdd8c7)) +- **core-components-themes:** add tabs click theme ([0ffbc3f](https://github.com/core-ds/core-components/commit/0ffbc3f9d1edbdb13549957a7174871e365e0f40)) +- **core-components-themes:** add tabs site theme, improve plugin ([da5d9ec](https://github.com/core-ds/core-components/commit/da5d9ec07f16b328c15ebebbb55498e25ff866b1)) +- **core-components-themes:** add theming example ([aba4c8a](https://github.com/core-ds/core-components/commit/aba4c8a98a3f577dd89b5e8cf3a2ccfc54b2f16e)) +- **core-components-tooltip:** updated font size and popover shadow ([e0d54b1](https://github.com/core-ds/core-components/commit/e0d54b18ffaa632e52750f30bc6b2b3d710011ca)) +- **core-components-trap-focus:** add trap-focus ([a5be636](https://github.com/core-ds/core-components/commit/a5be6367b5a1683dae00a13dea1ab5bc103083cc)) +- **core-components-typography:** add responsive title ([#362](https://github.com/core-ds/core-components/issues/362)) ([d3af0cd](https://github.com/core-ds/core-components/commit/d3af0cd52bcdbf92a1716e993104360acafcdc61)) +- **core-components-vars:** add breakpoints ([#358](https://github.com/core-ds/core-components/issues/358)) ([9cd5699](https://github.com/core-ds/core-components/commit/9cd569915b4af8c3d92045aea23b2faa054ba241)) +- **core-components-vars:** add new typography styles ([#211](https://github.com/core-ds/core-components/issues/211)) ([7df831f](https://github.com/core-ds/core-components/commit/7df831f396525bec0c57264606a44abd2417a78c)) +- **core-components-vars:** introducing shadows vars ([defc486](https://github.com/core-ds/core-components/commit/defc486204d46ed5b431555b1fe8226dee2046c4)) +- **core-components-vars:** introducing shadows vars ([8ff8aba](https://github.com/core-ds/core-components/commit/8ff8aba0301a20ac652078f9df3f85f79a121ef6)) +- **core-components-vars:** update primitives ([#291](https://github.com/core-ds/core-components/issues/291)) ([d995190](https://github.com/core-ds/core-components/commit/d9951902b1d9325e7e7a88e302d23eafd2705643)) +- **core-components-vars:** updated colors addons ([5206618](https://github.com/core-ds/core-components/commit/5206618ffa8ad9a441120b871e8950196ed6540f)) +- **core-components-with-suffix:** add hoc ([7055c98](https://github.com/core-ds/core-components/commit/7055c98ca5c1c6dda33323522c5168bc6657850b)) +- **core-components-with-suffix:** add hoc ([#301](https://github.com/core-ds/core-components/issues/301)) ([df9b797](https://github.com/core-ds/core-components/commit/df9b79781d3f831360a71dbc0816f795b95e288f)) +- **input-autocomplete:** dont close popover on input click ([#445](https://github.com/core-ds/core-components/issues/445)) ([5b49e54](https://github.com/core-ds/core-components/commit/5b49e542d3e4433024152ba6099d3992a4fc66e3)) +- **input-autocomplete:** revert arrow ([07f0ef4](https://github.com/core-ds/core-components/commit/07f0ef45a7cdd27132861932c7fa93ab0c00a024)) +- **link:** simplify link without addons, fixes [#406](https://github.com/core-ds/core-components/issues/406) ([37288e4](https://github.com/core-ds/core-components/commit/37288e45eb529fcabdf9dc79e0cd04ba015a7d4e)) +- **loader:** updated loader animation ([ec6b50c](https://github.com/core-ds/core-components/commit/ec6b50cf7942d93c89c4c5d0d8e98b3a96ab3509)) +- **modal:** hide ([9d02eba](https://github.com/core-ds/core-components/commit/9d02eba13214038b483dc43d696f38328a95c597)) +- **notification:** move inner content to toast ([8b7a4e9](https://github.com/core-ds/core-components/commit/8b7a4e932a7ac684edc62d2039263d0b9183ff0a)) +- **picker-button:** add compoonent PickerButton ([e14b73d](https://github.com/core-ds/core-components/commit/e14b73db302acd401010b9fd227e33de10eca9fc)) +- **picker-button:** simplify picker-button using colorless icons ([bd0bdba](https://github.com/core-ds/core-components/commit/bd0bdbaa8425bca05b209d7680c9ecadb65235e1)) +- **popover:** fix transition ([f8564bc](https://github.com/core-ds/core-components/commit/f8564bceace99104b521fc92d037f7ef9c635f91)) +- **popover:** prevent flip ([#398](https://github.com/core-ds/core-components/issues/398)) ([c0c1723](https://github.com/core-ds/core-components/commit/c0c1723f15af7b8f09330bc5ce3ea549ea30afa1)) +- **radio:** add addons ([7923354](https://github.com/core-ds/core-components/commit/7923354468ded0a2ea4602c7dae0eb722871c1f1)) +- **radio:** add align ([fe9faec](https://github.com/core-ds/core-components/commit/fe9faecb74b2528f5a2e18f1707dffa28ec29f7d)) +- **radio:** addons, align, block for Checkbox ([78c6f37](https://github.com/core-ds/core-components/commit/78c6f37ef7cb828ac4e8b54bd6edc9d9d4a151ab)) +- **radio:** addons, align, block for Switch ([df81ef9](https://github.com/core-ds/core-components/commit/df81ef9a6ad1c560c43d08741ba0e134a4658af3)) +- **radio:** fix reversed addons of switch ([30721a9](https://github.com/core-ds/core-components/commit/30721a9ee525aca73e9a73565755607b3abcfba3)) +- **radio:** fixes ([12128fb](https://github.com/core-ds/core-components/commit/12128fb8db85c27d0309ef806ef46673f4abbddc)) +- **radio:** fullWidth -> block ([97e0cf6](https://github.com/core-ds/core-components/commit/97e0cf65b0cc9a7dc60ec99ee16d4028a2c724cc)) +- **radio:** improved theming ([3dcb532](https://github.com/core-ds/core-components/commit/3dcb532b8b6d9a4e610a56b557a54f6c68e6ce46)) +- **radio:** lil fixy ([7e8103a](https://github.com/core-ds/core-components/commit/7e8103a863194f0c5115b586aaddd0ba89f75469)) +- **radio:** size m ([c8dfb66](https://github.com/core-ds/core-components/commit/c8dfb66f5a5b3ab5b904edc57ac88ec6003b02ba)) +- **select:** add empty list placeholder prop ([#438](https://github.com/core-ds/core-components/issues/438)) ([75b0c9c](https://github.com/core-ds/core-components/commit/75b0c9c7824b0fcb6d4ae3e238d2eb858d615808)) +- **select:** add exporting select utils ([#436](https://github.com/core-ds/core-components/issues/436)) ([0499ae9](https://github.com/core-ds/core-components/commit/0499ae9f36731d6b25a4f2501c1c760afdb8a687)) +- **select:** allow to use options as selected value ([#393](https://github.com/core-ds/core-components/issues/393)) ([a16f47a](https://github.com/core-ds/core-components/commit/a16f47ac6dd8f10c02a6ea38ec09963fab6f3942)) +- **select:** change arrow icon ([6335973](https://github.com/core-ds/core-components/commit/63359734754308eeca217526d2f4f652f78fc79d)) +- **select:** change optionslist shadow styles ([#397](https://github.com/core-ds/core-components/issues/397)) ([d13c1f8](https://github.com/core-ds/core-components/commit/d13c1f8eacd7a51152a065b5ed358515a3044c18)) +- **select:** popoverPosition, render to body, test issues ([#428](https://github.com/core-ds/core-components/issues/428)) ([7688ec7](https://github.com/core-ds/core-components/commit/7688ec74bce41dac4fff6fd36a61723f7ce1b9d3)), closes [#429](https://github.com/core-ds/core-components/issues/429) +- **select-with-tags:** add select with tags ([#435](https://github.com/core-ds/core-components/issues/435)) ([bc42165](https://github.com/core-ds/core-components/commit/bc42165b73e2c50455534c5c7f7aec4a5d155f75)) +- **slider-input:** use numeric mobile keyboard ([a866dab](https://github.com/core-ds/core-components/commit/a866dabf667f53e62733bd173f16b14c158e2368)) +- **space:** codestyle ([36994db](https://github.com/core-ds/core-components/commit/36994db62086c32f4f583454e880bff915721193)) +- **space:** codestyle ([fc6d760](https://github.com/core-ds/core-components/commit/fc6d7604be3803cf6499dc7d2f034922a7858524)) +- **space:** first Space tests ([9434b91](https://github.com/core-ds/core-components/commit/9434b910f20737b58194c006a4d4d47fb931767f)) +- **space:** just add Space component ([945a456](https://github.com/core-ds/core-components/commit/945a45635e6a90f295c27a61dac9ec08676669c3)) +- **space:** lil fixes ([b9c588a](https://github.com/core-ds/core-components/commit/b9c588ab97e95e01d9962296d453b9bb2f712126)) +- **space:** remove label and more knobs ([e2af148](https://github.com/core-ds/core-components/commit/e2af148d1dc603495e2d6eb559502c6f363aa7f0)) +- **space:** remove label and more knobs 2 ([b85b459](https://github.com/core-ds/core-components/commit/b85b4595303c2ac2e2516db17b562d08da833204)) +- **space:** version ([f262441](https://github.com/core-ds/core-components/commit/f26244139550d96cc2503c60173d0bae7e9dbea5)) +- **switch:** improved theming ([b4ecc39](https://github.com/core-ds/core-components/commit/b4ecc399c706e1de7086e255e57219e3907414e0)) +- **themes:** add button ghost inverted theme ([dd71bbf](https://github.com/core-ds/core-components/commit/dd71bbf94ba3f7cc3502f1ff4f60dad4b023ff9e)) +- **themes:** add dark theme mixins ([#420](https://github.com/core-ds/core-components/issues/420)) ([6cfd317](https://github.com/core-ds/core-components/commit/6cfd31795e937e33cd37262b85057f3e977a900c)) +- **themes:** arrow transform var with click theme ([35d4ef2](https://github.com/core-ds/core-components/commit/35d4ef2db379391c58919445e161c2234b1b16a9)) +- **themes:** fixed click theme for tag ([c0b4fad](https://github.com/core-ds/core-components/commit/c0b4fada71b1f44b5aead6e3a2b51dcccaacb0c4)) +- **themes:** updated button mobile theme ([ebdf5a1](https://github.com/core-ds/core-components/commit/ebdf5a14b912bffcefe087b95d62d4a35531e09f)) +- **themes:** updated tabs border colors ([5a41d86](https://github.com/core-ds/core-components/commit/5a41d86b23fd961e0e7b8a214906363551ae0e41)) +- **themes:** updates ([86bd76f](https://github.com/core-ds/core-components/commit/86bd76fa1cb204b274c0092a5fcc0d984d3f57a1)) +- **toast:** add draft component ([d04fbb3](https://github.com/core-ds/core-components/commit/d04fbb315adda99553f87f5d8e477ff60314a070)) +- **toast:** add new component ([09de8b0](https://github.com/core-ds/core-components/commit/09de8b0ad2684b047d129929506a83127b2ccf99)) +- **toast:** add portal ([439148d](https://github.com/core-ds/core-components/commit/439148d04d950f21b0d7186c1cbc4e681f305d63)) +- **toast:** add stop, start timers ([b28ea98](https://github.com/core-ds/core-components/commit/b28ea982cec94eb9c0a50250d51cf173d0bc0a02)) +- **toast:** fix linter error ([e994512](https://github.com/core-ds/core-components/commit/e9945125a90935e205aee8e4a6bb8b762e352d25)) +- **toast:** fix linter problems ([e8342e8](https://github.com/core-ds/core-components/commit/e8342e89353b6f1a3935473c46a1694b2186561e)) +- **toast:** some fixes ([fe95b5d](https://github.com/core-ds/core-components/commit/fe95b5d8930698ab6d37ab6dd15497af056ac4ee)) +- **toast:** updates ([896ac02](https://github.com/core-ds/core-components/commit/896ac02f251d6b45698bdb35c08eb6131141080a)) +- **toast:** updates ([24cc308](https://github.com/core-ds/core-components/commit/24cc3089a04e7f86ca929192405b71209ed3ebe7)) +- **toast-plate:** change close button position to absolute ([2f9161d](https://github.com/core-ds/core-components/commit/2f9161d8b23647485df7759c1f5a4bbf0c113925)) +- **toast-plate:** design review fixes ([55b58fd](https://github.com/core-ds/core-components/commit/55b58fd1713c89bed3da74ede15487021477545d)) +- **toast-plate:** fix ([4e378ec](https://github.com/core-ds/core-components/commit/4e378ec7cd9901807458ff1c1a09c0cbf3c41401)) +- **toast-plate:** updates ([2303335](https://github.com/core-ds/core-components/commit/230333560732c11cff2c850db41112c398e6ab76)) +- add fieldClassName ([#467](https://github.com/core-ds/core-components/issues/467)) ([8847c5a](https://github.com/core-ds/core-components/commit/8847c5a83187b97ab8f83b0149965a1d3825f89f)) +- add stylelint-core-vars ([#461](https://github.com/core-ds/core-components/issues/461)) ([c2f515e](https://github.com/core-ds/core-components/commit/c2f515e46a590815df66321ae8da011f5b2f24db)) +- **toast-plate:** fix styles ([b600f86](https://github.com/core-ds/core-components/commit/b600f860b37c039f8a4272a9f27aa5689643b614)) +- **toast-plate:** fix styles ([14af3b4](https://github.com/core-ds/core-components/commit/14af3b49fe8803cec870cd946e3835f3b92cd3e8)) +- change form-control styles ([#444](https://github.com/core-ds/core-components/issues/444)) ([2e464a8](https://github.com/core-ds/core-components/commit/2e464a87fba7ae6b60e0f58796f8663c3e456239)) +- read-only state ([#459](https://github.com/core-ds/core-components/issues/459)) ([ed087c7](https://github.com/core-ds/core-components/commit/ed087c7f0440cb7ebdeb2883a3c3998c3c48fa30)) +- **typography:** add default margins ([#446](https://github.com/core-ds/core-components/issues/446)) ([fb98d10](https://github.com/core-ds/core-components/commit/fb98d101651abfb7126dac3a7dee7226972f6a62)) +- **vars:** fresh tokens ([48f2591](https://github.com/core-ds/core-components/commit/48f2591d030e7852fbd239e7d91e4c4c2bed6468)) +- **vars:** new reverse shadows ([6c18699](https://github.com/core-ds/core-components/commit/6c18699b02044e1ba38561d0fcded98d89c67339)) +- add inverted theme for link & button ([#405](https://github.com/core-ds/core-components/issues/405)) ([a3ccf39](https://github.com/core-ds/core-components/commit/a3ccf394369af6d5b0f8c8dd5d64a4b18eeb2155)) +- add styrene font-face ([9dfc8da](https://github.com/core-ds/core-components/commit/9dfc8da61e322e4f7fe915bc63614270cf5f6dd4)) +- add update popover position prop ([#401](https://github.com/core-ds/core-components/issues/401)) ([5588870](https://github.com/core-ds/core-components/commit/5588870b663ba6547bf80853487da4620b2f74d6)) +- adds semantic-release ([1d419e0](https://github.com/core-ds/core-components/commit/1d419e05f1d37db4f7cb04a602e80a894023a23a)) +- icons & arrow ([#356](https://github.com/core-ds/core-components/issues/356)) ([e263356](https://github.com/core-ds/core-components/commit/e263356b7fd1537ae5c434ddc9c5cb074a2e7ab8)) +- improve theme switcher ([#386](https://github.com/core-ds/core-components/issues/386)) ([9c5c4ec](https://github.com/core-ds/core-components/commit/9c5c4ec79e0940f54a76c83bd7017649a0f17093)) +- remove extra vars, update docs ([#370](https://github.com/core-ds/core-components/issues/370)) ([af1b133](https://github.com/core-ds/core-components/commit/af1b1339e768e59a2377409bf164cc8c439bd3bf)) +- use disabled-cursor ([#399](https://github.com/core-ds/core-components/issues/399)) ([ba5ba74](https://github.com/core-ds/core-components/commit/ba5ba7492f2daf4974941130466dcffd3976662b)) +- **themes:** experimental click theme for checkbox/radio/switch ([f5b2263](https://github.com/core-ds/core-components/commit/f5b22636af4b68b12b42158737e11af59e714848)) +- **themes:** updated click theme for tabs size m ([56dd5b6](https://github.com/core-ds/core-components/commit/56dd5b6530085de0a1dc6fc7be6cb78825c438f4)) +- set system font by default in storybook ([c40ab25](https://github.com/core-ds/core-components/commit/c40ab256af022f4688d079c62e895cb4b8a6e69f)) +- update theming docs ([2ceba6d](https://github.com/core-ds/core-components/commit/2ceba6d577857ef0821ea01ee3dd0ec9ddd98fda)) +- add comments to bash ([6149931](https://github.com/core-ds/core-components/commit/61499310c0f928077b887e19621fc50989bac9dc)) +- add demo script ([b5d1c00](https://github.com/core-ds/core-components/commit/b5d1c000e049568768fb6dc018bb8c89a23a8b73)) +- add masked-input ([#76](https://github.com/core-ds/core-components/issues/76)) ([d5c4ba5](https://github.com/core-ds/core-components/commit/d5c4ba51e6ba1e255345a2b570ee54d3c3dfcf5f)) +- delete postInstall ([fd30ef9](https://github.com/core-ds/core-components/commit/fd30ef9eba4e06d81b52e3668d4d38ac2e2ed5ea)) +- fix eslint ([c4f5261](https://github.com/core-ds/core-components/commit/c4f5261ec4ed63f285e0cb7dc0bdbc17e94dc38d)) +- lint fix ([f64c8b9](https://github.com/core-ds/core-components/commit/f64c8b94c801b92b77ab321d3f5990d070e56ca4)) +- modify config for storybook ([c81ad6e](https://github.com/core-ds/core-components/commit/c81ad6e225324c38052fd8aae37001be0ef5c756)) +- post storybook url to PR after push ([#39](https://github.com/core-ds/core-components/issues/39)) ([9acc8ab](https://github.com/core-ds/core-components/commit/9acc8abaff1e48c6a62872b803340212b67ae237)) +- publishing ([bc584e2](https://github.com/core-ds/core-components/commit/bc584e224e17e29fd7178ea096a500264e286685)) +- setup tests ([3e722bd](https://github.com/core-ds/core-components/commit/3e722bda2da14460cbf14cadefafe52b84a2fb76)) +- update demo script ([46d600c](https://github.com/core-ds/core-components/commit/46d600cea9eea44b0372b95d73fca7c4e4d3d404)) +- update dependencies ([a27310a](https://github.com/core-ds/core-components/commit/a27310a23532fad6c719775d35a3032b13432f2c)) +- use custom css-modules naming ([7eacdab](https://github.com/core-ds/core-components/commit/7eacdab49c905486c00fafc19abe38d018765ce8)) +- **base-input:** add base-input ([55ecad6](https://github.com/core-ds/core-components/commit/55ecad6b33f44c6ea3fdd548138d8809f1cc97d8)) +- **button:** add types. add forwardRef ([bd86206](https://github.com/core-ds/core-components/commit/bd86206310cbf3cec2215ccdd81158aa036fadfc)) +- **button:** fixed story ([4811af8](https://github.com/core-ds/core-components/commit/4811af87c8ef9f8f37be6d1dad10621f6698d394)) +- **button:** href prop, updated types & styles ([8745e44](https://github.com/core-ds/core-components/commit/8745e4463deaad04f954bf3d4ae0eca66ddfa99a)) +- **button:** improved button theming ([0d2a255](https://github.com/core-ds/core-components/commit/0d2a2553aafbc34090dbc37edcb2291e0c8f09a6)) +- **button:** keyboard-only focus ([#102](https://github.com/core-ds/core-components/issues/102)) ([739d240](https://github.com/core-ds/core-components/commit/739d240ab3d06b5a232b8c863f54ea888f2f635a)), closes [#125](https://github.com/core-ds/core-components/issues/125) +- **button:** updated button styles ([643429d](https://github.com/core-ds/core-components/commit/643429df73fb0b5d96975de2b4b9020c42e99416)) +- **core-components-amount:** add boilerplate for amount ([5614885](https://github.com/core-ds/core-components/commit/5614885237a9a4843fb312c22c6b5810a3509e63)) +- **core-components-amount:** allow withZeroMinorPart formatting ([e86529d](https://github.com/core-ds/core-components/commit/e86529d72e28e8cde8bffbfd4b4d263129ec4d78)) +- **core-components-amount:** feat, change api, add PureAmount ([f946776](https://github.com/core-ds/core-components/commit/f94677645a8244dedf6f003f901290d5a2c6c16d)) +- **core-components-amount:** implemented amount, add demo ([1e78129](https://github.com/core-ds/core-components/commit/1e781295de03ff4aac5f5a7ec761f22b529716bd)) +- **core-components-button:** add loading state ([5c0a75a](https://github.com/core-ds/core-components/commit/5c0a75a3cae3232ce52be5cd800644c2030abb3b)) +- **core-components-button:** fix button types ([#138](https://github.com/core-ds/core-components/issues/138)) ([6af3a2c](https://github.com/core-ds/core-components/commit/6af3a2c099c52d94fbb91663facfb3d5c79a8492)) +- **core-components-form-control:** add FormControl component ([#127](https://github.com/core-ds/core-components/issues/127)) ([1ea79d1](https://github.com/core-ds/core-components/commit/1ea79d1fc565c2073483a7480893958efff25dff)) +- **core-components-form-control:** allow to hide error icon in theme ([c19a73c](https://github.com/core-ds/core-components/commit/c19a73c676e359f2ecba8b21a53f671b725ec032)) +- **core-components-form-control:** change errors logic ([#150](https://github.com/core-ds/core-components/issues/150)) ([1c0e494](https://github.com/core-ds/core-components/commit/1c0e49489fb59dce68504223744efd290c38d214)) +- **core-components-link:** add new component ([#142](https://github.com/core-ds/core-components/issues/142)) ([33e11eb](https://github.com/core-ds/core-components/commit/33e11eb403fb7d8231e00cf55adf116b914aef3b)) +- **core-components-loader:** add new component ([24f0c35](https://github.com/core-ds/core-components/commit/24f0c3538d79059ee64468ab6c7e372eb5647f76)) +- **core-components-money-input:** add money-input, story, base test ([aab595a](https://github.com/core-ds/core-components/commit/aab595a0e3d705335b7abe7539364206f20806fc)) +- **core-components-money-input:** added smart default placeholder ([dff6e63](https://github.com/core-ds/core-components/commit/dff6e63bd1ed72a1fab9c50a3f3d982da49e531b)) +- **core-components-money-input:** change minority color ([e35b06a](https://github.com/core-ds/core-components/commit/e35b06a74bb43663a8b44fe7d3486b7a7d81af2d)) +- **core-components-money-input:** fix demo according PR comments ([15f339d](https://github.com/core-ds/core-components/commit/15f339d83d8606c82b3a6cc4deeba350bab9f785)) +- **core-components-money-input:** fixes according review comments ([3ba9e0b](https://github.com/core-ds/core-components/commit/3ba9e0b5a653e58898e9f5a72b37a3eaea2fa2da)) +- **core-components-money-input:** fixes according review comments ([0b0c285](https://github.com/core-ds/core-components/commit/0b0c285b40df3e80cf28167c410ddc25b2f405c9)) +- **core-components-money-input:** remove composed props from MoneyInput ([3d3f5b8](https://github.com/core-ds/core-components/commit/3d3f5b83b25990ab56826c5c39e74aa346672f44)) +- **core-components-money-input:** tune to latest requirements ([62fcaf4](https://github.com/core-ds/core-components/commit/62fcaf4038d866271178289e6338e8bc1c01c50e)) +- **core-components-popover:** can render without Transition ([#130](https://github.com/core-ds/core-components/issues/130)) ([2569a32](https://github.com/core-ds/core-components/commit/2569a32994e8de57c4a4a5bce853f706183af749)) +- **core-components-vars:** update alfa-ui-primitives and build colors ([#153](https://github.com/core-ds/core-components/issues/153)) ([007e2d6](https://github.com/core-ds/core-components/commit/007e2d67d5e22e830ca353de3d7ea690b82af73f)) +- **divider:** add divider ([0e4199c](https://github.com/core-ds/core-components/commit/0e4199c6d5b23438442393ef9a8f05594bc39a70)) +- **input:** add new default input ([2314b3b](https://github.com/core-ds/core-components/commit/2314b3b6f47e7b4ebfb3718927ecd593d33b2e1b)) +- **inputs:** icons & addons improvements ([e0abeba](https://github.com/core-ds/core-components/commit/e0abeba1772f8f0c12d01ca9ef5482d80a4e59cc)) +- **inputs:** improve components, update styles & props ([98ff5dd](https://github.com/core-ds/core-components/commit/98ff5dda37e4b55ff5f4bd7c8c9bb80791625935)) +- **inputs:** some refactor. add events & props ([27f5bba](https://github.com/core-ds/core-components/commit/27f5bba60e65181ad848a0628b72711f08377653)) +- **lint:** add lint ([3bd5492](https://github.com/core-ds/core-components/commit/3bd5492bba179083cb26aa99c295a43f8e3be037)) +- **portal:** add new portal component ([#75](https://github.com/core-ds/core-components/issues/75)) ([80d5499](https://github.com/core-ds/core-components/commit/80d5499edfc75c6c382feb3fa638c844c54edd11)) +- **select:** add select component ([#118](https://github.com/core-ds/core-components/issues/118)) ([8892bd9](https://github.com/core-ds/core-components/commit/8892bd94a6be3ad8ba1e609545becadc8be54b47)) +- **stories:** move to mdx stories ([#104](https://github.com/core-ds/core-components/issues/104)) ([40d6aff](https://github.com/core-ds/core-components/commit/40d6aff309e93dd7072c325c6752f067670fb263)) +- **storybook:** add @storybook/addon-docs. update stories ([1e66461](https://github.com/core-ds/core-components/commit/1e66461164ac48252a305477a78ab49356a12343)) +- **storybook:** add theme switcher to storybook ([#199](https://github.com/core-ds/core-components/issues/199)) ([7794f80](https://github.com/core-ds/core-components/commit/7794f80dc83cba171ffe7282e54d5ce0f4bd8245)) +- **switch:** add new component ([4e23acd](https://github.com/core-ds/core-components/commit/4e23acd4d05db21930d137de72e55fc9732332d3)) +- **tag:** add new component Tag ([1101b57](https://github.com/core-ds/core-components/commit/1101b5792eda538b2c508ff6ace7294c0544d1f0)) +- **tag:** remove pointer-events none style ([#224](https://github.com/core-ds/core-components/issues/224)) ([dcaec57](https://github.com/core-ds/core-components/commit/dcaec5712f31cc094f4cacda0a3146e0564d86b3)) +- **themes:** add themes structure ([#108](https://github.com/core-ds/core-components/issues/108)) ([eb05b6d](https://github.com/core-ds/core-components/commit/eb05b6df0d56c76f39ebdcf6a1a6de079c3aa63b)) +- **typography:** add tools for mixin building ([e995924](https://github.com/core-ds/core-components/commit/e99592428c15573e9097a6457dd33361f5a75e85)) +- **typography:** update tokens & scripts. rebuild ([91c7c76](https://github.com/core-ds/core-components/commit/91c7c769d9623cc38f9b44a38d3a027f9fed7136)) +- **vars:** add index.css ([#90](https://github.com/core-ds/core-components/issues/90)) ([d9f3af1](https://github.com/core-ds/core-components/commit/d9f3af1521187d406271fed448dc4af498beb39e)) +- **vars:** add negative gaps ([#99](https://github.com/core-ds/core-components/issues/99)) ([5dc2cf4](https://github.com/core-ds/core-components/commit/5dc2cf404558d705411f248b353aa4841a508799)) + +### Bug Fixes + +- lock and docs ([#6](https://github.com/core-ds/core-components/issues/6)) ([54baf93](https://github.com/core-ds/core-components/commit/54baf93a7263a64a011d2be09bdc64762eae50b6)) +- fix ui-primitives ([#1](https://github.com/core-ds/core-components/issues/1)) ([4af3400](https://github.com/core-ds/core-components/commit/4af34004a28a8098e9d1348e313a8a5612a489c2)) +- **amount-input:** позволяем использовать строки, не рисуем 0 если передана пустая строка ([#941](https://github.com/core-ds/core-components/issues/941)) ([51c954f](https://github.com/core-ds/core-components/commit/51c954f238e7dbdbdbbd517e81e0e944f880ded6)) +- **attach:** always clear input ([#1038](https://github.com/core-ds/core-components/issues/1038)) ([f3e85f2](https://github.com/core-ds/core-components/commit/f3e85f299c4e42253d0354cdd61e005d9fe927f0)) +- **bottom-sheet:** fix bottom-sheet swipeable marker ([#1044](https://github.com/core-ds/core-components/issues/1044)) ([0734e55](https://github.com/core-ds/core-components/commit/0734e55cc0e394fb33452f875ffcf47819277aee)) +- **bottom-sheet:** fix double calling onClose fn ([#962](https://github.com/core-ds/core-components/issues/962)) ([feda2a4](https://github.com/core-ds/core-components/commit/feda2a4c8d3a4f40a1ab9c40eb21f5359e4fa538)) +- **bottom-sheet:** fix prop headerClassName ([#1057](https://github.com/core-ds/core-components/issues/1057)) ([2fb3290](https://github.com/core-ds/core-components/commit/2fb329047fd1ef997082d127d9f26195dbfe57ad)) +- **button:** решение проблемы с тултипом и заблокированной кнопкой ([#920](https://github.com/core-ds/core-components/issues/920)) ([d04f311](https://github.com/core-ds/core-components/commit/d04f31109baf340a4dc7264d3b8ab13109a5a68c)), closes [#799](https://github.com/core-ds/core-components/issues/799) +- **button:** убраны лишние отступы для вида ghost ([#933](https://github.com/core-ds/core-components/issues/933)) ([f43cdf6](https://github.com/core-ds/core-components/commit/f43cdf6afe349d2c7cb0d8436123e63aed347b54)) +- **button:** удален вызов console.warn, если process.env.NODE_ENV !== 'development' ([d3e14ce](https://github.com/core-ds/core-components/commit/d3e14cef7835b5512e4848c5a1048475a8990018)) +- **calendar-range:** correct highlights ([#1002](https://github.com/core-ds/core-components/issues/1002)) ([5c12da2](https://github.com/core-ds/core-components/commit/5c12da2eb72b146b0a5f58447312f96f4b424c48)) +- **cdn-icon:** add className prop ([#957](https://github.com/core-ds/core-components/issues/957)) ([86f2139](https://github.com/core-ds/core-components/commit/86f2139fc56fe1cd2669d05d7953075aa8982e22)) +- **checkbox:** increased checkbox's hint line-height from 18px to 20px ([#1007](https://github.com/core-ds/core-components/issues/1007)) ([c7ee918](https://github.com/core-ds/core-components/commit/c7ee918de443339ac06f82196636dbb48ef8c737)), closes [#969](https://github.com/core-ds/core-components/issues/969) +- **code-input:** code-input-request-animation-frame-fix ([#1014](https://github.com/core-ds/core-components/issues/1014)) ([ad1478e](https://github.com/core-ds/core-components/commit/ad1478ebfd17679e8a2792462c619f525e5b7bb9)) +- **docs:** upd readme ([1b83933](https://github.com/core-ds/core-components/commit/1b839330a9356b2aa2da92b6ba1376bc27c9eee9)) +- **dropzone:** корректный сброс dragCounter ([#944](https://github.com/core-ds/core-components/issues/944)) ([091b4a4](https://github.com/core-ds/core-components/commit/091b4a4b2f42fb0b84581c875a18c14c735eb92b)) +- **file-upload-item:** корректная обрезка контента ([#942](https://github.com/core-ds/core-components/issues/942)) ([5a285f2](https://github.com/core-ds/core-components/commit/5a285f2c1259dab270f52b438203fe7d40c07b29)) +- **filter-tag:** move onClick from btn to div ([#1049](https://github.com/core-ds/core-components/issues/1049)) ([616a90a](https://github.com/core-ds/core-components/commit/616a90af9b0b95de324d3475572d5ac85d3e7a2a)) +- **gallery:** update header button's tooltip position ([#979](https://github.com/core-ds/core-components/issues/979)) ([8e2acfc](https://github.com/core-ds/core-components/commit/8e2acfcb772cf4d8051c185a3f1caaaf507b5bc9)) +- **icon-view:** fix bg-color ([#980](https://github.com/core-ds/core-components/issues/980)) ([2fbad56](https://github.com/core-ds/core-components/commit/2fbad5671d64056a4af81c4fe281a82c415ffeb5)) +- **icon-view:** fix types ([#961](https://github.com/core-ds/core-components/issues/961)) ([74152f3](https://github.com/core-ds/core-components/commit/74152f3bd6d776bebeabea65d5971b57cc486b2e)) +- **input:** компонент иконки для кнопки очистки ([#930](https://github.com/core-ds/core-components/issues/930)) ([37049af](https://github.com/core-ds/core-components/commit/37049af84ed475e1932c91f1907fb604893be7d7)) +- **input-autocomplete:** open list on backspace ([#964](https://github.com/core-ds/core-components/issues/964)) ([4d4f126](https://github.com/core-ds/core-components/commit/4d4f1267a98f05c184267564cd0a2517803bd08b)) +- **loader:** fix animation in IE ([#970](https://github.com/core-ds/core-components/issues/970)) ([03df943](https://github.com/core-ds/core-components/commit/03df9438f00bda639aae78aadb940161112a2672)) +- **picker-button:** fixed type of picker-button size prop ([#1006](https://github.com/core-ds/core-components/issues/1006)) ([38b56c1](https://github.com/core-ds/core-components/commit/38b56c11d45410a258e18d411aa0ce12b8a6c7e4)), closes [#986](https://github.com/core-ds/core-components/issues/986) +- **select:** change corp shadow ([#1004](https://github.com/core-ds/core-components/issues/1004)) ([ea664f6](https://github.com/core-ds/core-components/commit/ea664f67ce81b66b31aab348cc0c68085711de8a)) +- **skeleton:** added dataTestId ([18e4af8](https://github.com/core-ds/core-components/commit/18e4af805bd4e49a1a3c303cb3b4d9a3a9dd5751)) +- **themes:** fix build themes mobile & intranet ([#1055](https://github.com/core-ds/core-components/issues/1055)) ([f95f035](https://github.com/core-ds/core-components/commit/f95f035bdeee3071e2f2ebfaa35c0cc10585044b)) +- **themes:** Добавил пропущенные [@imports](https://github.com/imports) из themes/src/default.css ([#1053](https://github.com/core-ds/core-components/issues/1053)) ([06f0427](https://github.com/core-ds/core-components/commit/06f0427e4089db902bb269ab3b31f935921cff9f)), closes [#1052](https://github.com/core-ds/core-components/issues/1052) +- add missing dependency ([#1041](https://github.com/core-ds/core-components/issues/1041)) ([3b06d3a](https://github.com/core-ds/core-components/commit/3b06d3a25f76e401a0146e163f8a61585f3eebf1)) +- fix modal and bottom-sheet dark mode ([#1043](https://github.com/core-ds/core-components/issues/1043)) ([cad36a2](https://github.com/core-ds/core-components/commit/cad36a25b28bfa71296c3dd9dc325eec28b5c241)) +- **intl-phone-input:** design fixes ([#1030](https://github.com/core-ds/core-components/issues/1030)) ([27cfb9b](https://github.com/core-ds/core-components/commit/27cfb9be1cac9f0aac151ae2121c426fb123fb3f)) +- **radio-group:** add missing 'value' attribute to 'input' tag ([#1033](https://github.com/core-ds/core-components/issues/1033)) ([0f9cf0e](https://github.com/core-ds/core-components/commit/0f9cf0ecd74f4764ccd0b2839ba0cdf1b96e75cb)), closes [#1031](https://github.com/core-ds/core-components/issues/1031) +- **select-with-tags:** update tag size to xxs ([#960](https://github.com/core-ds/core-components/issues/960)) ([4234826](https://github.com/core-ds/core-components/commit/4234826e5dedebc1e6555dfba181981eea4db69f)) +- **table:** update styles ([#1036](https://github.com/core-ds/core-components/issues/1036)) ([3fe236d](https://github.com/core-ds/core-components/commit/3fe236dfb584c3e96fc7fb8c499aee3e9e12e64e)) +- changed dropdown component's box shadow styles ([#1010](https://github.com/core-ds/core-components/issues/1010)) ([2f997f5](https://github.com/core-ds/core-components/commit/2f997f5722c89b38a8064924b73c0a8046025aea)) +- imports for glyph icons ([#994](https://github.com/core-ds/core-components/issues/994)) ([8e807f2](https://github.com/core-ds/core-components/commit/8e807f26abf0f942fe8eadbd201caecb297b35dc)) +- move icon from select to picker-button ([#1020](https://github.com/core-ds/core-components/issues/1020)) ([0d23257](https://github.com/core-ds/core-components/commit/0d23257b561329092be551d237389cc06c3d5607)) +- update glyph deps ([#1019](https://github.com/core-ds/core-components/issues/1019)) ([3e910d0](https://github.com/core-ds/core-components/commit/3e910d0801c4c46bcd399163200c1f7bfaba375e)) +- **table:** fix th paddings ([#951](https://github.com/core-ds/core-components/issues/951)) ([2d916c1](https://github.com/core-ds/core-components/commit/2d916c16a388b0949db2d0ae00c852c0acac6d28)) +- **table:** фикс высоты раскрывающейся ячейки ([#946](https://github.com/core-ds/core-components/issues/946)) ([643f9a5](https://github.com/core-ds/core-components/commit/643f9a556748bafc46a5c6f8c458c07770b11b17)) +- **themes:** fix font weight mobile button ([#972](https://github.com/core-ds/core-components/issues/972)) ([447a89d](https://github.com/core-ds/core-components/commit/447a89dde25aa7659d771ae1c722086354323706)) +- **typography:** changed styrene font styles for title responsive ([#1017](https://github.com/core-ds/core-components/issues/1017)) ([540b0b5](https://github.com/core-ds/core-components/commit/540b0b59cf99a4cee0798f50b94e6449be4aa3c6)) +- **vars:** remove unused colors ([#945](https://github.com/core-ds/core-components/issues/945)) ([310a70a](https://github.com/core-ds/core-components/commit/310a70a8be6bff687861d3d643ebc347ecf6cd6d)) +- add missing vars imports ([#931](https://github.com/core-ds/core-components/issues/931)) ([35ba847](https://github.com/core-ds/core-components/commit/35ba847d39924e713166d79ae6d64444131794a1)) +- **picker-button:** wrap field with div ([b51bce8](https://github.com/core-ds/core-components/commit/b51bce85b39583e7bb1107f56c6e64a6f2b96d5c)), closes [#914](https://github.com/core-ds/core-components/issues/914) +- revert 0e8124552206f96149d104f65cff1667e857bf01 ([#916](https://github.com/core-ds/core-components/issues/916)) ([953fbcf](https://github.com/core-ds/core-components/commit/953fbcfec46a40089a5cfde670597315269b05f5)) +- новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([0e81245](https://github.com/core-ds/core-components/commit/0e8124552206f96149d104f65cff1667e857bf01)) +- новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([#917](https://github.com/core-ds/core-components/issues/917)) ([224831f](https://github.com/core-ds/core-components/commit/224831f41ed2de49dc1a228dc081b0629cf274b1)) +- актуализируем @alfalab/utils ([#897](https://github.com/core-ds/core-components/issues/897)) ([30fb88e](https://github.com/core-ds/core-components/commit/30fb88eee36f68cabf80069e5125d911fabde4a5)) +- **bank-card:** improve docs, fix focus bg ([#830](https://github.com/core-ds/core-components/issues/830)) ([1d8171c](https://github.com/core-ds/core-components/commit/1d8171ce5c76831c350fcf636dd48bad2c3db118)) +- **bank-card:** фикс цвета иконки ([#898](https://github.com/core-ds/core-components/issues/898)) ([66c2659](https://github.com/core-ds/core-components/commit/66c265919e7452af324ceabd26813a8be19b4839)) +- **base-modal:** modal scroll ([#820](https://github.com/core-ds/core-components/issues/820)) ([1b2d94a](https://github.com/core-ds/core-components/commit/1b2d94ad45e04145bf1292d749ae2028702dc622)) +- **base-select:** lazy loading ([#831](https://github.com/core-ds/core-components/issues/831)) ([78f2b86](https://github.com/core-ds/core-components/commit/78f2b86221d8af7bf5019104aba743546fc31b45)) +- **calendar-input:** remove popover border in click theme ([7a76759](https://github.com/core-ds/core-components/commit/7a76759ccc5741a03a4c90f97cce6f67255b1c4b)) +- **calendar-input:** update border-radius ([0d06aca](https://github.com/core-ds/core-components/commit/0d06aca7162c85f987c1172ea037b5b3bc66f8c5)) +- **calendar-input:** обновлён в теме click ([da5d960](https://github.com/core-ds/core-components/commit/da5d9607ce80742bd6780a5bad11b07b3617b44c)) +- **calendar-input:** рендер rightAddons, фикс затертых пропсов ([#895](https://github.com/core-ds/core-components/issues/895)) ([1eabd29](https://github.com/core-ds/core-components/commit/1eabd2902cd1bd62517284313f79cf31189cf525)) +- **calendar-range:** fix default month to ([#868](https://github.com/core-ds/core-components/issues/868)) ([1f9fb97](https://github.com/core-ds/core-components/commit/1f9fb9709292d28300c3fc4386ffd858b2efd852)) +- **chart:** fix deps, export types ([b46450a](https://github.com/core-ds/core-components/commit/b46450ae954b10f0138c393482fe1271b001f085)) +- **collapse:** dynamic content height ([#864](https://github.com/core-ds/core-components/issues/864)) ([e96c86b](https://github.com/core-ds/core-components/commit/e96c86bde70d58e4311a2c6bcd6d7407be0f4c44)) +- **custom-button:** fix color variable & component description ([5b9df4d](https://github.com/core-ds/core-components/commit/5b9df4dffa070b8339f0e208c0d14c72ecdb2012)) +- **custom-button:** fix props type ([a1bf943](https://github.com/core-ds/core-components/commit/a1bf94319b8844cbb3fc7d4626d2232357d72f63)) +- **dropzone:** изменение темы клика ([#893](https://github.com/core-ds/core-components/issues/893)) ([cadc6da](https://github.com/core-ds/core-components/commit/cadc6da29896e6a033bac8e91723b20beb404b32)) +- **file-upload-item:** fix description prop ([#836](https://github.com/core-ds/core-components/issues/836)) ([e15cf1d](https://github.com/core-ds/core-components/commit/e15cf1dad438e22ac31984bfcf8531981b88c6de)) +- **input:** clear icon ([51debd4](https://github.com/core-ds/core-components/commit/51debd46ea2176486cfc1945d74e8d56a4b9387b)) +- **intl-phone-input:** fix carret position on backspace ([#840](https://github.com/core-ds/core-components/issues/840)) ([c786ac1](https://github.com/core-ds/core-components/commit/c786ac17bd086833f3200570e812028ec4580554)), closes [#806](https://github.com/core-ds/core-components/issues/806) +- **modal:** add spreading backdrop props ([#870](https://github.com/core-ds/core-components/issues/870)) ([b523426](https://github.com/core-ds/core-components/commit/b52342616adf1f4b227f603264b70474e53c16f8)) +- **notification:** set word-break: break-word in notif ([8f7615d](https://github.com/core-ds/core-components/commit/8f7615d2f497d97c0811868e14bf4ccd51710f31)) +- **notification:** убрал word-break: break-all ([db0d2b2](https://github.com/core-ds/core-components/commit/db0d2b28d12101f1a7bae395cbf17d570b88cc83)) +- **plate:** check is click inside component, popover issue ([bea8a7d](https://github.com/core-ds/core-components/commit/bea8a7dc199d7aced3ec8b5e9ab76568f0cba839)) +- **plate:** активный курсор только для foldable плашек ([#912](https://github.com/core-ds/core-components/issues/912)) ([06a38bd](https://github.com/core-ds/core-components/commit/06a38bd6bd07d016d670e600b373791aabe3d3ea)) +- **radio:** условный рендер подсказки и лейбла ([#892](https://github.com/core-ds/core-components/issues/892)) ([b744c15](https://github.com/core-ds/core-components/commit/b744c159f3779c5bf555041e7762f9653efb7b0e)), closes [#869](https://github.com/core-ds/core-components/issues/869) +- **skeleton:** prevent component unmount ([#887](https://github.com/core-ds/core-components/issues/887)) ([1bd4dc3](https://github.com/core-ds/core-components/commit/1bd4dc3147622f75802dd8e574175dbbf02cca54)) +- **slider-input:** classnames overriding ([#891](https://github.com/core-ds/core-components/issues/891)) ([d63d676](https://github.com/core-ds/core-components/commit/d63d67628c88e54b38244b1f57969844379d311f)) +- bump react-popper ([#847](https://github.com/core-ds/core-components/issues/847)) ([e8d284b](https://github.com/core-ds/core-components/commit/e8d284bfdfb4aa1fa0ea9e11f6e59c117b309782)) +- confirmation & input ([#833](https://github.com/core-ds/core-components/issues/833)) ([f3c0d62](https://github.com/core-ds/core-components/commit/f3c0d62c15b3812205b71685c2d37c0a986677ee)) +- cssm build ([bbc0a47](https://github.com/core-ds/core-components/commit/bbc0a472a0f68a5b239c4734bdce452f1a107ea6)) +- fix classNames hash ([#884](https://github.com/core-ds/core-components/issues/884)) ([60f58f2](https://github.com/core-ds/core-components/commit/60f58f223106869b15f6b19f466a70b0936a5a1d)) +- **tabs:** height styles ([#810](https://github.com/core-ds/core-components/issues/810)) ([b3b96e7](https://github.com/core-ds/core-components/commit/b3b96e7efb4771c0009c29e851ce1d69f4c61ff4)) +- **tabs:** hide native scrollbar on scrollable tabs properly ([0134956](https://github.com/core-ds/core-components/commit/0134956f2af01720500f7ad06caeeb4569e74d50)), closes [#879](https://github.com/core-ds/core-components/issues/879) +- **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7)) +- input & textarea disabled color on safari ([39ea4ef](https://github.com/core-ds/core-components/commit/39ea4ef7e948016a4ffa17c563cfdd13169a3c2b)) +- wrong mobile colors ([#832](https://github.com/core-ds/core-components/issues/832)) ([d9e275b](https://github.com/core-ds/core-components/commit/d9e275b6ac60e635dec4b655bfc859f079cb9840)) +- понижена версия react-hooks, чтобы не дропать 10ую ноду. Пакет перенесен devDeps ([#852](https://github.com/core-ds/core-components/issues/852)) ([662754a](https://github.com/core-ds/core-components/commit/662754a354b2286114fdff16fa0f7a9ccb5b769d)) +- фикс цвета disabled в Safari для Input и Textarea ([efaa693](https://github.com/core-ds/core-components/commit/efaa693c8e34569df05c951c09c89895d4d949dc)) +- **amount-input:** fix float in amount input ([a9e1802](https://github.com/core-ds/core-components/commit/a9e180285073e29a05703a991c946e2c1247177a)) +- **amount-input:** remove caret-color override ([#773](https://github.com/core-ds/core-components/issues/773)) ([93311d0](https://github.com/core-ds/core-components/commit/93311d0a8e170c14c6cbfa28414d2538f78ddd3f)) +- **attach:** fix drag counter & styles ([#786](https://github.com/core-ds/core-components/issues/786)) ([b075725](https://github.com/core-ds/core-components/commit/b0757250ea57a6e5db64a5026315f8837e8a3303)) +- **backdrop:** styles ([82bdfa7](https://github.com/core-ds/core-components/commit/82bdfa7759240755f74bf12906c395d633f464e4)) +- **badge:** fix name ([207d3d3](https://github.com/core-ds/core-components/commit/207d3d30171a84ff4021cd119c0da1316a92d14c)) +- **base-modal:** correct cb ([256a142](https://github.com/core-ds/core-components/commit/256a142398a9ada34386e92d012185763cedef5a)) +- **base-modal:** fix has scroll bug ([#712](https://github.com/core-ds/core-components/issues/712)) ([a6749a1](https://github.com/core-ds/core-components/commit/a6749a149d511b28cc59aaec188d59c380c64243)) +- **base-modal:** restore body styles on unmount ([#671](https://github.com/core-ds/core-components/issues/671)) ([963a6b1](https://github.com/core-ds/core-components/commit/963a6b18b13924a09cda672a662d0b402d00e75b)) +- **base-modal:** resubscribe observer when content node changed ([2fef06e](https://github.com/core-ds/core-components/commit/2fef06eea01354f58663a5f4470606123d31f9d4)) +- **button:** fixed alignment of several buttons in a row ([#561](https://github.com/core-ds/core-components/issues/561)) ([8d9e1e2](https://github.com/core-ds/core-components/commit/8d9e1e2f7a4ba8c5c986bb833f7424b38601d463)) +- **button:** loader position in ie ([#661](https://github.com/core-ds/core-components/issues/661)) ([6f0ddab](https://github.com/core-ds/core-components/commit/6f0ddab3a3e59672f20b0f2239a4de6ba548edb1)) +- **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e)) +- **calendar:** fix min\max ([6bd4944](https://github.com/core-ds/core-components/commit/6bd49447492b10583973cdfc43350cf8f96c1ecb)) +- **calendar:** fix select-button disabled+selected state ([4f54c01](https://github.com/core-ds/core-components/commit/4f54c01451a2532fd377d3590869dfa52c968dcf)) +- **calendar:** ie fixes ([#628](https://github.com/core-ds/core-components/issues/628)) ([983509c](https://github.com/core-ds/core-components/commit/983509cd1cfe5be64a8627fed44ec55d989eb8a2)) +- **calendar:** limit defaultMonth ([636fa5b](https://github.com/core-ds/core-components/commit/636fa5b1363fbdea8516b95ac758aee65b8cffba)) +- **calendar-input:** allow to pass all props via calendarProps ([#653](https://github.com/core-ds/core-components/issues/653)) ([82c4675](https://github.com/core-ds/core-components/commit/82c4675e2f64b282f9d9772825874a6e1854704b)) +- **calendar-input:** call onchange with empty value ([3fbc73a](https://github.com/core-ds/core-components/commit/3fbc73a1d32586161b6fe527f76ca27cd54abebb)) +- **calendar-input:** extends calendarProps type ([8bf4f58](https://github.com/core-ds/core-components/commit/8bf4f587c1a36471318f7cc02968d1de2a125e11)) +- **calendar-input:** z-index increased ([8e0df44](https://github.com/core-ds/core-components/commit/8e0df445a1be317291f2d35e2f4d4afb9d24609c)) +- **calendar-with-skeleton:** ref & six weeks height issues ([#705](https://github.com/core-ds/core-components/issues/705)) ([907ebe1](https://github.com/core-ds/core-components/commit/907ebe18641ee2e7e91fc4622527404c20867a54)) +- **checkbox:** fix layout ([#790](https://github.com/core-ds/core-components/issues/790)) ([8aa18b4](https://github.com/core-ds/core-components/commit/8aa18b48167eeb5df225ff854d3ca337cd43d4f2)) +- **confirmation:** add font feature settings ([#540](https://github.com/core-ds/core-components/issues/540)) ([08057f6](https://github.com/core-ds/core-components/commit/08057f6930e9cd19c0213442a4915e366d26e607)) +- **confirmation:** fix bug with timers ([2bdb105](https://github.com/core-ds/core-components/commit/2bdb10505ebb91713bca0b56e4d10af08cbcd4ed)) +- **dark-theme-styles-injector:** fix rendering passed styles ([#723](https://github.com/core-ds/core-components/issues/723)) ([882841c](https://github.com/core-ds/core-components/commit/882841c1c43d5570652ab3fcc199958060b92c57)) +- **drawer:** backdrop styles ([04da4fa](https://github.com/core-ds/core-components/commit/04da4fac310dbe2634ea4130ead480a88d47ee8e)) +- **drawer:** lost vars ([#632](https://github.com/core-ds/core-components/issues/632)) ([82a8e46](https://github.com/core-ds/core-components/commit/82a8e461fc16d4ae8b6d3d268c92f7dc969e81f8)) +- **dropzone:** add pointer-events none to overlay ([#677](https://github.com/core-ds/core-components/issues/677)) ([5f9077a](https://github.com/core-ds/core-components/commit/5f9077a7c6c88272c7e9e67ec243488249cc5ded)) +- **form-control:** l size offset between value and label (PDS-270) ([#781](https://github.com/core-ds/core-components/issues/781)) ([311f8a0](https://github.com/core-ds/core-components/commit/311f8a0eaa97cf7d0c89d4a3cdfc443aef2d763c)) +- **gaps:** add description ([#562](https://github.com/core-ds/core-components/issues/562)) ([0e0b2d3](https://github.com/core-ds/core-components/commit/0e0b2d3ffa5fe83f3282acf6b3db80c1ddd09b1f)) +- **icon-button:** fix typo in css variable ([#675](https://github.com/core-ds/core-components/issues/675)) ([b227d07](https://github.com/core-ds/core-components/commit/b227d073797f995baf2474a52f4f6df7c6555e91)) +- **input:** autofocus ([#761](https://github.com/core-ds/core-components/issues/761)) ([e2880de](https://github.com/core-ds/core-components/commit/e2880de6cff33b156bea58286bb46e0803e254a5)) +- **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782) +- **input-autocomplete:** popover height with dynamic height options ([da24758](https://github.com/core-ds/core-components/commit/da247589a35ba33742f95fc96ed63b0ba65cdf11)) +- **intl-phone-input:** remove changing unclearable country code ([#730](https://github.com/core-ds/core-components/issues/730)) ([6d219d6](https://github.com/core-ds/core-components/commit/6d219d622e4da60aada0e10d3c442510f597b1b9)) +- **intl-phone-input:** revert fix carret position on backspace ([772dcf5](https://github.com/core-ds/core-components/commit/772dcf588ba2d28ab9b02f81d0bf538bf016cae0)) +- **masked-input:** inline module types ([#692](https://github.com/core-ds/core-components/issues/692)) ([004e60a](https://github.com/core-ds/core-components/commit/004e60ab61f51251b9d65d4d04fd9562eda5e766)) +- **modal:** click theme sticky footer bg ([#641](https://github.com/core-ds/core-components/issues/641)) ([215a155](https://github.com/core-ds/core-components/commit/215a155030d9966508afa1b8ee8059cc422a2765)) +- **modal:** fix styles ([#665](https://github.com/core-ds/core-components/issues/665)) ([06f3615](https://github.com/core-ds/core-components/commit/06f3615c532f8ec2932d8a4d1fcbb1f5ee6b6a30)) +- **modal:** fullscreen & header title styles ([#580](https://github.com/core-ds/core-components/issues/580)) ([39fa494](https://github.com/core-ds/core-components/commit/39fa4940223b6187a391ff6c0b6706ae8a333dc0)) +- **modal:** max-width 100% ([#794](https://github.com/core-ds/core-components/issues/794)) ([793a765](https://github.com/core-ds/core-components/commit/793a765e7d5dc251eee810acde4605e139565906)) +- **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552)) +- **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e)) +- **plate:** alert in plate cascade issue ([#793](https://github.com/core-ds/core-components/issues/793)) ([dbc20e5](https://github.com/core-ds/core-components/commit/dbc20e558f2b6452e70052b5abc3faf8533709d4)) +- **select:** add aria-disabled when disabled ([#662](https://github.com/core-ds/core-components/issues/662)) ([bd93614](https://github.com/core-ds/core-components/commit/bd93614530567515af8e9bee3a7e0e08c8528b4c)) +- **select:** fix hidden label ([#652](https://github.com/core-ds/core-components/issues/652)) ([a5fecfc](https://github.com/core-ds/core-components/commit/a5fecfc16db2a7bad73282706c2c588b235acf8a)) +- **select:** lazy loading select ([#797](https://github.com/core-ds/core-components/issues/797)) ([68b5602](https://github.com/core-ds/core-components/commit/68b560208ff288657aa1698387c617c7c1449a8d)) +- **select:** options list width calc ([5294af7](https://github.com/core-ds/core-components/commit/5294af78ef61b50edde42ed255e66e6ea004c0fd)) +- **select:** recalc height on options changed ([#536](https://github.com/core-ds/core-components/issues/536)) ([4c27c19](https://github.com/core-ds/core-components/commit/4c27c197882256e507ec83678da4811f6285c2fe)) +- **select:** recalc options-list width when open ([#640](https://github.com/core-ds/core-components/issues/640)) ([1a7a3c2](https://github.com/core-ds/core-components/commit/1a7a3c2f596e438686a59999411ef7a437dc00fe)) +- **select:** remove wron prop passed into renderOption method ([#791](https://github.com/core-ds/core-components/issues/791)) ([5231813](https://github.com/core-ds/core-components/commit/523181355ebde537aa802f86c27e867d9261095a)) +- add missing deps ([4f4a540](https://github.com/core-ds/core-components/commit/4f4a54059f141e41e430199b1a2c30fedf62b081)) +- extend hint type to ReactNode ([#792](https://github.com/core-ds/core-components/issues/792)) ([d02784e](https://github.com/core-ds/core-components/commit/d02784e392f5ca3a30ae009109fbb6351967f746)) +- move icon from date input to calendar input ([#768](https://github.com/core-ds/core-components/issues/768)) ([040bd42](https://github.com/core-ds/core-components/commit/040bd423279eb535f1ea924599ee16c296453e3f)) +- select & calendar-input use glyph icons ([#742](https://github.com/core-ds/core-components/issues/742)) ([6b04ae4](https://github.com/core-ds/core-components/commit/6b04ae49fc4f3805ef362dcb68939b72fc99814b)) +- **intl-phone-input:** format input value ([#703](https://github.com/core-ds/core-components/issues/703)) ([b5e91ed](https://github.com/core-ds/core-components/commit/b5e91edf03867f5dc93fab78425f7c1a128afd9b)) +- **modal:** header height & paddings ([#676](https://github.com/core-ds/core-components/issues/676)) ([d8945c6](https://github.com/core-ds/core-components/commit/d8945c6839b059325ad2a90ca4fc6eda2da3b4c2)) +- **modal:** restore styles after exited ([#663](https://github.com/core-ds/core-components/issues/663)) ([48a8d69](https://github.com/core-ds/core-components/commit/48a8d6986dcde6c191d8411d51f28e6f399e26e6)) +- **phone-input:** value prop ([#757](https://github.com/core-ds/core-components/issues/757)) ([3ba0168](https://github.com/core-ds/core-components/commit/3ba01686ffa950bd74d9ab28bfa961c6cf74a5d8)) +- **select:** calc height in effect ([#689](https://github.com/core-ds/core-components/issues/689)) ([83f8745](https://github.com/core-ds/core-components/commit/83f87454bcacfbb3473c688e222af3185daef5a9)) +- **select:** fix checkmark ([#681](https://github.com/core-ds/core-components/issues/681)) ([71a51dc](https://github.com/core-ds/core-components/commit/71a51dc0204165827724fd444d3279f8cc6ccfcd)) +- **select:** fix checkmark position on click theme ([#699](https://github.com/core-ds/core-components/issues/699)) ([0a3bab5](https://github.com/core-ds/core-components/commit/0a3bab52278b4db8f327a8bf5da97cfb5acecc6a)) +- **select:** fix top bottom paddings ([#683](https://github.com/core-ds/core-components/issues/683)) ([866bc3b](https://github.com/core-ds/core-components/commit/866bc3bee9428f0f67f443b3be0ae23342213b0d)) +- **select:** optionsListWidth prop ([#685](https://github.com/core-ds/core-components/issues/685)) ([3b87e73](https://github.com/core-ds/core-components/commit/3b87e73fdba18c0d41883e47fe4c13976988f2e6)) +- **select:** update optgroup styles ([#679](https://github.com/core-ds/core-components/issues/679)) ([63a06ce](https://github.com/core-ds/core-components/commit/63a06ce4776e22f9374fe689b62e949772443fda)) +- **select-with-tags:** changed includes method for IE11 support ([#651](https://github.com/core-ds/core-components/issues/651)) ([254bca3](https://github.com/core-ds/core-components/commit/254bca3df02107dfffc5175f74e35162453c20d0)) +- **skeleton:** remove vars that purge kills ([886d1b2](https://github.com/core-ds/core-components/commit/886d1b24b144d9d277821d3264f71a93c7a1b146)) +- **space:** remove last element margin ([#713](https://github.com/core-ds/core-components/issues/713)) ([bc36cf7](https://github.com/core-ds/core-components/commit/bc36cf7db35cbd7c5d36c178a50bbd27d2f11b0c)) +- **tooltip:** fix bug with controlled state ([#759](https://github.com/core-ds/core-components/issues/759)) ([dd0144e](https://github.com/core-ds/core-components/commit/dd0144e880e0dac6bac1ab9d15832341761993e9)) +- **typography:** add missing weight styles ([#719](https://github.com/core-ds/core-components/issues/719)) ([6b855aa](https://github.com/core-ds/core-components/commit/6b855aa97eff918e0e16f957c4c05bb7f2d8f4fe)) +- update popover versions ([#646](https://github.com/core-ds/core-components/issues/646)) ([199cf80](https://github.com/core-ds/core-components/commit/199cf80cd60e6edf0ac5d41c7eb258ab05d3b534)) +- **select-with-tags:** tag box-sizing issue ([#589](https://github.com/core-ds/core-components/issues/589)) ([9bc9a44](https://github.com/core-ds/core-components/commit/9bc9a4484b1e46372bce5fc16663f3ac05378310)) +- **skeleton:** remove extra bottom margin ([#619](https://github.com/core-ds/core-components/issues/619)) ([8f83022](https://github.com/core-ds/core-components/commit/8f83022c5a89e2f0b63449970437d0ca00129e5d)) +- **toast-plate:** fix children margin ([#583](https://github.com/core-ds/core-components/issues/583)) ([3b2a964](https://github.com/core-ds/core-components/commit/3b2a96408c56a08eb8796c83a344df20bd4ae032)) +- **toast-plate:** fix cross color ([#642](https://github.com/core-ds/core-components/issues/642)) ([96a17fd](https://github.com/core-ds/core-components/commit/96a17fdcd28a37519845d5a0c40809f107e3031f)) +- border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073)) +- fix types importing in root package ([#569](https://github.com/core-ds/core-components/issues/569)) ([bdb362a](https://github.com/core-ds/core-components/commit/bdb362ad7e23b6ffee8a0299ff91a49cad1f66c2)) +- one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc)) +- update plugin ([#627](https://github.com/core-ds/core-components/issues/627)) ([5bb78f2](https://github.com/core-ds/core-components/commit/5bb78f231e525d0f86ec7fb8ccd8af65121c5169)) +- **select:** virtual list wrong height ([8708228](https://github.com/core-ds/core-components/commit/8708228749acdeed0d1dfe4b9538dc22683e7f28)) +- **select-with-tags:** fixed styles ([#543](https://github.com/core-ds/core-components/issues/543)) ([206db51](https://github.com/core-ds/core-components/commit/206db5138c8ba2869c5ac458609928c4753cc83b)) +- **select-with-tags:** missed dot ([c3c98d0](https://github.com/core-ds/core-components/commit/c3c98d0106072a431a616e8420edb01d83ad5fce)) +- **select-with-tags:** remove pointer events from placeholder ([#545](https://github.com/core-ds/core-components/issues/545)) ([41b860b](https://github.com/core-ds/core-components/commit/41b860bd550b71d2025081d76d7c1240258ecaf9)) +- **slider-input:** label + info + error issue ([147bb71](https://github.com/core-ds/core-components/commit/147bb716ab6dc500aaf0923d5442560c743e6b66)) +- **tabs:** fix ssr rendering ([#621](https://github.com/core-ds/core-components/issues/621)) ([e45efe7](https://github.com/core-ds/core-components/commit/e45efe78ff2583b92393e9c271f07fe3718b9d40)) +- **tabs:** fix tabs hidden ([#816](https://github.com/core-ds/core-components/issues/816)) ([68468dd](https://github.com/core-ds/core-components/commit/68468dd6e74a465f2d4bcde87d7852bcaf934783)) +- **tabs:** фикс бага при скрытии табов ([#851](https://github.com/core-ds/core-components/issues/851)) ([5d5dcd9](https://github.com/core-ds/core-components/commit/5d5dcd966fface279921bea5610e9b3af3f2117b)) +- **textarea:** missing vars ([#817](https://github.com/core-ds/core-components/issues/817)) ([d03231f](https://github.com/core-ds/core-components/commit/d03231f24c826f540ecc8c6ddeb2b3e3fec38b6a)) +- radio/checkbox ([#594](https://github.com/core-ds/core-components/issues/594)) ([4c9c13f](https://github.com/core-ds/core-components/commit/4c9c13fdf4ab3db9a6b176aeaba529c9b23f971b)) +- **amount:** fix story ([#463](https://github.com/core-ds/core-components/issues/463)) ([3e1d6c1](https://github.com/core-ds/core-components/commit/3e1d6c178cc7b0305b0f82e79588bf4d1fa40f91)) +- **calendar:** fix years-table position ([#474](https://github.com/core-ds/core-components/issues/474)) ([0f8cfe2](https://github.com/core-ds/core-components/commit/0f8cfe2b7405989f69d4df964bc2df7858c20ac6)) +- **calendar:** fixes ([#498](https://github.com/core-ds/core-components/issues/498)) ([410630e](https://github.com/core-ds/core-components/commit/410630e3cdd093027444207f16a0f942a62b86de)) +- **calendar:** set max date to years calculation ([#441](https://github.com/core-ds/core-components/issues/441)) ([ec9fd36](https://github.com/core-ds/core-components/commit/ec9fd36c278bcb8cca209eb5a15690c5ac0dd3d8)) +- **calendar:** snapshots timezone issue ([#448](https://github.com/core-ds/core-components/issues/448)) ([18f8080](https://github.com/core-ds/core-components/commit/18f80805499a78cec06377472cdf8d0e81b2378d)) +- **calendar:** vars import ([b8cabec](https://github.com/core-ds/core-components/commit/b8cabec5811e2ac0839d05335edee568dc360f54)) +- **calendar-input:** vars import, fix pattern ([f1f9336](https://github.com/core-ds/core-components/commit/f1f9336d7ae5ed62b4ee5123636fe1950bc25f34)) +- **calendar-range:** fix snapshot ([a135dde](https://github.com/core-ds/core-components/commit/a135ddee4ae99c576df85133984a247231fbb786)) +- **divider:** missed vars ([afeb14e](https://github.com/core-ds/core-components/commit/afeb14ea21281d49fdd24a456f4f18aaa6452cc9)) +- **form-control:** ff blink ([490ff25](https://github.com/core-ds/core-components/commit/490ff257eacb61c5d0d7f8861d12e43af9df3a55)) +- **input:** prevent autocomplete to change bgcolor ([#468](https://github.com/core-ds/core-components/issues/468)) ([d00abe3](https://github.com/core-ds/core-components/commit/d00abe396fad28d6e22887cf5878367d9a6997f8)) +- **input:** set aria-label attr when label passed ([#462](https://github.com/core-ds/core-components/issues/462)) ([c8e4489](https://github.com/core-ds/core-components/commit/c8e448929e9f1a63e9391dda4db2b0d3a7d94902)) +- **input-autocomplete:** fix mousedown issue ([#473](https://github.com/core-ds/core-components/issues/473)) ([889d5ff](https://github.com/core-ds/core-components/commit/889d5ffa35a6f2163107b646165dc2ecd2401887)) +- **loader:** fixed animation start ([4df4712](https://github.com/core-ds/core-components/commit/4df47121429793652f9c838ec306072136f75931)) +- **modal:** fix comments issues ([3c5c9e2](https://github.com/core-ds/core-components/commit/3c5c9e2704070a41cc466fd3ea7881ff13ea1edd)) +- **modal:** fix comments issues ([dd8370f](https://github.com/core-ds/core-components/commit/dd8370f79264d29c5de5b5fa558339cf98384486)) +- **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1)) +- **phone-input:** fix caret ([#493](https://github.com/core-ds/core-components/issues/493)) ([b510257](https://github.com/core-ds/core-components/commit/b510257a7793041766a1d7f4f0a8eae61ee69a8d)) +- **picker-button:** fix test ([639fbe6](https://github.com/core-ds/core-components/commit/639fbe69f5771e5ffbff5fe65a5e46d009a6bd7c)) +- **picker-button:** remove global style ([281ed10](https://github.com/core-ds/core-components/commit/281ed10010756c8337cfa1965da2a58e8a1dfe42)) +- **plate:** fixed --arrow-transform var, tuned transition ([#509](https://github.com/core-ds/core-components/issues/509)) ([dd51018](https://github.com/core-ds/core-components/commit/dd510185db28fefb102b287ae5022cf42e8072dc)) +- **portal:** revert "portal related issues" ([407489a](https://github.com/core-ds/core-components/commit/407489a4278f16806900e97fd2af3655e5b8b071)) +- **portal:** revert "update portal" ([d93aeb1](https://github.com/core-ds/core-components/commit/d93aeb1afdbef0c590d1586c7cd0c6d66f89da9b)) +- **select:** fix safari overflow bug ([#492](https://github.com/core-ds/core-components/issues/492)) ([a273dc1](https://github.com/core-ds/core-components/commit/a273dc1372d171b0a36ad7acfa6e50e65b10a889)) +- **select:** min width bug ([#524](https://github.com/core-ds/core-components/issues/524)) ([cdd686b](https://github.com/core-ds/core-components/commit/cdd686ba0780fdde982fff6629afd2fa798f9479)) +- **space:** removed excess div ([776e093](https://github.com/core-ds/core-components/commit/776e09393cc74eb31e4e56d3fba29a797f813a7f)) +- **switch:** box-sizing issue ([#490](https://github.com/core-ds/core-components/issues/490)) ([73c9eb0](https://github.com/core-ds/core-components/commit/73c9eb0b682a7d8168ae97b9a524d56c65fbd5a5)) +- **tag:** fix formatting ([#480](https://github.com/core-ds/core-components/issues/480)) ([111bf08](https://github.com/core-ds/core-components/commit/111bf08c068f4efe400ce6a25a60280a50fda7b4)) +- **themes:** corp theme ([#512](https://github.com/core-ds/core-components/issues/512)) ([6226238](https://github.com/core-ds/core-components/commit/6226238be1104550622eba1b842dac5ed9828d83)) +- **themes:** fixed button corp theme ([4dec71c](https://github.com/core-ds/core-components/commit/4dec71ccc9bd321a9d7a50dba221b13267b092f9)) +- **themes:** fixed click theme for tabs size S ([#510](https://github.com/core-ds/core-components/issues/510)) ([1ce93e5](https://github.com/core-ds/core-components/commit/1ce93e55d0622951e8db652f16b883a151a75e79)) +- **themes:** lost core vars ([#534](https://github.com/core-ds/core-components/issues/534)) ([54a23c9](https://github.com/core-ds/core-components/commit/54a23c90997c4aa90944d0391f2aab27f799353d)) +- **toast-plate:** polish toast-plate themes ([#527](https://github.com/core-ds/core-components/issues/527)) ([57d73d4](https://github.com/core-ds/core-components/commit/57d73d47b089997b2cc0d85e37b70f068c945e50)) +- add fallback for IE for width: max-content ([22a88bb](https://github.com/core-ds/core-components/commit/22a88bb40b40e8ea6d8a7d618c2957ed33751a86)) +- adds semantic release configs again ([01231a3](https://github.com/core-ds/core-components/commit/01231a3e0de52beb226d5f4bb350db54478307d3)) +- change icons imports paths ([#437](https://github.com/core-ds/core-components/issues/437)) ([e3d4e25](https://github.com/core-ds/core-components/commit/e3d4e2504b282810973eab14201844cd084c4237)) +- fix style for form-control and base-select ([51f9800](https://github.com/core-ds/core-components/commit/51f9800f13a3c4d682be310fe155c2aaddcc7191)) +- form-control colors ([#503](https://github.com/core-ds/core-components/issues/503)) ([784e05e](https://github.com/core-ds/core-components/commit/784e05ecebf2cf9991447bf2dbac4b1dd36b9792)) +- snapshots ([6d387a8](https://github.com/core-ds/core-components/commit/6d387a802a5eb1a5b150cb47ec35b5cbe3f086d7)) +- subComponentName ([8064ac6](https://github.com/core-ds/core-components/commit/8064ac67af83750673ac2dde4794b2ec8fc04f2e)) +- update data and utils dependencies ([#496](https://github.com/core-ds/core-components/issues/496)) ([76eba5d](https://github.com/core-ds/core-components/commit/76eba5dec90fc8f7616018171ddbf97ddfe091ce)) +- update versions ([1d83612](https://github.com/core-ds/core-components/commit/1d8361241fecb6be83e3ce8b546f19def1efc592)) +- update versions ([d1b69a3](https://github.com/core-ds/core-components/commit/d1b69a3f0f488bdef5bea2b3aafc0e275058f321)) +- update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70)) +- delete extra cn ([#415](https://github.com/core-ds/core-components/issues/415)) ([d08966f](https://github.com/core-ds/core-components/commit/d08966fd00459d497640d27a27afa5d0d0fddab9)) +- **button:** design review fixes ([4eca9d1](https://github.com/core-ds/core-components/commit/4eca9d10185f6ffc42644086e679ba7f361cc4f1)) +- **button:** show loader when href is set ([#374](https://github.com/core-ds/core-components/issues/374)) ([79d6750](https://github.com/core-ds/core-components/commit/79d675007a86fe1e36e77376ba7a3afa3b8045e8)) +- **calendar-input:** fix focus issue ([60af1b9](https://github.com/core-ds/core-components/commit/60af1b92d076ce393ac308b64b93af182a68c933)) +- **calendar-input:** fix story ([ff2732d](https://github.com/core-ds/core-components/commit/ff2732da4c7dc35819aebdfdc224472d932a42a2)) +- **circular-progress-bar:** change max-height ([b587c87](https://github.com/core-ds/core-components/commit/b587c8747fe242b32ea11ebad38ef960cf5669b6)) +- **circular-progress-bar:** fix label width ([#395](https://github.com/core-ds/core-components/issues/395)) ([1d3cb6b](https://github.com/core-ds/core-components/commit/1d3cb6b134bc85febd89ad8183f537abbda18482)), closes [#394](https://github.com/core-ds/core-components/issues/394) +- **confirmation:** fix symbols deleting ([#392](https://github.com/core-ds/core-components/issues/392)) ([fee41f1](https://github.com/core-ds/core-components/commit/fee41f17dfb84f9af2ad40e6150e1026ff07ada9)) +- **core-components-\*:** fix undefined refs ([ea5dac0](https://github.com/core-ds/core-components/commit/ea5dac0c5e4371a7224c0a2eddbd80a257675961)) +- **core-components-\*:** portal related issues ([a5735fb](https://github.com/core-ds/core-components/commit/a5735fbc17110372464fdc7fa0c59bd072c1b525)) +- **core-components-amount-input:** missing handlers ([be512d5](https://github.com/core-ds/core-components/commit/be512d51fae847f2dd7a4e939adbbd93aadcff67)) +- **core-components-bank-card:** deleting issue, add useCallback ([#309](https://github.com/core-ds/core-components/issues/309)) ([5f768bd](https://github.com/core-ds/core-components/commit/5f768bd3b0242d4f0adae25c33b8c38575bfedef)) +- **core-components-bank-card:** label styles ([#316](https://github.com/core-ds/core-components/issues/316)) ([31ea1ce](https://github.com/core-ds/core-components/commit/31ea1cec588cacd425b35b3e71d4a18925b71a5a)) +- **core-components-button:** add text align ([#306](https://github.com/core-ds/core-components/issues/306)) ([a60a4dc](https://github.com/core-ds/core-components/commit/a60a4dcb7f7280c6c4e4628deb48456fde3c6171)) +- **core-components-button:** fixed primary button background color ([874e203](https://github.com/core-ds/core-components/commit/874e20336bea6500c75b207bf2cc14262bb878ff)) +- **core-components-confirmation:** fix showed keyboard on old devices ([#341](https://github.com/core-ds/core-components/issues/341)) ([7165ed1](https://github.com/core-ds/core-components/commit/7165ed1846910ffcef685cb35f8ec9afd802116f)) +- **core-components-form-control:** fix hover state ([#317](https://github.com/core-ds/core-components/issues/317)) ([41b2d51](https://github.com/core-ds/core-components/commit/41b2d51fdbf2fc729a1180d6a515ee56b521c555)) +- **core-components-portal:** update portal ([5638163](https://github.com/core-ds/core-components/commit/5638163e98e6c0c4a9ea3254761fe1fdb739c78e)) +- **core-components-tabs:** fix styles build ([#310](https://github.com/core-ds/core-components/issues/310)) ([d05a0ef](https://github.com/core-ds/core-components/commit/d05a0ef86880903e3e33703ef245655cf11e66e7)), closes [#314](https://github.com/core-ds/core-components/issues/314) +- **core-components-themes:** add all vars import ([6d50c3e](https://github.com/core-ds/core-components/commit/6d50c3e089f0e31721adaaf0b56b741b8dec6a7a)) +- **core-components-themes:** process color-mod, fix vars ([5d77f9b](https://github.com/core-ds/core-components/commit/5d77f9be7766f13ac100130a2ff95f6735fe05d9)) +- **core-components-vars:** import colors-transparent in index ([2109973](https://github.com/core-ds/core-components/commit/2109973ecfd4549f0cb2d711ee19ddd07faa415d)) +- **core-components-with-suffix:** add text styles ([b4dbabe](https://github.com/core-ds/core-components/commit/b4dbabe06b4af072b9cb8e05d54861a587c3f41a)) +- **core-components-with-suffix:** fix stories ([6226300](https://github.com/core-ds/core-components/commit/6226300716354fef9f01d2fa40dbf294d47aa5ba)) +- **form-control:** fix height ([#380](https://github.com/core-ds/core-components/issues/380)) ([afc3722](https://github.com/core-ds/core-components/commit/afc3722dc08eb3f742eaec53be5b0233afad02c3)) +- **mq:** use addListener and removeListener ([#402](https://github.com/core-ds/core-components/issues/402)) ([9918383](https://github.com/core-ds/core-components/commit/9918383c31b07ea2aad253765f2f17a88d00b943)) +- **plate:** remove redunadant className ([#373](https://github.com/core-ds/core-components/issues/373)) ([fdd6b3d](https://github.com/core-ds/core-components/commit/fdd6b3dabb0b5b607d6c84471640c73e65128d0e)), closes [#366](https://github.com/core-ds/core-components/issues/366) +- **select:** fix wrong options height ([18f26d9](https://github.com/core-ds/core-components/commit/18f26d9e6c0d9b99c4396f0b6d86b352014fac0a)) +- **themes:** add missing variables import ([#449](https://github.com/core-ds/core-components/issues/449)) ([456c045](https://github.com/core-ds/core-components/commit/456c0450b484863287c24088eefc51d6d7396570)), closes [#442](https://github.com/core-ds/core-components/issues/442) +- **themes:** fix corp button themes ([#425](https://github.com/core-ds/core-components/issues/425)) ([2e49682](https://github.com/core-ds/core-components/commit/2e4968281a01c197bf98c37b791022fd8182d3a5)) +- **themes:** fixed click select theme ([68dd29e](https://github.com/core-ds/core-components/commit/68dd29e6e0dcbdf4378687e9550d02c875d11b20)) +- **tooltip:** execute tooltip's target missing callbacks ([#443](https://github.com/core-ds/core-components/issues/443)) ([237cef1](https://github.com/core-ds/core-components/commit/237cef12805284bc036ddc59789771a3ad9c9210)) +- snapshots ([03a70ef](https://github.com/core-ds/core-components/commit/03a70ef8c30e901347e718784a107d23bad127d6)) +- **core-components-\*:** fix class properties transform ([f407938](https://github.com/core-ds/core-components/commit/f4079384388728251fd90154758fc4aa100f50d6)) +- **core-components-\*:** remove optional chaining to fix build issues ([75b0e7a](https://github.com/core-ds/core-components/commit/75b0e7a701c1f2891533d1242e7c83a83854f414)) +- **core-components-modal:** fix lint issues ([5fc1eb4](https://github.com/core-ds/core-components/commit/5fc1eb4c4a42dde687e2255e6a544b7a0e1b193f)) +- **list:** apply --list-marker-color only to marker ([5479f47](https://github.com/core-ds/core-components/commit/5479f47dd44fc8d9cfedb84f7787e5af84c1f41d)) +- **modal:** fix class properties transform ([f6a1de5](https://github.com/core-ds/core-components/commit/f6a1de5b769bcf7605cc992a7e9ebf63445d1169)) +- **picker-button:** fix icon color ([f8d97b4](https://github.com/core-ds/core-components/commit/f8d97b44680fa2ace1539b11b5d0a318d45094aa)) +- **themes:** remove imports from mixins ([4d878b5](https://github.com/core-ds/core-components/commit/4d878b59e46c1cfc1799182367421402af6462db)) +- changed secrets variables ([4afa0b7](https://github.com/core-ds/core-components/commit/4afa0b72d1ee93b0faa816a202ec24ed49bd2096)) +- fix ie bundle ([#385](https://github.com/core-ds/core-components/issues/385)) ([9ca6024](https://github.com/core-ds/core-components/commit/9ca60245991903600c0308c9cd30955f39bd914f)) +- fix version ([0c3cff0](https://github.com/core-ds/core-components/commit/0c3cff0adaf276bcc9e1f57f5da56e44ebd64b3c)) +- slightly better and safer ie fixes ([0e34b4f](https://github.com/core-ds/core-components/commit/0e34b4fb9800a435c05dc8f83146ce5617cf99a5)) +- theme-switcher select value ([845de5d](https://github.com/core-ds/core-components/commit/845de5d5124a2459cad2cf40dd015d6580e68700)) +- **radio:** fix input width ([#378](https://github.com/core-ds/core-components/issues/378)) ([369684e](https://github.com/core-ds/core-components/commit/369684ed2ce7aae07a00941e663accf82f8f2763)) +- storybook build with assets ([0d2e819](https://github.com/core-ds/core-components/commit/0d2e819ae27900e9022bae53dac5a381336871a0)) +- typings issue ([dd17a7b](https://github.com/core-ds/core-components/commit/dd17a7b0c04413dce337c2eecd8bc197e580e067)) +- **checkbox-group:** fix css classnames ([1ec07fa](https://github.com/core-ds/core-components/commit/1ec07faa276bfa20917b1ff4decfde2c81c66ffe)) +- **core-components-amount-input:** fix console error ([461d435](https://github.com/core-ds/core-components/commit/461d435643d6b5908344fadfe66927dd48ed014c)) +- **core-components-amount-input:** resolve [#281](https://github.com/core-ds/core-components/issues/281) ([7e91e9e](https://github.com/core-ds/core-components/commit/7e91e9ed5c4902be979e7dde8818698d71017e68)) +- **core-components-bank-card:** fix test ([77c72db](https://github.com/core-ds/core-components/commit/77c72db21f3bef02f07295015331d55da9c27621)) +- **core-components-button:** background in loading state ([2064e59](https://github.com/core-ds/core-components/commit/2064e593914354258cd47a4da9ca65cf26585542)) +- **core-components-button:** disabled styles are back ([bf81264](https://github.com/core-ds/core-components/commit/bf81264bb922ea98752adb9b2a6b09c946d48ed9)) +- **core-components-button:** fix block button width ([4abf5d9](https://github.com/core-ds/core-components/commit/4abf5d9d915909c4b5b4beddad7d287df812beb4)) +- **core-components-button:** fix button loading state ([eac3c3c](https://github.com/core-ds/core-components/commit/eac3c3ca888ee0092a1693b9a39843c1dd9a75f1)) +- **core-components-button:** fix loader position ([#236](https://github.com/core-ds/core-components/issues/236)) ([697c44a](https://github.com/core-ds/core-components/commit/697c44a0559515f593541909fabc7145a66ee7e1)) +- **core-components-checkbox-group:** fix classnames to camelcase ([522af20](https://github.com/core-ds/core-components/commit/522af2088bbc7ef9343b4f6c3de5bb7ee51c6202)) +- **core-components-input:** fix clear button, fix focus issues ([24fc3c6](https://github.com/core-ds/core-components/commit/24fc3c603e92418e8589c09bed2ca5d8bdf57f5a)) +- **core-components-money-input:** add todo ([612c88c](https://github.com/core-ds/core-components/commit/612c88c87197e3c42332291f81dd1a918599f637)) +- **core-components-money-input:** fix bold ([4625eee](https://github.com/core-ds/core-components/commit/4625eee240f1024e3934e205b4a20845f8da1542)) +- **core-components-money-input:** fix build ([c68fa08](https://github.com/core-ds/core-components/commit/c68fa0890965a5415b1acc7fab144eaaabbb9676)) +- **core-components-money-input:** fix default placeholder ([2efbcbd](https://github.com/core-ds/core-components/commit/2efbcbd49fbc2c02a6644867bfa25c96b3943223)) +- **core-components-money-input:** fix demo ([2b22f2d](https://github.com/core-ds/core-components/commit/2b22f2db919ff0e9bd1c393234154234b3675582)) +- **core-components-money-input:** fix dependency ([1ea92b7](https://github.com/core-ds/core-components/commit/1ea92b78aacaf5421ddaa867c795ecf4ed4d9318)) +- **core-components-money-input:** fix zindex ([0688bd9](https://github.com/core-ds/core-components/commit/0688bd925a52a3b0d1ce28779b75e626a961627d)) +- **core-components-money-input:** remove temp wrapper ([fc6e904](https://github.com/core-ds/core-components/commit/fc6e904aeb2df1b05b172c59d4897418e67c7993)) +- **core-components-money-input:** type for currency according comments ([078069d](https://github.com/core-ds/core-components/commit/078069d523c545b8d7b3d7edb2f8676a2aa4a522)) +- **core-components-phone-input:** fix controlled value bug ([#248](https://github.com/core-ds/core-components/issues/248)) ([62c3cd2](https://github.com/core-ds/core-components/commit/62c3cd25ccf3657e70fb5ebafa5e0ac2e9a8c1da)), closes [#253](https://github.com/core-ds/core-components/issues/253) +- **core-components-popover:** add missing styles ([578f1cb](https://github.com/core-ds/core-components/commit/578f1cb20cad08fec606b6da11c961552ca990d1)) +- **core-components-progress-bar:** refactor, snapshot tests fix ([7b0b553](https://github.com/core-ds/core-components/commit/7b0b553eafce92307bec53d0d35f847969bf8904)) +- **core-components-progress-bar:** use theme ([#201](https://github.com/core-ds/core-components/issues/201)) ([a9ab773](https://github.com/core-ds/core-components/commit/a9ab773d75f4fcbc68ad648b378cfb3c2b9c0c19)) +- **core-components-select:** fix typings, add id ([341d79d](https://github.com/core-ds/core-components/commit/341d79dad610fce77b28cff31382e38152b02d3b)) +- **core-components-select:** fix typings, unused css ([c223dbb](https://github.com/core-ds/core-components/commit/c223dbb9245f7cc6113a76077f458c4bdcd75462)) +- **core-components-select:** remove default autocomplete ([a223433](https://github.com/core-ds/core-components/commit/a2234334eaf145582a39bc045b84d61a97a7660c)) +- **core-components-skeleton:** fix styles ([0aac24f](https://github.com/core-ds/core-components/commit/0aac24f3e7ed536fef560abec9627daf42a688df)) +- **core-components-tabs:** fix css-modules build ([#239](https://github.com/core-ds/core-components/issues/239)) ([0e9d8d0](https://github.com/core-ds/core-components/commit/0e9d8d073dc000484816c8d10beddff12e0c463e)) +- **core-components-tabs:** recalc line styles on render ([#250](https://github.com/core-ds/core-components/issues/250)) ([b9fd710](https://github.com/core-ds/core-components/commit/b9fd7105c19809fc682f60fca275bd645e082c85)) +- **core-components-themes:** fix site theme ([97f5caa](https://github.com/core-ds/core-components/commit/97f5caab5f3ce546d382a711c726bed5b54724ab)) +- **core-components-themes:** temp fix for color-mod ([94a79a0](https://github.com/core-ds/core-components/commit/94a79a08d53266963d3d96bf3c5c41321629d360)) +- 🐛 use mixinsDir to import mixins ([#182](https://github.com/core-ds/core-components/issues/182)) ([06a6f2d](https://github.com/core-ds/core-components/commit/06a6f2dde49db07681d09a5afb94e91ab1c9da04)), closes [#181](https://github.com/core-ds/core-components/issues/181) +- add missing deps ([231402b](https://github.com/core-ds/core-components/commit/231402b2f054defddea4afd4eaf94f5d1791ccb4)) +- add new colors, fix typography ([e50365e](https://github.com/core-ds/core-components/commit/e50365e7e7c6d17422aff61c266b3a1b55a0ecf3)) +- build issues ([cdacf43](https://github.com/core-ds/core-components/commit/cdacf43a0b8f24a4b2b6ca97d0c008b30692c841)) +- fix import example ([#237](https://github.com/core-ds/core-components/issues/237)) ([0ea47b5](https://github.com/core-ds/core-components/commit/0ea47b59138690cb294314883da7298e7b5d0195)) +- fix import replacement ([5354d06](https://github.com/core-ds/core-components/commit/5354d0604125d9d21c2939987cecd10d428a509f)), closes [#170](https://github.com/core-ds/core-components/issues/170) +- fix radio & checkbox colors ([56a0a16](https://github.com/core-ds/core-components/commit/56a0a16d1259f05b51b06ba81035003eadc1f2b3)) +- fixed themes and default font-family ([6bab367](https://github.com/core-ds/core-components/commit/6bab367eb0df53c7d42e31c5e404859638d8d6c9)) +- use correct vars ([171c45d](https://github.com/core-ds/core-components/commit/171c45da81d6e8df6b76a8333068d7ccbe68466c)) +- fix 4 spaces ([049cfa9](https://github.com/core-ds/core-components/commit/049cfa919cfd96315f716d724c0ea670c667aae2)) +- fix issues accodring to PR [#36](https://github.com/core-ds/core-components/issues/36) ([9c57325](https://github.com/core-ds/core-components/commit/9c5732519063c89fa5a544ae87611cc1244ee78b)) +- fix lint errors ([86fa366](https://github.com/core-ds/core-components/commit/86fa36694323671bd3e4bbb28980134d4e7e2ce2)) +- fixed linter errors ([0c9f9c6](https://github.com/core-ds/core-components/commit/0c9f9c69127ba979a03e66dd80f4be083d2760ce)) +- prepare inputs. move @types/jest to devDeps ([5f30dbb](https://github.com/core-ds/core-components/commit/5f30dbb064b468e54159914604426c8ec3310522)) +- restore babel config ([50eaa68](https://github.com/core-ds/core-components/commit/50eaa682c93733a4d5f1dc0fbcd32a4214b643f3)) +- update scripts & snapshots ([ce35a02](https://github.com/core-ds/core-components/commit/ce35a026850700af09953e47006bce0885c920aa)) +- **build-root-package:** several hyphens in dir name ([aeb5dfb](https://github.com/core-ds/core-components/commit/aeb5dfba8a88153762602a9c20c8db478ae2943f)) +- **button:** add missing href ([756d84b](https://github.com/core-ds/core-components/commit/756d84b775298045cdb205bc2f5155d04c6d4f35)) +- **button:** remove unused deps ([f287d48](https://github.com/core-ds/core-components/commit/f287d48dadab80b2f98e43c5a9d74029d4286303)) +- **button:** transition duration fix ([cd49653](https://github.com/core-ds/core-components/commit/cd49653db2670f9c846fb9d839f3c75d8e1c1f54)) +- **core-components-button:** iconOnly button min-width fix ([ecdf518](https://github.com/core-ds/core-components/commit/ecdf518c89a931b649a6c917caa45b9f4dc2dc7b)) +- **core-components-popover:** change box-sizing to border-box ([#121](https://github.com/core-ds/core-components/issues/121)) ([2a6883d](https://github.com/core-ds/core-components/commit/2a6883d6832713d197447e23ada822ea07bed5f4)) +- **core-components-popover:** make transition props optional ([#119](https://github.com/core-ds/core-components/issues/119)) ([dce9249](https://github.com/core-ds/core-components/commit/dce924922b67dff1c4ea6b173bd2b70874b56270)) +- **core-components-select:** fix onOpen description ([b28f75a](https://github.com/core-ds/core-components/commit/b28f75afe180dd252900139147f2c7c8df92aeb8)) +- **core-components-select:** move select vars to separate file ([8e09aba](https://github.com/core-ds/core-components/commit/8e09abaa90d8a91298be69ef136770588630d824)) +- **core-components-tag:** fix tag background ([#151](https://github.com/core-ds/core-components/issues/151)) ([03b465b](https://github.com/core-ds/core-components/commit/03b465b9f6c231375da8803382ed3539b2e7743a)) +- **core-components-tooltip:** change tooltip timer to ref ([#207](https://github.com/core-ds/core-components/issues/207)) ([139f0a7](https://github.com/core-ds/core-components/commit/139f0a74d414f3c1dde11b46ecf96a984b599359)) +- **core-components-tooltip:** pass target original classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([d253f8a](https://github.com/core-ds/core-components/commit/d253f8a363a0b4c605ee897a9b3172fdf977a073)) +- **deploy:** fix demo-build for master branch ([fc46861](https://github.com/core-ds/core-components/commit/fc46861e0c8b9664abda0efaba42a175504ab02f)) +- **deps:** fix wrong dependencies ([#92](https://github.com/core-ds/core-components/issues/92)) ([085e2ce](https://github.com/core-ds/core-components/commit/085e2cef73841178322c89ef90e90747e6971adf)) +- **divider:** delete default margin ([c514bf3](https://github.com/core-ds/core-components/commit/c514bf386755b7e29f36ae148deea7a08c7984da)) +- **divider:** remarks from PR ([5df2c6f](https://github.com/core-ds/core-components/commit/5df2c6fae1d7eab7aaa77604e4f0f09c3304e1ab)) +- **divider:** style ([d718a69](https://github.com/core-ds/core-components/commit/d718a6922f38ec0e60eea23ebe1803a8798de8fa)) +- **input:** fix l bottom margin ([c41a840](https://github.com/core-ds/core-components/commit/c41a8408e1c8f338be4a787bb06d51be7f1e66da)) +- **input:** fix render fn ([4cf8ef1](https://github.com/core-ds/core-components/commit/4cf8ef18dc8fc703f50ebf70877762b8bcac7a71)) +- **input:** fix wrong filled state ([#109](https://github.com/core-ds/core-components/issues/109)) ([576495a](https://github.com/core-ds/core-components/commit/576495ac639278bf5e873535173736a8082d1b44)) +- **input:** pass sub as BaseInput child ([b60d64c](https://github.com/core-ds/core-components/commit/b60d64ca432ccf94b7472116f04010327b7c9c72)) +- **inputs:** border-box fix ([81752e1](https://github.com/core-ds/core-components/commit/81752e189382e7c2dc3982b50291b9be5827cea1)) +- **inputs:** fix css vars ([1e233a2](https://github.com/core-ds/core-components/commit/1e233a26423c544ead925851a2e7925402710951)) +- **inputs:** fix input width ([9ed950f](https://github.com/core-ds/core-components/commit/9ed950f103057c74cf02ff4a95a7a6ba868aced8)) +- **inputs:** fix placeholders styles ([e404483](https://github.com/core-ds/core-components/commit/e4044838c96b527228a78a33ee24104c4899c80f)) +- **inputs:** fix styles and types ([cb6b189](https://github.com/core-ds/core-components/commit/cb6b18957d86410deddfae2d41fea0ed201e4073)) +- **inputs:** l size side paddings ([b9688a2](https://github.com/core-ds/core-components/commit/b9688a246aec4c5e442e6ee7a84a77c87d95371b)) +- **inputs:** remove from state, detect by value prop ([208c07e](https://github.com/core-ds/core-components/commit/208c07e9a73640f43950779615d4ec3f39e61c66)) +- **inputs:** remove file type. fix styles. withIcon -> rightAddons ([f149aa8](https://github.com/core-ds/core-components/commit/f149aa88de2f94329e5c905846034d619589a7bf)) +- **inputs:** styles fixes ([9a3199e](https://github.com/core-ds/core-components/commit/9a3199ef03d8e6a97d48c376b79938c2f1bf1372)) +- **masked-input,switch:** fix wrong main field ([76d0e4e](https://github.com/core-ds/core-components/commit/76d0e4e6b05973977f49ef5edeb56790daffa566)) +- **switch:** fix global tag styling ([66ce011](https://github.com/core-ds/core-components/commit/66ce0111b0e4c47e957f94afbf66f1ff50cab607)) +- **switch:** replace div with span ([69624f9](https://github.com/core-ds/core-components/commit/69624f9c2a2e07aa91829a8940245e83e7576d05)) +- **tabs:** optional children ([#572](https://github.com/core-ds/core-components/issues/572)) ([b03ee8c](https://github.com/core-ds/core-components/commit/b03ee8ca7f37e9c5b8a46d4a04123792cdc1bfa6)) +- **tag:** add height in ie (fix bug with flex and align-items) ([9fd2abd](https://github.com/core-ds/core-components/commit/9fd2abd401d92e01e853ce5a3f497645d74b8e04)) +- **tag:** fix disabled state ([#110](https://github.com/core-ds/core-components/issues/110)) ([a622101](https://github.com/core-ds/core-components/commit/a622101cb448e623e95ae9bfecc310548ac52dbe)) +- **tag:** fix styles ([#80](https://github.com/core-ds/core-components/issues/80)) ([bc80ba4](https://github.com/core-ds/core-components/commit/bc80ba47366a91d998d764675e17aeaed3c31666)) +- **tests:** rewrite tests titles ([d0f16ad](https://github.com/core-ds/core-components/commit/d0f16ad812cb098ba9cbf612bde245784dfb6227)) +- **themes:** fixes border-radius ([9d152d9](https://github.com/core-ds/core-components/commit/9d152d9ae0e70736cf78f3a014b6710dc8aa2331)) +- **toast:** remove extra timer clearing ([#559](https://github.com/core-ds/core-components/issues/559)) ([ae5d811](https://github.com/core-ds/core-components/commit/ae5d81169d4db0427ae5baf0bffd784adee184ee)) +- **tsconfig:** fix local module resolution ([f8faadf](https://github.com/core-ds/core-components/commit/f8faadfdfea9e8b570c77e1c8b3bf462ea6d26e6)) +- **typography:** add prettier-ignore to fix mixin breaking. rebuild ([6909df6](https://github.com/core-ds/core-components/commit/6909df62bbc9b0dd67143cdb950dd8e50bf54067)) +- **update-colors.js:** fix it ([c9b8c68](https://github.com/core-ds/core-components/commit/c9b8c68b8ac07e2bff33399cc1a99405bb71132d)) +- **vars:** fix build for vars. add typography to index ([cc00344](https://github.com/core-ds/core-components/commit/cc00344d6db8e60b0b230829d8bed4ef5f20c9d1)) + +- refactor/calendar-range (#984) ([714f615](https://github.com/core-ds/core-components/commit/714f61590586bafe1060e652943e95c133ed002a)), closes [#984](https://github.com/core-ds/core-components/issues/984) +- Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521) ## [26.4.0](https://github.com/core-ds/core-components/compare/v26.3.0...v26.4.0) (2022-04-13) - ### Features -* **select:** add select mobile ([#1016](https://github.com/core-ds/core-components/issues/1016)) ([b3cfb0d](https://github.com/core-ds/core-components/commit/b3cfb0d0e9496ba2e4260e962eaf3f9cf85635c6)) - +- **select:** add select mobile ([#1016](https://github.com/core-ds/core-components/issues/1016)) ([b3cfb0d](https://github.com/core-ds/core-components/commit/b3cfb0d0e9496ba2e4260e962eaf3f9cf85635c6)) ### Bug Fixes -* **bottom-sheet:** fix prop headerClassName ([#1057](https://github.com/core-ds/core-components/issues/1057)) ([2fb3290](https://github.com/core-ds/core-components/commit/2fb329047fd1ef997082d127d9f26195dbfe57ad)) -* **themes:** fix build themes mobile & intranet ([#1055](https://github.com/core-ds/core-components/issues/1055)) ([f95f035](https://github.com/core-ds/core-components/commit/f95f035bdeee3071e2f2ebfaa35c0cc10585044b)) -* **themes:** Добавил пропущенные [@imports](https://github.com/imports) из themes/src/default.css ([#1053](https://github.com/core-ds/core-components/issues/1053)) ([06f0427](https://github.com/core-ds/core-components/commit/06f0427e4089db902bb269ab3b31f935921cff9f)), closes [#1052](https://github.com/core-ds/core-components/issues/1052) +- **bottom-sheet:** fix prop headerClassName ([#1057](https://github.com/core-ds/core-components/issues/1057)) ([2fb3290](https://github.com/core-ds/core-components/commit/2fb329047fd1ef997082d127d9f26195dbfe57ad)) +- **themes:** fix build themes mobile & intranet ([#1055](https://github.com/core-ds/core-components/issues/1055)) ([f95f035](https://github.com/core-ds/core-components/commit/f95f035bdeee3071e2f2ebfaa35c0cc10585044b)) +- **themes:** Добавил пропущенные [@imports](https://github.com/imports) из themes/src/default.css ([#1053](https://github.com/core-ds/core-components/issues/1053)) ([06f0427](https://github.com/core-ds/core-components/commit/06f0427e4089db902bb269ab3b31f935921cff9f)), closes [#1052](https://github.com/core-ds/core-components/issues/1052) # [26.3.0](https://github.com/core-ds/core-components/compare/v26.2.0...v26.3.0) (2022-03-30) - ### Bug Fixes -* **filter-tag:** move onClick from btn to div ([#1049](https://github.com/core-ds/core-components/issues/1049)) ([616a90a](https://github.com/core-ds/core-components/commit/616a90af9b0b95de324d3475572d5ac85d3e7a2a)) - +- **filter-tag:** move onClick from btn to div ([#1049](https://github.com/core-ds/core-components/issues/1049)) ([616a90a](https://github.com/core-ds/core-components/commit/616a90af9b0b95de324d3475572d5ac85d3e7a2a)) ### Features -* **list:** added list & typography presets ([#1047](https://github.com/core-ds/core-components/issues/1047)) ([67b6a77](https://github.com/core-ds/core-components/commit/67b6a77d1327b090b010eb061f83a2e6a0cb67b9)) +- **list:** added list & typography presets ([#1047](https://github.com/core-ds/core-components/issues/1047)) ([67b6a77](https://github.com/core-ds/core-components/commit/67b6a77d1327b090b010eb061f83a2e6a0cb67b9)) # [26.2.0](https://github.com/core-ds/core-components/compare/v26.1.0...v26.2.0) (2022-03-29) - ### Features -* add extra content class name prop for radio and checkbox components ([#1048](https://github.com/core-ds/core-components/issues/1048)) ([3c076b9](https://github.com/core-ds/core-components/commit/3c076b939a64dff8f9c66bd65f474ccea76c8cad)) +- add extra content class name prop for radio and checkbox components ([#1048](https://github.com/core-ds/core-components/issues/1048)) ([3c076b9](https://github.com/core-ds/core-components/commit/3c076b939a64dff8f9c66bd65f474ccea76c8cad)) # [26.1.0](https://github.com/core-ds/core-components/compare/v26.0.1...v26.1.0) (2022-03-28) - ### Features -* **filter-tag:** new component ([#1035](https://github.com/core-ds/core-components/issues/1035)) ([f97e9c5](https://github.com/core-ds/core-components/commit/f97e9c59062e56f3bafa855450a33b5f67497143)) +- **filter-tag:** new component ([#1035](https://github.com/core-ds/core-components/issues/1035)) ([f97e9c5](https://github.com/core-ds/core-components/commit/f97e9c59062e56f3bafa855450a33b5f67497143)) ## [26.0.1](https://github.com/core-ds/core-components/compare/v26.0.0...v26.0.1) (2022-03-28) - ### Bug Fixes -* add missing dependency ([#1041](https://github.com/core-ds/core-components/issues/1041)) ([3b06d3a](https://github.com/core-ds/core-components/commit/3b06d3a25f76e401a0146e163f8a61585f3eebf1)) -* fix modal and bottom-sheet dark mode ([#1043](https://github.com/core-ds/core-components/issues/1043)) ([cad36a2](https://github.com/core-ds/core-components/commit/cad36a25b28bfa71296c3dd9dc325eec28b5c241)) -* **bottom-sheet:** fix bottom-sheet swipeable marker ([#1044](https://github.com/core-ds/core-components/issues/1044)) ([0734e55](https://github.com/core-ds/core-components/commit/0734e55cc0e394fb33452f875ffcf47819277aee)) +- add missing dependency ([#1041](https://github.com/core-ds/core-components/issues/1041)) ([3b06d3a](https://github.com/core-ds/core-components/commit/3b06d3a25f76e401a0146e163f8a61585f3eebf1)) +- fix modal and bottom-sheet dark mode ([#1043](https://github.com/core-ds/core-components/issues/1043)) ([cad36a2](https://github.com/core-ds/core-components/commit/cad36a25b28bfa71296c3dd9dc325eec28b5c241)) +- **bottom-sheet:** fix bottom-sheet swipeable marker ([#1044](https://github.com/core-ds/core-components/issues/1044)) ([0734e55](https://github.com/core-ds/core-components/commit/0734e55cc0e394fb33452f875ffcf47819277aee)) # [26.0.0](https://github.com/core-ds/core-components/compare/v25.8.0...v26.0.0) (2022-03-24) - ### Features -* **bottom-sheet:** update-bottom-sheet ([#1025](https://github.com/core-ds/core-components/issues/1025)) ([26fa9aa](https://github.com/core-ds/core-components/commit/26fa9aab68bebf0f7093a38bc0f18a9b596ccf37)), closes [#1032](https://github.com/core-ds/core-components/issues/1032) -* **modal:** update styles ([#1024](https://github.com/core-ds/core-components/issues/1024)) ([fdf2cdc](https://github.com/core-ds/core-components/commit/fdf2cdca9f785b27cd5d3998245a34d42e1240d1)) - +- **bottom-sheet:** update-bottom-sheet ([#1025](https://github.com/core-ds/core-components/issues/1025)) ([26fa9aa](https://github.com/core-ds/core-components/commit/26fa9aab68bebf0f7093a38bc0f18a9b596ccf37)), closes [#1032](https://github.com/core-ds/core-components/issues/1032) +- **modal:** update styles ([#1024](https://github.com/core-ds/core-components/issues/1024)) ([fdf2cdc](https://github.com/core-ds/core-components/commit/fdf2cdca9f785b27cd5d3998245a34d42e1240d1)) ### BREAKING CHANGES -* **modal:** Большое обновление стилей и темизации +- **modal:** Большое обновление стилей и темизации -* fix(modal): remove unused align -* **bottom-sheet:** Большое обновление стилей, множество дополнительных настроек +- fix(modal): remove unused align +- **bottom-sheet:** Большое обновление стилей, множество дополнительных настроек # [25.8.0](https://github.com/core-ds/core-components/compare/v25.7.0...v25.8.0) (2022-03-24) - ### Bug Fixes -* **attach:** always clear input ([#1038](https://github.com/core-ds/core-components/issues/1038)) ([f3e85f2](https://github.com/core-ds/core-components/commit/f3e85f299c4e42253d0354cdd61e005d9fe927f0)) -* **table:** update styles ([#1036](https://github.com/core-ds/core-components/issues/1036)) ([3fe236d](https://github.com/core-ds/core-components/commit/3fe236dfb584c3e96fc7fb8c499aee3e9e12e64e)) - +- **attach:** always clear input ([#1038](https://github.com/core-ds/core-components/issues/1038)) ([f3e85f2](https://github.com/core-ds/core-components/commit/f3e85f299c4e42253d0354cdd61e005d9fe927f0)) +- **table:** update styles ([#1036](https://github.com/core-ds/core-components/issues/1036)) ([3fe236d](https://github.com/core-ds/core-components/commit/3fe236dfb584c3e96fc7fb8c499aee3e9e12e64e)) ### Features -* add extra classes for radio and checkbox components ([#1039](https://github.com/core-ds/core-components/issues/1039)) ([c3ed089](https://github.com/core-ds/core-components/commit/c3ed089360b25d0f7712f2e7608c5a23f11a95df)) +- add extra classes for radio and checkbox components ([#1039](https://github.com/core-ds/core-components/issues/1039)) ([c3ed089](https://github.com/core-ds/core-components/commit/c3ed089360b25d0f7712f2e7608c5a23f11a95df)) # [25.7.0](https://github.com/core-ds/core-components/compare/v25.6.0...v25.7.0) (2022-03-22) - ### Bug Fixes -* **radio-group:** add missing 'value' attribute to 'input' tag ([#1033](https://github.com/core-ds/core-components/issues/1033)) ([0f9cf0e](https://github.com/core-ds/core-components/commit/0f9cf0ecd74f4764ccd0b2839ba0cdf1b96e75cb)), closes [#1031](https://github.com/core-ds/core-components/issues/1031) - +- **radio-group:** add missing 'value' attribute to 'input' tag ([#1033](https://github.com/core-ds/core-components/issues/1033)) ([0f9cf0e](https://github.com/core-ds/core-components/commit/0f9cf0ecd74f4764ccd0b2839ba0cdf1b96e75cb)), closes [#1031](https://github.com/core-ds/core-components/issues/1031) ### Features -* **tooltip:** added anchor props ([#1034](https://github.com/core-ds/core-components/issues/1034)) ([822031b](https://github.com/core-ds/core-components/commit/822031b3941184689a2a7ed9938c4ec44debc444)) +- **tooltip:** added anchor props ([#1034](https://github.com/core-ds/core-components/issues/1034)) ([822031b](https://github.com/core-ds/core-components/commit/822031b3941184689a2a7ed9938c4ec44debc444)) # [25.6.0](https://github.com/core-ds/core-components/compare/v25.5.0...v25.6.0) (2022-03-18) - ### Bug Fixes -* **intl-phone-input:** design fixes ([#1030](https://github.com/core-ds/core-components/issues/1030)) ([27cfb9b](https://github.com/core-ds/core-components/commit/27cfb9be1cac9f0aac151ae2121c426fb123fb3f)) - +- **intl-phone-input:** design fixes ([#1030](https://github.com/core-ds/core-components/issues/1030)) ([27cfb9b](https://github.com/core-ds/core-components/commit/27cfb9be1cac9f0aac151ae2121c426fb123fb3f)) ### Features -* **calendar:** add intranet theme ([#1026](https://github.com/core-ds/core-components/issues/1026)) ([292b76c](https://github.com/core-ds/core-components/commit/292b76c100bb12ebb1011d2a9981ba2b2899dd7a)) +- **calendar:** add intranet theme ([#1026](https://github.com/core-ds/core-components/issues/1026)) ([292b76c](https://github.com/core-ds/core-components/commit/292b76c100bb12ebb1011d2a9981ba2b2899dd7a)) # [25.5.0](https://github.com/core-ds/core-components/compare/v25.4.1...v25.5.0) (2022-03-05) - ### Features -* **circular-progress-bar:** ReactNode as title or subtitle ([#1023](https://github.com/core-ds/core-components/issues/1023)) ([7ae6df9](https://github.com/core-ds/core-components/commit/7ae6df9d2e4253f9a94532d155e81032cd96c810)) +- **circular-progress-bar:** ReactNode as title or subtitle ([#1023](https://github.com/core-ds/core-components/issues/1023)) ([7ae6df9](https://github.com/core-ds/core-components/commit/7ae6df9d2e4253f9a94532d155e81032cd96c810)) ## [25.4.1](https://github.com/core-ds/core-components/compare/v25.4.0...v25.4.1) (2022-03-04) - ### Bug Fixes -* **skeleton:** added dataTestId ([18e4af8](https://github.com/core-ds/core-components/commit/18e4af805bd4e49a1a3c303cb3b4d9a3a9dd5751)) +- **skeleton:** added dataTestId ([18e4af8](https://github.com/core-ds/core-components/commit/18e4af805bd4e49a1a3c303cb3b4d9a3a9dd5751)) # [25.4.0](https://github.com/core-ds/core-components/compare/v25.3.0...v25.4.0) (2022-03-04) - ### Bug Fixes -* move icon from select to picker-button ([#1020](https://github.com/core-ds/core-components/issues/1020)) ([0d23257](https://github.com/core-ds/core-components/commit/0d23257b561329092be551d237389cc06c3d5607)) -* update glyph deps ([#1019](https://github.com/core-ds/core-components/issues/1019)) ([3e910d0](https://github.com/core-ds/core-components/commit/3e910d0801c4c46bcd399163200c1f7bfaba375e)) - +- move icon from select to picker-button ([#1020](https://github.com/core-ds/core-components/issues/1020)) ([0d23257](https://github.com/core-ds/core-components/commit/0d23257b561329092be551d237389cc06c3d5607)) +- update glyph deps ([#1019](https://github.com/core-ds/core-components/issues/1019)) ([3e910d0](https://github.com/core-ds/core-components/commit/3e910d0801c4c46bcd399163200c1f7bfaba375e)) ### Features -* **modal:** mobile header ([#1018](https://github.com/core-ds/core-components/issues/1018)) ([54b879f](https://github.com/core-ds/core-components/commit/54b879f500d1124a6956d3d5a57349c856a09904)) +- **modal:** mobile header ([#1018](https://github.com/core-ds/core-components/issues/1018)) ([54b879f](https://github.com/core-ds/core-components/commit/54b879f500d1124a6956d3d5a57349c856a09904)) # [25.3.0](https://github.com/core-ds/core-components/compare/v25.2.0...v25.3.0) (2022-03-03) - ### Bug Fixes -* **code-input:** code-input-request-animation-frame-fix ([#1014](https://github.com/core-ds/core-components/issues/1014)) ([ad1478e](https://github.com/core-ds/core-components/commit/ad1478ebfd17679e8a2792462c619f525e5b7bb9)) -* **typography:** changed styrene font styles for title responsive ([#1017](https://github.com/core-ds/core-components/issues/1017)) ([540b0b5](https://github.com/core-ds/core-components/commit/540b0b59cf99a4cee0798f50b94e6449be4aa3c6)) - +- **code-input:** code-input-request-animation-frame-fix ([#1014](https://github.com/core-ds/core-components/issues/1014)) ([ad1478e](https://github.com/core-ds/core-components/commit/ad1478ebfd17679e8a2792462c619f525e5b7bb9)) +- **typography:** changed styrene font styles for title responsive ([#1017](https://github.com/core-ds/core-components/issues/1017)) ([540b0b5](https://github.com/core-ds/core-components/commit/540b0b59cf99a4cee0798f50b94e6449be4aa3c6)) ### Features -* **hatching-progress-bar:** add component ([#1012](https://github.com/core-ds/core-components/issues/1012)) ([a25a579](https://github.com/core-ds/core-components/commit/a25a5793df91c9e9cf213c7d1215c771c1851141)) -* **picker-button:** added new view and updated dropdown options ([#1013](https://github.com/core-ds/core-components/issues/1013)) ([050fb3e](https://github.com/core-ds/core-components/commit/050fb3eb6fd6dde057bbfcad5dd807d354125b63)) +- **hatching-progress-bar:** add component ([#1012](https://github.com/core-ds/core-components/issues/1012)) ([a25a579](https://github.com/core-ds/core-components/commit/a25a5793df91c9e9cf213c7d1215c771c1851141)) +- **picker-button:** added new view and updated dropdown options ([#1013](https://github.com/core-ds/core-components/issues/1013)) ([050fb3e](https://github.com/core-ds/core-components/commit/050fb3eb6fd6dde057bbfcad5dd807d354125b63)) # [25.2.0](https://github.com/core-ds/core-components/compare/v25.1.0...v25.2.0) (2022-03-01) - ### Bug Fixes -* **checkbox:** increased checkbox's hint line-height from 18px to 20px ([#1007](https://github.com/core-ds/core-components/issues/1007)) ([c7ee918](https://github.com/core-ds/core-components/commit/c7ee918de443339ac06f82196636dbb48ef8c737)), closes [#969](https://github.com/core-ds/core-components/issues/969) -* **picker-button:** fixed type of picker-button size prop ([#1006](https://github.com/core-ds/core-components/issues/1006)) ([38b56c1](https://github.com/core-ds/core-components/commit/38b56c11d45410a258e18d411aa0ce12b8a6c7e4)), closes [#986](https://github.com/core-ds/core-components/issues/986) -* changed dropdown component's box shadow styles ([#1010](https://github.com/core-ds/core-components/issues/1010)) ([2f997f5](https://github.com/core-ds/core-components/commit/2f997f5722c89b38a8064924b73c0a8046025aea)) - +- **checkbox:** increased checkbox's hint line-height from 18px to 20px ([#1007](https://github.com/core-ds/core-components/issues/1007)) ([c7ee918](https://github.com/core-ds/core-components/commit/c7ee918de443339ac06f82196636dbb48ef8c737)), closes [#969](https://github.com/core-ds/core-components/issues/969) +- **picker-button:** fixed type of picker-button size prop ([#1006](https://github.com/core-ds/core-components/issues/1006)) ([38b56c1](https://github.com/core-ds/core-components/commit/38b56c11d45410a258e18d411aa0ce12b8a6c7e4)), closes [#986](https://github.com/core-ds/core-components/issues/986) +- changed dropdown component's box shadow styles ([#1010](https://github.com/core-ds/core-components/issues/1010)) ([2f997f5](https://github.com/core-ds/core-components/commit/2f997f5722c89b38a8064924b73c0a8046025aea)) ### Features -* **base-modal:** add component ref for base modal ([#1008](https://github.com/core-ds/core-components/issues/1008)) ([fb13dbd](https://github.com/core-ds/core-components/commit/fb13dbdf6352b10b80a74fa87edfcb1f54b76d5a)) -* **typography:** новый компонент Typography.TitleMobile ([#1003](https://github.com/core-ds/core-components/issues/1003)) ([9b03cf9](https://github.com/core-ds/core-components/commit/9b03cf90422b05cc927ed98959708430812d1a50)) -* Исправить импорты в сторях. ([#1009](https://github.com/core-ds/core-components/issues/1009)) ([6f7e393](https://github.com/core-ds/core-components/commit/6f7e39350fd572dd3e74c4819829f85c4066b170)) +- **base-modal:** add component ref for base modal ([#1008](https://github.com/core-ds/core-components/issues/1008)) ([fb13dbd](https://github.com/core-ds/core-components/commit/fb13dbdf6352b10b80a74fa87edfcb1f54b76d5a)) +- **typography:** новый компонент Typography.TitleMobile ([#1003](https://github.com/core-ds/core-components/issues/1003)) ([9b03cf9](https://github.com/core-ds/core-components/commit/9b03cf90422b05cc927ed98959708430812d1a50)) +- Исправить импорты в сторях. ([#1009](https://github.com/core-ds/core-components/issues/1009)) ([6f7e393](https://github.com/core-ds/core-components/commit/6f7e39350fd572dd3e74c4819829f85c4066b170)) # [25.1.0](https://github.com/core-ds/core-components/compare/v25.0.0...v25.1.0) (2022-02-21) - ### Bug Fixes -* **calendar-range:** correct highlights ([#1002](https://github.com/core-ds/core-components/issues/1002)) ([5c12da2](https://github.com/core-ds/core-components/commit/5c12da2eb72b146b0a5f58447312f96f4b424c48)) -* **select:** change corp shadow ([#1004](https://github.com/core-ds/core-components/issues/1004)) ([ea664f6](https://github.com/core-ds/core-components/commit/ea664f67ce81b66b31aab348cc0c68085711de8a)) - +- **calendar-range:** correct highlights ([#1002](https://github.com/core-ds/core-components/issues/1002)) ([5c12da2](https://github.com/core-ds/core-components/commit/5c12da2eb72b146b0a5f58447312f96f4b424c48)) +- **select:** change corp shadow ([#1004](https://github.com/core-ds/core-components/issues/1004)) ([ea664f6](https://github.com/core-ds/core-components/commit/ea664f67ce81b66b31aab348cc0c68085711de8a)) ### Features -* Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7)) -* **progress-bar:** add size prop, additional views, new bg color ([#996](https://github.com/core-ds/core-components/issues/996)) ([63702f7](https://github.com/core-ds/core-components/commit/63702f7d9637e1fe3da502d7c91c4284453b3b48)) -* **stepped-progress-bar:** add view prop, change bg color ([#1000](https://github.com/core-ds/core-components/issues/1000)) ([3e16926](https://github.com/core-ds/core-components/commit/3e1692673e694e3fef2913201e18e8a2e21fc980)) +- Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7)) +- **progress-bar:** add size prop, additional views, new bg color ([#996](https://github.com/core-ds/core-components/issues/996)) ([63702f7](https://github.com/core-ds/core-components/commit/63702f7d9637e1fe3da502d7c91c4284453b3b48)) +- **stepped-progress-bar:** add view prop, change bg color ([#1000](https://github.com/core-ds/core-components/issues/1000)) ([3e16926](https://github.com/core-ds/core-components/commit/3e1692673e694e3fef2913201e18e8a2e21fc980)) # [25.0.0](https://github.com/core-ds/core-components/compare/v24.1.0...v25.0.0) (2022-02-17) - -* refactor/calendar-range (#984) ([714f615](https://github.com/core-ds/core-components/commit/714f61590586bafe1060e652943e95c133ed002a)), closes [#984](https://github.com/core-ds/core-components/issues/984) - +- refactor/calendar-range (#984) ([714f615](https://github.com/core-ds/core-components/commit/714f61590586bafe1060e652943e95c133ed002a)), closes [#984](https://github.com/core-ds/core-components/issues/984) ### BREAKING CHANGES -* Большое обновление CalendarRange +- Большое обновление CalendarRange -* feat(date-input): add some improvements +- feat(date-input): add some improvements -* feat(date-input): some updates +- feat(date-input): some updates -* feat(date-input): validation +- feat(date-input): validation -* feat(calendar): change period selection logic +- feat(calendar): change period selection logic -* fix(calendar): range styles +- fix(calendar): range styles -* fix(calendar): fix styles, add rangeComplete flag +- fix(calendar): fix styles, add rangeComplete flag -* refactor(calendar-range): temporary +- refactor(calendar-range): temporary -* fix(calendar-range): fix hook +- fix(calendar-range): fix hook -* fix(calendar-range): fix period +- fix(calendar-range): fix period -* fix(calendar-range): fix tests, fix max date +- fix(calendar-range): fix tests, fix max date -* fix: update exports +- fix: update exports -* feat(calendar): allow empty values for PeriodSlider, update today +- feat(calendar): allow empty values for PeriodSlider, update today -* fix(calendar-range): hide error icon +- fix(calendar-range): hide error icon -* chore(calendar-range): demo +- chore(calendar-range): demo -* feat(calendar): use IconButton +- feat(calendar): use IconButton -* feat(calendar-range): add onChange, update demo +- feat(calendar-range): add onChange, update demo -* fix(calendar-range): update width +- fix(calendar-range): update width -* test(calendar-range): update snapshot +- test(calendar-range): update snapshot -* fix: import date-fns separately +- fix: import date-fns separately -* fix(calendar-range): fix rest props +- fix(calendar-range): fix rest props Co-authored-by: dmitrsavk # [24.1.0](https://github.com/core-ds/core-components/compare/v24.0.0...v24.1.0) (2022-02-17) - ### Bug Fixes -* imports for glyph icons ([#994](https://github.com/core-ds/core-components/issues/994)) ([8e807f2](https://github.com/core-ds/core-components/commit/8e807f26abf0f942fe8eadbd201caecb297b35dc)) -* **icon-view:** fix bg-color ([#980](https://github.com/core-ds/core-components/issues/980)) ([2fbad56](https://github.com/core-ds/core-components/commit/2fbad5671d64056a4af81c4fe281a82c415ffeb5)) - +- imports for glyph icons ([#994](https://github.com/core-ds/core-components/issues/994)) ([8e807f2](https://github.com/core-ds/core-components/commit/8e807f26abf0f942fe8eadbd201caecb297b35dc)) +- **icon-view:** fix bg-color ([#980](https://github.com/core-ds/core-components/issues/980)) ([2fbad56](https://github.com/core-ds/core-components/commit/2fbad5671d64056a4af81c4fe281a82c415ffeb5)) ### Features -* **calendar:** design & logic updates ([#991](https://github.com/core-ds/core-components/issues/991)) ([358142c](https://github.com/core-ds/core-components/commit/358142c6d259e1463954139cc648787cdf461f76)), closes [#993](https://github.com/core-ds/core-components/issues/993) [#990](https://github.com/core-ds/core-components/issues/990) -* **date-input:** add some improvements ([#971](https://github.com/core-ds/core-components/issues/971)) ([47756ca](https://github.com/core-ds/core-components/commit/47756ca1d4eea89f78ed7234e95c02e51dd72e49)) +- **calendar:** design & logic updates ([#991](https://github.com/core-ds/core-components/issues/991)) ([358142c](https://github.com/core-ds/core-components/commit/358142c6d259e1463954139cc648787cdf461f76)), closes [#993](https://github.com/core-ds/core-components/issues/993) [#990](https://github.com/core-ds/core-components/issues/990) +- **date-input:** add some improvements ([#971](https://github.com/core-ds/core-components/issues/971)) ([47756ca](https://github.com/core-ds/core-components/commit/47756ca1d4eea89f78ed7234e95c02e51dd72e49)) # [24.0.0](https://github.com/core-ds/core-components/compare/v23.13.0...v24.0.0) (2022-02-16) - ### Features -* **code-input:** add component ([#932](https://github.com/core-ds/core-components/issues/932)) ([dc40cb5](https://github.com/core-ds/core-components/commit/dc40cb5b28322b4a2dc5735b354a7d45cf34adb9)) -* **confirmation:** большое обновление компонента ([#958](https://github.com/core-ds/core-components/issues/958)) ([3e61e7e](https://github.com/core-ds/core-components/commit/3e61e7e6529662d8fb96acb2898a29fd9c1917ab)) - +- **code-input:** add component ([#932](https://github.com/core-ds/core-components/issues/932)) ([dc40cb5](https://github.com/core-ds/core-components/commit/dc40cb5b28322b4a2dc5735b354a7d45cf34adb9)) +- **confirmation:** большое обновление компонента ([#958](https://github.com/core-ds/core-components/issues/958)) ([3e61e7e](https://github.com/core-ds/core-components/commit/3e61e7e6529662d8fb96acb2898a29fd9c1917ab)) ### BREAKING CHANGES -* **confirmation:** Удалена пропса code +- **confirmation:** Удалена пропса code -* feat(code-input): ref updates +- feat(code-input): ref updates -* feat(confirmation): updates, fix tests +- feat(confirmation): updates, fix tests -* feat(confirmation): initial +- feat(confirmation): initial -* feat(confirmation): updates +- feat(confirmation): updates -* feat(confirmation): update tests +- feat(confirmation): update tests -* feat(confirmation): updates +- feat(confirmation): updates -* feat(confirmation): dont reset code, if error +- feat(confirmation): dont reset code, if error -* test(confirmation): update snapshot -* **confirmation:** Удалена пропса code - -Co-authored-by: reme3d2y +- test(confirmation): update snapshot +- **confirmation:** Удалена пропса code # [23.13.0](https://github.com/core-ds/core-components/compare/v23.12.0...v23.13.0) (2022-02-15) - ### Bug Fixes -* **gallery:** update header button's tooltip position ([#979](https://github.com/core-ds/core-components/issues/979)) ([8e2acfc](https://github.com/core-ds/core-components/commit/8e2acfcb772cf4d8051c185a3f1caaaf507b5bc9)) - +- **gallery:** update header button's tooltip position ([#979](https://github.com/core-ds/core-components/issues/979)) ([8e2acfc](https://github.com/core-ds/core-components/commit/8e2acfcb772cf4d8051c185a3f1caaaf507b5bc9)) ### Features -* **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e)) -* **vars:** updated typography ([#981](https://github.com/core-ds/core-components/issues/981)) ([95bcce8](https://github.com/core-ds/core-components/commit/95bcce8e07467c635e2a93c55edfb3550a533ba4)) +- **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e)) +- **vars:** updated typography ([#981](https://github.com/core-ds/core-components/issues/981)) ([95bcce8](https://github.com/core-ds/core-components/commit/95bcce8e07467c635e2a93c55edfb3550a533ba4)) # [23.12.0](https://github.com/core-ds/core-components/compare/v23.11.0...v23.12.0) (2022-02-09) - ### Features -* **tabs:** add xxs xs sizes to secondary view and fix heights ([#985](https://github.com/core-ds/core-components/issues/985)) ([dd20933](https://github.com/core-ds/core-components/commit/dd20933f7c9a8f08920f7ad21bacb25983d3e93e)) -* **themes:** introducing intranet theme ([#983](https://github.com/core-ds/core-components/issues/983)) ([85eb9cf](https://github.com/core-ds/core-components/commit/85eb9cfffeef31b886c5123d6333e177c261ac62)) +- **tabs:** add xxs xs sizes to secondary view and fix heights ([#985](https://github.com/core-ds/core-components/issues/985)) ([dd20933](https://github.com/core-ds/core-components/commit/dd20933f7c9a8f08920f7ad21bacb25983d3e93e)) +- **themes:** introducing intranet theme ([#983](https://github.com/core-ds/core-components/issues/983)) ([85eb9cf](https://github.com/core-ds/core-components/commit/85eb9cfffeef31b886c5123d6333e177c261ac62)) # [23.11.0](https://github.com/core-ds/core-components/compare/v23.10.0...v23.11.0) (2022-02-03) - ### Bug Fixes -* **loader:** fix animation in IE ([#970](https://github.com/core-ds/core-components/issues/970)) ([03df943](https://github.com/core-ds/core-components/commit/03df9438f00bda639aae78aadb940161112a2672)) - +- **loader:** fix animation in IE ([#970](https://github.com/core-ds/core-components/issues/970)) ([03df943](https://github.com/core-ds/core-components/commit/03df9438f00bda639aae78aadb940161112a2672)) ### Features -* **picker-button:** add conditional righAddons prop for custom icon ([#975](https://github.com/core-ds/core-components/issues/975)) ([d2544b7](https://github.com/core-ds/core-components/commit/d2544b74e56deda9cae735e5b3ca6a2d97aef94d)) +- **picker-button:** add conditional righAddons prop for custom icon ([#975](https://github.com/core-ds/core-components/issues/975)) ([d2544b7](https://github.com/core-ds/core-components/commit/d2544b74e56deda9cae735e5b3ca6a2d97aef94d)) # [23.10.0](https://github.com/core-ds/core-components/compare/v23.9.1...v23.10.0) (2022-02-02) - ### Bug Fixes -* **input-autocomplete:** open list on backspace ([#964](https://github.com/core-ds/core-components/issues/964)) ([4d4f126](https://github.com/core-ds/core-components/commit/4d4f1267a98f05c184267564cd0a2517803bd08b)) -* **themes:** fix font weight mobile button ([#972](https://github.com/core-ds/core-components/issues/972)) ([447a89d](https://github.com/core-ds/core-components/commit/447a89dde25aa7659d771ae1c722086354323706)) - +- **input-autocomplete:** open list on backspace ([#964](https://github.com/core-ds/core-components/issues/964)) ([4d4f126](https://github.com/core-ds/core-components/commit/4d4f1267a98f05c184267564cd0a2517803bd08b)) +- **themes:** fix font weight mobile button ([#972](https://github.com/core-ds/core-components/issues/972)) ([447a89d](https://github.com/core-ds/core-components/commit/447a89dde25aa7659d771ae1c722086354323706)) ### Features -* **amount:** add rightAddons, add showPlus, make currency optional ([#955](https://github.com/core-ds/core-components/issues/955)) ([ac35b9a](https://github.com/core-ds/core-components/commit/ac35b9aaf842d88fd28caeb4f888cdf74facf644)) +- **amount:** add rightAddons, add showPlus, make currency optional ([#955](https://github.com/core-ds/core-components/issues/955)) ([ac35b9a](https://github.com/core-ds/core-components/commit/ac35b9aaf842d88fd28caeb4f888cdf74facf644)) ## [23.9.1](https://github.com/core-ds/core-components/compare/v23.9.0...v23.9.1) (2022-01-28) - ### Bug Fixes -* **select-with-tags:** update tag size to xxs ([#960](https://github.com/core-ds/core-components/issues/960)) ([4234826](https://github.com/core-ds/core-components/commit/4234826e5dedebc1e6555dfba181981eea4db69f)) +- **select-with-tags:** update tag size to xxs ([#960](https://github.com/core-ds/core-components/issues/960)) ([4234826](https://github.com/core-ds/core-components/commit/4234826e5dedebc1e6555dfba181981eea4db69f)) # [23.9.0](https://github.com/core-ds/core-components/compare/v23.8.1...v23.9.0) (2022-01-27) - ### Bug Fixes -* **bottom-sheet:** fix double calling onClose fn ([#962](https://github.com/core-ds/core-components/issues/962)) ([feda2a4](https://github.com/core-ds/core-components/commit/feda2a4c8d3a4f40a1ab9c40eb21f5359e4fa538)) -* **icon-view:** fix types ([#961](https://github.com/core-ds/core-components/issues/961)) ([74152f3](https://github.com/core-ds/core-components/commit/74152f3bd6d776bebeabea65d5971b57cc486b2e)) - +- **bottom-sheet:** fix double calling onClose fn ([#962](https://github.com/core-ds/core-components/issues/962)) ([feda2a4](https://github.com/core-ds/core-components/commit/feda2a4c8d3a4f40a1ab9c40eb21f5359e4fa538)) +- **icon-view:** fix types ([#961](https://github.com/core-ds/core-components/issues/961)) ([74152f3](https://github.com/core-ds/core-components/commit/74152f3bd6d776bebeabea65d5971b57cc486b2e)) ### Features -* **select:** add OptionsListWithApply ([#948](https://github.com/core-ds/core-components/issues/948)) ([d8ef8dd](https://github.com/core-ds/core-components/commit/d8ef8dd257dfc100095c923c4f3e317787ed1877)) +- **select:** add OptionsListWithApply ([#948](https://github.com/core-ds/core-components/issues/948)) ([d8ef8dd](https://github.com/core-ds/core-components/commit/d8ef8dd257dfc100095c923c4f3e317787ed1877)) ## [23.8.1](https://github.com/core-ds/core-components/compare/v23.8.0...v23.8.1) (2022-01-21) - ### Bug Fixes -* **cdn-icon:** add className prop ([#957](https://github.com/core-ds/core-components/issues/957)) ([86f2139](https://github.com/core-ds/core-components/commit/86f2139fc56fe1cd2669d05d7953075aa8982e22)) +- **cdn-icon:** add className prop ([#957](https://github.com/core-ds/core-components/issues/957)) ([86f2139](https://github.com/core-ds/core-components/commit/86f2139fc56fe1cd2669d05d7953075aa8982e22)) # [23.8.0](https://github.com/core-ds/core-components/compare/v23.7.0...v23.8.0) (2022-01-21) - ### Bug Fixes -* **table:** fix th paddings ([#951](https://github.com/core-ds/core-components/issues/951)) ([2d916c1](https://github.com/core-ds/core-components/commit/2d916c16a388b0949db2d0ae00c852c0acac6d28)) - +- **table:** fix th paddings ([#951](https://github.com/core-ds/core-components/issues/951)) ([2d916c1](https://github.com/core-ds/core-components/commit/2d916c16a388b0949db2d0ae00c852c0acac6d28)) ### Features -* **picker-button:** gap между picker-button и popover в 8px ([#935](https://github.com/core-ds/core-components/issues/935)) ([9b3aa2b](https://github.com/core-ds/core-components/commit/9b3aa2b70b534d8e571baa62b973e1f67667ac43)) -* **vars:** build color-mod ([#953](https://github.com/core-ds/core-components/issues/953)) ([aa64366](https://github.com/core-ds/core-components/commit/aa64366d970be46776d23c9d13ebec413b2ac4d9)) +- **picker-button:** gap между picker-button и popover в 8px ([#935](https://github.com/core-ds/core-components/issues/935)) ([9b3aa2b](https://github.com/core-ds/core-components/commit/9b3aa2b70b534d8e571baa62b973e1f67667ac43)) +- **vars:** build color-mod ([#953](https://github.com/core-ds/core-components/issues/953)) ([aa64366](https://github.com/core-ds/core-components/commit/aa64366d970be46776d23c9d13ebec413b2ac4d9)) # [23.7.0](https://github.com/core-ds/core-components/compare/v23.6.1...v23.7.0) (2022-01-17) - ### Bug Fixes -* **vars:** remove unused colors ([#945](https://github.com/core-ds/core-components/issues/945)) ([310a70a](https://github.com/core-ds/core-components/commit/310a70a8be6bff687861d3d643ebc347ecf6cd6d)) - +- **vars:** remove unused colors ([#945](https://github.com/core-ds/core-components/issues/945)) ([310a70a](https://github.com/core-ds/core-components/commit/310a70a8be6bff687861d3d643ebc347ecf6cd6d)) ### Features -* **base-modal:** extract modal store to global ([#943](https://github.com/core-ds/core-components/issues/943)) ([9587f17](https://github.com/core-ds/core-components/commit/9587f1773bb690ac6696077509d4a519aa109198)) -* **calendar:** split header to header & period-slider ([#939](https://github.com/core-ds/core-components/issues/939)) ([107cee0](https://github.com/core-ds/core-components/commit/107cee0f2b5d609a02b61023b324dcc8c98c5220)) -* **typography:** export types ([#940](https://github.com/core-ds/core-components/issues/940)) ([498227c](https://github.com/core-ds/core-components/commit/498227c272659a1ebf890eee61c6fecdd110faee)) +- **base-modal:** extract modal store to global ([#943](https://github.com/core-ds/core-components/issues/943)) ([9587f17](https://github.com/core-ds/core-components/commit/9587f1773bb690ac6696077509d4a519aa109198)) +- **calendar:** split header to header & period-slider ([#939](https://github.com/core-ds/core-components/issues/939)) ([107cee0](https://github.com/core-ds/core-components/commit/107cee0f2b5d609a02b61023b324dcc8c98c5220)) +- **typography:** export types ([#940](https://github.com/core-ds/core-components/issues/940)) ([498227c](https://github.com/core-ds/core-components/commit/498227c272659a1ebf890eee61c6fecdd110faee)) ## [23.6.1](https://github.com/core-ds/core-components/compare/v23.6.0...v23.6.1) (2022-01-13) - ### Bug Fixes -* **amount-input:** позволяем использовать строки, не рисуем 0 если передана пустая строка ([#941](https://github.com/core-ds/core-components/issues/941)) ([51c954f](https://github.com/core-ds/core-components/commit/51c954f238e7dbdbdbbd517e81e0e944f880ded6)) -* **dropzone:** корректный сброс dragCounter ([#944](https://github.com/core-ds/core-components/issues/944)) ([091b4a4](https://github.com/core-ds/core-components/commit/091b4a4b2f42fb0b84581c875a18c14c735eb92b)) -* **file-upload-item:** корректная обрезка контента ([#942](https://github.com/core-ds/core-components/issues/942)) ([5a285f2](https://github.com/core-ds/core-components/commit/5a285f2c1259dab270f52b438203fe7d40c07b29)) -* **table:** фикс высоты раскрывающейся ячейки ([#946](https://github.com/core-ds/core-components/issues/946)) ([643f9a5](https://github.com/core-ds/core-components/commit/643f9a556748bafc46a5c6f8c458c07770b11b17)) - +- **amount-input:** позволяем использовать строки, не рисуем 0 если передана пустая строка ([#941](https://github.com/core-ds/core-components/issues/941)) ([51c954f](https://github.com/core-ds/core-components/commit/51c954f238e7dbdbdbbd517e81e0e944f880ded6)) +- **dropzone:** корректный сброс dragCounter ([#944](https://github.com/core-ds/core-components/issues/944)) ([091b4a4](https://github.com/core-ds/core-components/commit/091b4a4b2f42fb0b84581c875a18c14c735eb92b)) +- **file-upload-item:** корректная обрезка контента ([#942](https://github.com/core-ds/core-components/issues/942)) ([5a285f2](https://github.com/core-ds/core-components/commit/5a285f2c1259dab270f52b438203fe7d40c07b29)) +- **table:** фикс высоты раскрывающейся ячейки ([#946](https://github.com/core-ds/core-components/issues/946)) ([643f9a5](https://github.com/core-ds/core-components/commit/643f9a556748bafc46a5c6f8c458c07770b11b17)) CHANGELOG за 2021 год доступен [здесь](https://github.com/core-ds/core-components/blob/master/CHANGELOG.2021.md) diff --git a/packages/alert/CHANGELOG.md b/packages/alert/CHANGELOG.md index eaa9fe8a6c..ba38c58517 100644 --- a/packages/alert/CHANGELOG.md +++ b/packages/alert/CHANGELOG.md @@ -801,8 +801,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - # [3.4.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-alert@3.3.1...@alfalab/core-components-alert@3.4.0) (2022-08-17) ### Bug Fixes diff --git a/packages/amount-input/CHANGELOG.md b/packages/amount-input/CHANGELOG.md index 8b32a29f65..7e6ad7f9dd 100644 --- a/packages/amount-input/CHANGELOG.md +++ b/packages/amount-input/CHANGELOG.md @@ -1280,7 +1280,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -1408,8 +1408,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.7.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-amount-input@5.7.1...@alfalab/core-components-amount-input@5.7.2) (2022-08-17) ### Bug Fixes diff --git a/packages/amount/CHANGELOG.md b/packages/amount/CHANGELOG.md index 76dbd910f3..dae69b7779 100644 --- a/packages/amount/CHANGELOG.md +++ b/packages/amount/CHANGELOG.md @@ -332,8 +332,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.5.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-amount@2.5.0...@alfalab/core-components-amount@2.5.1) (2022-08-17) ### Bug Fixes diff --git a/packages/attach/CHANGELOG.md b/packages/attach/CHANGELOG.md index 92b5e4c38e..f53b63c727 100644 --- a/packages/attach/CHANGELOG.md +++ b/packages/attach/CHANGELOG.md @@ -886,8 +886,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-attach@4.4.1...@alfalab/core-components-attach@4.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/backdrop/CHANGELOG.md b/packages/backdrop/CHANGELOG.md index 33eb692904..de99f260dc 100644 --- a/packages/backdrop/CHANGELOG.md +++ b/packages/backdrop/CHANGELOG.md @@ -219,8 +219,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-backdrop@2.2.0...@alfalab/core-components-backdrop@2.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/badge/CHANGELOG.md b/packages/badge/CHANGELOG.md index eb2d98bc6c..ed29633d8e 100644 --- a/packages/badge/CHANGELOG.md +++ b/packages/badge/CHANGELOG.md @@ -258,8 +258,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-badge@3.4.0...@alfalab/core-components-badge@3.4.1) (2022-08-17) ### Bug Fixes diff --git a/packages/bank-card/CHANGELOG.md b/packages/bank-card/CHANGELOG.md index 1a3d78f0d3..26a6835c1b 100644 --- a/packages/bank-card/CHANGELOG.md +++ b/packages/bank-card/CHANGELOG.md @@ -1081,8 +1081,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-bank-card@4.4.1...@alfalab/core-components-bank-card@4.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/base-modal/CHANGELOG.md b/packages/base-modal/CHANGELOG.md index 6746be4fe3..dd0249705f 100644 --- a/packages/base-modal/CHANGELOG.md +++ b/packages/base-modal/CHANGELOG.md @@ -747,8 +747,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-base-modal@4.3.0...@alfalab/core-components-base-modal@4.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/bottom-sheet/CHANGELOG.md b/packages/bottom-sheet/CHANGELOG.md index 455939cd69..38266f7ffa 100644 --- a/packages/bottom-sheet/CHANGELOG.md +++ b/packages/bottom-sheet/CHANGELOG.md @@ -1692,8 +1692,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.9.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-bottom-sheet@4.9.0...@alfalab/core-components-bottom-sheet@4.9.1) (2022-08-17) ### Bug Fixes diff --git a/packages/button/CHANGELOG.md b/packages/button/CHANGELOG.md index a1e99efe56..35e1f7b8fa 100644 --- a/packages/button/CHANGELOG.md +++ b/packages/button/CHANGELOG.md @@ -1041,8 +1041,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.3.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-button@5.3.1...@alfalab/core-components-button@5.3.2) (2022-08-17) ### Bug Fixes diff --git a/packages/calendar-input/CHANGELOG.md b/packages/calendar-input/CHANGELOG.md index d323064c11..64acd5f731 100644 --- a/packages/calendar-input/CHANGELOG.md +++ b/packages/calendar-input/CHANGELOG.md @@ -1529,7 +1529,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -1667,8 +1667,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [6.6.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-calendar-input@6.6.2...@alfalab/core-components-calendar-input@6.6.3) (2022-08-17) ### Bug Fixes diff --git a/packages/calendar-range/CHANGELOG.md b/packages/calendar-range/CHANGELOG.md index 4bb5e3a616..42e03a90e1 100644 --- a/packages/calendar-range/CHANGELOG.md +++ b/packages/calendar-range/CHANGELOG.md @@ -1724,8 +1724,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.7.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-calendar-range@5.7.2...@alfalab/core-components-calendar-range@5.7.3) (2022-08-17) ### Bug Fixes diff --git a/packages/calendar-with-skeleton/CHANGELOG.md b/packages/calendar-with-skeleton/CHANGELOG.md index 5ab8fdd6d0..e5a9522018 100644 --- a/packages/calendar-with-skeleton/CHANGELOG.md +++ b/packages/calendar-with-skeleton/CHANGELOG.md @@ -1316,8 +1316,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.5.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-calendar-with-skeleton@4.5.2...@alfalab/core-components-calendar-with-skeleton@4.5.3) (2022-08-17) ### Bug Fixes diff --git a/packages/calendar/CHANGELOG.md b/packages/calendar/CHANGELOG.md index a55cf0402b..9703c562ea 100644 --- a/packages/calendar/CHANGELOG.md +++ b/packages/calendar/CHANGELOG.md @@ -1916,8 +1916,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.6.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-calendar@5.6.2...@alfalab/core-components-calendar@5.6.3) (2022-08-17) ### Bug Fixes @@ -2119,7 +2117,7 @@ Co-authored-by: dmitrsavk ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. diff --git a/packages/card-image/CHANGELOG.md b/packages/card-image/CHANGELOG.md index 56afd063f2..965d2d202c 100644 --- a/packages/card-image/CHANGELOG.md +++ b/packages/card-image/CHANGELOG.md @@ -183,8 +183,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-card-image@2.2.0...@alfalab/core-components-card-image@2.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/cdn-icon/CHANGELOG.md b/packages/cdn-icon/CHANGELOG.md index 4e6caa70ed..e1f5c23ebb 100644 --- a/packages/cdn-icon/CHANGELOG.md +++ b/packages/cdn-icon/CHANGELOG.md @@ -332,8 +332,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.1.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-cdn-icon@4.1.0...@alfalab/core-components-cdn-icon@4.1.1) (2022-08-17) ### Bug Fixes @@ -350,11 +348,11 @@ Co-authored-by: Vladimir Gevak ### Features -- Новый cdn alfabank.servicecdn.ru ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) +- Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.servicecdn.ru data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.ru data: 'self'` - chore(screenshot-utils): change cdn @@ -396,7 +394,7 @@ Co-authored-by: Vladimir Gevak ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. diff --git a/packages/chart/CHANGELOG.md b/packages/chart/CHANGELOG.md index 5654f0b121..34f1f8c2c4 100644 --- a/packages/chart/CHANGELOG.md +++ b/packages/chart/CHANGELOG.md @@ -596,8 +596,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-chart@2.2.0...@alfalab/core-components-chart@2.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/checkbox-group/CHANGELOG.md b/packages/checkbox-group/CHANGELOG.md index d783494f1a..365b46531a 100644 --- a/packages/checkbox-group/CHANGELOG.md +++ b/packages/checkbox-group/CHANGELOG.md @@ -497,8 +497,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.7.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-checkbox-group@2.7.1...@alfalab/core-components-checkbox-group@2.7.2) (2022-08-17) ### Bug Fixes diff --git a/packages/checkbox/CHANGELOG.md b/packages/checkbox/CHANGELOG.md index 019c391cd1..d583caaa3b 100644 --- a/packages/checkbox/CHANGELOG.md +++ b/packages/checkbox/CHANGELOG.md @@ -590,8 +590,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.9.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-checkbox@2.9.0...@alfalab/core-components-checkbox@2.9.1) (2022-08-17) ### Bug Fixes diff --git a/packages/circular-progress-bar/CHANGELOG.md b/packages/circular-progress-bar/CHANGELOG.md index 829fe38d49..0db2692172 100644 --- a/packages/circular-progress-bar/CHANGELOG.md +++ b/packages/circular-progress-bar/CHANGELOG.md @@ -717,8 +717,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.6.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-circular-progress-bar@2.6.0...@alfalab/core-components-circular-progress-bar@2.6.1) (2022-08-17) ### Bug Fixes diff --git a/packages/code-input/CHANGELOG.md b/packages/code-input/CHANGELOG.md index 0a28809218..a90f1f0d8f 100644 --- a/packages/code-input/CHANGELOG.md +++ b/packages/code-input/CHANGELOG.md @@ -590,8 +590,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.5.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-code-input@1.5.0...@alfalab/core-components-code-input@1.5.1) (2022-08-17) ### Bug Fixes diff --git a/packages/collapse/CHANGELOG.md b/packages/collapse/CHANGELOG.md index 45d0a7136d..f529b31550 100644 --- a/packages/collapse/CHANGELOG.md +++ b/packages/collapse/CHANGELOG.md @@ -404,8 +404,6 @@ Co-authored-by: crybabydanchan - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-collapse@2.3.0...@alfalab/core-components-collapse@2.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/comment/CHANGELOG.md b/packages/comment/CHANGELOG.md index e4e4454312..c545cff1e1 100644 --- a/packages/comment/CHANGELOG.md +++ b/packages/comment/CHANGELOG.md @@ -548,8 +548,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.1.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-comment@1.1.1...@alfalab/core-components-comment@1.1.2) (2022-08-17) ### Bug Fixes diff --git a/packages/confirmation/CHANGELOG.md b/packages/confirmation/CHANGELOG.md index 3d6179c4e4..663de009fb 100644 --- a/packages/confirmation/CHANGELOG.md +++ b/packages/confirmation/CHANGELOG.md @@ -1475,8 +1475,6 @@ Co-authored-by: crybabydanchan - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [10.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-confirmation@10.4.1...@alfalab/core-components-confirmation@10.4.2) (2022-08-17) ### Bug Fixes @@ -1580,8 +1578,6 @@ Co-authored-by: Vladimir Gevak - test(confirmation): update snapshot - **confirmation:** Удалена пропса code -Co-authored-by: reme3d2y - ## [9.0.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-confirmation@9.0.6...@alfalab/core-components-confirmation@9.0.7) (2022-02-15) **Note:** Version bump only for package @alfalab/core-components-confirmation @@ -1719,8 +1715,6 @@ Co-authored-by: reme3d2y - **confirmation:** buttonRetryText renamed to buttonReturnText -Co-authored-by: Alexander Soldatov - # [6.1.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-confirmation@6.0.0...@alfalab/core-components-confirmation@6.1.0) (2021-05-31) ### Features diff --git a/packages/custom-button/CHANGELOG.md b/packages/custom-button/CHANGELOG.md index f07b3d4172..40aa6ece08 100644 --- a/packages/custom-button/CHANGELOG.md +++ b/packages/custom-button/CHANGELOG.md @@ -800,8 +800,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-custom-button@1.4.1...@alfalab/core-components-custom-button@1.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/date-input/CHANGELOG.md b/packages/date-input/CHANGELOG.md index ff5b315baa..06510a0269 100644 --- a/packages/date-input/CHANGELOG.md +++ b/packages/date-input/CHANGELOG.md @@ -795,7 +795,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -902,8 +902,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-date-input@2.4.1...@alfalab/core-components-date-input@2.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/date-range-input/CHANGELOG.md b/packages/date-range-input/CHANGELOG.md index 99bd3bfdae..4312ce2731 100644 --- a/packages/date-range-input/CHANGELOG.md +++ b/packages/date-range-input/CHANGELOG.md @@ -1610,7 +1610,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes diff --git a/packages/date-time-input/CHANGELOG.md b/packages/date-time-input/CHANGELOG.md index 90da06f59f..8475e38026 100644 --- a/packages/date-time-input/CHANGELOG.md +++ b/packages/date-time-input/CHANGELOG.md @@ -1600,7 +1600,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes diff --git a/packages/divider/CHANGELOG.md b/packages/divider/CHANGELOG.md index 31a8972d61..776095b7b3 100644 --- a/packages/divider/CHANGELOG.md +++ b/packages/divider/CHANGELOG.md @@ -180,8 +180,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-divider@2.2.0...@alfalab/core-components-divider@2.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/drawer/CHANGELOG.md b/packages/drawer/CHANGELOG.md index f3ba999950..4f4e7ab443 100644 --- a/packages/drawer/CHANGELOG.md +++ b/packages/drawer/CHANGELOG.md @@ -635,8 +635,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-drawer@3.3.0...@alfalab/core-components-drawer@3.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/dropzone/CHANGELOG.md b/packages/dropzone/CHANGELOG.md index 3f899fe2df..35b8d437cc 100644 --- a/packages/dropzone/CHANGELOG.md +++ b/packages/dropzone/CHANGELOG.md @@ -299,8 +299,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.5.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-dropzone@2.5.0...@alfalab/core-components-dropzone@2.5.1) (2022-08-17) ### Bug Fixes diff --git a/packages/file-upload-item/CHANGELOG.md b/packages/file-upload-item/CHANGELOG.md index 470dfa3879..c356395058 100644 --- a/packages/file-upload-item/CHANGELOG.md +++ b/packages/file-upload-item/CHANGELOG.md @@ -1213,8 +1213,6 @@ Co-authored-by: crybabydanchan - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.9.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-file-upload-item@3.9.1...@alfalab/core-components-file-upload-item@3.9.2) (2022-08-17) ### Bug Fixes diff --git a/packages/filter-tag/CHANGELOG.md b/packages/filter-tag/CHANGELOG.md index 9e6619298f..291b55736b 100644 --- a/packages/filter-tag/CHANGELOG.md +++ b/packages/filter-tag/CHANGELOG.md @@ -692,8 +692,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-filter-tag@1.4.1...@alfalab/core-components-filter-tag@1.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/form-control/CHANGELOG.md b/packages/form-control/CHANGELOG.md index ed5c6e7e5d..b919ccb356 100644 --- a/packages/form-control/CHANGELOG.md +++ b/packages/form-control/CHANGELOG.md @@ -710,8 +710,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [7.6.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-form-control@7.6.0...@alfalab/core-components-form-control@7.6.1) (2022-08-17) ### Bug Fixes diff --git a/packages/gallery/CHANGELOG.md b/packages/gallery/CHANGELOG.md index 3c7c3d08ad..34869973e4 100644 --- a/packages/gallery/CHANGELOG.md +++ b/packages/gallery/CHANGELOG.md @@ -1698,7 +1698,7 @@ GALLERY_EVENTS экспортируется из `@alfalab/core-components-galle ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ## 5.0.14 @@ -1800,8 +1800,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.1.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-gallery@4.1.3...@alfalab/core-components-gallery@4.1.4) (2022-08-17) ### Bug Fixes @@ -1830,11 +1828,11 @@ Co-authored-by: Vladimir Gevak ### Features -- Новый cdn alfabank.servicecdn.ru ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) +- Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.servicecdn.ru data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.ru data: 'self'` - chore(screenshot-utils): change cdn @@ -2002,7 +2000,7 @@ Co-authored-by: Vladimir Gevak ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. diff --git a/packages/global-store/CHANGELOG.md b/packages/global-store/CHANGELOG.md index 99f2a57a68..0b16d7ca70 100644 --- a/packages/global-store/CHANGELOG.md +++ b/packages/global-store/CHANGELOG.md @@ -84,8 +84,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.1.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-global-store@1.1.2...@alfalab/core-components-global-store@1.1.3) (2022-08-17) ### Bug Fixes diff --git a/packages/grid/CHANGELOG.md b/packages/grid/CHANGELOG.md index efc8111beb..cff6d4f4c2 100644 --- a/packages/grid/CHANGELOG.md +++ b/packages/grid/CHANGELOG.md @@ -166,8 +166,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-grid@2.2.0...@alfalab/core-components-grid@2.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/hatching-progress-bar/CHANGELOG.md b/packages/hatching-progress-bar/CHANGELOG.md index ca4b0f045e..c38567a6c8 100644 --- a/packages/hatching-progress-bar/CHANGELOG.md +++ b/packages/hatching-progress-bar/CHANGELOG.md @@ -164,8 +164,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-hatching-progress-bar@1.3.0...@alfalab/core-components-hatching-progress-bar@1.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/icon-button/CHANGELOG.md b/packages/icon-button/CHANGELOG.md index c6120bb2f9..ef3d3cccb9 100644 --- a/packages/icon-button/CHANGELOG.md +++ b/packages/icon-button/CHANGELOG.md @@ -810,8 +810,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.3.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-icon-button@4.3.1...@alfalab/core-components-icon-button@4.3.2) (2022-08-17) ### Bug Fixes diff --git a/packages/icon-view/CHANGELOG.md b/packages/icon-view/CHANGELOG.md index 4115dd3f41..8226b4676d 100644 --- a/packages/icon-view/CHANGELOG.md +++ b/packages/icon-view/CHANGELOG.md @@ -503,8 +503,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-icon-view@1.4.0...@alfalab/core-components-icon-view@1.4.1) (2022-08-17) ### Bug Fixes diff --git a/packages/input-autocomplete/CHANGELOG.md b/packages/input-autocomplete/CHANGELOG.md index fa6f8331fc..43a9e9b0e1 100644 --- a/packages/input-autocomplete/CHANGELOG.md +++ b/packages/input-autocomplete/CHANGELOG.md @@ -2024,7 +2024,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -2189,8 +2189,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [7.6.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.6.0...@alfalab/core-components-input-autocomplete@7.6.1) (2022-08-17) ### Bug Fixes diff --git a/packages/input/CHANGELOG.md b/packages/input/CHANGELOG.md index 30eb9892a2..6218a0b4f7 100644 --- a/packages/input/CHANGELOG.md +++ b/packages/input/CHANGELOG.md @@ -1252,7 +1252,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ## 11.0.2 @@ -1360,8 +1360,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [9.1.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input@9.1.1...@alfalab/core-components-input@9.1.2) (2022-08-17) ### Bug Fixes @@ -1382,11 +1380,11 @@ Co-authored-by: Vladimir Gevak ### Features -- Новый cdn alfabank.servicecdn.ru ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) +- Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.servicecdn.ru data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.ru data: 'self'` - chore(screenshot-utils): change cdn @@ -1469,7 +1467,7 @@ Co-authored-by: Vladimir Gevak ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. diff --git a/packages/intl-phone-input/CHANGELOG.md b/packages/intl-phone-input/CHANGELOG.md index 72972f4a0f..25afebc2d6 100644 --- a/packages/intl-phone-input/CHANGELOG.md +++ b/packages/intl-phone-input/CHANGELOG.md @@ -1773,7 +1773,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -1956,8 +1956,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [6.7.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-intl-phone-input@6.7.3...@alfalab/core-components-intl-phone-input@6.7.4) (2022-08-17) ### Bug Fixes diff --git a/packages/keyboard-focusable/CHANGELOG.md b/packages/keyboard-focusable/CHANGELOG.md index 06c4efbd87..2637e91e26 100644 --- a/packages/keyboard-focusable/CHANGELOG.md +++ b/packages/keyboard-focusable/CHANGELOG.md @@ -145,8 +145,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-keyboard-focusable@3.2.0...@alfalab/core-components-keyboard-focusable@3.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/link/CHANGELOG.md b/packages/link/CHANGELOG.md index c0c95dd862..3879d1f6dc 100644 --- a/packages/link/CHANGELOG.md +++ b/packages/link/CHANGELOG.md @@ -278,8 +278,6 @@ Co-authored-by: crybabydanchan - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-link@3.4.0...@alfalab/core-components-link@3.4.1) (2022-08-17) ### Bug Fixes diff --git a/packages/list-header/CHANGELOG.md b/packages/list-header/CHANGELOG.md index 3e54982913..b27ff58d0d 100644 --- a/packages/list-header/CHANGELOG.md +++ b/packages/list-header/CHANGELOG.md @@ -530,8 +530,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-list-header@2.3.0...@alfalab/core-components-list-header@2.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/list/CHANGELOG.md b/packages/list/CHANGELOG.md index 88fb539cdb..cb212a16b3 100644 --- a/packages/list/CHANGELOG.md +++ b/packages/list/CHANGELOG.md @@ -518,8 +518,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-list@2.3.0...@alfalab/core-components-list@2.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/loader/CHANGELOG.md b/packages/loader/CHANGELOG.md index c9fce27a4a..3f2eadd9e4 100644 --- a/packages/loader/CHANGELOG.md +++ b/packages/loader/CHANGELOG.md @@ -196,8 +196,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-loader@2.2.0...@alfalab/core-components-loader@2.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/masked-input/CHANGELOG.md b/packages/masked-input/CHANGELOG.md index df158abb17..8ae88aa110 100644 --- a/packages/masked-input/CHANGELOG.md +++ b/packages/masked-input/CHANGELOG.md @@ -791,7 +791,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -895,8 +895,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.5.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-masked-input@4.5.1...@alfalab/core-components-masked-input@4.5.2) (2022-08-17) ### Bug Fixes diff --git a/packages/modal/CHANGELOG.md b/packages/modal/CHANGELOG.md index 4a646be4f8..99ff2aa9c1 100644 --- a/packages/modal/CHANGELOG.md +++ b/packages/modal/CHANGELOG.md @@ -1561,8 +1561,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-modal@5.4.1...@alfalab/core-components-modal@5.4.2) (2022-08-17) ### Bug Fixes @@ -1708,7 +1706,7 @@ Co-authored-by: Vladimir Gevak ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. diff --git a/packages/mq/CHANGELOG.md b/packages/mq/CHANGELOG.md index 574c30da58..2d64d2495d 100644 --- a/packages/mq/CHANGELOG.md +++ b/packages/mq/CHANGELOG.md @@ -234,8 +234,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.1.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-mq@3.1.0...@alfalab/core-components-mq@3.1.1) (2022-08-17) ### Bug Fixes diff --git a/packages/notification-manager/CHANGELOG.md b/packages/notification-manager/CHANGELOG.md index 48860a7c38..5589186994 100644 --- a/packages/notification-manager/CHANGELOG.md +++ b/packages/notification-manager/CHANGELOG.md @@ -947,8 +947,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.3.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification-manager@4.3.1...@alfalab/core-components-notification-manager@4.3.2) (2022-08-17) ### Bug Fixes diff --git a/packages/notification/CHANGELOG.md b/packages/notification/CHANGELOG.md index fbaef1c9b6..ce3b84950b 100644 --- a/packages/notification/CHANGELOG.md +++ b/packages/notification/CHANGELOG.md @@ -974,8 +974,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-notification@5.4.1...@alfalab/core-components-notification@5.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/pagination/CHANGELOG.md b/packages/pagination/CHANGELOG.md index 063d25830a..ec217df248 100644 --- a/packages/pagination/CHANGELOG.md +++ b/packages/pagination/CHANGELOG.md @@ -595,8 +595,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-pagination@1.4.1...@alfalab/core-components-pagination@1.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/password-input/CHANGELOG.md b/packages/password-input/CHANGELOG.md index b20a7fb91d..1185da5c14 100644 --- a/packages/password-input/CHANGELOG.md +++ b/packages/password-input/CHANGELOG.md @@ -1022,7 +1022,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -1132,8 +1132,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-password-input@2.4.1...@alfalab/core-components-password-input@2.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/phone-input/CHANGELOG.md b/packages/phone-input/CHANGELOG.md index 49f49566d0..8e9ef31d3e 100644 --- a/packages/phone-input/CHANGELOG.md +++ b/packages/phone-input/CHANGELOG.md @@ -836,7 +836,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -940,8 +940,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.5.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-phone-input@5.5.1...@alfalab/core-components-phone-input@5.5.2) (2022-08-17) ### Bug Fixes diff --git a/packages/picker-button/CHANGELOG.md b/packages/picker-button/CHANGELOG.md index d6e141b8fe..61be96faf1 100644 --- a/packages/picker-button/CHANGELOG.md +++ b/packages/picker-button/CHANGELOG.md @@ -1939,8 +1939,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [7.11.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-picker-button@7.11.3...@alfalab/core-components-picker-button@7.11.4) (2022-08-17) ### Bug Fixes diff --git a/packages/plate/CHANGELOG.md b/packages/plate/CHANGELOG.md index ef758d769f..bc450b2c3c 100644 --- a/packages/plate/CHANGELOG.md +++ b/packages/plate/CHANGELOG.md @@ -992,7 +992,7 @@ ### [#340](https://github.com/core-ds/core-components/pull/340) -- В компоненте Plate иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компоненте Plate иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -1059,8 +1059,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - # [5.2.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-plate@5.1.1...@alfalab/core-components-plate@5.2.0) (2022-08-17) ### Bug Fixes @@ -1085,11 +1083,11 @@ Co-authored-by: Vladimir Gevak ### Features -- Новый cdn alfabank.servicecdn.ru ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) +- Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.servicecdn.ru data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.ru data: 'self'` - chore(screenshot-utils): change cdn @@ -1159,7 +1157,7 @@ Co-authored-by: Vladimir Gevak ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index 307e4969f4..a92c341b13 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -473,8 +473,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.8.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-popover@5.8.0...@alfalab/core-components-popover@5.8.1) (2022-08-17) ### Bug Fixes diff --git a/packages/portal/CHANGELOG.md b/packages/portal/CHANGELOG.md index 15472463b3..c97e01841e 100644 --- a/packages/portal/CHANGELOG.md +++ b/packages/portal/CHANGELOG.md @@ -290,8 +290,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.1.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-portal@2.1.0...@alfalab/core-components-portal@2.1.1) (2022-08-17) ### Bug Fixes diff --git a/packages/progress-bar/CHANGELOG.md b/packages/progress-bar/CHANGELOG.md index af11feb729..903982424d 100644 --- a/packages/progress-bar/CHANGELOG.md +++ b/packages/progress-bar/CHANGELOG.md @@ -214,8 +214,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-progress-bar@2.3.0...@alfalab/core-components-progress-bar@2.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/pure-cell/CHANGELOG.md b/packages/pure-cell/CHANGELOG.md index 47f587af38..1bb21f4854 100644 --- a/packages/pure-cell/CHANGELOG.md +++ b/packages/pure-cell/CHANGELOG.md @@ -1369,8 +1369,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.2.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-pure-cell@1.2.1...@alfalab/core-components-pure-cell@1.2.2) (2022-08-17) ### Bug Fixes diff --git a/packages/radio-group/CHANGELOG.md b/packages/radio-group/CHANGELOG.md index e006d59fc4..bb157896d3 100644 --- a/packages/radio-group/CHANGELOG.md +++ b/packages/radio-group/CHANGELOG.md @@ -525,8 +525,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.7.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-radio-group@2.7.0...@alfalab/core-components-radio-group@2.7.1) (2022-08-17) ### Bug Fixes diff --git a/packages/radio/CHANGELOG.md b/packages/radio/CHANGELOG.md index cae1f08ff5..00d5290e50 100644 --- a/packages/radio/CHANGELOG.md +++ b/packages/radio/CHANGELOG.md @@ -448,8 +448,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.7.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-radio@2.7.0...@alfalab/core-components-radio@2.7.1) (2022-08-17) ### Bug Fixes diff --git a/packages/scrollbar/CHANGELOG.md b/packages/scrollbar/CHANGELOG.md index 51a1e58548..22dd6048c3 100644 --- a/packages/scrollbar/CHANGELOG.md +++ b/packages/scrollbar/CHANGELOG.md @@ -285,8 +285,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-scrollbar@1.2.0...@alfalab/core-components-scrollbar@1.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/select-with-tags/CHANGELOG.md b/packages/select-with-tags/CHANGELOG.md index e02eeb7664..8d2d6c8c1a 100644 --- a/packages/select-with-tags/CHANGELOG.md +++ b/packages/select-with-tags/CHANGELOG.md @@ -1995,8 +1995,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.7.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-select-with-tags@5.7.3...@alfalab/core-components-select-with-tags@5.7.4) (2022-08-17) ### Bug Fixes diff --git a/packages/select/CHANGELOG.md b/packages/select/CHANGELOG.md index 94db59eb3b..9ef7951ec6 100644 --- a/packages/select/CHANGELOG.md +++ b/packages/select/CHANGELOG.md @@ -2730,7 +2730,7 @@ ### [#346](https://github.com/core-ds/core-components/pull/346) -- В компоненте Select иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компоненте Select иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### [#329](https://github.com/core-ds/core-components/pull/329) @@ -2918,8 +2918,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [11.1.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-select@11.1.3...@alfalab/core-components-select@11.1.4) (2022-08-17) ### Bug Fixes @@ -2948,11 +2946,11 @@ Co-authored-by: Vladimir Gevak ### Features -- Новый cdn alfabank.servicecdn.ru ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) +- Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.servicecdn.ru data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.ru data: 'self'` - chore(screenshot-utils): change cdn diff --git a/packages/side-panel/CHANGELOG.md b/packages/side-panel/CHANGELOG.md index a9a154373e..05a73ab63c 100644 --- a/packages/side-panel/CHANGELOG.md +++ b/packages/side-panel/CHANGELOG.md @@ -1602,8 +1602,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.2.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-side-panel@1.2.1...@alfalab/core-components-side-panel@1.2.2) (2022-08-17) ### Bug Fixes diff --git a/packages/skeleton/CHANGELOG.md b/packages/skeleton/CHANGELOG.md index 76cd3e3c59..d18eb3bede 100644 --- a/packages/skeleton/CHANGELOG.md +++ b/packages/skeleton/CHANGELOG.md @@ -260,8 +260,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-skeleton@3.3.0...@alfalab/core-components-skeleton@3.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/slider-input/CHANGELOG.md b/packages/slider-input/CHANGELOG.md index d0036d502d..c38af11481 100644 --- a/packages/slider-input/CHANGELOG.md +++ b/packages/slider-input/CHANGELOG.md @@ -1092,7 +1092,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes @@ -1221,8 +1221,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.1.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-slider-input@5.1.1...@alfalab/core-components-slider-input@5.1.2) (2022-08-17) ### Bug Fixes diff --git a/packages/slider/CHANGELOG.md b/packages/slider/CHANGELOG.md index ba6a368d73..a64c7bb865 100644 --- a/packages/slider/CHANGELOG.md +++ b/packages/slider/CHANGELOG.md @@ -317,8 +317,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.1.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-slider@3.1.1...@alfalab/core-components-slider@3.1.2) (2022-08-17) ### Bug Fixes diff --git a/packages/space/CHANGELOG.md b/packages/space/CHANGELOG.md index f83cbbf2eb..a47fae3a25 100644 --- a/packages/space/CHANGELOG.md +++ b/packages/space/CHANGELOG.md @@ -196,8 +196,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-space@2.2.0...@alfalab/core-components-space@2.2.1) (2022-08-17) ### Bug Fixes diff --git a/packages/spinner/CHANGELOG.md b/packages/spinner/CHANGELOG.md index 2c2cc758fc..eda49c5f15 100644 --- a/packages/spinner/CHANGELOG.md +++ b/packages/spinner/CHANGELOG.md @@ -354,8 +354,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-spinner@2.3.0...@alfalab/core-components-spinner@2.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/stack/CHANGELOG.md b/packages/stack/CHANGELOG.md index 59492bc3d0..bbd0b557e2 100644 --- a/packages/stack/CHANGELOG.md +++ b/packages/stack/CHANGELOG.md @@ -126,8 +126,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.1.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-stack@3.1.0...@alfalab/core-components-stack@3.1.1) (2022-08-17) ### Bug Fixes diff --git a/packages/status/CHANGELOG.md b/packages/status/CHANGELOG.md index 9327095215..d1895915c5 100644 --- a/packages/status/CHANGELOG.md +++ b/packages/status/CHANGELOG.md @@ -264,8 +264,6 @@ - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-status@2.4.0...@alfalab/core-components-status@2.4.1) (2022-08-17) ### Bug Fixes diff --git a/packages/stepped-progress-bar/CHANGELOG.md b/packages/stepped-progress-bar/CHANGELOG.md index 9ec028c2b9..2a12c7ea50 100644 --- a/packages/stepped-progress-bar/CHANGELOG.md +++ b/packages/stepped-progress-bar/CHANGELOG.md @@ -573,8 +573,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-stepped-progress-bar@1.4.0...@alfalab/core-components-stepped-progress-bar@1.4.1) (2022-08-17) ### Bug Fixes diff --git a/packages/switch/CHANGELOG.md b/packages/switch/CHANGELOG.md index 5f76a513cc..38d30c303a 100644 --- a/packages/switch/CHANGELOG.md +++ b/packages/switch/CHANGELOG.md @@ -476,8 +476,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-switch@2.4.0...@alfalab/core-components-switch@2.4.1) (2022-08-17) ### Bug Fixes diff --git a/packages/table/CHANGELOG.md b/packages/table/CHANGELOG.md index 932b219ec6..06cce094ed 100644 --- a/packages/table/CHANGELOG.md +++ b/packages/table/CHANGELOG.md @@ -1774,8 +1774,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [1.6.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-table@1.6.3...@alfalab/core-components-table@1.6.4) (2022-08-17) ### Bug Fixes diff --git a/packages/tabs/CHANGELOG.md b/packages/tabs/CHANGELOG.md index 99f25fd8e8..235d5b64be 100644 --- a/packages/tabs/CHANGELOG.md +++ b/packages/tabs/CHANGELOG.md @@ -2069,8 +2069,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [6.6.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-tabs@6.6.0...@alfalab/core-components-tabs@6.6.1) (2022-08-17) ### Bug Fixes diff --git a/packages/tag/CHANGELOG.md b/packages/tag/CHANGELOG.md index e17b8d76da..403d9b2a18 100644 --- a/packages/tag/CHANGELOG.md +++ b/packages/tag/CHANGELOG.md @@ -581,8 +581,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-tag@4.4.0...@alfalab/core-components-tag@4.4.1) (2022-08-17) ### Bug Fixes diff --git a/packages/textarea/CHANGELOG.md b/packages/textarea/CHANGELOG.md index 22d0d9699d..3d6afc8b64 100644 --- a/packages/textarea/CHANGELOG.md +++ b/packages/textarea/CHANGELOG.md @@ -766,8 +766,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [6.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-textarea@6.3.0...@alfalab/core-components-textarea@6.3.1) (2022-08-17) ### Bug Fixes diff --git a/packages/themes/CHANGELOG.md b/packages/themes/CHANGELOG.md index ff03512ffc..5bfe1698bb 100644 --- a/packages/themes/CHANGELOG.md +++ b/packages/themes/CHANGELOG.md @@ -822,11 +822,11 @@ ### [#346](https://github.com/core-ds/core-components/pull/346) -- В компоненте Select иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компоненте Select иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ## 9.5.2 @@ -910,11 +910,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -- Новый cdn alfabank.servicecdn.ru ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) +- Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.servicecdn.ru data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.ru data: 'self'` - chore(screenshot-utils): change cdn @@ -1060,7 +1060,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' alfabank.gcdn.co data: 'self'` +- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. diff --git a/packages/time-input/CHANGELOG.md b/packages/time-input/CHANGELOG.md index dbad390202..fdd94fece1 100644 --- a/packages/time-input/CHANGELOG.md +++ b/packages/time-input/CHANGELOG.md @@ -776,7 +776,7 @@ ### [#342](https://github.com/core-ds/core-components/pull/342) -- В компонентах Gallery и Input иконки подгружаемые с 'alfabank.servicecdn.ru' были заменены на иконки из icons-glyph +- В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph ### Patch Changes diff --git a/packages/toast-plate/CHANGELOG.md b/packages/toast-plate/CHANGELOG.md index 94fc5dcc50..8282c0766f 100644 --- a/packages/toast-plate/CHANGELOG.md +++ b/packages/toast-plate/CHANGELOG.md @@ -1080,8 +1080,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [4.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-toast-plate@4.4.1...@alfalab/core-components-toast-plate@4.4.2) (2022-08-17) ### Bug Fixes diff --git a/packages/toast/CHANGELOG.md b/packages/toast/CHANGELOG.md index a992226da5..a791577829 100644 --- a/packages/toast/CHANGELOG.md +++ b/packages/toast/CHANGELOG.md @@ -1064,8 +1064,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.7.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-toast@3.7.1...@alfalab/core-components-toast@3.7.2) (2022-08-17) ### Bug Fixes diff --git a/packages/tooltip/CHANGELOG.md b/packages/tooltip/CHANGELOG.md index 8568f2de8d..635a7ec1e4 100644 --- a/packages/tooltip/CHANGELOG.md +++ b/packages/tooltip/CHANGELOG.md @@ -1536,8 +1536,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [5.7.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-tooltip@5.7.3...@alfalab/core-components-tooltip@5.7.4) (2022-08-17) ### Bug Fixes diff --git a/packages/typography/CHANGELOG.md b/packages/typography/CHANGELOG.md index 11603f3cae..4b288b399e 100644 --- a/packages/typography/CHANGELOG.md +++ b/packages/typography/CHANGELOG.md @@ -600,8 +600,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [2.7.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-typography@2.7.0...@alfalab/core-components-typography@2.7.1) (2022-08-17) ### Bug Fixes diff --git a/packages/with-suffix/CHANGELOG.md b/packages/with-suffix/CHANGELOG.md index 75e87e815d..4bb8bd2817 100644 --- a/packages/with-suffix/CHANGELOG.md +++ b/packages/with-suffix/CHANGELOG.md @@ -942,8 +942,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) -Co-authored-by: Vladimir Gevak - ## [3.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-with-suffix@3.4.1...@alfalab/core-components-with-suffix@3.4.2) (2022-08-17) ### Bug Fixes From 4f9c379ad557371ed7815f8ca8bcbc2741d24644 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Wed, 10 Jun 2026 17:30:32 +0700 Subject: [PATCH 06/35] feat: typo --- packages/cdn-icon/src/docs/development.mdx | 2 +- packages/mcp/src/data/v50.12.2/action-button.json | 4 ++-- packages/mcp/src/data/v50.12.2/card-image.json | 6 +++--- packages/mcp/src/data/v50.12.2/cdn-icon.json | 4 ++-- packages/mcp/src/data/v50.12.2/link.json | 4 ++-- packages/mcp/src/data/v50.12.2/product-cover.json | 10 +++++----- packages/typography/src/docs/development.mdx | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/packages/cdn-icon/src/docs/development.mdx b/packages/cdn-icon/src/docs/development.mdx index 4c004159b7..362f32fd14 100644 --- a/packages/cdn-icon/src/docs/development.mdx +++ b/packages/cdn-icon/src/docs/development.mdx @@ -10,7 +10,7 @@ import { CDNIcon } from '@alfalab/core-components/cdn-icon'; ## Использование -Хранилище alfabank.servicecdn.ru — временное и в какой-то момент домен изменится. +Текущее хранилище — временное и в какой-то момент домен изменится. {\nreturn (\n} href='http://www.alfabank.ru'>\n{'Переход  по ссылке'}\n\n);\n});" +"desktop": "render(() => {\nreturn (\n} href='http://www.example.ru'>\n{'Переход  по ссылке'}\n\n);\n});" } ] -} \ No newline at end of file +} diff --git a/packages/mcp/src/data/v50.12.2/card-image.json b/packages/mcp/src/data/v50.12.2/card-image.json index eb228ce947..780ebaf638 100644 --- a/packages/mcp/src/data/v50.12.2/card-image.json +++ b/packages/mcp/src/data/v50.12.2/card-image.json @@ -47,7 +47,7 @@ }, "baseUrl": { "defaultValue": { -"value": "https://online.alfabank.ru/cards-images/cards/" +"value": "https://online.example.ru/cards-images/cards/" }, "description": "Базовый URL сервиса с изображениями", "name": "baseUrl", @@ -115,7 +115,7 @@ { "title": "Примеры", "description": "", -"desktop": "" +"desktop": "" } ] -} \ No newline at end of file +} diff --git a/packages/mcp/src/data/v50.12.2/cdn-icon.json b/packages/mcp/src/data/v50.12.2/cdn-icon.json index 80fd39b78e..b6a963cf9d 100644 --- a/packages/mcp/src/data/v50.12.2/cdn-icon.json +++ b/packages/mcp/src/data/v50.12.2/cdn-icon.json @@ -32,7 +32,7 @@ }, "baseUrl": { "defaultValue": { -"value": "https://alfabank.servicecdn.ru/icons" +"value": "https://example.servicecdn.ru/icons" }, "description": "Базовый адрес cdn хранилища c иконками", "name": "baseUrl", @@ -76,4 +76,4 @@ "desktop": "\n\n\n\n" } ] -} \ No newline at end of file +} diff --git a/packages/mcp/src/data/v50.12.2/link.json b/packages/mcp/src/data/v50.12.2/link.json index 4a972b4f5f..5339998c4a 100644 --- a/packages/mcp/src/data/v50.12.2/link.json +++ b/packages/mcp/src/data/v50.12.2/link.json @@ -90,7 +90,7 @@ { "title": "Обычная ссылка", "description": "Нестареющая классика. Ссылка может вести как на страницу внутри системы, так и на внешний ресурс.", -"desktop": "\n\n\nDefault\n\n\n\n\nPrimary\n\n\n\n\nSecondary\n\n\n" +"desktop": "\n\n\nDefault\n\n\n\n\nPrimary\n\n\n\n\nSecondary\n\n\n" }, { "title": "Псевдоссылка", @@ -113,4 +113,4 @@ "desktop": "\n\nParagraph primary large\n\n\nParagraph primary medium\n\n\nParagraph primary small\n\n" } ] -} \ No newline at end of file +} diff --git a/packages/mcp/src/data/v50.12.2/product-cover.json b/packages/mcp/src/data/v50.12.2/product-cover.json index 2d47584c04..c1c1071388 100644 --- a/packages/mcp/src/data/v50.12.2/product-cover.json +++ b/packages/mcp/src/data/v50.12.2/product-cover.json @@ -68,7 +68,7 @@ }, "baseUrl": { "defaultValue": null, -"description": "Базовый URL сервиса с изображениями\n(например: https://online.alfabank.ru/cards-images/cards/)", +"description": "Базовый URL сервиса с изображениями\n(например: https://online.example.ru/cards-images/cards/)", "name": "baseUrl", "required": false, "type": { @@ -188,17 +188,17 @@ { "title": "Размеры", "description": "Карточка используется в следующих размерах: 16×24, 32×51, 40×65, 48×76, 96×152, 128×205, 164×264.", -"desktop": "render(() => {\nconst BIG_SIZES = [164, 128, 96, 48];\nconst SMALL_SIZES = [40, 32, 16];\n\nreturn (\n<>\n\n{BIG_SIZES.map((size) => (\n\n))}\n\n\n\n{SMALL_SIZES.map((size) => (\n\n))}\n\n\n);\n});" +"desktop": "render(() => {\nconst BIG_SIZES = [164, 128, 96, 48];\nconst SMALL_SIZES = [40, 32, 16];\n\nreturn (\n<>\n\n{BIG_SIZES.map((size) => (\n\n))}\n\n\n\n{SMALL_SIZES.map((size) => (\n\n))}\n\n\n);\n});" }, { "title": "Примеры", "description": "Компонент позволяет настроить внешний вид банковской карты или продукта.\nНастраивается цвет фона, наличие обводки, тени, оверлея.\nВ качестве контента можно передать ссылку на рубашку карты и иконку.\nВ нижний слот можно положить кастомный контент.", -"desktop": "const VIEW_SELECT_OPTIONS = [\n{ key: 'card', content: 'Карта' },\n{ key: 'defaultCard', content: 'Карта без рубашки' },\n{ key: 'lightCard', content: 'Заблокированная светлая карта' },\n{ key: 'darkCard', content: 'Заблокированная тёмная карта' },\n{ key: 'product', content: 'Продукт' },\n];\n\nrender(() => {\nconst [viewSelected, setViewSelected] = React.useState(VIEW_SELECT_OPTIONS[0].key);\n\nconst baseCard = {\ncardNumber: 1234000000001234,\nbaseUrl: 'https://online.alfabank.ru/cards-images/cards/',\nlayers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM',\ncardId: 'RM',\n};\n\nconst singleView = {\ncard: baseCard,\ndefaultCard: {},\nlightCard: {\n...baseCard,\nicon: LockClosedMIcon,\noverlayProps: {\ncolors: 'inverted',\nvisible: true,\n},\niconColor: 'var(--color-static-text-primary-inverted)',\n},\ndarkCard: {\n...baseCard,\nicon: LockClosedMIcon,\ncardId: 'VV',\noverlayProps: {\nvisible: true,\n},\n},\nproduct: {\nicon: SafeBoxMIcon,\nborderColor: 'var(--color-light-neutral-translucent-300)',\niconColor: 'var(--color-light-text-secondary)',\n},\n};\n\nreturn (\n

\n setViewSelected(selected.key)}\nOption={BaseOption}\n/>\n\n\n
\n);\n});" +"desktop": "const VIEW_SELECT_OPTIONS = [\n{ key: 'card', content: 'Карта' },\n{ key: 'defaultCard', content: 'Карта без рубашки' },\n{ key: 'lightCard', content: 'Заблокированная светлая карта' },\n{ key: 'darkCard', content: 'Заблокированная тёмная карта' },\n{ key: 'product', content: 'Продукт' },\n];\n\nrender(() => {\nconst [viewSelected, setViewSelected] = React.useState(VIEW_SELECT_OPTIONS[0].key);\n\nconst baseCard = {\ncardNumber: 1234000000001234,\nbaseUrl: 'https://online.example.ru/cards-images/cards/',\nlayers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM',\ncardId: 'RM',\n};\n\nconst singleView = {\ncard: baseCard,\ndefaultCard: {},\nlightCard: {\n...baseCard,\nicon: LockClosedMIcon,\noverlayProps: {\ncolors: 'inverted',\nvisible: true,\n},\niconColor: 'var(--color-static-text-primary-inverted)',\n},\ndarkCard: {\n...baseCard,\nicon: LockClosedMIcon,\ncardId: 'VV',\noverlayProps: {\nvisible: true,\n},\n},\nproduct: {\nicon: SafeBoxMIcon,\nborderColor: 'var(--color-light-neutral-translucent-300)',\niconColor: 'var(--color-light-text-secondary)',\n},\n};\n\nreturn (\n
\n setViewSelected(selected.key)}\nOption={BaseOption}\n/>\n\n\n
\n);\n});" }, { "title": "ProductCover.Stack", "description": "Стопка доступна только для некоторых размеров карточек.\nЕсли карт больше двух, то в качестве контента для нижней карты рекомендуется передавать их количество, а вместо рубашки карты — заглушку.\nСмещение карт относительно друг-друга и размеры самой стопки предустановлены для конкретных размеров карточек.", -"desktop": "render(() => {\nconst [numberOfCards, setNumberOfCards] = React.useState('2');\nconst [sizeAndAlignCard, setSizeAndAlignCard] = React.useState('128-default');\n\nconst onChangeNumberOfCards = (_, payload) => {\nsetNumberOfCards(payload.value);\n};\n\nconst onChangeSizeCard = (_, payload) => {\nsetSizeAndAlignCard(payload.value);\n};\n\nconst SIZE_AND_ALIGN = {\n'128-default': {\nsize: 128,\nalign: 'default',\nshadow: '0px 0px 4px 0px rgba(0, 0, 0, 0.16)',\n},\n'40-default': { size: 40, align: 'default', shadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.10)' },\n'40-bottom': { size: 40, align: 'bottom', shadow: '0px 2px 2px 0px rgba(0, 0, 0, 0.10)' },\n'32-default': { size: 32, align: 'default', shadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.10)' },\n'16-default': { size: 16, align: 'default', shadow: 'none' },\n};\n\nconst CARD_COUNT = {\n2: undefined,\n3: 3,\n};\n\nconst sizeCard = SIZE_AND_ALIGN[sizeAndAlignCard].size;\nconst alignCard = SIZE_AND_ALIGN[sizeAndAlignCard].align;\nconst shadow = SIZE_AND_ALIGN[sizeAndAlignCard].shadow;\n\nconst firstCard = {\ncardNumber: 1234000000001234,\nshadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.20)',\nbaseUrl: 'https://online.alfabank.ru/cards-images/cards/',\nlayers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM',\ncardId: 'RM',\nshadow,\n};\n\nconst secondCard = {\n...(numberOfCards === '2' && {\nbaseUrl: 'https://online.alfabank.ru/cards-images/cards/',\nlayers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM',\ncardId: 'RM',\n}),\n...(sizeAndAlignCard === '40-default' && {\ncardNumber: 1234000000001234,\n}),\n};\n\nreturn (\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n);\n});" +"desktop": "render(() => {\nconst [numberOfCards, setNumberOfCards] = React.useState('2');\nconst [sizeAndAlignCard, setSizeAndAlignCard] = React.useState('128-default');\n\nconst onChangeNumberOfCards = (_, payload) => {\nsetNumberOfCards(payload.value);\n};\n\nconst onChangeSizeCard = (_, payload) => {\nsetSizeAndAlignCard(payload.value);\n};\n\nconst SIZE_AND_ALIGN = {\n'128-default': {\nsize: 128,\nalign: 'default',\nshadow: '0px 0px 4px 0px rgba(0, 0, 0, 0.16)',\n},\n'40-default': { size: 40, align: 'default', shadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.10)' },\n'40-bottom': { size: 40, align: 'bottom', shadow: '0px 2px 2px 0px rgba(0, 0, 0, 0.10)' },\n'32-default': { size: 32, align: 'default', shadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.10)' },\n'16-default': { size: 16, align: 'default', shadow: 'none' },\n};\n\nconst CARD_COUNT = {\n2: undefined,\n3: 3,\n};\n\nconst sizeCard = SIZE_AND_ALIGN[sizeAndAlignCard].size;\nconst alignCard = SIZE_AND_ALIGN[sizeAndAlignCard].align;\nconst shadow = SIZE_AND_ALIGN[sizeAndAlignCard].shadow;\n\nconst firstCard = {\ncardNumber: 1234000000001234,\nshadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.20)',\nbaseUrl: 'https://online.example.ru/cards-images/cards/',\nlayers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM',\ncardId: 'RM',\nshadow,\n};\n\nconst secondCard = {\n...(numberOfCards === '2' && {\nbaseUrl: 'https://online.example.ru/cards-images/cards/',\nlayers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM',\ncardId: 'RM',\n}),\n...(sizeAndAlignCard === '40-default' && {\ncardNumber: 1234000000001234,\n}),\n};\n\nreturn (\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n);\n});" } ] -} \ No newline at end of file +} diff --git a/packages/typography/src/docs/development.mdx b/packages/typography/src/docs/development.mdx index 68a87ccdfa..abb0e5b4cb 100644 --- a/packages/typography/src/docs/development.mdx +++ b/packages/typography/src/docs/development.mdx @@ -63,7 +63,7 @@ import { Typography } from '@alfalab/core-components/typography'; ## Хранение Рекомендуем использовать своё хранилище. -CDN alfabank.servicecdn.ru — ненадёжный вариант, можно рассматривать только как временное решение. +Предоставленный CDN — ненадёжный вариант, можно рассматривать только как временное решение. ## Чтение макетов From 84cb4a3f5dc6759a298cc4ae2f662e8f70bbe334 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Wed, 10 Jun 2026 17:47:07 +0700 Subject: [PATCH 07/35] feat: live example --- docs/typography.stories.mdx | 20 +++++++------- .../action-button/src/docs/description.mdx | 2 +- packages/link/src/docs/description.mdx | 6 ++--- .../product-cover/src/docs/description.mdx | 10 +++---- packages/typography/src/docs/development.mdx | 26 +++++++++++-------- 5 files changed, 34 insertions(+), 30 deletions(-) diff --git a/docs/typography.stories.mdx b/docs/typography.stories.mdx index 5479b06be7..a2974ec78c 100644 --- a/docs/typography.stories.mdx +++ b/docs/typography.stories.mdx @@ -3,7 +3,7 @@ import { Plate } from '@alfalab/core-components-plate'; import { StatusBadge } from '@alfalab/core-components-status-badge'; import { Typography } from '@alfalab/core-components-typography'; -export const CDN_HOST = process.env.SERVICE_CDN_HOST_ENV; +export const SERVICE_CDN_HOST_ENV = process.env.SERVICE_CDN_HOST_ENV; { ```jsx live render(() => { return ( - } href='http://www.alfabank.ru'> + } href='https://www.example.com'> {'Переход  по ссылке'} ); diff --git a/packages/link/src/docs/description.mdx b/packages/link/src/docs/description.mdx index 339909a189..509b9360dc 100644 --- a/packages/link/src/docs/description.mdx +++ b/packages/link/src/docs/description.mdx @@ -9,7 +9,7 @@ view='default' rel='noopener' target='_blank' - href='https://alfabank.ru/get-money/credit-cards/100-days/' + href='https://www.example.com/' > Default @@ -19,7 +19,7 @@ view='primary' rel='noopener' target='_blank' - href='https://alfabank.ru/get-money/credit-cards/100-days/' + href='https://www.example.com/' > Primary @@ -29,7 +29,7 @@ view='secondary' rel='noopener' target='_blank' - href='https://alfabank.ru/get-money/credit-cards/100-days/' + href='https://www.example.com/' > Secondary diff --git a/packages/product-cover/src/docs/description.mdx b/packages/product-cover/src/docs/description.mdx index cfc4286269..15b0c9d827 100644 --- a/packages/product-cover/src/docs/description.mdx +++ b/packages/product-cover/src/docs/description.mdx @@ -20,7 +20,7 @@ render(() => { size={size} cardholderName='Cardholder Name' cardNumber={1234000000001234} - baseUrl='https://online.alfabank.ru/cards-images/cards/' + baseUrl={`https://${AO_ENV}/cards-images/cards/`} layers='BACKGROUND,LOGO,PAYMENT_SYSTEM' cardId='RM' eyeButton={true} @@ -35,7 +35,7 @@ render(() => { size={size} cardholderName='Cardholder Name' cardNumber={1234000000001234} - baseUrl='https://online.alfabank.ru/cards-images/cards/' + baseUrl={`https://${AO_ENV}/cards-images/cards/`} layers='BACKGROUND,LOGO,PAYMENT_SYSTEM' cardId='RM' /> @@ -67,7 +67,7 @@ render(() => { const baseCard = { cardNumber: 1234000000001234, - baseUrl: 'https://online.alfabank.ru/cards-images/cards/', + baseUrl: `https://${AO_ENV}/cards-images/cards/`, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', }; @@ -178,7 +178,7 @@ render(() => { const firstCard = { cardNumber: 1234000000001234, shadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.20)', - baseUrl: 'https://online.alfabank.ru/cards-images/cards/', + baseUrl: `https://${AO_ENV}/cards-images/cards/`, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', shadow, @@ -186,7 +186,7 @@ render(() => { const secondCard = { ...(numberOfCards === '2' && { - baseUrl: 'https://online.alfabank.ru/cards-images/cards/', + baseUrl: `https://${AO_ENV}/cards-images/cards/`, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', }), diff --git a/packages/typography/src/docs/development.mdx b/packages/typography/src/docs/development.mdx index abb0e5b4cb..56cbde16a9 100644 --- a/packages/typography/src/docs/development.mdx +++ b/packages/typography/src/docs/development.mdx @@ -1,5 +1,8 @@ import { ArgsTabs } from 'storybook/blocks'; import { Typography } from '../component'; +import { Source } from '@storybook/addon-docs'; + +export const SERVICE_CDN_HOST_ENV = process.env.SERVICE_CDN_HOST_ENV; ## Подключение @@ -35,30 +38,31 @@ import { Typography } from '@alfalab/core-components/typography'; Для всех Styrene-элементов должна быть включена настройка `font-feature-settings: 'ss01';`, и рекомендуем не забыть про сглаживание `-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;`. -```css -@font-face { + ## Хранение @@ -71,7 +75,7 @@ import { Typography } from '@alfalab/core-components/typography'; чтобы получить возможные варианты реализации этого стиля в коде.
Date: Wed, 10 Jun 2026 18:23:03 +0700 Subject: [PATCH 08/35] feat: refactor env --- .storybook/main.js | 10 +--------- docs/typography.stories.mdx | 20 +++++++++---------- jest.screenshots.config.mjs | 2 +- packages/card-image/src/Component.tsx | 2 +- .../src/__snapshots__/Component.test.tsx.snap | 12 +++++------ .../card-image/src/docs/Component.stories.tsx | 2 +- packages/cdn-icon/src/Component.tsx | 2 +- packages/env/src/react-app.d.ts | 5 ++--- packages/product-cover/src/Component.test.tsx | 4 ++-- .../src/__snapshots__/Component.test.tsx.snap | 4 ++-- .../src/docs/Component.stories.tsx | 6 +++--- packages/screenshot-utils/src/helpers.ts | 2 +- .../src/__snapshots__/Component.test.tsx.snap | 8 ++++---- packages/typography/src/docs/development.mdx | 14 ++++++------- tools/jest/globalSetup.ts | 2 +- tools/rollup/rollup.config.mjs | 6 ++---- 16 files changed, 45 insertions(+), 56 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index 08a28d42b8..32e23bdcae 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -300,15 +300,7 @@ module.exports = { 'process.env.CORE_COMPONENTS_VARIANT': JSON.stringify( process.env.CORE_COMPONENTS_VARIANT, ), - 'process.env.CARD_IMAGES_ENV': JSON.stringify( - decodeBase64( - 'aHR0cHM6Ly9vbmxpbmUuYWxmYWJhbmsucnUvY2FyZHMtaW1hZ2VzL2NhcmRzLw==', - ), - ), - 'process.env.SERVICE_CDN_ICONS_ENV': JSON.stringify( - decodeBase64('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'), - ), - 'process.env.SERVICE_CDN_HOST_ENV': JSON.stringify( + 'process.env.CDN_ENV': JSON.stringify( decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), ), 'process.env.AO_ENV': JSON.stringify(decodeBase64('b25saW5lLmFsZmFiYW5rLnJ1')), diff --git a/docs/typography.stories.mdx b/docs/typography.stories.mdx index a2974ec78c..393b9b04fd 100644 --- a/docs/typography.stories.mdx +++ b/docs/typography.stories.mdx @@ -3,7 +3,7 @@ import { Plate } from '@alfalab/core-components-plate'; import { StatusBadge } from '@alfalab/core-components-status-badge'; import { Typography } from '@alfalab/core-components-typography'; -export const SERVICE_CDN_HOST_ENV = process.env.SERVICE_CDN_HOST_ENV; +export const CDN_ENV = process.env.CDN_ENV; /tsconfig.test.json' }); -process.env.SERVICE_CDN_HOST_ENV = decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='); +process.env.CDN_ENV = decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='); /** * @type {import('ts-jest').JestConfigWithTsJest} diff --git a/packages/card-image/src/Component.tsx b/packages/card-image/src/Component.tsx index 110d82b820..74cae6a643 100644 --- a/packages/card-image/src/Component.tsx +++ b/packages/card-image/src/Component.tsx @@ -5,7 +5,7 @@ import styles from './index.module.css'; export const ASPECT_RATIO = 0.63; export const DEFAULT_WIDTH = 280; -export const DEFAULT_BASE_URL = process.env.CARD_IMAGES_ENV; +export const DEFAULT_BASE_URL = `https://${process.env.AO_ENV}/cards-images/cards/`; export type CardImageProps = { /** diff --git a/packages/card-image/src/__snapshots__/Component.test.tsx.snap b/packages/card-image/src/__snapshots__/Component.test.tsx.snap index ba9c5c013b..3639d54048 100644 --- a/packages/card-image/src/__snapshots__/Component.test.tsx.snap +++ b/packages/card-image/src/__snapshots__/Component.test.tsx.snap @@ -81,8 +81,8 @@ exports[`CardImage Display tests should display with cardId and layers 1`] = ` class="image" height="176.4" role="presentation" - src="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER&width=280" - srcset="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER&width=560 2x" + src="https://example.com/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER&width=280" + srcset="https://example.com/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER&width=560 2x" width="280" />
@@ -102,8 +102,8 @@ exports[`CardImage Display tests should display with cardId correctly 1`] = ` class="image" height="176.4" role="presentation" - src="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" - srcset="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" + src="https://example.com/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" + srcset="https://example.com/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" width="280" /> @@ -118,8 +118,8 @@ exports[`CardImage Display tests should display with cardId correctly 1`] = ` class="image" height="176.4" role="presentation" - src="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" - srcset="https://example.com/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" + src="https://example.com/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" + srcset="https://example.com/cards-images/cards/ER/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" width="280" /> diff --git a/packages/card-image/src/docs/Component.stories.tsx b/packages/card-image/src/docs/Component.stories.tsx index 8aaac3f270..06cde7644c 100644 --- a/packages/card-image/src/docs/Component.stories.tsx +++ b/packages/card-image/src/docs/Component.stories.tsx @@ -23,7 +23,7 @@ export const card_image: Story = { )} width={number('width', 280)} rounded={boolean('rounded', false)} - baseUrl={text('baseUrl', process.env.CARD_IMAGES_ENV)} + baseUrl={text('baseUrl', `https://${process.env.AO_ENV}/cards-images/cards/`)} /> ); }, diff --git a/packages/cdn-icon/src/Component.tsx b/packages/cdn-icon/src/Component.tsx index 0383100cb4..87c3689c2f 100644 --- a/packages/cdn-icon/src/Component.tsx +++ b/packages/cdn-icon/src/Component.tsx @@ -41,7 +41,7 @@ export const CDNIcon: React.FC = ({ color, dataTestId, className, - baseUrl = process.env.SERVICE_CDN_ICONS_ENV, + baseUrl = `https://${process.env.CDN_ENV}/icons`, fallback, onError, }) => { diff --git a/packages/env/src/react-app.d.ts b/packages/env/src/react-app.d.ts index 4397a1a361..e6fbb49b57 100644 --- a/packages/env/src/react-app.d.ts +++ b/packages/env/src/react-app.d.ts @@ -8,9 +8,8 @@ declare namespace NodeJS { readonly NODE_ENV: 'development' | 'production' | 'test'; readonly CORE_COMPONENTS_ENV: 'development' | 'production' | 'test'; readonly CORE_COMPONENTS_VARIANT?: 'default' | 'alfasans'; - readonly CARD_IMAGES_ENV: string; - readonly SERVICE_CDN_ICONS_ENV: string; - SERVICE_CDN_HOST_ENV: string; + readonly AO_ENV: string; + CDN_ENV: string; } } diff --git a/packages/product-cover/src/Component.test.tsx b/packages/product-cover/src/Component.test.tsx index 8003d05c58..320b2da628 100644 --- a/packages/product-cover/src/Component.test.tsx +++ b/packages/product-cover/src/Component.test.tsx @@ -12,7 +12,7 @@ describe('ProductCover', () => { , @@ -155,7 +155,7 @@ describe('ProductCover', () => { it('renders ProductCover component with image', () => { const { container } = render( , diff --git a/packages/product-cover/src/__snapshots__/Component.test.tsx.snap b/packages/product-cover/src/__snapshots__/Component.test.tsx.snap index 880111013e..e9bff23edf 100644 --- a/packages/product-cover/src/__snapshots__/Component.test.tsx.snap +++ b/packages/product-cover/src/__snapshots__/Component.test.tsx.snap @@ -12,8 +12,8 @@ exports[`ProductCover Snapshots tests should match snapshots 1`] = ` @@ -43,8 +43,8 @@ exports[`Space Display tests should display radio group with one child correctly class="image" height="176.4" role="presentation" - src="https://example.com/EG/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" - srcset="https://example.com/EG/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" + src="https://example.com/cards-images/cards/EG/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=280" + srcset="https://example.com/cards-images/cards/EG/images?layers=BACKGROUND,CARD_NUMBER,CARD_HOLDER,PAY_PASS,CHIP,LOGO,PAYMENT_SYSTEM,RESERVED_1,RESERVED_2,VALID_DATE&width=560 2x" width="280" /> diff --git a/packages/typography/src/docs/development.mdx b/packages/typography/src/docs/development.mdx index 56cbde16a9..cab87ef2c8 100644 --- a/packages/typography/src/docs/development.mdx +++ b/packages/typography/src/docs/development.mdx @@ -2,7 +2,7 @@ import { ArgsTabs } from 'storybook/blocks'; import { Typography } from '../component'; import { Source } from '@storybook/addon-docs'; -export const SERVICE_CDN_HOST_ENV = process.env.SERVICE_CDN_HOST_ENV; +export const CDN_ENV = process.env.CDN_ENV; ## Подключение @@ -42,23 +42,23 @@ import { Typography } from '@alfalab/core-components/typography'; language='css' code={`@font-face { font-family: 'Styrene UI'; - src: url('https://${SERVICE_CDN_HOST_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff2') - format('woff2'), url('https://${SERVICE_CDN_HOST_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff') + src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff2') + format('woff2'), url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff') format('woff'); font-weight: 400; font-style: normal; } @font-face { font-family: 'Styrene UI'; - src: url('https://${SERVICE_CDN_HOST_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff2') format('woff2'), - url('https://${SERVICE_CDN_HOST_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff') format('woff'); + src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff2') format('woff2'), + url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff') format('woff'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Styrene UI'; - src: url('https://${SERVICE_CDN_HOST_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff2') format('woff2'), - url('https://${SERVICE_CDN_HOST_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff') format('woff'); + src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff2') format('woff2'), + url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff') format('woff'); font-weight: 700; font-style: normal; }`} diff --git a/tools/jest/globalSetup.ts b/tools/jest/globalSetup.ts index fe491ea557..69e83934e6 100644 --- a/tools/jest/globalSetup.ts +++ b/tools/jest/globalSetup.ts @@ -3,6 +3,6 @@ module.exports = async () => { // need to assign readonly CORE_COMPONENTS_ENV Object.assign(process.env, { CORE_COMPONENTS_ENV: process.env.NODE_ENV, - CARD_IMAGES_ENV: 'https://example.com/', + AO_ENV: 'example.com', }); }; diff --git a/tools/rollup/rollup.config.mjs b/tools/rollup/rollup.config.mjs index 045074f0da..49fc0835ca 100644 --- a/tools/rollup/rollup.config.mjs +++ b/tools/rollup/rollup.config.mjs @@ -44,10 +44,8 @@ const baseConfig = () => replace({ values: { 'process.env.CORE_COMPONENTS_ENV': JSON.stringify('production'), - 'process.env.CARD_IMAGES_ENV': JSON.stringify(process.env.CARD_IMAGES_ENV), - 'process.env.SERVICE_CDN_ICONS_ENV': JSON.stringify( - process.env.SERVICE_CDN_ICONS_ENV, - ), + 'process.env.CDN_ENV': JSON.stringify(process.env.CDN_ENV), + 'process.env.AO_ENV': JSON.stringify(process.env.AO_ENV), }, preventAssignment: true, }), From 4781180876998304107ffa2b15bffaa574e37ecb Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Wed, 10 Jun 2026 18:41:30 +0700 Subject: [PATCH 09/35] feat: live example --- docs/typography.stories.mdx | 9 ++++----- packages/typography/src/docs/development.mdx | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/docs/typography.stories.mdx b/docs/typography.stories.mdx index 393b9b04fd..229650854f 100644 --- a/docs/typography.stories.mdx +++ b/docs/typography.stories.mdx @@ -68,23 +68,22 @@ export const CDN_ENV = process.env.CDN_ENV; language='css' code={`@font-face { font-family: 'Styrene UI'; - src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff2') - format('woff2'), url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff') - format('woff'); + src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff2') format('woff2'), + url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff') format('woff'); font-weight: 400; font-style: normal; } @font-face { font-family: 'Styrene UI'; src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff2') format('woff2'), - url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff') format('woff'); + url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff') format('woff'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Styrene UI'; src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff2') format('woff2'), - url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff') format('woff'); + url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff') format('woff'); font-weight: 700; font-style: normal; }`} diff --git a/packages/typography/src/docs/development.mdx b/packages/typography/src/docs/development.mdx index cab87ef2c8..6af2b479e7 100644 --- a/packages/typography/src/docs/development.mdx +++ b/packages/typography/src/docs/development.mdx @@ -42,23 +42,22 @@ import { Typography } from '@alfalab/core-components/typography'; language='css' code={`@font-face { font-family: 'Styrene UI'; - src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff2') - format('woff2'), url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff') - format('woff'); + src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff2') format('woff2'), + url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff') format('woff'); font-weight: 400; font-style: normal; } @font-face { font-family: 'Styrene UI'; src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff2') format('woff2'), - url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff') format('woff'); + url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff') format('woff'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Styrene UI'; src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff2') format('woff2'), - url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff') format('woff'); + url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff') format('woff'); font-weight: 700; font-style: normal; }`} From fa8193449da9026c343da0d0049e9660af2ab66b Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Thu, 11 Jun 2026 12:55:05 +0700 Subject: [PATCH 10/35] feat: metrics --- .storybook/metrics/config.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.storybook/metrics/config.js b/.storybook/metrics/config.js index 02b68e31d4..4c25d3c400 100644 --- a/.storybook/metrics/config.js +++ b/.storybook/metrics/config.js @@ -1,3 +1,7 @@ +import { decodeBase64 } from '../../tools/decode-base-64'; + +const domain = decodeBase64('bWV0cmljcy5hbGZhYmFuay5ydQ=='); + export const setMetricConfig = () => { (function (p, l, o, w, i, n, g) { if (!p[i]) { @@ -13,14 +17,14 @@ export const setMetricConfig = () => { n.src = w; g.parentNode.insertBefore(n, g); } - })(window, document, 'script', 'https://metrics.alfabank.ru/metrica/sp.js', 'sp'); + })(window, document, 'script', `https://${domain}/metrica/sp.js`, 'sp'); function getMetricUrl() { const { hostname } = window.location; switch (hostname) { case 'core-ds.github.io': { - return 'metrics.alfabank.ru/metrica/intra'; + return `${domain}/metrica/intra`; } default: { return ''; From 5a8263c4ad294ffe9d65098b9326deac6e1d56e5 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Thu, 11 Jun 2026 13:02:16 +0700 Subject: [PATCH 11/35] feat: test --- packages/bank-card/src/Component.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/bank-card/src/Component.test.tsx b/packages/bank-card/src/Component.test.tsx index 5be0149708..b0912dec5b 100644 --- a/packages/bank-card/src/Component.test.tsx +++ b/packages/bank-card/src/Component.test.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { render, fireEvent } from '@testing-library/react'; -import { AlfaBankLIcon } from '@alfalab/icons-logotype/AlfaBankLIcon'; +import { DiamondsMIcon } from '@alfalab/icons-glyph/DiamondsMIcon'; import { BankCard } from './index'; @@ -124,7 +124,7 @@ describe('BankCard', () => { const dataTestId = 'test-id'; const logo = (
- +
); const { getByTestId } = render(); From 4fb2a3e7204c88485e9a2a9c99a2261469d07f82 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Thu, 11 Jun 2026 13:07:14 +0700 Subject: [PATCH 12/35] feat: typo --- packages/bottom-sheet/src/docs/description.mdx | 2 +- packages/button/src/docs/development.mdx | 11 +++++------ packages/collapse/src/docs/description.mdx | 4 ++-- packages/mcp/src/data/v50.12.2/bottom-sheet.json | 4 ++-- packages/mcp/src/data/v50.12.2/collapse.json | 4 ++-- packages/mcp/src/data/v50.12.2/modal.json | 6 +++--- packages/mcp/src/data/v50.12.2/side-panel.json | 6 +++--- packages/modal/src/docs/description.mdx | 4 ++-- packages/side-panel/src/docs/description.mdx | 4 ++-- packages/universal-modal/src/docs/description.mdx | 14 +++++++------- 10 files changed, 29 insertions(+), 30 deletions(-) diff --git a/packages/bottom-sheet/src/docs/description.mdx b/packages/bottom-sheet/src/docs/description.mdx index 483d46e1c5..f0148e4f27 100644 --- a/packages/bottom-sheet/src/docs/description.mdx +++ b/packages/bottom-sheet/src/docs/description.mdx @@ -125,7 +125,7 @@ const Text = ({ colors, onClose }) => ( Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки diff --git a/packages/button/src/docs/development.mdx b/packages/button/src/docs/development.mdx index c63a5897b7..4e284996fa 100644 --- a/packages/button/src/docs/development.mdx +++ b/packages/button/src/docs/development.mdx @@ -18,14 +18,13 @@ import styles from '!!raw-loader!../vars.css'; - В приложениях Альфа-Бизнес (НИБ) компонент должен переключаться в мобильный вид при ширине + В некоторыз приложениях компонент должен переключаться в мобильный вид при ширине 768px. Для этого необходимо установить свойство `breakpoint={768}`. Воспользуйтесь трансформером `button-breakpoint-768`, чтобы добавить брейкпоинт всем кнопкам в проекте. Трансформер доступен в `@alfalab/core-components-codemod`, начиная с версии `2.5.0`. - Если возникнут вопросы — свяжитесь с командой дизайн-системы Альфа-Бизнес в рокетчате - `#arui-private`. + Если возникнут вопросы — свяжитесь с командой дизайн-системы. @@ -41,15 +40,15 @@ import { ButtonMobile } from '@alfalab/core-components/button/mobile'; ## Использование dataTestId -В компоненте используется модификатор для `dataTestId`. -Для удобного поиска элементов можно воспользоваться функцией `getButtonTestIds`. +В компоненте используется модификатор для `dataTestId`. +Для удобного поиска элементов можно воспользоваться функцией `getButtonTestIds`. Импорт из `@alfalab/core-components/button/shared`. Функция возвращает объект: ```jsx { - button: dataTestId, + button: dataTestId, spinner: `${dataTestId}-loader`, }; ``` diff --git a/packages/collapse/src/docs/description.mdx b/packages/collapse/src/docs/description.mdx index 6df604d805..7cfbcea095 100644 --- a/packages/collapse/src/docs/description.mdx +++ b/packages/collapse/src/docs/description.mdx @@ -20,7 +20,7 @@ Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки. @@ -62,7 +62,7 @@ render(() => { Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки. diff --git a/packages/mcp/src/data/v50.12.2/bottom-sheet.json b/packages/mcp/src/data/v50.12.2/bottom-sheet.json index 87f423b4b3..3f15910e44 100644 --- a/packages/mcp/src/data/v50.12.2/bottom-sheet.json +++ b/packages/mcp/src/data/v50.12.2/bottom-sheet.json @@ -724,7 +724,7 @@ { "title": "Пресеты", "description": "Ниже представлены самые популярные кейсы настройки шторки.", -"desktop": "const Text = ({ colors, onClose }) => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.{' '}\n\nНажмите сюда, чтобы закрыть шторку без крестика\n\n\n\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка»\nсобрали понятные рекомендации, как сэкономить время на объяснения и предотвратить\nблокировки\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\n);\n\nconst HEADER_SELECT_OPTIONS = [\n{ key: 'withoutTitle', content: 'Нет заголовка' },\n{ key: 'defaultTitle', content: 'Стандартный' },\n{ key: 'compactTitle', content: 'Компактный' },\n{ key: 'compactTitleWithSubtitle', content: 'Компактный с подписью' },\n{ key: 'compactTitleWithCenterAlign', content: 'Компактный центрированный' },\n{\nkey: 'compactTitleWithSubtitleAndCenterAlign',\ncontent: 'Компактный центрированный с подписью',\n},\n];\n\nconst FOOTER_SELECT_OPTIONS = [\n{ key: 'vertical', content: 'Вертикальный' },\n{ key: 'horizontal', content: 'Горизонтальный' },\n];\n\nconst HEADER_SETTINGS = [\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nconst MECHANICS_SETTINGS = [\n{ label: 'Высота подстраивается под размер контента', name: 'adaptive' },\n{ label: 'Разрешить закрывать свайпом', name: 'swipeable' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\nconst [headerViewSelected, setHeaderView] = React.useState(HEADER_SELECT_OPTIONS[0].key);\nconst [footerViewSelected, setFooterView] = React.useState(FOOTER_SELECT_OPTIONS[0].key);\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\nconst [mechanics, setMechanics] = React.useState(() =>\nMECHANICS_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst [themeSettings, setThemeSettings] = React.useState(() => ({\ninverted: false,\n}));\n\nconst colors = themeSettings.inverted ? 'inverted' : 'default';\n\nconst [backgroundColorSelected, setBackgroundColor] = React.useState('primary');\n\nconst showHeader =\nheaderViewSelected !== HEADER_SELECT_OPTIONS[0].key ||\nheaderSettings.hasCloser ||\nheaderSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nconst getKey = () =>\n`${JSON.stringify({\n...headerSettings,\n...mechanics,\n...footerSettings,\n...themeSettings,\nbackgroundColor: backgroundColorSelected,\n})}-${headerViewSelected}-${footerViewSelected}`;\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleMechanicsChange = (_, { name, checked }) => {\nsetMechanics((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleThemeChange = (_, { name, checked }) => {\nsetThemeSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nreturn (\n\n\nПоказать шторку\n\n\n\n\n

Настройки шапки

\n\n setHeaderView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n

Настройки футера

\n\n setFooterView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n{MECHANICS_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n setBackgroundColor(value)}\n>\n\n\n\n\n\n{footerSettings.hasSecondaryButton && (\n\nSecondary\n\n)}\n\n{footerSettings.hasPrimaryButton &&\nfooterSettings.hasSecondaryButton ? (\n\n) : null}\n\n{footerSettings.hasPrimaryButton && (\n\nPrimary\n\n)}\n\n) : undefined\n}\n>\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n\n\n
\n);\n});" +"desktop": "const Text = ({ colors, onClose }) => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.{' '}\n\nНажмите сюда, чтобы закрыть шторку без крестика\n\n\n\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты\nсобрали понятные рекомендации, как сэкономить время на объяснения и предотвратить\nблокировки\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\n);\n\nconst HEADER_SELECT_OPTIONS = [\n{ key: 'withoutTitle', content: 'Нет заголовка' },\n{ key: 'defaultTitle', content: 'Стандартный' },\n{ key: 'compactTitle', content: 'Компактный' },\n{ key: 'compactTitleWithSubtitle', content: 'Компактный с подписью' },\n{ key: 'compactTitleWithCenterAlign', content: 'Компактный центрированный' },\n{\nkey: 'compactTitleWithSubtitleAndCenterAlign',\ncontent: 'Компактный центрированный с подписью',\n},\n];\n\nconst FOOTER_SELECT_OPTIONS = [\n{ key: 'vertical', content: 'Вертикальный' },\n{ key: 'horizontal', content: 'Горизонтальный' },\n];\n\nconst HEADER_SETTINGS = [\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nconst MECHANICS_SETTINGS = [\n{ label: 'Высота подстраивается под размер контента', name: 'adaptive' },\n{ label: 'Разрешить закрывать свайпом', name: 'swipeable' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\nconst [headerViewSelected, setHeaderView] = React.useState(HEADER_SELECT_OPTIONS[0].key);\nconst [footerViewSelected, setFooterView] = React.useState(FOOTER_SELECT_OPTIONS[0].key);\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\nconst [mechanics, setMechanics] = React.useState(() =>\nMECHANICS_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst [themeSettings, setThemeSettings] = React.useState(() => ({\ninverted: false,\n}));\n\nconst colors = themeSettings.inverted ? 'inverted' : 'default';\n\nconst [backgroundColorSelected, setBackgroundColor] = React.useState('primary');\n\nconst showHeader =\nheaderViewSelected !== HEADER_SELECT_OPTIONS[0].key ||\nheaderSettings.hasCloser ||\nheaderSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nconst getKey = () =>\n`${JSON.stringify({\n...headerSettings,\n...mechanics,\n...footerSettings,\n...themeSettings,\nbackgroundColor: backgroundColorSelected,\n})}-${headerViewSelected}-${footerViewSelected}`;\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleMechanicsChange = (_, { name, checked }) => {\nsetMechanics((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleThemeChange = (_, { name, checked }) => {\nsetThemeSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nreturn (\n\n\nПоказать шторку\n\n\n\n\n

Настройки шапки

\n\n setHeaderView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n

Настройки футера

\n\n setFooterView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n{MECHANICS_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n setBackgroundColor(value)}\n>\n\n\n\n\n\n{footerSettings.hasSecondaryButton && (\n\nSecondary\n\n)}\n\n{footerSettings.hasPrimaryButton &&\nfooterSettings.hasSecondaryButton ? (\n\n) : null}\n\n{footerSettings.hasPrimaryButton && (\n\nPrimary\n\n)}\n\n) : undefined\n}\n>\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n\n\n
\n);\n});" }, { "title": "Последовательность шагов", @@ -737,4 +737,4 @@ "desktop": "const VARIANTS = {\nMIN_MAX: 'min_max',\nEXTRA_AREA: 'extra_area',\nEXT_TRIGGER: 'ext_trigger',\n};\n\nconst SETTINGS = [\n{\nlabel: 'Минимальная и максимальная высота',\ndesc: 'Шторка откроется на 200рх, её можно будет растянуть на кастомную максимальную высоту, ограниченную 100рх до верха экрана. Свайп вниз от минимальной высоты закроет шторку.',\nvalue: VARIANTS.MIN_MAX,\n},\n{\nlabel: 'Промежуточная магнитная область',\ndesc: 'У шторки будет минимальная и максимальная высота, а между ними промежуточная магнитная область.',\nvalue: VARIANTS.EXTRA_AREA,\n},\n{\nlabel: 'Внешний триггер',\ndesc: 'Изначально шторка будет открыта на свою минимальную высоту, но по тапу на кнопку шторку можно будет открыть полностью.',\nvalue: VARIANTS.EXT_TRIGGER,\n},\n];\n\nconst VARIANT_PROPS_MAP = {\n[VARIANTS.MIN_MAX]: { magneticAreas: [0, 200, -100], initialActiveAreaIndex: 1 },\n[VARIANTS.EXTRA_AREA]: { magneticAreas: [0, 100, '50%', -100] },\n[VARIANTS.EXT_TRIGGER]: {\nmagneticAreas: [0, 200, -100],\nhideOverlay: true,\ninitialActiveAreaIndex: 1,\n},\n};\n\nconst ITEM_STYLES = {\ndisplay: 'flex',\nalignItems: 'center',\njustifyContent: 'center',\ntransition: 'background 0.2s ease-in, border 0.2s ease-in',\nborderRadius: '8px',\nbackground: 'rgba(55, 120, 251, 0.1)',\nborder: `1px dashed #3778FB`,\ncolor: '#3778FB',\nwidth: '100%',\nboxSizing: 'border-box',\nheight: 170,\n};\n\nconst WRAPPER_STYLES = {\npadding: 20,\nmargin: -20,\nheight: 600,\ntransition: 'background-color 0.3s ease',\n};\n\nrender(() => {\nconst [checked, setChecked] = React.useState(VARIANTS.MIN_MAX);\nconst [open, setOpen] = React.useState(false);\nconst [activeAreaIdx, setActiveAreaIdx] = React.useState(0);\nconst bottomSheetRef = React.useRef(null);\n\nconst variantProps = VARIANT_PROPS_MAP[checked];\nconst isExternalTrigger = checked === VARIANTS.EXT_TRIGGER && open;\nconst scrollLocked = activeAreaIdx !== variantProps.magneticAreas.length - 1;\nconst openWithExternalTrigger = isExternalTrigger && open;\nconst isNotLastAreaWithExtTrigger = openWithExternalTrigger && scrollLocked;\n\nconst handleOpen = () => {\nsetOpen(true);\n};\n\nconst handleClose = () => setOpen(false);\n\nconst handleAreaChange = (idx) => setActiveAreaIdx(idx);\n\nconst magnetizeToLastArea = () =>\nbottomSheetRef.current.scrollToArea(variantProps.magneticAreas.length - 1);\n\nreturn (\n\n\n{isExternalTrigger ? 'Открыть полностью' : 'Показать шторку'}\n\n\n\n\n setChecked(payload.value)}\n>\n{SETTINGS.map((item) => (\n\n))}\n\n\n\n
\n{[1, 2, 3, 4, 5].map((item) => (\n
\n{item}\n
\n))}\n
\n\n\n);\n});" } ] -} \ No newline at end of file +} diff --git a/packages/mcp/src/data/v50.12.2/collapse.json b/packages/mcp/src/data/v50.12.2/collapse.json index d66ab0473c..c2e49698e1 100644 --- a/packages/mcp/src/data/v50.12.2/collapse.json +++ b/packages/mcp/src/data/v50.12.2/collapse.json @@ -120,7 +120,7 @@ { "title": "Примеры", "description": "Стандартный вид компонента.", -"desktop": "
\n\nПочему банк проверяет мои операции?\n\n\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии легализации\nдоходов, полученных преступным путём, и финансированию терроризма». В рамках закона банки\nмогут блокировать карты, отказывать в проведении сомнительных операций, ограничить доступ в\nинтернет-банк или запрашивать документы, если по операции клиента возникли подозрения.\n\n\n\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки.\n\n\n
" +"desktop": "
\n\nПочему банк проверяет мои операции?\n\n\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии легализации\nдоходов, полученных преступным путём, и финансированию терроризма». В рамках закона банки\nмогут блокировать карты, отказывать в проведении сомнительных операций, ограничить доступ в\nинтернет-банк или запрашивать документы, если по операции клиента возникли подозрения.\n\n\n\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки.\n\n\n
" } ] -} \ No newline at end of file +} diff --git a/packages/mcp/src/data/v50.12.2/modal.json b/packages/mcp/src/data/v50.12.2/modal.json index 4a2c8ab3fa..8d18c0e95e 100644 --- a/packages/mcp/src/data/v50.12.2/modal.json +++ b/packages/mcp/src/data/v50.12.2/modal.json @@ -391,8 +391,8 @@ { "title": "Пресеты", "description": "Ниже представлены самые популярные кейсы настройки модальных окон.", -"desktop": "const Text = () => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.\n\n
\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки\n\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\nВывод капитала за границу — это переводы нерезидентам по договорам об импорте\nработ/услуг и результатов интеллектуальной деятельности, по которым проведение\nрасчётов осуществляется без одновременной уплаты НДС; по сделкам купли-продажи\nценных бумаг, а также товаров, которые не пересекают границу России.\n\n
\n\nТранзитные операции — операции, в процессе которых деньги поступают на счёт компании\nот других резидентов и списываются в короткие сроки. При этом, как правило, в этих\nслучаях по счёту нет начислений зарплат, уплаты налогов, и они не соответствуют\nзаявленному компанией виду деятельности.\n\n
\n\nЗапрашивать могут любые документы и устанавливать разные сроки их предоставления —\nэто зависит от службы контроля конкретного банка. Обычно банки запрашивают чеки,\nсчета или договора с контрагентами. В некоторых случаях бывает достаточно устных\nобъяснений. Для проверки информации и пересмотра уровня риска банк может пригласить\nклиента в банк для устного разъяснения или выехать по месту ведения бизнеса клиента.\n\n
\n\n);\n\nconst SIZES = [\n{ value: '500', label: 'Small (500рх)' },\n{ value: '600', label: 'Medium (600рх)' },\n{ value: '800', label: 'Large (800рх)' },\n{ value: '1140', label: 'xLarge (1140рх)' },\n{ value: 'fullscreen', label: 'FullScreen' },\n];\n\nconst HEADER_SETTINGS = [\n{ label: 'Заголовок', name: 'hasTitle' },\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\nconst [size, setSize] = React.useState('500');\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst showHeader =\nheaderSettings.hasTitle || headerSettings.hasCloser || headerSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nconst getKey = () => JSON.stringify(headerSettings);\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleSizeChange = (_, { value }) => {\nsetSize(value);\n};\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nreturn (\n\n\n\n\n\n\n{SIZES.map((item) => (\n\n))}\n\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n\n\n{showHeader && (\n\n)}\n\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n\n{showFooter && (\n\n\nPrimary\n\n) : null\n}\nsecondary={\nfooterSettings.hasSecondaryButton ? (\n\n) : null\n}\n/>\n\n)}\n\n\n);\n});", -"mobile": "const Text = ({ onClose }) => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.{' '}\nНажмите сюда, чтобы закрыть модалку без крестика\n\n
\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки\n\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\nВывод капитала за границу — это переводы нерезидентам по договорам об импорте\nработ/услуг и результатов интеллектуальной деятельности, по которым проведение\nрасчётов осуществляется без одновременной уплаты НДС; по сделкам купли-продажи\nценных бумаг, а также товаров, которые не пересекают границу России.\n\n
\n\nТранзитные операции — операции, в процессе которых деньги поступают на счёт компании\nот других резидентов и списываются в короткие сроки. При этом, как правило, в этих\nслучаях по счёту нет начислений зарплат, уплаты налогов, и они не соответствуют\nзаявленному компанией виду деятельности.\n\n
\n\nЗапрашивать могут любые документы и устанавливать разные сроки их предоставления —\nэто зависит от службы контроля конкретного банка. Обычно банки запрашивают чеки,\nсчета или договора с контрагентами. В некоторых случаях бывает достаточно устных\nобъяснений. Для проверки информации и пересмотра уровня риска банк может пригласить\nклиента в банк для устного разъяснения или выехать по месту ведения бизнеса клиента.\n\n
\n\n);\n\nconst HEADER_SELECT_OPTIONS = [\n{ key: 'withoutTitle', content: 'Нет заголовка' },\n{ key: 'defaultTitle', content: 'Стандартный' },\n{ key: 'compactTitle', content: 'Компактный' },\n{ key: 'compactTitleWithSubtitle', content: 'Компактный с подписью' },\n{ key: 'compactTitleWithCenterAlign', content: 'Компактный центрированный' },\n{\nkey: 'compactTitleWithSubtitleAndCenterAlign',\ncontent: 'Компактный центрированный с подписью',\n},\n];\n\nconst FOOTER_SELECT_OPTIONS = [\n{ key: 'vertical', content: 'Вертикальный' },\n{ key: 'horizontal', content: 'Горизонтальный' },\n];\n\nconst HEADER_SETTINGS = [\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\nconst [headerViewSelected, setHeaderView] = React.useState(HEADER_SELECT_OPTIONS[0].key);\nconst [footerViewSelected, setFooterView] = React.useState(FOOTER_SELECT_OPTIONS[0].key);\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst showHeader =\nheaderViewSelected !== HEADER_SELECT_OPTIONS[0].key ||\nheaderSettings.hasCloser ||\nheaderSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nconst getKey = () =>\n`${JSON.stringify(headerSettings)}-${headerViewSelected}-${footerViewSelected}`;\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nreturn (\n\n\n\n\n\n

Настройки шапки

\n\n setHeaderView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n

Настройки футера

\n\n setFooterView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n\n\n{showHeader && (\n\n)}\n\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n\n\n{showFooter && (\n\n\nPrimary\n\n) : null\n}\nsecondary={\nfooterSettings.hasSecondaryButton ? (\n\nSecondary\n\n) : null\n}\n/>\n\n)}\n\n
\n);\n});" +"desktop": "const Text = () => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.\n\n
\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки\n\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\nВывод капитала за границу — это переводы нерезидентам по договорам об импорте\nработ/услуг и результатов интеллектуальной деятельности, по которым проведение\nрасчётов осуществляется без одновременной уплаты НДС; по сделкам купли-продажи\nценных бумаг, а также товаров, которые не пересекают границу России.\n\n
\n\nТранзитные операции — операции, в процессе которых деньги поступают на счёт компании\nот других резидентов и списываются в короткие сроки. При этом, как правило, в этих\nслучаях по счёту нет начислений зарплат, уплаты налогов, и они не соответствуют\nзаявленному компанией виду деятельности.\n\n
\n\nЗапрашивать могут любые документы и устанавливать разные сроки их предоставления —\nэто зависит от службы контроля конкретного банка. Обычно банки запрашивают чеки,\nсчета или договора с контрагентами. В некоторых случаях бывает достаточно устных\nобъяснений. Для проверки информации и пересмотра уровня риска банк может пригласить\nклиента в банк для устного разъяснения или выехать по месту ведения бизнеса клиента.\n\n
\n\n);\n\nconst SIZES = [\n{ value: '500', label: 'Small (500рх)' },\n{ value: '600', label: 'Medium (600рх)' },\n{ value: '800', label: 'Large (800рх)' },\n{ value: '1140', label: 'xLarge (1140рх)' },\n{ value: 'fullscreen', label: 'FullScreen' },\n];\n\nconst HEADER_SETTINGS = [\n{ label: 'Заголовок', name: 'hasTitle' },\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\nconst [size, setSize] = React.useState('500');\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst showHeader =\nheaderSettings.hasTitle || headerSettings.hasCloser || headerSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nconst getKey = () => JSON.stringify(headerSettings);\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleSizeChange = (_, { value }) => {\nsetSize(value);\n};\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nreturn (\n\n\n\n\n\n\n{SIZES.map((item) => (\n\n))}\n\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n\n\n{showHeader && (\n\n)}\n\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n\n{showFooter && (\n\n\nPrimary\n\n) : null\n}\nsecondary={\nfooterSettings.hasSecondaryButton ? (\n\n) : null\n}\n/>\n\n)}\n\n\n);\n});", +"mobile": "const Text = ({ onClose }) => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.{' '}\nНажмите сюда, чтобы закрыть модалку без крестика\n\n
\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки\n\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\nВывод капитала за границу — это переводы нерезидентам по договорам об импорте\nработ/услуг и результатов интеллектуальной деятельности, по которым проведение\nрасчётов осуществляется без одновременной уплаты НДС; по сделкам купли-продажи\nценных бумаг, а также товаров, которые не пересекают границу России.\n\n
\n\nТранзитные операции — операции, в процессе которых деньги поступают на счёт компании\nот других резидентов и списываются в короткие сроки. При этом, как правило, в этих\nслучаях по счёту нет начислений зарплат, уплаты налогов, и они не соответствуют\nзаявленному компанией виду деятельности.\n\n
\n\nЗапрашивать могут любые документы и устанавливать разные сроки их предоставления —\nэто зависит от службы контроля конкретного банка. Обычно банки запрашивают чеки,\nсчета или договора с контрагентами. В некоторых случаях бывает достаточно устных\nобъяснений. Для проверки информации и пересмотра уровня риска банк может пригласить\nклиента в банк для устного разъяснения или выехать по месту ведения бизнеса клиента.\n\n
\n\n);\n\nconst HEADER_SELECT_OPTIONS = [\n{ key: 'withoutTitle', content: 'Нет заголовка' },\n{ key: 'defaultTitle', content: 'Стандартный' },\n{ key: 'compactTitle', content: 'Компактный' },\n{ key: 'compactTitleWithSubtitle', content: 'Компактный с подписью' },\n{ key: 'compactTitleWithCenterAlign', content: 'Компактный центрированный' },\n{\nkey: 'compactTitleWithSubtitleAndCenterAlign',\ncontent: 'Компактный центрированный с подписью',\n},\n];\n\nconst FOOTER_SELECT_OPTIONS = [\n{ key: 'vertical', content: 'Вертикальный' },\n{ key: 'horizontal', content: 'Горизонтальный' },\n];\n\nconst HEADER_SETTINGS = [\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\nconst [headerViewSelected, setHeaderView] = React.useState(HEADER_SELECT_OPTIONS[0].key);\nconst [footerViewSelected, setFooterView] = React.useState(FOOTER_SELECT_OPTIONS[0].key);\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst showHeader =\nheaderViewSelected !== HEADER_SELECT_OPTIONS[0].key ||\nheaderSettings.hasCloser ||\nheaderSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nconst getKey = () =>\n`${JSON.stringify(headerSettings)}-${headerViewSelected}-${footerViewSelected}`;\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nreturn (\n\n\n\n\n\n

Настройки шапки

\n\n setHeaderView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n

Настройки футера

\n\n setFooterView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n\n\n{showHeader && (\n\n)}\n\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n\n\n{showFooter && (\n\n\nPrimary\n\n) : null\n}\nsecondary={\nfooterSettings.hasSecondaryButton ? (\n\nSecondary\n\n) : null\n}\n/>\n\n)}\n\n
\n);\n});" }, { "title": "Последовательность шагов", @@ -400,4 +400,4 @@ "desktop": "const DATA = {\n1: {\ntitle: 'Первый уровень',\nbtnText: 'Дальше',\nbg: 'rgba(55, 120, 251, 0.1)',\ncolor: '#3778FB',\n},\n2: {\ntitle: 'Второй уровень',\nbtnText: 'Дальше',\nbg: 'rgba(207, 112, 255, 0.1)',\ncolor: '#CF70FF',\n},\n3: {\ntitle: 'Третий уровень',\nbtnText: 'Готово',\nbg: 'rgba(112, 255, 126, 0.1)',\ncolor: '#058102',\n},\n};\n\nrender(() => {\nconst [step, setStep] = React.useState(1);\nconst [open, setOpen] = React.useState(false);\n\nconst handleOpen = () => {\nsetOpen(true);\nsetStep(1);\n};\nconst handleClose = () => setOpen(false);\n\nconst item = DATA[step];\n\nconst commonStyles = {\ndisplay: 'flex',\nalignItems: 'center',\njustifyContent: 'center',\ntransition: 'background 0.2s ease-in, border 0.2s ease-in',\nborderRadius: '8px',\nbackground: item.bg,\nborder: `1px dashed ${item.color}`,\ncolor: item.color,\nwidth: '100%',\nboxSizing: 'border-box',\n};\n\nreturn (\n\n\n\n\n setStep(step - 1)}\n/>\n\n\n{step}\n\n\n\n setStep(step + 1) : handleClose\n}\n>\n{item.btnText}\n\n\n\n\n);\n});" } ] -} \ No newline at end of file +} diff --git a/packages/mcp/src/data/v50.12.2/side-panel.json b/packages/mcp/src/data/v50.12.2/side-panel.json index d663ccbd5e..f794969884 100644 --- a/packages/mcp/src/data/v50.12.2/side-panel.json +++ b/packages/mcp/src/data/v50.12.2/side-panel.json @@ -413,8 +413,8 @@ { "title": "Пресеты", "description": "Ниже представлены самые популярные кейсы настройки сайд-панели.", -"desktop": "const Text = () => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.\n\n
\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки\n\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\nВывод капитала за границу — это переводы нерезидентам по договорам об импорте\nработ/услуг и результатов интеллектуальной деятельности, по которым проведение\nрасчётов осуществляется без одновременной уплаты НДС; по сделкам купли-продажи\nценных бумаг, а также товаров, которые не пересекают границу России.\n\n
\n\nТранзитные операции — операции, в процессе которых деньги поступают на счёт компании\nот других резидентов и списываются в короткие сроки. При этом, как правило, в этих\nслучаях по счёту нет начислений зарплат, уплаты налогов, и они не соответствуют\nзаявленному компанией виду деятельности.\n\n
\n\nЗапрашивать могут любые документы и устанавливать разные сроки их предоставления —\nэто зависит от службы контроля конкретного банка. Обычно банки запрашивают чеки,\nсчета или договора с контрагентами. В некоторых случаях бывает достаточно устных\nобъяснений. Для проверки информации и пересмотра уровня риска банк может пригласить\nклиента в банк для устного разъяснения или выехать по месту ведения бизнеса клиента.\n\n
\n\n);\n\nconst HEADER_SETTINGS = [\n{ label: 'Заголовок', name: 'hasTitle' },\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\n\nconst [radioState, setRadioState] = React.useState({\nplacement: 'right',\nscrollbar: 'native',\n});\n\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\n\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst getKey = () => JSON.stringify(headerSettings);\n\nconst handleRadioStateChange = (key, _, payload) => {\nsetRadioState((state) => ({ ...state, [key]: payload.value }));\n};\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst showHeader =\nheaderSettings.hasTitle || headerSettings.hasCloser || headerSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nreturn (\n\n\n\n\n\n\n{showHeader && (\n\n)}\n\n
\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n
\n
\n{showFooter && (\n\n\nPrimary\n\n) : null\n}\nsecondary={\nfooterSettings.hasSecondaryButton ? (\n\n) : null\n}\n/>\n\n)}\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n
\n);\n});", -"mobile": "const Text = ({ onClose }) => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.{' '}\nНажмите сюда, чтобы закрыть модалку без крестика\n\n
\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки\n\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\nВывод капитала за границу — это переводы нерезидентам по договорам об импорте\nработ/услуг и результатов интеллектуальной деятельности, по которым проведение\nрасчётов осуществляется без одновременной уплаты НДС; по сделкам купли-продажи\nценных бумаг, а также товаров, которые не пересекают границу России.\n\n
\n\nТранзитные операции — операции, в процессе которых деньги поступают на счёт компании\nот других резидентов и списываются в короткие сроки. При этом, как правило, в этих\nслучаях по счёту нет начислений зарплат, уплаты налогов, и они не соответствуют\nзаявленному компанией виду деятельности.\n\n
\n\nЗапрашивать могут любые документы и устанавливать разные сроки их предоставления —\nэто зависит от службы контроля конкретного банка. Обычно банки запрашивают чеки,\nсчета или договора с контрагентами. В некоторых случаях бывает достаточно устных\nобъяснений. Для проверки информации и пересмотра уровня риска банк может пригласить\nклиента в банк для устного разъяснения или выехать по месту ведения бизнеса клиента.\n\n
\n\n);\n\nconst HEADER_SELECT_OPTIONS = [\n{ key: 'withoutTitle', content: 'Нет заголовка' },\n{ key: 'defaultTitle', content: 'Стандартный' },\n{ key: 'compactTitle', content: 'Компактный' },\n{ key: 'compactTitleWithSubtitle', content: 'Компактный с подписью' },\n{ key: 'compactTitleWithCenterAlign', content: 'Компактный центрированный' },\n{\nkey: 'compactTitleWithSubtitleAndCenterAlign',\ncontent: 'Компактный центрированный с подписью',\n},\n];\n\nconst FOOTER_SELECT_OPTIONS = [\n{ key: 'vertical', content: 'Вертикальный' },\n{ key: 'horizontal', content: 'Горизонтальный' },\n];\n\nconst HEADER_SETTINGS = [\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\nconst [headerViewSelected, setHeaderView] = React.useState(HEADER_SELECT_OPTIONS[0].key);\nconst [footerViewSelected, setFooterView] = React.useState(FOOTER_SELECT_OPTIONS[0].key);\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst showHeader =\nheaderViewSelected !== HEADER_SELECT_OPTIONS[0].key ||\nheaderSettings.hasCloser ||\nheaderSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nconst getKey = () =>\n`${JSON.stringify(headerSettings)}-${headerViewSelected}-${footerViewSelected}`;\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nreturn (\n\n\n\n\n\n

Настройки шапки

\n\n setHeaderView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n

Настройки футера

\n\n setFooterView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n\n\n{showHeader && (\n\n)}\n\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n\n\n{showFooter && (\n\n\nPrimary\n\n) : null\n}\nsecondary={\nfooterSettings.hasSecondaryButton ? (\n\nSecondary\n\n) : null\n}\n/>\n\n)}\n\n
\n);\n});" +"desktop": "const Text = () => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.\n\n
\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки\n\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\nВывод капитала за границу — это переводы нерезидентам по договорам об импорте\nработ/услуг и результатов интеллектуальной деятельности, по которым проведение\nрасчётов осуществляется без одновременной уплаты НДС; по сделкам купли-продажи\nценных бумаг, а также товаров, которые не пересекают границу России.\n\n
\n\nТранзитные операции — операции, в процессе которых деньги поступают на счёт компании\nот других резидентов и списываются в короткие сроки. При этом, как правило, в этих\nслучаях по счёту нет начислений зарплат, уплаты налогов, и они не соответствуют\nзаявленному компанией виду деятельности.\n\n
\n\nЗапрашивать могут любые документы и устанавливать разные сроки их предоставления —\nэто зависит от службы контроля конкретного банка. Обычно банки запрашивают чеки,\nсчета или договора с контрагентами. В некоторых случаях бывает достаточно устных\nобъяснений. Для проверки информации и пересмотра уровня риска банк может пригласить\nклиента в банк для устного разъяснения или выехать по месту ведения бизнеса клиента.\n\n
\n\n);\n\nconst HEADER_SETTINGS = [\n{ label: 'Заголовок', name: 'hasTitle' },\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\n\nconst [radioState, setRadioState] = React.useState({\nplacement: 'right',\nscrollbar: 'native',\n});\n\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\n\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst getKey = () => JSON.stringify(headerSettings);\n\nconst handleRadioStateChange = (key, _, payload) => {\nsetRadioState((state) => ({ ...state, [key]: payload.value }));\n};\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst showHeader =\nheaderSettings.hasTitle || headerSettings.hasCloser || headerSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nreturn (\n\n\n\n\n\n\n{showHeader && (\n\n)}\n\n
\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n
\n
\n{showFooter && (\n\n\nPrimary\n\n) : null\n}\nsecondary={\nfooterSettings.hasSecondaryButton ? (\n\n) : null\n}\n/>\n\n)}\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n
\n);\n});", +"mobile": "const Text = ({ onClose }) => (\n<>\n\nВ 2001 году в России начал действовать Федеральный закон №115 «О противодействии\nлегализации доходов, полученных преступным путём, и финансированию терроризма». В рамках\nзакона банки могут блокировать карты, отказывать в проведении сомнительных операций,\nограничить доступ в интернет-банк или запрашивать документы, если по операции клиента\nвозникли подозрения.{' '}\nНажмите сюда, чтобы закрыть модалку без крестика\n\n
\n\nТребования 115-ФЗ и связанных с ним документов Банка России часто меняются,\nпредприниматели не всегда успевают за ними следить. Последствия нарушений\n«антиотмывочного» законодательства всегда неприятны: приходится остановить\nбизнес-процессы и доказать банку законность операций. Специалисты собрали\nпонятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки\n\n\n\n115-ФЗ Касается всех предпринимателей, фирм и физлиц, а также тех, кто пользуется\nбанковским счётом для бизнеса, крупных денежных переводов или личных расчётов.\nОграничения интернет-банка, блокировка карт добросовестных компаний могут произойти\nиз-за неправильно оформленных документов, ошибок в платёжке или попыток снизить\nналоги.\n\n
\n\nКлиенты воспринимают ограничения как атаку со стороны банка, но чаще всего сами\nдопускают ошибки или нарушения, которых можно избежать. Банки не преследуют цели\nдоставить неудобства клиентам — они обязаны соблюдать законодательство и следовать\nинструкциям и рекомендациям ЦБ, а в противном случае рискуют лишиться лицензии.\n\n
\n\nОбналичивание — сомнительные операции, когда юрлицо или предприниматель снимает со\nсчёта более 80% от оборота или переводит деньги на счета физлиц, которые затем\nснимают в наличной форме.\n\n
\n\nВывод капитала за границу — это переводы нерезидентам по договорам об импорте\nработ/услуг и результатов интеллектуальной деятельности, по которым проведение\nрасчётов осуществляется без одновременной уплаты НДС; по сделкам купли-продажи\nценных бумаг, а также товаров, которые не пересекают границу России.\n\n
\n\nТранзитные операции — операции, в процессе которых деньги поступают на счёт компании\nот других резидентов и списываются в короткие сроки. При этом, как правило, в этих\nслучаях по счёту нет начислений зарплат, уплаты налогов, и они не соответствуют\nзаявленному компанией виду деятельности.\n\n
\n\nЗапрашивать могут любые документы и устанавливать разные сроки их предоставления —\nэто зависит от службы контроля конкретного банка. Обычно банки запрашивают чеки,\nсчета или договора с контрагентами. В некоторых случаях бывает достаточно устных\nобъяснений. Для проверки информации и пересмотра уровня риска банк может пригласить\nклиента в банк для устного разъяснения или выехать по месту ведения бизнеса клиента.\n\n
\n\n);\n\nconst HEADER_SELECT_OPTIONS = [\n{ key: 'withoutTitle', content: 'Нет заголовка' },\n{ key: 'defaultTitle', content: 'Стандартный' },\n{ key: 'compactTitle', content: 'Компактный' },\n{ key: 'compactTitleWithSubtitle', content: 'Компактный с подписью' },\n{ key: 'compactTitleWithCenterAlign', content: 'Компактный центрированный' },\n{\nkey: 'compactTitleWithSubtitleAndCenterAlign',\ncontent: 'Компактный центрированный с подписью',\n},\n];\n\nconst FOOTER_SELECT_OPTIONS = [\n{ key: 'vertical', content: 'Вертикальный' },\n{ key: 'horizontal', content: 'Горизонтальный' },\n];\n\nconst HEADER_SETTINGS = [\n{ label: 'Крестик', name: 'hasCloser' },\n{ label: 'Стрелка назад', name: 'hasBackButton' },\n{ label: 'Фиксация шапки при скролле', name: 'sticky' },\n];\n\nconst FOOTER_SETTINGS = [\n{ label: 'Primary Button', name: 'hasPrimaryButton' },\n{ label: 'Secondary Button', name: 'hasSecondaryButton' },\n{ label: 'Фиксация футера при скролле', name: 'sticky' },\n];\n\nrender(() => {\nconst [open, setOpen] = React.useState(false);\nconst [headerViewSelected, setHeaderView] = React.useState(HEADER_SELECT_OPTIONS[0].key);\nconst [footerViewSelected, setFooterView] = React.useState(FOOTER_SELECT_OPTIONS[0].key);\nconst [headerSettings, setHeaderSettings] = React.useState(() => ({\n...HEADER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\ntitleInContent: false,\n}));\nconst [footerSettings, setFooterSettings] = React.useState(() =>\nFOOTER_SETTINGS.reduce((res, item) => ({ ...res, [item.name]: false }), {}),\n);\n\nconst showHeader =\nheaderViewSelected !== HEADER_SELECT_OPTIONS[0].key ||\nheaderSettings.hasCloser ||\nheaderSettings.hasBackButton;\n\nconst showFooter = footerSettings.hasPrimaryButton || footerSettings.hasSecondaryButton;\n\nconst getKey = () =>\n`${JSON.stringify(headerSettings)}-${headerViewSelected}-${footerViewSelected}`;\n\nconst handleOpen = () => setOpen(true);\n\nconst handleClose = () => setOpen(false);\n\nconst handleHeaderSettingsChange = (_, { name, checked }) => {\nsetHeaderSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nconst handleFooterSettingsChange = (_, { name, checked }) => {\nsetFooterSettings((prevState) => ({ ...prevState, [name]: checked }));\n};\n\nreturn (\n\n\n\n\n\n

Настройки шапки

\n\n setHeaderView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{HEADER_SETTINGS.map((item) => (\n\n))}\n\n\n\n\n\n\n\n\n\n\n

Настройки футера

\n\n setFooterView(selected.key)}\nOption={BaseOption}\n/>\n\n\n\n\n{FOOTER_SETTINGS.map((item) => (\n\n))}\n\n\n\n{showHeader && (\n\n)}\n\n{headerSettings.titleInContent ? (\n<>\n\n{`Почему банк проверяет мои операции?`}\n\n\n\n) : undefined}\n\n\n\n{showFooter && (\n\n\nPrimary\n\n) : null\n}\nsecondary={\nfooterSettings.hasSecondaryButton ? (\n\nSecondary\n\n) : null\n}\n/>\n\n)}\n\n
\n);\n});" }, { "title": "Последовательность шагов", @@ -422,4 +422,4 @@ "desktop": "const DATA = {\n1: {\ntitle: 'Первый уровень',\nbtnText: 'Дальше',\nbg: 'rgba(55, 120, 251, 0.1)',\ncolor: '#3778FB',\n},\n2: {\ntitle: 'Второй уровень',\nbtnText: 'Дальше',\nbg: 'rgba(207, 112, 255, 0.1)',\ncolor: '#CF70FF',\n},\n3: {\ntitle: 'Третий уровень',\nbtnText: 'Готово',\nbg: 'rgba(112, 255, 126, 0.1)',\ncolor: '#058102',\n},\n};\n\nrender(() => {\nconst [step, setStep] = React.useState(1);\nconst [open, setOpen] = React.useState(false);\n\nconst handleOpen = () => {\nsetOpen(true);\nsetStep(1);\n};\nconst handleClose = () => setOpen(false);\n\nconst item = DATA[step];\n\nconst commonStyles = {\ndisplay: 'flex',\nalignItems: 'center',\njustifyContent: 'center',\ntransition: 'background 0.2s ease-in, border 0.2s ease-in',\nborderRadius: '8px',\nbackground: item.bg,\nborder: `1px dashed ${item.color}`,\ncolor: item.color,\nwidth: '100%',\nboxSizing: 'border-box',\n};\n\nreturn (\n\n\n\n\n setStep(step - 1)}\n/>\n\n\n{step}\n\n\n\n setStep(step + 1) : handleClose\n}\n>\n{item.btnText}\n\n\n\n\n);\n});" } ] -} \ No newline at end of file +} diff --git a/packages/modal/src/docs/description.mdx b/packages/modal/src/docs/description.mdx index 96ee08591a..8b28167635 100644 --- a/packages/modal/src/docs/description.mdx +++ b/packages/modal/src/docs/description.mdx @@ -212,7 +212,7 @@ const Text = () => ( Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки @@ -439,7 +439,7 @@ const Text = ({ onClose }) => ( Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки diff --git a/packages/side-panel/src/docs/description.mdx b/packages/side-panel/src/docs/description.mdx index 7d7f9ac3a6..6e3214037c 100644 --- a/packages/side-panel/src/docs/description.mdx +++ b/packages/side-panel/src/docs/description.mdx @@ -211,7 +211,7 @@ const Text = () => ( Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки @@ -457,7 +457,7 @@ const Text = ({ onClose }) => ( Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» собрали + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки diff --git a/packages/universal-modal/src/docs/description.mdx b/packages/universal-modal/src/docs/description.mdx index 4948e1b05f..bc42d4f467 100644 --- a/packages/universal-modal/src/docs/description.mdx +++ b/packages/universal-modal/src/docs/description.mdx @@ -182,7 +182,7 @@ const text = () => { Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки @@ -495,7 +495,7 @@ const textMobile = () => { Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки @@ -777,7 +777,7 @@ const text = () => { Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки @@ -1056,7 +1056,7 @@ const textMobile = () => { Требования 115-ФЗ и связанных с ним документов Банка России часто меняются, предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить - бизнес-процессы и доказать банку законность операций. Специалисты «Альфа-банка» + бизнес-процессы и доказать банку законность операций. Специалисты собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки @@ -1443,7 +1443,7 @@ render(() => { предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить бизнес-процессы и доказать банку законность операций. Специалисты - «Альфа-банка» собрали понятные рекомендации, как сэкономить время на + собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки @@ -1578,7 +1578,7 @@ render(() => { предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить бизнес-процессы и доказать банку законность операций. Специалисты - «Альфа-банка» собрали понятные рекомендации, как сэкономить время на + собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки @@ -2006,7 +2006,7 @@ render(() => { предприниматели не всегда успевают за ними следить. Последствия нарушений «антиотмывочного» законодательства всегда неприятны: приходится остановить бизнес-процессы и доказать банку законность операций. Специалисты - «Альфа-банка» собрали понятные рекомендации, как сэкономить время на + собрали понятные рекомендации, как сэкономить время на объяснения и предотвратить блокировки From 6d1876fa9638ef494f02ba8e3ec58059d276b481 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Thu, 11 Jun 2026 18:25:56 +0700 Subject: [PATCH 13/35] feat: bank-card default logo --- packages/bank-card/src/Component.tsx | 4 ++-- packages/bank-card/src/default-logo.tsx | 19 +++++++++++++++++++ .../bank-card/src/docs/Component.stories.tsx | 4 ++-- packages/mcp/src/data/v50.12.2/bank-card.json | 4 ++-- 4 files changed, 25 insertions(+), 6 deletions(-) create mode 100644 packages/bank-card/src/default-logo.tsx diff --git a/packages/bank-card/src/Component.tsx b/packages/bank-card/src/Component.tsx index 7bc944f78b..1ebe76d67e 100644 --- a/packages/bank-card/src/Component.tsx +++ b/packages/bank-card/src/Component.tsx @@ -10,12 +10,12 @@ import cn from 'classnames'; import { MaskedInput } from '@alfalab/core-components-masked-input'; import { CameraMIcon } from '@alfalab/icons-glyph/CameraMIcon'; -import { AlfaBankSignMIcon } from '@alfalab/icons-logo/AlfaBankSignMIcon'; import { MastercardLIcon } from '@alfalab/icons-logotype/MastercardLIcon'; import { MirXxlIcon } from '@alfalab/icons-logotype/MirXxlIcon'; import { VisaXxlIcon } from '@alfalab/icons-logotype/VisaXxlIcon'; import { getDefaultInputLabel } from './helpers/getDefaultInputLabel'; +import { DefaultLogo } from './default-logo'; import { MaskTypeEnum } from './enums'; import { type MaskType } from './types'; import { validateCardNumber } from './utils'; @@ -90,7 +90,7 @@ const getBrandIcon = (value = '') => { export const BankCard = forwardRef( ( { - bankLogo = , + bankLogo = , backgroundColor = '#EF3124', value: valueFromProps, className, diff --git a/packages/bank-card/src/default-logo.tsx b/packages/bank-card/src/default-logo.tsx new file mode 100644 index 0000000000..ddb3e38684 --- /dev/null +++ b/packages/bank-card/src/default-logo.tsx @@ -0,0 +1,19 @@ +import React, { type FC, type SVGProps } from 'react'; + +export const DefaultLogo: FC> = (props) => ( + + + +); diff --git a/packages/bank-card/src/docs/Component.stories.tsx b/packages/bank-card/src/docs/Component.stories.tsx index 2379650c1b..8f9daa5c9f 100644 --- a/packages/bank-card/src/docs/Component.stories.tsx +++ b/packages/bank-card/src/docs/Component.stories.tsx @@ -7,12 +7,12 @@ import { } from '@alfalab/core-components-screenshot-utils/screenshots-story/utils'; import styles from './preview.module.css'; -import { AlfaBankSignMIcon } from '@alfalab/icons-logo/AlfaBankSignMIcon'; import { AlfaInvestEnLogoShortLIcon } from '@alfalab/icons-logotype/AlfaInvestEnLogoShortLIcon'; import { BankCard } from '@alfalab/core-components-bank-card'; +import { DefaultLogo } from '../default-logo'; const logo = { - default: , + default: , custom: , }; diff --git a/packages/mcp/src/data/v50.12.2/bank-card.json b/packages/mcp/src/data/v50.12.2/bank-card.json index 518c79260d..7a1bd327a3 100644 --- a/packages/mcp/src/data/v50.12.2/bank-card.json +++ b/packages/mcp/src/data/v50.12.2/bank-card.json @@ -25,7 +25,7 @@ }, "bankLogo": { "defaultValue": { -"value": "" +"value": "" }, "description": "Иконка логотипа банка (размер L)", "name": "bankLogo", @@ -100,4 +100,4 @@ "desktop": "render(() => {\nconst [value, setValue] = React.useState('2201382000000013');\n\nconst handleChange = (event, payload) => setValue(payload.value);\n\nreturn (\n<>\n\n\n\n\n\n\n);\n});" } ] -} \ No newline at end of file +} From 0e61c4f03aed389d606bd225edb8f990d752488e Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Thu, 11 Jun 2026 18:39:31 +0700 Subject: [PATCH 14/35] feat: improvements --- .changeset/early-hotels-joke.md | 18 +++++++++++++++--- packages/bank-card/package.json | 1 - .../markdown/src/docs/Component.stories.tsx | 2 +- yarn.lock | 11 ----------- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.changeset/early-hotels-joke.md b/.changeset/early-hotels-joke.md index ec8a215eae..ddb66553e7 100644 --- a/.changeset/early-hotels-joke.md +++ b/.changeset/early-hotels-joke.md @@ -1,7 +1,19 @@ --- '@alfalab/core-components-cdn-icon': patch +'@alfalab/core-components-card-image': patch +'@alfalab/core-components-product-cover': patch +'@alfalab/core-components-bank-card': patch +'@alfalab/core-components-mcp': patch --- -- CDNIcon -- CardImage -- ProductCover +##### CDNIcon, CardImage, ProductCover + +- Небольшие изменения не влияющие на работу компонента + +##### BankCard + +- Логотп по умолчанию добавлен как inline код вместо зависимости + +##### MCP + +- Исправлены index файлы diff --git a/packages/bank-card/package.json b/packages/bank-card/package.json index f286e10751..10ac2f81fc 100644 --- a/packages/bank-card/package.json +++ b/packages/bank-card/package.json @@ -15,7 +15,6 @@ "dependencies": { "@alfalab/core-components-masked-input": "^8.0.9", "@alfalab/icons-glyph": "^2.260.0", - "@alfalab/icons-logo": "^1.53.0", "@alfalab/icons-logotype": "^2.37.0", "classnames": "^2.5.1", "tslib": "^2.4.0" diff --git a/packages/markdown/src/docs/Component.stories.tsx b/packages/markdown/src/docs/Component.stories.tsx index 680467e906..4630e75767 100644 --- a/packages/markdown/src/docs/Component.stories.tsx +++ b/packages/markdown/src/docs/Component.stories.tsx @@ -82,7 +82,7 @@ _Курсивный текст_ ~~Зачеркнутый текст~~ -Текст с [ссылкой](https://www.google.com/) +Текст с [ссылкой](https://www.example.com/) `} ); diff --git a/yarn.lock b/yarn.lock index 4e617d72b6..8326d9e858 100644 --- a/yarn.lock +++ b/yarn.lock @@ -181,7 +181,6 @@ __metadata: dependencies: "@alfalab/core-components-masked-input": "npm:^8.0.9" "@alfalab/icons-glyph": "npm:^2.260.0" - "@alfalab/icons-logo": "npm:^1.53.0" "@alfalab/icons-logotype": "npm:^2.37.0" classnames: "npm:^2.5.1" tslib: "npm:^2.4.0" @@ -2403,16 +2402,6 @@ __metadata: languageName: node linkType: hard -"@alfalab/icons-logo@npm:^1.53.0": - version: 1.53.0 - resolution: "@alfalab/icons-logo@npm:1.53.0" - peerDependencies: - react: ^16.9.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.9.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 - checksum: 10c0/162f1b7dfd6af0393db91c7b3fa14866614c9f3face8a9739c27da477a2c2d09a9d9098c8d9b3096d1a43710f4e6e0f066687a3e311256a87479971d65f3d47e - languageName: node - linkType: hard - "@alfalab/icons-logotype@npm:^2.37.0": version: 2.37.0 resolution: "@alfalab/icons-logotype@npm:2.37.0" From 0e519ce795ecd7c6b770d051088c12153c7f97b4 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Thu, 11 Jun 2026 19:48:49 +0700 Subject: [PATCH 15/35] feat: changelog --- CHANGELOG.2021.md | 1923 ++++++++++++++++------------ CHANGELOG.2022.md | 3045 +++++++++++++++++++++++---------------------- 2 files changed, 2650 insertions(+), 2318 deletions(-) diff --git a/CHANGELOG.2021.md b/CHANGELOG.2021.md index 7b842083c0..1f6e894382 100644 --- a/CHANGELOG.2021.md +++ b/CHANGELOG.2021.md @@ -2,1338 +2,1516 @@ ### Features -- **icon-view:** add draft component ([f0ab46f](https://github.com/core-ds/core-components/commit/f0ab46fc5241c3856962f19315213c3e45b6c05b)) -- **icon-view:** add tests, some refactoring ([4fee755](https://github.com/core-ds/core-components/commit/4fee755b826024a02f2dab9e9573088284185380)) -- **icon-view:** refactoring ([2579bb0](https://github.com/core-ds/core-components/commit/2579bb016cfdeef0ff0e177f231a1d1a4715b0af)) -- **icon-view:** updates ([7b17f5f](https://github.com/core-ds/core-components/commit/7b17f5ffca39243a13d57fdbd0da31041dc0ea98)) +* **icon-view:** add draft component ([f0ab46f](https://github.com/core-ds/core-components/commit/f0ab46fc5241c3856962f19315213c3e45b6c05b)) +* **icon-view:** add tests, some refactoring ([4fee755](https://github.com/core-ds/core-components/commit/4fee755b826024a02f2dab9e9573088284185380)) +* **icon-view:** refactoring ([2579bb0](https://github.com/core-ds/core-components/commit/2579bb016cfdeef0ff0e177f231a1d1a4715b0af)) +* **icon-view:** updates ([7b17f5f](https://github.com/core-ds/core-components/commit/7b17f5ffca39243a13d57fdbd0da31041dc0ea98)) # [23.5.0](https://github.com/core-ds/core-components/compare/v23.4.1...v23.5.0) (2021-12-29) + ### Bug Fixes -- **button:** решение проблемы с тултипом и заблокированной кнопкой ([#920](https://github.com/core-ds/core-components/issues/920)) ([d04f311](https://github.com/core-ds/core-components/commit/d04f31109baf340a4dc7264d3b8ab13109a5a68c)), closes [#799](https://github.com/core-ds/core-components/issues/799) -- **button:** убраны лишние отступы для вида ghost ([#933](https://github.com/core-ds/core-components/issues/933)) ([f43cdf6](https://github.com/core-ds/core-components/commit/f43cdf6afe349d2c7cb0d8436123e63aed347b54)) -- **input:** компонент иконки для кнопки очистки ([#930](https://github.com/core-ds/core-components/issues/930)) ([37049af](https://github.com/core-ds/core-components/commit/37049af84ed475e1932c91f1907fb604893be7d7)) +* **button:** решение проблемы с тултипом и заблокированной кнопкой ([#920](https://github.com/core-ds/core-components/issues/920)) ([d04f311](https://github.com/core-ds/core-components/commit/d04f31109baf340a4dc7264d3b8ab13109a5a68c)), closes [#799](https://github.com/core-ds/core-components/issues/799) +* **button:** убраны лишние отступы для вида ghost ([#933](https://github.com/core-ds/core-components/issues/933)) ([f43cdf6](https://github.com/core-ds/core-components/commit/f43cdf6afe349d2c7cb0d8436123e63aed347b54)) +* **input:** компонент иконки для кнопки очистки ([#930](https://github.com/core-ds/core-components/issues/930)) ([37049af](https://github.com/core-ds/core-components/commit/37049af84ed475e1932c91f1907fb604893be7d7)) + ### Features -- **checkbox:** состояние ошибки ([#909](https://github.com/core-ds/core-components/issues/909)) ([f81d7d8](https://github.com/core-ds/core-components/commit/f81d7d8ecade7418a2015d57f5cf3a9f31779174)) -- **select:** чекбоксы в выпадашке множественного выбора [#903](https://github.com/core-ds/core-components/issues/903)) ([f5638ef](https://github.com/core-ds/core-components/commit/f5638ef589468de0dc0473d30871035d8c4efab5)) -- **table:** компоненты для построения таблиц ([#911](https://github.com/core-ds/core-components/issues/911)) ([4ac648a](https://github.com/core-ds/core-components/commit/4ac648abd4de08bf68babc2f122f432d5b14080e)) +* **checkbox:** состояние ошибки ([#909](https://github.com/core-ds/core-components/issues/909)) ([f81d7d8](https://github.com/core-ds/core-components/commit/f81d7d8ecade7418a2015d57f5cf3a9f31779174)) +* **select:** чекбоксы в выпадашке множественного выбора [#903](https://github.com/core-ds/core-components/issues/903)) ([f5638ef](https://github.com/core-ds/core-components/commit/f5638ef589468de0dc0473d30871035d8c4efab5)) +* **table:** компоненты для построения таблиц ([#911](https://github.com/core-ds/core-components/issues/911)) ([4ac648a](https://github.com/core-ds/core-components/commit/4ac648abd4de08bf68babc2f122f432d5b14080e)) ## [23.4.1](https://github.com/core-ds/core-components/compare/v23.4.0...v23.4.1) (2021-12-22) + ### Bug Fixes -- add missing vars imports ([#931](https://github.com/core-ds/core-components/issues/931)) ([35ba847](https://github.com/core-ds/core-components/commit/35ba847d39924e713166d79ae6d64444131794a1)) +* add missing vars imports ([#931](https://github.com/core-ds/core-components/issues/931)) ([35ba847](https://github.com/core-ds/core-components/commit/35ba847d39924e713166d79ae6d64444131794a1)) # [23.4.0](https://github.com/core-ds/core-components/compare/v23.3.0...v23.4.0) (2021-12-21) + ### Features -- **calendar-input:** add popover z-index ([#924](https://github.com/core-ds/core-components/issues/924)) ([378286d](https://github.com/core-ds/core-components/commit/378286d746ca33aeb755617270f66310712d1c61)) +* **calendar-input:** add popover z-index ([#924](https://github.com/core-ds/core-components/issues/924)) ([378286d](https://github.com/core-ds/core-components/commit/378286d746ca33aeb755617270f66310712d1c61)) # [23.3.0](https://github.com/core-ds/core-components/compare/v23.2.0...v23.3.0) (2021-12-20) + ### Features -- **checkbox-group:** add click theme ([967d585](https://github.com/core-ds/core-components/commit/967d58538c5537fc2b3ac583fb742ebaef86109e)) +* **checkbox-group:** add click theme ([967d585](https://github.com/core-ds/core-components/commit/967d58538c5537fc2b3ac583fb742ebaef86109e)) # [23.2.0](https://github.com/core-ds/core-components/compare/v23.1.0...v23.2.0) (2021-12-14) + ### Bug Fixes -- **button:** удален вызов console.warn, если process.env.NODE_ENV !== 'development' ([d3e14ce](https://github.com/core-ds/core-components/commit/d3e14cef7835b5512e4848c5a1048475a8990018)) -- **custom-button:** fix color variable & component description ([5b9df4d](https://github.com/core-ds/core-components/commit/5b9df4dffa070b8339f0e208c0d14c72ecdb2012)) -- **custom-button:** fix props type ([a1bf943](https://github.com/core-ds/core-components/commit/a1bf94319b8844cbb3fc7d4626d2232357d72f63)) -- **picker-button:** wrap field with div ([b51bce8](https://github.com/core-ds/core-components/commit/b51bce85b39583e7bb1107f56c6e64a6f2b96d5c)), closes [#914](https://github.com/core-ds/core-components/issues/914) +* **button:** удален вызов console.warn, если process.env.NODE_ENV !== 'development' ([d3e14ce](https://github.com/core-ds/core-components/commit/d3e14cef7835b5512e4848c5a1048475a8990018)) +* **custom-button:** fix color variable & component description ([5b9df4d](https://github.com/core-ds/core-components/commit/5b9df4dffa070b8339f0e208c0d14c72ecdb2012)) +* **custom-button:** fix props type ([a1bf943](https://github.com/core-ds/core-components/commit/a1bf94319b8844cbb3fc7d4626d2232357d72f63)) +* **picker-button:** wrap field with div ([b51bce8](https://github.com/core-ds/core-components/commit/b51bce85b39583e7bb1107f56c6e64a6f2b96d5c)), closes [#914](https://github.com/core-ds/core-components/issues/914) + ### Features -- **custom-button:** add custom-button component ([983bcd7](https://github.com/core-ds/core-components/commit/983bcd7119c6f674ed15ed5bfe069349449f84c8)) +* **custom-button:** add custom-button component ([983bcd7](https://github.com/core-ds/core-components/commit/983bcd7119c6f674ed15ed5bfe069349449f84c8)) # [23.1.0](https://github.com/core-ds/core-components/compare/v23.0.0...v23.1.0) (2021-12-09) + ### Features -- **file-upload-item:** обновлен внешний вид ([#902](https://github.com/core-ds/core-components/issues/902)) ([d0f7d1e](https://github.com/core-ds/core-components/commit/d0f7d1ebdf302711a01549e86d0d8a5129b66d82)) -- **status:** добавлено 10% прозрачности в цвет фона ([#896](https://github.com/core-ds/core-components/issues/896)) ([b55c62b](https://github.com/core-ds/core-components/commit/b55c62b49cc52a15ff7497b9ad329773fba15959)) +* **file-upload-item:** обновлен внешний вид ([#902](https://github.com/core-ds/core-components/issues/902)) ([d0f7d1e](https://github.com/core-ds/core-components/commit/d0f7d1ebdf302711a01549e86d0d8a5129b66d82)) +* **status:** добавлено 10% прозрачности в цвет фона ([#896](https://github.com/core-ds/core-components/issues/896)) ([b55c62b](https://github.com/core-ds/core-components/commit/b55c62b49cc52a15ff7497b9ad329773fba15959)) # [23.0.0](https://github.com/core-ds/core-components/compare/v22.3.1...v23.0.0) (2021-12-08) -- fix!: новый cdn иконок (#913) (#917) ([224831f](https://github.com/core-ds/core-components/commit/224831f41ed2de49dc1a228dc081b0629cf274b1)), closes [#913](https://github.com/core-ds/core-components/issues/913) [#917](https://github.com/core-ds/core-components/issues/917) + +* fix!: новый cdn иконок (#913) (#917) ([224831f](https://github.com/core-ds/core-components/commit/224831f41ed2de49dc1a228dc081b0629cf274b1)), closes [#913](https://github.com/core-ds/core-components/issues/913) [#917](https://github.com/core-ds/core-components/issues/917) + ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` +* Добавьте новый домен в список разрешенных 'img-src': `'self' your-domain.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. ## [22.3.1](https://github.com/core-ds/core-components/compare/v22.3.0...v22.3.1) (2021-12-08) + ### Bug Fixes -- revert 0e8124552206f96149d104f65cff1667e857bf01 ([#916](https://github.com/core-ds/core-components/issues/916)) ([953fbcf](https://github.com/core-ds/core-components/commit/953fbcfec46a40089a5cfde670597315269b05f5)) +* revert 0e8124552206f96149d104f65cff1667e857bf01 ([#916](https://github.com/core-ds/core-components/issues/916)) ([953fbcf](https://github.com/core-ds/core-components/commit/953fbcfec46a40089a5cfde670597315269b05f5)) # [22.3.0](https://github.com/core-ds/core-components/compare/v22.2.0...v22.3.0) (2021-12-08) + ### Bug Fixes -- актуализируем @alfalab/utils ([#897](https://github.com/core-ds/core-components/issues/897)) ([30fb88e](https://github.com/core-ds/core-components/commit/30fb88eee36f68cabf80069e5125d911fabde4a5)) -- новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([0e81245](https://github.com/core-ds/core-components/commit/0e8124552206f96149d104f65cff1667e857bf01)) -- **bank-card:** фикс цвета иконки ([#898](https://github.com/core-ds/core-components/issues/898)) ([66c2659](https://github.com/core-ds/core-components/commit/66c265919e7452af324ceabd26813a8be19b4839)) -- **calendar-input:** рендер rightAddons, фикс затертых пропсов ([#895](https://github.com/core-ds/core-components/issues/895)) ([1eabd29](https://github.com/core-ds/core-components/commit/1eabd2902cd1bd62517284313f79cf31189cf525)) -- **dropzone:** изменение темы клика ([#893](https://github.com/core-ds/core-components/issues/893)) ([cadc6da](https://github.com/core-ds/core-components/commit/cadc6da29896e6a033bac8e91723b20beb404b32)) -- **plate:** активный курсор только для foldable плашек ([#912](https://github.com/core-ds/core-components/issues/912)) ([06a38bd](https://github.com/core-ds/core-components/commit/06a38bd6bd07d016d670e600b373791aabe3d3ea)) -- **radio:** условный рендер подсказки и лейбла ([#892](https://github.com/core-ds/core-components/issues/892)) ([b744c15](https://github.com/core-ds/core-components/commit/b744c159f3779c5bf555041e7762f9653efb7b0e)), closes [#869](https://github.com/core-ds/core-components/issues/869) +* актуализируем @alfalab/utils ([#897](https://github.com/core-ds/core-components/issues/897)) ([30fb88e](https://github.com/core-ds/core-components/commit/30fb88eee36f68cabf80069e5125d911fabde4a5)) +* новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([0e81245](https://github.com/core-ds/core-components/commit/0e8124552206f96149d104f65cff1667e857bf01)) +* **bank-card:** фикс цвета иконки ([#898](https://github.com/core-ds/core-components/issues/898)) ([66c2659](https://github.com/core-ds/core-components/commit/66c265919e7452af324ceabd26813a8be19b4839)) +* **calendar-input:** рендер rightAddons, фикс затертых пропсов ([#895](https://github.com/core-ds/core-components/issues/895)) ([1eabd29](https://github.com/core-ds/core-components/commit/1eabd2902cd1bd62517284313f79cf31189cf525)) +* **dropzone:** изменение темы клика ([#893](https://github.com/core-ds/core-components/issues/893)) ([cadc6da](https://github.com/core-ds/core-components/commit/cadc6da29896e6a033bac8e91723b20beb404b32)) +* **plate:** активный курсор только для foldable плашек ([#912](https://github.com/core-ds/core-components/issues/912)) ([06a38bd](https://github.com/core-ds/core-components/commit/06a38bd6bd07d016d670e600b373791aabe3d3ea)) +* **radio:** условный рендер подсказки и лейбла ([#892](https://github.com/core-ds/core-components/issues/892)) ([b744c15](https://github.com/core-ds/core-components/commit/b744c159f3779c5bf555041e7762f9653efb7b0e)), closes [#869](https://github.com/core-ds/core-components/issues/869) + ### Features -- **calendar:** мобильные стили ([#867](https://github.com/core-ds/core-components/issues/867)) ([febf545](https://github.com/core-ds/core-components/commit/febf54551f8179a1ba03fe65ed47aa3b20b01472)) -- **calendar:** показываем будущий год ([#900](https://github.com/core-ds/core-components/issues/900)) ([3cd3c63](https://github.com/core-ds/core-components/commit/3cd3c63e5ff88066599d0944a2d3183e63150664)) +* **calendar:** мобильные стили ([#867](https://github.com/core-ds/core-components/issues/867)) ([febf545](https://github.com/core-ds/core-components/commit/febf54551f8179a1ba03fe65ed47aa3b20b01472)) +* **calendar:** показываем будущий год ([#900](https://github.com/core-ds/core-components/issues/900)) ([3cd3c63](https://github.com/core-ds/core-components/commit/3cd3c63e5ff88066599d0944a2d3183e63150664)) # [22.2.0](https://github.com/core-ds/core-components/compare/v22.1.0...v22.2.0) (2021-12-01) + ### Bug Fixes -- **notification:** set word-break: break-word in notif ([8f7615d](https://github.com/core-ds/core-components/commit/8f7615d2f497d97c0811868e14bf4ccd51710f31)) -- **notification:** убрал word-break: break-all ([db0d2b2](https://github.com/core-ds/core-components/commit/db0d2b28d12101f1a7bae395cbf17d570b88cc83)) +* **notification:** set word-break: break-word in notif ([8f7615d](https://github.com/core-ds/core-components/commit/8f7615d2f497d97c0811868e14bf4ccd51710f31)) +* **notification:** убрал word-break: break-all ([db0d2b2](https://github.com/core-ds/core-components/commit/db0d2b28d12101f1a7bae395cbf17d570b88cc83)) + ### Features -- **popover:** add availableHieght prop, update related snapshots ([43b4ebd](https://github.com/core-ds/core-components/commit/43b4ebd6ba092f22d0dfc845f3f0113b390317dc)), closes [#758](https://github.com/core-ds/core-components/issues/758) -- **tooltip:** add availableHeight and preventOverflow props ([b401524](https://github.com/core-ds/core-components/commit/b401524b0eb0b9e06593883a889b99198982c718)), closes [#758](https://github.com/core-ds/core-components/issues/758) +* **popover:** add availableHieght prop, update related snapshots ([43b4ebd](https://github.com/core-ds/core-components/commit/43b4ebd6ba092f22d0dfc845f3f0113b390317dc)), closes [#758](https://github.com/core-ds/core-components/issues/758) +* **tooltip:** add availableHeight and preventOverflow props ([b401524](https://github.com/core-ds/core-components/commit/b401524b0eb0b9e06593883a889b99198982c718)), closes [#758](https://github.com/core-ds/core-components/issues/758) # [22.1.0](https://github.com/core-ds/core-components/compare/v22.0.0...v22.1.0) (2021-11-30) + ### Features -- **circular-progress-bar:** new size S ([d34db5c](https://github.com/core-ds/core-components/commit/d34db5cca682bc63f948a0dad322604c8044a6b8)) +* **circular-progress-bar:** new size S ([d34db5c](https://github.com/core-ds/core-components/commit/d34db5cca682bc63f948a0dad322604c8044a6b8)) # [22.0.0](https://github.com/core-ds/core-components/compare/v21.3.3...v22.0.0) (2021-11-26) + ### Features -- **button:** добавлена кнопка размера 40px, изменены скругления ([#886](https://github.com/core-ds/core-components/issues/886)) ([88e657a](https://github.com/core-ds/core-components/commit/88e657a9f0f68b8b58f6e9437053954ee984f83c)), closes [#890](https://github.com/core-ds/core-components/issues/890) +* **button:** добавлена кнопка размера 40px, изменены скругления ([#886](https://github.com/core-ds/core-components/issues/886)) ([88e657a](https://github.com/core-ds/core-components/commit/88e657a9f0f68b8b58f6e9437053954ee984f83c)), closes [#890](https://github.com/core-ds/core-components/issues/890) + ### BREAKING CHANGES -- **button:** Кнопка размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо - заменить размер на xxs. Можно воспользоваться codemod. +* **button:** Кнопка размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо + заменить размер на xxs. Можно воспользоваться codemod. -- feat(codemod): add button xs to xxs transformer +* feat(codemod): add button xs to xxs transformer -- feat(tag): добавлен тэг размера 40px, изменены отступы +* feat(tag): добавлен тэг размера 40px, изменены отступы Добавлен тэг размером 40px, изменены отступы. Тем, кто использовал размер xs, надо заменить размер на xxs. - -- **button:** Тэг размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо +* **button:** Тэг размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо заменить размер на xxs. Можно воспользоваться codemod. -- test: update screenshots +* test: update screenshots -- test: update screenshots +* test: update screenshots -- feat(button): linter fix +* feat(button): linter fix -- feat(button): fix min-width +* feat(button): fix min-width -- feat(tag): remove vertical paddings +* feat(tag): remove vertical paddings -- feat(tag): remove vertical paddings +* feat(tag): remove vertical paddings -- feat(button): updates +* feat(button): updates ## [21.3.3](https://github.com/core-ds/core-components/compare/v21.3.2...v21.3.3) (2021-11-23) + ### Bug Fixes -- **tabs:** hide native scrollbar on scrollable tabs properly ([0134956](https://github.com/core-ds/core-components/commit/0134956f2af01720500f7ad06caeeb4569e74d50)), closes [#879](https://github.com/core-ds/core-components/issues/879) +* **tabs:** hide native scrollbar on scrollable tabs properly ([0134956](https://github.com/core-ds/core-components/commit/0134956f2af01720500f7ad06caeeb4569e74d50)), closes [#879](https://github.com/core-ds/core-components/issues/879) ## [21.3.2](https://github.com/core-ds/core-components/compare/v21.3.1...v21.3.2) (2021-11-22) + ### Bug Fixes -- **calendar-range:** fix default month to ([#868](https://github.com/core-ds/core-components/issues/868)) ([1f9fb97](https://github.com/core-ds/core-components/commit/1f9fb9709292d28300c3fc4386ffd858b2efd852)) -- **slider-input:** classnames overriding ([#891](https://github.com/core-ds/core-components/issues/891)) ([d63d676](https://github.com/core-ds/core-components/commit/d63d67628c88e54b38244b1f57969844379d311f)) +* **calendar-range:** fix default month to ([#868](https://github.com/core-ds/core-components/issues/868)) ([1f9fb97](https://github.com/core-ds/core-components/commit/1f9fb9709292d28300c3fc4386ffd858b2efd852)) +* **slider-input:** classnames overriding ([#891](https://github.com/core-ds/core-components/issues/891)) ([d63d676](https://github.com/core-ds/core-components/commit/d63d67628c88e54b38244b1f57969844379d311f)) ## [21.3.1](https://github.com/core-ds/core-components/compare/v21.3.0...v21.3.1) (2021-11-16) + ### Bug Fixes -- **skeleton:** prevent component unmount ([#887](https://github.com/core-ds/core-components/issues/887)) ([1bd4dc3](https://github.com/core-ds/core-components/commit/1bd4dc3147622f75802dd8e574175dbbf02cca54)) -- fix classNames hash ([#884](https://github.com/core-ds/core-components/issues/884)) ([60f58f2](https://github.com/core-ds/core-components/commit/60f58f223106869b15f6b19f466a70b0936a5a1d)) +* **skeleton:** prevent component unmount ([#887](https://github.com/core-ds/core-components/issues/887)) ([1bd4dc3](https://github.com/core-ds/core-components/commit/1bd4dc3147622f75802dd8e574175dbbf02cca54)) +* fix classNames hash ([#884](https://github.com/core-ds/core-components/issues/884)) ([60f58f2](https://github.com/core-ds/core-components/commit/60f58f223106869b15f6b19f466a70b0936a5a1d)) # [21.3.0](https://github.com/core-ds/core-components/compare/v21.2.2...v21.3.0) (2021-11-08) + ### Features -- **select:** добавлено свойство z-index для поповера ([#871](https://github.com/core-ds/core-components/issues/871)) ([4a53483](https://github.com/core-ds/core-components/commit/4a534835a9e6c9ec7793733467194536cfd96a91)) +* **select:** добавлено свойство z-index для поповера ([#871](https://github.com/core-ds/core-components/issues/871)) ([4a53483](https://github.com/core-ds/core-components/commit/4a534835a9e6c9ec7793733467194536cfd96a91)) ## [21.2.2](https://github.com/core-ds/core-components/compare/v21.2.1...v21.2.2) (2021-11-08) + ### Bug Fixes -- **modal:** add spreading backdrop props ([#870](https://github.com/core-ds/core-components/issues/870)) ([b523426](https://github.com/core-ds/core-components/commit/b52342616adf1f4b227f603264b70474e53c16f8)) +* **modal:** add spreading backdrop props ([#870](https://github.com/core-ds/core-components/issues/870)) ([b523426](https://github.com/core-ds/core-components/commit/b52342616adf1f4b227f603264b70474e53c16f8)) ## [21.2.1](https://github.com/core-ds/core-components/compare/v21.2.0...v21.2.1) (2021-10-27) + ### Bug Fixes -- **collapse:** dynamic content height ([#864](https://github.com/core-ds/core-components/issues/864)) ([e96c86b](https://github.com/core-ds/core-components/commit/e96c86bde70d58e4311a2c6bcd6d7407be0f4c44)) +* **collapse:** dynamic content height ([#864](https://github.com/core-ds/core-components/issues/864)) ([e96c86b](https://github.com/core-ds/core-components/commit/e96c86bde70d58e4311a2c6bcd6d7407be0f4c44)) # [21.2.0](https://github.com/core-ds/core-components/compare/v21.1.1...v21.2.0) (2021-10-25) + ### Bug Fixes -- **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7)) +* **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7)) + ### Features -- **collapse:** reset height to auto ([#822](https://github.com/core-ds/core-components/issues/822)) ([f533e3b](https://github.com/core-ds/core-components/commit/f533e3ba1eab5f41539c39ca3b97f698e90ca687)) +* **collapse:** reset height to auto ([#822](https://github.com/core-ds/core-components/issues/822)) ([f533e3b](https://github.com/core-ds/core-components/commit/f533e3ba1eab5f41539c39ca3b97f698e90ca687)) ## [21.1.1](https://github.com/core-ds/core-components/compare/v21.1.0...v21.1.1) (2021-10-19) + ### Bug Fixes -- **chart:** fix deps, export types ([b46450a](https://github.com/core-ds/core-components/commit/b46450ae954b10f0138c393482fe1271b001f085)) +* **chart:** fix deps, export types ([b46450a](https://github.com/core-ds/core-components/commit/b46450ae954b10f0138c393482fe1271b001f085)) # [21.1.0](https://github.com/core-ds/core-components/compare/v21.0.0...v21.1.0) (2021-10-18) + ### Features -- **confirmation:** compact code-input if slotsCount > 6 ([99be0e1](https://github.com/core-ds/core-components/commit/99be0e1744d9782824756c8992fd4b986a589dd7)) -- **confirmation:** компактный code-input когда символов > 6 ([633d1ff](https://github.com/core-ds/core-components/commit/633d1ffd66c7c9d949c3996f6d4d739a4fcb6b21)) +* **confirmation:** compact code-input if slotsCount > 6 ([99be0e1](https://github.com/core-ds/core-components/commit/99be0e1744d9782824756c8992fd4b986a589dd7)) +* **confirmation:** компактный code-input когда символов > 6 ([633d1ff](https://github.com/core-ds/core-components/commit/633d1ffd66c7c9d949c3996f6d4d739a4fcb6b21)) # [21.0.0](https://github.com/core-ds/core-components/compare/v20.7.2...v21.0.0) (2021-10-15) + ### Features -- обновлённая темизация иконок в инпутах ([ab90d60](https://github.com/core-ds/core-components/commit/ab90d602f239176d0771db38f9cc29dc02a35566)) -- **calendar-input:** переход к темизации цвета иконки ([adf1dfd](https://github.com/core-ds/core-components/commit/adf1dfd080c1986976a57fee448183e762892eb0)) -- **select:** переход к темизации цвета иконки ([112cd95](https://github.com/core-ds/core-components/commit/112cd95242e27f5065eb2a8349d3afbddfdee638)) -- **themes:** обновлённые темы для calendar-input и select ([5ae76c3](https://github.com/core-ds/core-components/commit/5ae76c314bf33236767056b77969ca7003057532)) +* обновлённая темизация иконок в инпутах ([ab90d60](https://github.com/core-ds/core-components/commit/ab90d602f239176d0771db38f9cc29dc02a35566)) +* **calendar-input:** переход к темизации цвета иконки ([adf1dfd](https://github.com/core-ds/core-components/commit/adf1dfd080c1986976a57fee448183e762892eb0)) +* **select:** переход к темизации цвета иконки ([112cd95](https://github.com/core-ds/core-components/commit/112cd95242e27f5065eb2a8349d3afbddfdee638)) +* **themes:** обновлённые темы для calendar-input и select ([5ae76c3](https://github.com/core-ds/core-components/commit/5ae76c314bf33236767056b77969ca7003057532)) + ### BREAKING CHANGES -- **select:** удалена переменная --select-arrow-background -- **calendar-input:** удалена переменная --calendar-input-calendar-icon +* **select:** удалена переменная --select-arrow-background +* **calendar-input:** удалена переменная --calendar-input-calendar-icon ## [20.7.2](https://github.com/core-ds/core-components/compare/v20.7.1...v20.7.2) (2021-10-15) + ### Bug Fixes -- **calendar-input:** обновлён в теме click ([da5d960](https://github.com/core-ds/core-components/commit/da5d9607ce80742bd6780a5bad11b07b3617b44c)) -- input & textarea disabled color on safari ([39ea4ef](https://github.com/core-ds/core-components/commit/39ea4ef7e948016a4ffa17c563cfdd13169a3c2b)) -- фикс цвета disabled в Safari для Input и Textarea ([efaa693](https://github.com/core-ds/core-components/commit/efaa693c8e34569df05c951c09c89895d4d949dc)) -- **calendar-input:** remove popover border in click theme ([7a76759](https://github.com/core-ds/core-components/commit/7a76759ccc5741a03a4c90f97cce6f67255b1c4b)) -- **calendar-input:** update border-radius ([0d06aca](https://github.com/core-ds/core-components/commit/0d06aca7162c85f987c1172ea037b5b3bc66f8c5)) +* **calendar-input:** обновлён в теме click ([da5d960](https://github.com/core-ds/core-components/commit/da5d9607ce80742bd6780a5bad11b07b3617b44c)) +* input & textarea disabled color on safari ([39ea4ef](https://github.com/core-ds/core-components/commit/39ea4ef7e948016a4ffa17c563cfdd13169a3c2b)) +* фикс цвета disabled в Safari для Input и Textarea ([efaa693](https://github.com/core-ds/core-components/commit/efaa693c8e34569df05c951c09c89895d4d949dc)) +* **calendar-input:** remove popover border in click theme ([7a76759](https://github.com/core-ds/core-components/commit/7a76759ccc5741a03a4c90f97cce6f67255b1c4b)) +* **calendar-input:** update border-radius ([0d06aca](https://github.com/core-ds/core-components/commit/0d06aca7162c85f987c1172ea037b5b3bc66f8c5)) ## [20.7.1](https://github.com/core-ds/core-components/compare/v20.7.0...v20.7.1) (2021-10-13) + ### Bug Fixes -- понижена версия react-hooks, чтобы не дропать 10ую ноду. Пакет перенесен devDeps ([#852](https://github.com/core-ds/core-components/issues/852)) ([662754a](https://github.com/core-ds/core-components/commit/662754a354b2286114fdff16fa0f7a9ccb5b769d)) -- **tabs:** фикс бага при скрытии табов ([#851](https://github.com/core-ds/core-components/issues/851)) ([5d5dcd9](https://github.com/core-ds/core-components/commit/5d5dcd966fface279921bea5610e9b3af3f2117b)) +* понижена версия react-hooks, чтобы не дропать 10ую ноду. Пакет перенесен devDeps ([#852](https://github.com/core-ds/core-components/issues/852)) ([662754a](https://github.com/core-ds/core-components/commit/662754a354b2286114fdff16fa0f7a9ccb5b769d)) +* **tabs:** фикс бага при скрытии табов ([#851](https://github.com/core-ds/core-components/issues/851)) ([5d5dcd9](https://github.com/core-ds/core-components/commit/5d5dcd966fface279921bea5610e9b3af3f2117b)) # [20.7.0](https://github.com/core-ds/core-components/compare/v20.6.0...v20.7.0) (2021-10-12) + ### Features -- **file-upload-item:** добавлен пропс download ([#844](https://github.com/core-ds/core-components/issues/844)) ([db2a4ca](https://github.com/core-ds/core-components/commit/db2a4ca27ee7a64721138c7c2e918b4657c75489)) +* **file-upload-item:** добавлен пропс download ([#844](https://github.com/core-ds/core-components/issues/844)) ([db2a4ca](https://github.com/core-ds/core-components/commit/db2a4ca27ee7a64721138c7c2e918b4657c75489)) # [20.6.0](https://github.com/core-ds/core-components/compare/v20.5.0...v20.6.0) (2021-10-11) + ### Bug Fixes -- bump react-popper ([#847](https://github.com/core-ds/core-components/issues/847)) ([e8d284b](https://github.com/core-ds/core-components/commit/e8d284bfdfb4aa1fa0ea9e11f6e59c117b309782)) +* bump react-popper ([#847](https://github.com/core-ds/core-components/issues/847)) ([e8d284b](https://github.com/core-ds/core-components/commit/e8d284bfdfb4aa1fa0ea9e11f6e59c117b309782)) + ### Features -- проставлен role=alert для ошибок ([#850](https://github.com/core-ds/core-components/issues/850)) ([dc634a3](https://github.com/core-ds/core-components/commit/dc634a3d008accfab10192ce234c12ef0ecc7fa9)) -- **file-upload-item:** custom icon ([#849](https://github.com/core-ds/core-components/issues/849)) ([59b8925](https://github.com/core-ds/core-components/commit/59b8925fbb9c631534c49c8dbb68cf493678e9e5)) +* проставлен role=alert для ошибок ([#850](https://github.com/core-ds/core-components/issues/850)) ([dc634a3](https://github.com/core-ds/core-components/commit/dc634a3d008accfab10192ce234c12ef0ecc7fa9)) +* **file-upload-item:** custom icon ([#849](https://github.com/core-ds/core-components/issues/849)) ([59b8925](https://github.com/core-ds/core-components/commit/59b8925fbb9c631534c49c8dbb68cf493678e9e5)) # [20.5.0](https://github.com/core-ds/core-components/compare/v20.4.0...v20.5.0) (2021-10-11) + ### Features -- **chart:** added border radius to bar charts ([cfd0ad2](https://github.com/core-ds/core-components/commit/cfd0ad2c23a2b80de0bc5dfae7b65a14263e37e9)) -- **chart:** added chart component ([1119943](https://github.com/core-ds/core-components/commit/11199435e9ab53ae159707e94714a34952ad56c1)) -- **chart:** added description ([8275346](https://github.com/core-ds/core-components/commit/827534640af0c0b06c1105755e9435d43cae8acd)) -- **chart:** added props for legend icons height ([5c9b321](https://github.com/core-ds/core-components/commit/5c9b32154e6f39cddd3ac9668830959adba64648)) -- **chart:** bar radius ([e39251a](https://github.com/core-ds/core-components/commit/e39251a37a52b6f434932439da0b86a03a26d901)) -- **chart:** beautifyed ([67cc96e](https://github.com/core-ds/core-components/commit/67cc96e6afc020c3af5491d3d7ba0b89f50dbaf3)) -- **chart:** edited doc ([8728271](https://github.com/core-ds/core-components/commit/8728271dc7f733c9b14a27c83a7136c22ef39ed6)) -- **chart:** fix doc ([9d1e888](https://github.com/core-ds/core-components/commit/9d1e8889615f0701a43a9fbceca867557002ef31)) -- **chart:** fixed after pull master ) ([4c7d241](https://github.com/core-ds/core-components/commit/4c7d241da264cde81e50573f96a2f035c31306e1)) -- **chart:** fixed build error ([2efdd22](https://github.com/core-ds/core-components/commit/2efdd22f27e8229b2ad4cb7d355f61b218ea1bc1)) -- **chart:** fixed comments ([a611b9c](https://github.com/core-ds/core-components/commit/a611b9c1c9bab1d5a15c2021bff270e9bbf5a934)) -- **chart:** fixed comments ([7ad1caf](https://github.com/core-ds/core-components/commit/7ad1caf5be9f2da6a218b2c97cc7d96efb4d286d)) -- **chart:** fixed comments ([555acb6](https://github.com/core-ds/core-components/commit/555acb699549c52f85d0dd58009ab1692344eb44)) -- **chart:** fixed comments ([379e53d](https://github.com/core-ds/core-components/commit/379e53ddf8c857424600d5fc49b41c03f5ac11ea)) -- **chart:** fixed global styles css ([2f8f139](https://github.com/core-ds/core-components/commit/2f8f139137090f185b1c3c2333fe7ceee7a1fff8)) -- **chart:** more description ([9a4c076](https://github.com/core-ds/core-components/commit/9a4c0762782c2f8ccee0e0c7c660514a10119960)) -- **chart:** pulled master ([176f7ae](https://github.com/core-ds/core-components/commit/176f7ae6e7cdb2a3e18d2136523e5be6ecdbde3e)) -- **chart:** resolved conflicts ([7f734ba](https://github.com/core-ds/core-components/commit/7f734bab0347af6e5d56d717d8b5cc0cf192f9f3)) -- **chart:** добавлена возможность скруглять углы и возможность отображать подписи значений для графиков типа bar ([4d81ab5](https://github.com/core-ds/core-components/commit/4d81ab5601b2ed38bc6f0f1187cf7c80c79fe50a)) +* **chart:** added border radius to bar charts ([cfd0ad2](https://github.com/core-ds/core-components/commit/cfd0ad2c23a2b80de0bc5dfae7b65a14263e37e9)) +* **chart:** added chart component ([1119943](https://github.com/core-ds/core-components/commit/11199435e9ab53ae159707e94714a34952ad56c1)) +* **chart:** added description ([8275346](https://github.com/core-ds/core-components/commit/827534640af0c0b06c1105755e9435d43cae8acd)) +* **chart:** added props for legend icons height ([5c9b321](https://github.com/core-ds/core-components/commit/5c9b32154e6f39cddd3ac9668830959adba64648)) +* **chart:** bar radius ([e39251a](https://github.com/core-ds/core-components/commit/e39251a37a52b6f434932439da0b86a03a26d901)) +* **chart:** beautifyed ([67cc96e](https://github.com/core-ds/core-components/commit/67cc96e6afc020c3af5491d3d7ba0b89f50dbaf3)) +* **chart:** edited doc ([8728271](https://github.com/core-ds/core-components/commit/8728271dc7f733c9b14a27c83a7136c22ef39ed6)) +* **chart:** fix doc ([9d1e888](https://github.com/core-ds/core-components/commit/9d1e8889615f0701a43a9fbceca867557002ef31)) +* **chart:** fixed after pull master ) ([4c7d241](https://github.com/core-ds/core-components/commit/4c7d241da264cde81e50573f96a2f035c31306e1)) +* **chart:** fixed build error ([2efdd22](https://github.com/core-ds/core-components/commit/2efdd22f27e8229b2ad4cb7d355f61b218ea1bc1)) +* **chart:** fixed comments ([a611b9c](https://github.com/core-ds/core-components/commit/a611b9c1c9bab1d5a15c2021bff270e9bbf5a934)) +* **chart:** fixed comments ([7ad1caf](https://github.com/core-ds/core-components/commit/7ad1caf5be9f2da6a218b2c97cc7d96efb4d286d)) +* **chart:** fixed comments ([555acb6](https://github.com/core-ds/core-components/commit/555acb699549c52f85d0dd58009ab1692344eb44)) +* **chart:** fixed comments ([379e53d](https://github.com/core-ds/core-components/commit/379e53ddf8c857424600d5fc49b41c03f5ac11ea)) +* **chart:** fixed global styles css ([2f8f139](https://github.com/core-ds/core-components/commit/2f8f139137090f185b1c3c2333fe7ceee7a1fff8)) +* **chart:** more description ([9a4c076](https://github.com/core-ds/core-components/commit/9a4c0762782c2f8ccee0e0c7c660514a10119960)) +* **chart:** pulled master ([176f7ae](https://github.com/core-ds/core-components/commit/176f7ae6e7cdb2a3e18d2136523e5be6ecdbde3e)) +* **chart:** resolved conflicts ([7f734ba](https://github.com/core-ds/core-components/commit/7f734bab0347af6e5d56d717d8b5cc0cf192f9f3)) +* **chart:** добавлена возможность скруглять углы и возможность отображать подписи значений для графиков типа bar ([4d81ab5](https://github.com/core-ds/core-components/commit/4d81ab5601b2ed38bc6f0f1187cf7c80c79fe50a)) # [20.4.0](https://github.com/core-ds/core-components/compare/v20.3.2...v20.4.0) (2021-09-30) + ### Features -- **chart:** add component ([#835](https://github.com/core-ds/core-components/issues/835)) ([17d840b](https://github.com/core-ds/core-components/commit/17d840b9f9f64474491d3ec58d3cda53ad07f0ca)) +* **chart:** add component ([#835](https://github.com/core-ds/core-components/issues/835)) ([17d840b](https://github.com/core-ds/core-components/commit/17d840b9f9f64474491d3ec58d3cda53ad07f0ca)) ## [20.3.2](https://github.com/core-ds/core-components/compare/v20.3.1...v20.3.2) (2021-09-30) + ### Bug Fixes -- **intl-phone-input:** revert fix carret position on backspace ([772dcf5](https://github.com/core-ds/core-components/commit/772dcf588ba2d28ab9b02f81d0bf538bf016cae0)) +* **intl-phone-input:** revert fix carret position on backspace ([772dcf5](https://github.com/core-ds/core-components/commit/772dcf588ba2d28ab9b02f81d0bf538bf016cae0)) ## [20.3.1](https://github.com/core-ds/core-components/compare/v20.3.0...v20.3.1) (2021-09-28) + ### Bug Fixes -- cssm build ([bbc0a47](https://github.com/core-ds/core-components/commit/bbc0a472a0f68a5b239c4734bdce452f1a107ea6)) +* cssm build ([bbc0a47](https://github.com/core-ds/core-components/commit/bbc0a472a0f68a5b239c4734bdce452f1a107ea6)) # [20.3.0](https://github.com/core-ds/core-components/compare/v20.2.0...v20.3.0) (2021-09-27) + ### Bug Fixes -- **file-upload-item:** fix description prop ([#836](https://github.com/core-ds/core-components/issues/836)) ([e15cf1d](https://github.com/core-ds/core-components/commit/e15cf1dad438e22ac31984bfcf8531981b88c6de)) -- **intl-phone-input:** fix carret position on backspace ([#840](https://github.com/core-ds/core-components/issues/840)) ([c786ac1](https://github.com/core-ds/core-components/commit/c786ac17bd086833f3200570e812028ec4580554)), closes [#806](https://github.com/core-ds/core-components/issues/806) +* **file-upload-item:** fix description prop ([#836](https://github.com/core-ds/core-components/issues/836)) ([e15cf1d](https://github.com/core-ds/core-components/commit/e15cf1dad438e22ac31984bfcf8531981b88c6de)) +* **intl-phone-input:** fix carret position on backspace ([#840](https://github.com/core-ds/core-components/issues/840)) ([c786ac1](https://github.com/core-ds/core-components/commit/c786ac17bd086833f3200570e812028ec4580554)), closes [#806](https://github.com/core-ds/core-components/issues/806) + ### Features -- **confirmation:** design update, new type of error "overlimit" and blocking input ([#841](https://github.com/core-ds/core-components/issues/841)) ([1ea5d31](https://github.com/core-ds/core-components/commit/1ea5d3117552f7cc9fcd78092edf634d9020b693)) -- **select:** controlled open ([#839](https://github.com/core-ds/core-components/issues/839)) ([95d0470](https://github.com/core-ds/core-components/commit/95d0470a86e1a54f4cb4b789bb7e3281a1f0a401)) +* **confirmation:** design update, new type of error "overlimit" and blocking input ([#841](https://github.com/core-ds/core-components/issues/841)) ([1ea5d31](https://github.com/core-ds/core-components/commit/1ea5d3117552f7cc9fcd78092edf634d9020b693)) +* **select:** controlled open ([#839](https://github.com/core-ds/core-components/issues/839)) ([95d0470](https://github.com/core-ds/core-components/commit/95d0470a86e1a54f4cb4b789bb7e3281a1f0a401)) # [20.2.0](https://github.com/core-ds/core-components/compare/v20.1.0...v20.2.0) (2021-09-22) + ### Features -- **gallery:** add `canDownload` image prop, some refactoring ([#837](https://github.com/core-ds/core-components/issues/837)) ([b0c6665](https://github.com/core-ds/core-components/commit/b0c6665bb6a3d4b1e9d5bc176149f63ca2bd8542)) +* **gallery:** add `canDownload` image prop, some refactoring ([#837](https://github.com/core-ds/core-components/issues/837)) ([b0c6665](https://github.com/core-ds/core-components/commit/b0c6665bb6a3d4b1e9d5bc176149f63ca2bd8542)) # [20.1.0](https://github.com/core-ds/core-components/compare/v20.0.0...v20.1.0) (2021-09-16) + ### Features -- **gallery:** add component ([#815](https://github.com/core-ds/core-components/issues/815)) ([7ffd20e](https://github.com/core-ds/core-components/commit/7ffd20e2d007f658223d29aa943639c13ad51342)), closes [#774](https://github.com/core-ds/core-components/issues/774) [#795](https://github.com/core-ds/core-components/issues/795) +* **gallery:** add component ([#815](https://github.com/core-ds/core-components/issues/815)) ([7ffd20e](https://github.com/core-ds/core-components/commit/7ffd20e2d007f658223d29aa943639c13ad51342)), closes [#774](https://github.com/core-ds/core-components/issues/774) [#795](https://github.com/core-ds/core-components/issues/795) # [20.0.0](https://github.com/core-ds/core-components/compare/v19.11.1...v20.0.0) (2021-09-14) + ### Bug Fixes -- confirmation & input ([#833](https://github.com/core-ds/core-components/issues/833)) ([f3c0d62](https://github.com/core-ds/core-components/commit/f3c0d62c15b3812205b71685c2d37c0a986677ee)) -- **base-modal:** modal scroll ([#820](https://github.com/core-ds/core-components/issues/820)) ([1b2d94a](https://github.com/core-ds/core-components/commit/1b2d94ad45e04145bf1292d749ae2028702dc622)) +* confirmation & input ([#833](https://github.com/core-ds/core-components/issues/833)) ([f3c0d62](https://github.com/core-ds/core-components/commit/f3c0d62c15b3812205b71685c2d37c0a986677ee)) +* **base-modal:** modal scroll ([#820](https://github.com/core-ds/core-components/issues/820)) ([1b2d94a](https://github.com/core-ds/core-components/commit/1b2d94ad45e04145bf1292d749ae2028702dc622)) + ### Features -- dark themes ([#778](https://github.com/core-ds/core-components/issues/778)) ([d848d16](https://github.com/core-ds/core-components/commit/d848d165b59182e6521d28efc2aadeecebc00d93)) -- **dropzone:** design improvements (PDS-282) ([#829](https://github.com/core-ds/core-components/issues/829)) ([437ec3c](https://github.com/core-ds/core-components/commit/437ec3c80c507a37c8a24106a6ee6514abd68d04)) -- **password-input:** show right addons (PDS-283) ([#828](https://github.com/core-ds/core-components/issues/828)) ([b255acd](https://github.com/core-ds/core-components/commit/b255acdcdbe37b546c6c9100a1645609439af430)) -- **popover:** add useAnchorWidth prop ([#826](https://github.com/core-ds/core-components/issues/826)) ([8df55c4](https://github.com/core-ds/core-components/commit/8df55c4c496467c363c5c09c14d1bd08a9709ebf)), closes [#787](https://github.com/core-ds/core-components/issues/787) -- **typography:** add ref ([#834](https://github.com/core-ds/core-components/issues/834)) ([976b16d](https://github.com/core-ds/core-components/commit/976b16dd9ae68c31999bffb3506623db05033ad4)) -- change error type to ReactNode ([#825](https://github.com/core-ds/core-components/issues/825)) ([c6d95c1](https://github.com/core-ds/core-components/commit/c6d95c1c6239f2b2a3bf2c1639554d8500e794f3)) -- **vars:** updated colors and typography from latest alfa-ui-primitives ([#803](https://github.com/core-ds/core-components/issues/803)) ([0d5b2a3](https://github.com/core-ds/core-components/commit/0d5b2a30a78e70392dd505790a92bc3bc83f9386)) +* dark themes ([#778](https://github.com/core-ds/core-components/issues/778)) ([d848d16](https://github.com/core-ds/core-components/commit/d848d165b59182e6521d28efc2aadeecebc00d93)) +* **dropzone:** design improvements (PDS-282) ([#829](https://github.com/core-ds/core-components/issues/829)) ([437ec3c](https://github.com/core-ds/core-components/commit/437ec3c80c507a37c8a24106a6ee6514abd68d04)) +* **password-input:** show right addons (PDS-283) ([#828](https://github.com/core-ds/core-components/issues/828)) ([b255acd](https://github.com/core-ds/core-components/commit/b255acdcdbe37b546c6c9100a1645609439af430)) +* **popover:** add useAnchorWidth prop ([#826](https://github.com/core-ds/core-components/issues/826)) ([8df55c4](https://github.com/core-ds/core-components/commit/8df55c4c496467c363c5c09c14d1bd08a9709ebf)), closes [#787](https://github.com/core-ds/core-components/issues/787) +* **typography:** add ref ([#834](https://github.com/core-ds/core-components/issues/834)) ([976b16d](https://github.com/core-ds/core-components/commit/976b16dd9ae68c31999bffb3506623db05033ad4)) +* change error type to ReactNode ([#825](https://github.com/core-ds/core-components/issues/825)) ([c6d95c1](https://github.com/core-ds/core-components/commit/c6d95c1c6239f2b2a3bf2c1639554d8500e794f3)) +* **vars:** updated colors and typography from latest alfa-ui-primitives ([#803](https://github.com/core-ds/core-components/issues/803)) ([0d5b2a3](https://github.com/core-ds/core-components/commit/0d5b2a30a78e70392dd505790a92bc3bc83f9386)) + ### BREAKING CHANGES -- remove dark-theme-injector. remove vars duplications +* remove dark-theme-injector. remove vars duplications ## [19.11.1](https://github.com/core-ds/core-components/compare/v19.11.0...v19.11.1) (2021-09-08) + ### Bug Fixes -- wrong mobile colors ([#832](https://github.com/core-ds/core-components/issues/832)) ([d9e275b](https://github.com/core-ds/core-components/commit/d9e275b6ac60e635dec4b655bfc859f079cb9840)) -- **bank-card:** improve docs, fix focus bg ([#830](https://github.com/core-ds/core-components/issues/830)) ([1d8171c](https://github.com/core-ds/core-components/commit/1d8171ce5c76831c350fcf636dd48bad2c3db118)) -- **base-select:** lazy loading ([#831](https://github.com/core-ds/core-components/issues/831)) ([78f2b86](https://github.com/core-ds/core-components/commit/78f2b86221d8af7bf5019104aba743546fc31b45)) +* wrong mobile colors ([#832](https://github.com/core-ds/core-components/issues/832)) ([d9e275b](https://github.com/core-ds/core-components/commit/d9e275b6ac60e635dec4b655bfc859f079cb9840)) +* **bank-card:** improve docs, fix focus bg ([#830](https://github.com/core-ds/core-components/issues/830)) ([1d8171c](https://github.com/core-ds/core-components/commit/1d8171ce5c76831c350fcf636dd48bad2c3db118)) +* **base-select:** lazy loading ([#831](https://github.com/core-ds/core-components/issues/831)) ([78f2b86](https://github.com/core-ds/core-components/commit/78f2b86221d8af7bf5019104aba743546fc31b45)) # [19.11.0](https://github.com/core-ds/core-components/compare/v19.10.0...v19.11.0) (2021-09-06) + ### Features -- **tooltip:** update shadow and arrow size/position ([2d40988](https://github.com/core-ds/core-components/commit/2d40988f3c376c51907aa8a4845ba25c7c43a2f4)) +* **tooltip:** update shadow and arrow size/position ([2d40988](https://github.com/core-ds/core-components/commit/2d40988f3c376c51907aa8a4845ba25c7c43a2f4)) # [19.10.0](https://github.com/core-ds/core-components/compare/v19.9.0...v19.10.0) (2021-08-31) + ### Bug Fixes -- **textarea:** missing vars ([#817](https://github.com/core-ds/core-components/issues/817)) ([d03231f](https://github.com/core-ds/core-components/commit/d03231f24c826f540ecc8c6ddeb2b3e3fec38b6a)) +* **textarea:** missing vars ([#817](https://github.com/core-ds/core-components/issues/817)) ([d03231f](https://github.com/core-ds/core-components/commit/d03231f24c826f540ecc8c6ddeb2b3e3fec38b6a)) + ### Features -- **icon-button:** added 'target' attribute, when IconButton is link ([#823](https://github.com/core-ds/core-components/issues/823)) ([b2aab6b](https://github.com/core-ds/core-components/commit/b2aab6be98e01d0e99863f016e08bde384a4ff3c)) +* **icon-button:** added 'target' attribute, when IconButton is link ([#823](https://github.com/core-ds/core-components/issues/823)) ([b2aab6b](https://github.com/core-ds/core-components/commit/b2aab6be98e01d0e99863f016e08bde384a4ff3c)) # [19.9.0](https://github.com/core-ds/core-components/compare/v19.8.0...v19.9.0) (2021-08-27) + ### Bug Fixes -- **tabs:** fix tabs hidden ([#816](https://github.com/core-ds/core-components/issues/816)) ([68468dd](https://github.com/core-ds/core-components/commit/68468dd6e74a465f2d4bcde87d7852bcaf934783)) +* **tabs:** fix tabs hidden ([#816](https://github.com/core-ds/core-components/issues/816)) ([68468dd](https://github.com/core-ds/core-components/commit/68468dd6e74a465f2d4bcde87d7852bcaf934783)) + ### Features -- custom components for button and link ([#814](https://github.com/core-ds/core-components/issues/814)) ([a623dd0](https://github.com/core-ds/core-components/commit/a623dd021ef611f9994a6587ba6a0d0ee9d8929c)) -- **dropzone:** add block prop ([#813](https://github.com/core-ds/core-components/issues/813)) ([39bf4c3](https://github.com/core-ds/core-components/commit/39bf4c3158525d419c75aedec8be81e4a4bb90da)) +* custom components for button and link ([#814](https://github.com/core-ds/core-components/issues/814)) ([a623dd0](https://github.com/core-ds/core-components/commit/a623dd021ef611f9994a6587ba6a0d0ee9d8929c)) +* **dropzone:** add block prop ([#813](https://github.com/core-ds/core-components/issues/813)) ([39bf4c3](https://github.com/core-ds/core-components/commit/39bf4c3158525d419c75aedec8be81e4a4bb90da)) # [19.8.0](https://github.com/core-ds/core-components/compare/v19.7.2...v19.8.0) (2021-08-26) + ### Bug Fixes -- **tabs:** height styles ([#810](https://github.com/core-ds/core-components/issues/810)) ([b3b96e7](https://github.com/core-ds/core-components/commit/b3b96e7efb4771c0009c29e851ce1d69f4c61ff4)) +* **tabs:** height styles ([#810](https://github.com/core-ds/core-components/issues/810)) ([b3b96e7](https://github.com/core-ds/core-components/commit/b3b96e7efb4771c0009c29e851ce1d69f4c61ff4)) + ### Features -- **intl-phone-input:** hide select for countries when one country ([#809](https://github.com/core-ds/core-components/issues/809)) ([bad50af](https://github.com/core-ds/core-components/commit/bad50aff46ab4af5416510944802451873cd08bc)) +* **intl-phone-input:** hide select for countries when one country ([#809](https://github.com/core-ds/core-components/issues/809)) ([bad50af](https://github.com/core-ds/core-components/commit/bad50aff46ab4af5416510944802451873cd08bc)) ## [19.7.2](https://github.com/core-ds/core-components/compare/v19.7.1...v19.7.2) (2021-08-23) + ### Bug Fixes -- **plate:** check is click inside component, popover issue ([bea8a7d](https://github.com/core-ds/core-components/commit/bea8a7dc199d7aced3ec8b5e9ab76568f0cba839)) +* **plate:** check is click inside component, popover issue ([bea8a7d](https://github.com/core-ds/core-components/commit/bea8a7dc199d7aced3ec8b5e9ab76568f0cba839)) ## [19.7.1](https://github.com/core-ds/core-components/compare/v19.7.0...v19.7.1) (2021-08-23) + ### Bug Fixes -- **input:** clear icon ([51debd4](https://github.com/core-ds/core-components/commit/51debd46ea2176486cfc1945d74e8d56a4b9387b)) +* **input:** clear icon ([51debd4](https://github.com/core-ds/core-components/commit/51debd46ea2176486cfc1945d74e8d56a4b9387b)) # [19.7.0](https://github.com/core-ds/core-components/compare/v19.6.3...v19.7.0) (2021-08-23) + ### Bug Fixes -- **form-control:** l size offset between value and label (PDS-270) ([#781](https://github.com/core-ds/core-components/issues/781)) ([311f8a0](https://github.com/core-ds/core-components/commit/311f8a0eaa97cf7d0c89d4a3cdfc443aef2d763c)) -- **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782) +* **form-control:** l size offset between value and label (PDS-270) ([#781](https://github.com/core-ds/core-components/issues/781)) ([311f8a0](https://github.com/core-ds/core-components/commit/311f8a0eaa97cf7d0c89d4a3cdfc443aef2d763c)) +* **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782) + ### Features -- **confirmation:** add custom countdown content, change time format ([#804](https://github.com/core-ds/core-components/issues/804)) ([b87ace1](https://github.com/core-ds/core-components/commit/b87ace190013cc873133bd1fff23cb6ae0ae3800)) -- **icon-button:** Rest props for IconButton from Button ([#805](https://github.com/core-ds/core-components/issues/805)) ([ee4e170](https://github.com/core-ds/core-components/commit/ee4e170b6b59800e283080d36bddfdcfe4b57561)) -- **tag:** add inverted colors ([#784](https://github.com/core-ds/core-components/issues/784)) ([d3681ae](https://github.com/core-ds/core-components/commit/d3681aeefe02e5f481d066013911a1877a165bb2)) -- **tooltip:** add TooltipResponsive, add `fallbackPlacements` prop ([#780](https://github.com/core-ds/core-components/issues/780)) ([61d780c](https://github.com/core-ds/core-components/commit/61d780c750bd9c0331d275f1b12b0512bb3d2049)) +* **confirmation:** add custom countdown content, change time format ([#804](https://github.com/core-ds/core-components/issues/804)) ([b87ace1](https://github.com/core-ds/core-components/commit/b87ace190013cc873133bd1fff23cb6ae0ae3800)) +* **icon-button:** Rest props for IconButton from Button ([#805](https://github.com/core-ds/core-components/issues/805)) ([ee4e170](https://github.com/core-ds/core-components/commit/ee4e170b6b59800e283080d36bddfdcfe4b57561)) +* **tag:** add inverted colors ([#784](https://github.com/core-ds/core-components/issues/784)) ([d3681ae](https://github.com/core-ds/core-components/commit/d3681aeefe02e5f481d066013911a1877a165bb2)) +* **tooltip:** add TooltipResponsive, add `fallbackPlacements` prop ([#780](https://github.com/core-ds/core-components/issues/780)) ([61d780c](https://github.com/core-ds/core-components/commit/61d780c750bd9c0331d275f1b12b0512bb3d2049)) ## [19.6.3](https://github.com/core-ds/core-components/compare/v19.6.2...v19.6.3) (2021-08-13) + ### Bug Fixes -- **select:** lazy loading select ([#797](https://github.com/core-ds/core-components/issues/797)) ([68b5602](https://github.com/core-ds/core-components/commit/68b560208ff288657aa1698387c617c7c1449a8d)) +* **select:** lazy loading select ([#797](https://github.com/core-ds/core-components/issues/797)) ([68b5602](https://github.com/core-ds/core-components/commit/68b560208ff288657aa1698387c617c7c1449a8d)) ## [19.6.2](https://github.com/core-ds/core-components/compare/v19.6.1...v19.6.2) (2021-08-13) + ### Bug Fixes -- **calendar:** fix min\max ([6bd4944](https://github.com/core-ds/core-components/commit/6bd49447492b10583973cdfc43350cf8f96c1ecb)) -- **calendar-input:** extends calendarProps type ([8bf4f58](https://github.com/core-ds/core-components/commit/8bf4f587c1a36471318f7cc02968d1de2a125e11)) +* **calendar:** fix min\max ([6bd4944](https://github.com/core-ds/core-components/commit/6bd49447492b10583973cdfc43350cf8f96c1ecb)) +* **calendar-input:** extends calendarProps type ([8bf4f58](https://github.com/core-ds/core-components/commit/8bf4f587c1a36471318f7cc02968d1de2a125e11)) ## [19.6.1](https://github.com/core-ds/core-components/compare/v19.6.0...v19.6.1) (2021-08-11) + ### Bug Fixes -- **modal:** max-width 100% ([#794](https://github.com/core-ds/core-components/issues/794)) ([793a765](https://github.com/core-ds/core-components/commit/793a765e7d5dc251eee810acde4605e139565906)) -- **plate:** alert in plate cascade issue ([#793](https://github.com/core-ds/core-components/issues/793)) ([dbc20e5](https://github.com/core-ds/core-components/commit/dbc20e558f2b6452e70052b5abc3faf8533709d4)) -- **select:** remove wron prop passed into renderOption method ([#791](https://github.com/core-ds/core-components/issues/791)) ([5231813](https://github.com/core-ds/core-components/commit/523181355ebde537aa802f86c27e867d9261095a)) -- extend hint type to ReactNode ([#792](https://github.com/core-ds/core-components/issues/792)) ([d02784e](https://github.com/core-ds/core-components/commit/d02784e392f5ca3a30ae009109fbb6351967f746)) +* **modal:** max-width 100% ([#794](https://github.com/core-ds/core-components/issues/794)) ([793a765](https://github.com/core-ds/core-components/commit/793a765e7d5dc251eee810acde4605e139565906)) +* **plate:** alert in plate cascade issue ([#793](https://github.com/core-ds/core-components/issues/793)) ([dbc20e5](https://github.com/core-ds/core-components/commit/dbc20e558f2b6452e70052b5abc3faf8533709d4)) +* **select:** remove wron prop passed into renderOption method ([#791](https://github.com/core-ds/core-components/issues/791)) ([5231813](https://github.com/core-ds/core-components/commit/523181355ebde537aa802f86c27e867d9261095a)) +* extend hint type to ReactNode ([#792](https://github.com/core-ds/core-components/issues/792)) ([d02784e](https://github.com/core-ds/core-components/commit/d02784e392f5ca3a30ae009109fbb6351967f746)) # [19.6.0](https://github.com/core-ds/core-components/compare/v19.5.0...v19.6.0) (2021-08-09) + ### Bug Fixes -- **attach:** fix drag counter & styles ([#786](https://github.com/core-ds/core-components/issues/786)) ([b075725](https://github.com/core-ds/core-components/commit/b0757250ea57a6e5db64a5026315f8837e8a3303)) -- **checkbox:** fix layout ([#790](https://github.com/core-ds/core-components/issues/790)) ([8aa18b4](https://github.com/core-ds/core-components/commit/8aa18b48167eeb5df225ff854d3ca337cd43d4f2)) +* **attach:** fix drag counter & styles ([#786](https://github.com/core-ds/core-components/issues/786)) ([b075725](https://github.com/core-ds/core-components/commit/b0757250ea57a6e5db64a5026315f8837e8a3303)) +* **checkbox:** fix layout ([#790](https://github.com/core-ds/core-components/issues/790)) ([8aa18b4](https://github.com/core-ds/core-components/commit/8aa18b48167eeb5df225ff854d3ca337cd43d4f2)) + ### Features -- **attach:** add additional classNames props ([#783](https://github.com/core-ds/core-components/issues/783)) ([bc8e865](https://github.com/core-ds/core-components/commit/bc8e86512a95b8690d2115a71a299c19195fa58d)) +* **attach:** add additional classNames props ([#783](https://github.com/core-ds/core-components/issues/783)) ([bc8e865](https://github.com/core-ds/core-components/commit/bc8e86512a95b8690d2115a71a299c19195fa58d)) # [19.5.0](https://github.com/core-ds/core-components/compare/v19.4.0...v19.5.0) (2021-08-04) + ### Features -- add mods colors ([#770](https://github.com/core-ds/core-components/issues/770)) ([fe985f4](https://github.com/core-ds/core-components/commit/fe985f467b4d47a5152e168d2ab3846872d1a574)) +* add mods colors ([#770](https://github.com/core-ds/core-components/issues/770)) ([fe985f4](https://github.com/core-ds/core-components/commit/fe985f467b4d47a5152e168d2ab3846872d1a574)) # [19.4.0](https://github.com/core-ds/core-components/compare/v19.3.0...v19.4.0) (2021-08-03) + ### Bug Fixes -- **amount-input:** remove caret-color override ([#773](https://github.com/core-ds/core-components/issues/773)) ([93311d0](https://github.com/core-ds/core-components/commit/93311d0a8e170c14c6cbfa28414d2538f78ddd3f)) -- add missing deps ([4f4a540](https://github.com/core-ds/core-components/commit/4f4a54059f141e41e430199b1a2c30fedf62b081)) -- move icon from date input to calendar input ([#768](https://github.com/core-ds/core-components/issues/768)) ([040bd42](https://github.com/core-ds/core-components/commit/040bd423279eb535f1ea924599ee16c296453e3f)) +* **amount-input:** remove caret-color override ([#773](https://github.com/core-ds/core-components/issues/773)) ([93311d0](https://github.com/core-ds/core-components/commit/93311d0a8e170c14c6cbfa28414d2538f78ddd3f)) +* add missing deps ([4f4a540](https://github.com/core-ds/core-components/commit/4f4a54059f141e41e430199b1a2c30fedf62b081)) +* move icon from date input to calendar input ([#768](https://github.com/core-ds/core-components/issues/768)) ([040bd42](https://github.com/core-ds/core-components/commit/040bd423279eb535f1ea924599ee16c296453e3f)) + ### Features -- add inactive controls (PDS-266) ([#765](https://github.com/core-ds/core-components/issues/765)) ([ec02c89](https://github.com/core-ds/core-components/commit/ec02c89ab6bf038c026ca0a72b3185525334840a)) -- **amount-input:** add integers only mode ([#766](https://github.com/core-ds/core-components/issues/766)) ([27a2535](https://github.com/core-ds/core-components/commit/27a2535f2de8d787e666c08a8fbfeb67d762f9a1)) -- **amount-input:** allow to use custom suffix ([#767](https://github.com/core-ds/core-components/issues/767)) ([27d9d02](https://github.com/core-ds/core-components/commit/27d9d02fb619fa5946fb3cb678d9b742d74a745b)) +* add inactive controls (PDS-266) ([#765](https://github.com/core-ds/core-components/issues/765)) ([ec02c89](https://github.com/core-ds/core-components/commit/ec02c89ab6bf038c026ca0a72b3185525334840a)) +* **amount-input:** add integers only mode ([#766](https://github.com/core-ds/core-components/issues/766)) ([27a2535](https://github.com/core-ds/core-components/commit/27a2535f2de8d787e666c08a8fbfeb67d762f9a1)) +* **amount-input:** allow to use custom suffix ([#767](https://github.com/core-ds/core-components/issues/767)) ([27d9d02](https://github.com/core-ds/core-components/commit/27d9d02fb619fa5946fb3cb678d9b742d74a745b)) # [19.3.0](https://github.com/core-ds/core-components/compare/v19.2.1...v19.3.0) (2021-07-23) + ### Bug Fixes -- select & calendar-input use glyph icons ([#742](https://github.com/core-ds/core-components/issues/742)) ([6b04ae4](https://github.com/core-ds/core-components/commit/6b04ae49fc4f3805ef362dcb68939b72fc99814b)) -- **input:** autofocus ([#761](https://github.com/core-ds/core-components/issues/761)) ([e2880de](https://github.com/core-ds/core-components/commit/e2880de6cff33b156bea58286bb46e0803e254a5)) -- **tooltip:** fix bug with controlled state ([#759](https://github.com/core-ds/core-components/issues/759)) ([dd0144e](https://github.com/core-ds/core-components/commit/dd0144e880e0dac6bac1ab9d15832341761993e9)) +* select & calendar-input use glyph icons ([#742](https://github.com/core-ds/core-components/issues/742)) ([6b04ae4](https://github.com/core-ds/core-components/commit/6b04ae49fc4f3805ef362dcb68939b72fc99814b)) +* **input:** autofocus ([#761](https://github.com/core-ds/core-components/issues/761)) ([e2880de](https://github.com/core-ds/core-components/commit/e2880de6cff33b156bea58286bb46e0803e254a5)) +* **tooltip:** fix bug with controlled state ([#759](https://github.com/core-ds/core-components/issues/759)) ([dd0144e](https://github.com/core-ds/core-components/commit/dd0144e880e0dac6bac1ab9d15832341761993e9)) + ### Features -- **attach:** simulate controlled state ([#760](https://github.com/core-ds/core-components/issues/760)) ([5d312bf](https://github.com/core-ds/core-components/commit/5d312bf632cc716bfc7ecb7b487c4af812838aa9)), closes [#743](https://github.com/core-ds/core-components/issues/743) -- **bottom-sheet:** fix marker gap, fix animation duration ([#750](https://github.com/core-ds/core-components/issues/750)) ([cb04ed8](https://github.com/core-ds/core-components/commit/cb04ed8cc214fac9dba32a0ab39a4399743d5bfc)) -- **calendar-input:** uses date-input ([#752](https://github.com/core-ds/core-components/issues/752)) ([509dba2](https://github.com/core-ds/core-components/commit/509dba26913ccf6df859a200aa476eeef1df2ddc)) -- **confirmation:** fix timer, some loader refactoring ([#754](https://github.com/core-ds/core-components/issues/754)) ([187bb0e](https://github.com/core-ds/core-components/commit/187bb0e72a75c62b117a49917976903257d90bb7)) -- **date-input:** add component ([#751](https://github.com/core-ds/core-components/issues/751)) ([4b94bee](https://github.com/core-ds/core-components/commit/4b94beec36acc73ac6c62cf37f87061c0ada4b35)) -- **input:** input mobile theme (PDS-241) ([#737](https://github.com/core-ds/core-components/issues/737)) ([88f6f7c](https://github.com/core-ds/core-components/commit/88f6f7c58968b9564970eaa3d759aa2bc275ca7e)) -- **stepped-progress-bar:** add component ([#747](https://github.com/core-ds/core-components/issues/747)) ([f82e9af](https://github.com/core-ds/core-components/commit/f82e9af075e12e5a34751efc5c7f427283e75c1b)) -- add mobile theme for tag, radio, checkbox (PDS-244/247/248) ([#717](https://github.com/core-ds/core-components/issues/717)) ([36e2d99](https://github.com/core-ds/core-components/commit/36e2d99c716a03e7f319439df9ca47ec43ad4b71)) -- checkbox/radio/switch design updates (PDS-252) ([#735](https://github.com/core-ds/core-components/issues/735)) ([62f3c63](https://github.com/core-ds/core-components/commit/62f3c63279872a80ffb1c018b08addf897597b26)) -- slider input mobile theme (PDS-242) ([#738](https://github.com/core-ds/core-components/issues/738)) ([6e924aa](https://github.com/core-ds/core-components/commit/6e924aa90b63b914b6f5690766e41cddabe18e19)) +* **attach:** simulate controlled state ([#760](https://github.com/core-ds/core-components/issues/760)) ([5d312bf](https://github.com/core-ds/core-components/commit/5d312bf632cc716bfc7ecb7b487c4af812838aa9)), closes [#743](https://github.com/core-ds/core-components/issues/743) +* **bottom-sheet:** fix marker gap, fix animation duration ([#750](https://github.com/core-ds/core-components/issues/750)) ([cb04ed8](https://github.com/core-ds/core-components/commit/cb04ed8cc214fac9dba32a0ab39a4399743d5bfc)) +* **calendar-input:** uses date-input ([#752](https://github.com/core-ds/core-components/issues/752)) ([509dba2](https://github.com/core-ds/core-components/commit/509dba26913ccf6df859a200aa476eeef1df2ddc)) +* **confirmation:** fix timer, some loader refactoring ([#754](https://github.com/core-ds/core-components/issues/754)) ([187bb0e](https://github.com/core-ds/core-components/commit/187bb0e72a75c62b117a49917976903257d90bb7)) +* **date-input:** add component ([#751](https://github.com/core-ds/core-components/issues/751)) ([4b94bee](https://github.com/core-ds/core-components/commit/4b94beec36acc73ac6c62cf37f87061c0ada4b35)) +* **input:** input mobile theme (PDS-241) ([#737](https://github.com/core-ds/core-components/issues/737)) ([88f6f7c](https://github.com/core-ds/core-components/commit/88f6f7c58968b9564970eaa3d759aa2bc275ca7e)) +* **stepped-progress-bar:** add component ([#747](https://github.com/core-ds/core-components/issues/747)) ([f82e9af](https://github.com/core-ds/core-components/commit/f82e9af075e12e5a34751efc5c7f427283e75c1b)) +* add mobile theme for tag, radio, checkbox (PDS-244/247/248) ([#717](https://github.com/core-ds/core-components/issues/717)) ([36e2d99](https://github.com/core-ds/core-components/commit/36e2d99c716a03e7f319439df9ca47ec43ad4b71)) +* checkbox/radio/switch design updates (PDS-252) ([#735](https://github.com/core-ds/core-components/issues/735)) ([62f3c63](https://github.com/core-ds/core-components/commit/62f3c63279872a80ffb1c018b08addf897597b26)) +* slider input mobile theme (PDS-242) ([#738](https://github.com/core-ds/core-components/issues/738)) ([6e924aa](https://github.com/core-ds/core-components/commit/6e924aa90b63b914b6f5690766e41cddabe18e19)) ## [19.2.1](https://github.com/core-ds/core-components/compare/v19.2.0...v19.2.1) (2021-07-20) + ### Bug Fixes -- **phone-input:** value prop ([#757](https://github.com/core-ds/core-components/issues/757)) ([3ba0168](https://github.com/core-ds/core-components/commit/3ba01686ffa950bd74d9ab28bfa961c6cf74a5d8)) +* **phone-input:** value prop ([#757](https://github.com/core-ds/core-components/issues/757)) ([3ba0168](https://github.com/core-ds/core-components/commit/3ba01686ffa950bd74d9ab28bfa961c6cf74a5d8)) # [19.2.0](https://github.com/core-ds/core-components/compare/v19.1.0...v19.2.0) (2021-07-19) + ### Bug Fixes -- **intl-phone-input:** remove changing unclearable country code ([#730](https://github.com/core-ds/core-components/issues/730)) ([6d219d6](https://github.com/core-ds/core-components/commit/6d219d622e4da60aada0e10d3c442510f597b1b9)) +* **intl-phone-input:** remove changing unclearable country code ([#730](https://github.com/core-ds/core-components/issues/730)) ([6d219d6](https://github.com/core-ds/core-components/commit/6d219d622e4da60aada0e10d3c442510f597b1b9)) + ### Features -- **phone-input:** add 'clearableCountyCode' prop ([#749](https://github.com/core-ds/core-components/issues/749)) ([d110ae7](https://github.com/core-ds/core-components/commit/d110ae76594ccbf7f6d8a5764d3c2a72b1ae9a26)) -- **select:** add scroll handler ([#756](https://github.com/core-ds/core-components/issues/756)) ([b25351b](https://github.com/core-ds/core-components/commit/b25351b74913244fb131d4aa1bc09900be362258)) -- **tooltip:** add target ref property ([#755](https://github.com/core-ds/core-components/issues/755)) ([9aa962d](https://github.com/core-ds/core-components/commit/9aa962d8b280e8d6af8ac4324a78b4bdebbfc536)) -- **typography:** monospaceNumbers prop (PDS-255) ([#697](https://github.com/core-ds/core-components/issues/697)) ([42d16a6](https://github.com/core-ds/core-components/commit/42d16a62f6d0781eba44dc1e0b76b28cae37d89a)) +* **phone-input:** add 'clearableCountyCode' prop ([#749](https://github.com/core-ds/core-components/issues/749)) ([d110ae7](https://github.com/core-ds/core-components/commit/d110ae76594ccbf7f6d8a5764d3c2a72b1ae9a26)) +* **select:** add scroll handler ([#756](https://github.com/core-ds/core-components/issues/756)) ([b25351b](https://github.com/core-ds/core-components/commit/b25351b74913244fb131d4aa1bc09900be362258)) +* **tooltip:** add target ref property ([#755](https://github.com/core-ds/core-components/issues/755)) ([9aa962d](https://github.com/core-ds/core-components/commit/9aa962d8b280e8d6af8ac4324a78b4bdebbfc536)) +* **typography:** monospaceNumbers prop (PDS-255) ([#697](https://github.com/core-ds/core-components/issues/697)) ([42d16a6](https://github.com/core-ds/core-components/commit/42d16a62f6d0781eba44dc1e0b76b28cae37d89a)) # [19.1.0](https://github.com/core-ds/core-components/compare/v19.0.0...v19.1.0) (2021-07-09) + ### Bug Fixes -- **badge:** fix name ([207d3d3](https://github.com/core-ds/core-components/commit/207d3d30171a84ff4021cd119c0da1316a92d14c)) -- **calendar:** fix select-button disabled+selected state ([4f54c01](https://github.com/core-ds/core-components/commit/4f54c01451a2532fd377d3590869dfa52c968dcf)) -- **calendar:** limit defaultMonth ([636fa5b](https://github.com/core-ds/core-components/commit/636fa5b1363fbdea8516b95ac758aee65b8cffba)) -- **input-autocomplete:** popover height with dynamic height options ([da24758](https://github.com/core-ds/core-components/commit/da247589a35ba33742f95fc96ed63b0ba65cdf11)) +* **badge:** fix name ([207d3d3](https://github.com/core-ds/core-components/commit/207d3d30171a84ff4021cd119c0da1316a92d14c)) +* **calendar:** fix select-button disabled+selected state ([4f54c01](https://github.com/core-ds/core-components/commit/4f54c01451a2532fd377d3590869dfa52c968dcf)) +* **calendar:** limit defaultMonth ([636fa5b](https://github.com/core-ds/core-components/commit/636fa5b1363fbdea8516b95ac758aee65b8cffba)) +* **input-autocomplete:** popover height with dynamic height options ([da24758](https://github.com/core-ds/core-components/commit/da247589a35ba33742f95fc96ed63b0ba65cdf11)) + ### Features -- **badge:** add icon color ([d9e9065](https://github.com/core-ds/core-components/commit/d9e906596d157a5e3d7844bbecfb96f64d9f44e1)) -- **badge:** add screenshots ([3bbc8d0](https://github.com/core-ds/core-components/commit/3bbc8d032b0a267e9e6e949af5db6c955e25fb50)) -- **select:** dont highlight first option on open ([015a084](https://github.com/core-ds/core-components/commit/015a084be6e5d837b6368afe6ca63a0a4c325435)) -- **themes:** confirmation mobile theme ([a85233c](https://github.com/core-ds/core-components/commit/a85233c1e859e933e1c51997678c8a8c6134e353)) -- **vars:** add border-radius-xs ([a4bd8ff](https://github.com/core-ds/core-components/commit/a4bd8ff44d9ed7cf68ca2b0994ab61a80ed358e2)) -- **vars:** fresh colors from alfa-ui-primitives ([2051a0c](https://github.com/core-ds/core-components/commit/2051a0ce3caee3c1a70f36e8c84e575bcd528bab)) +* **badge:** add icon color ([d9e9065](https://github.com/core-ds/core-components/commit/d9e906596d157a5e3d7844bbecfb96f64d9f44e1)) +* **badge:** add screenshots ([3bbc8d0](https://github.com/core-ds/core-components/commit/3bbc8d032b0a267e9e6e949af5db6c955e25fb50)) +* **select:** dont highlight first option on open ([015a084](https://github.com/core-ds/core-components/commit/015a084be6e5d837b6368afe6ca63a0a4c325435)) +* **themes:** confirmation mobile theme ([a85233c](https://github.com/core-ds/core-components/commit/a85233c1e859e933e1c51997678c8a8c6134e353)) +* **vars:** add border-radius-xs ([a4bd8ff](https://github.com/core-ds/core-components/commit/a4bd8ff44d9ed7cf68ca2b0994ab61a80ed358e2)) +* **vars:** fresh colors from alfa-ui-primitives ([2051a0c](https://github.com/core-ds/core-components/commit/2051a0ce3caee3c1a70f36e8c84e575bcd528bab)) # [19.0.0](https://github.com/core-ds/core-components/compare/v18.2.1...v19.0.0) (2021-07-08) + ### Features -- upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696)) +* upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696)) ## [18.2.1](https://github.com/core-ds/core-components/compare/v18.2.0...v18.2.1) (2021-07-02) + ### Bug Fixes -- **base-modal:** resubscribe observer when content node changed ([2fef06e](https://github.com/core-ds/core-components/commit/2fef06eea01354f58663a5f4470606123d31f9d4)) +* **base-modal:** resubscribe observer when content node changed ([2fef06e](https://github.com/core-ds/core-components/commit/2fef06eea01354f58663a5f4470606123d31f9d4)) # [18.2.0](https://github.com/core-ds/core-components/compare/v18.1.0...v18.2.0) (2021-06-30) + ### Bug Fixes -- **dark-theme-styles-injector:** fix rendering passed styles ([#723](https://github.com/core-ds/core-components/issues/723)) ([882841c](https://github.com/core-ds/core-components/commit/882841c1c43d5570652ab3fcc199958060b92c57)) +* **dark-theme-styles-injector:** fix rendering passed styles ([#723](https://github.com/core-ds/core-components/issues/723)) ([882841c](https://github.com/core-ds/core-components/commit/882841c1c43d5570652ab3fcc199958060b92c57)) + ### Features -- **calendar-range:** pass props to render calendar in popper ([#702](https://github.com/core-ds/core-components/issues/702)) ([4369e46](https://github.com/core-ds/core-components/commit/4369e462116dc1d240f95f811be67639b10dedb6)) +* **calendar-range:** pass props to render calendar in popper ([#702](https://github.com/core-ds/core-components/issues/702)) ([4369e46](https://github.com/core-ds/core-components/commit/4369e462116dc1d240f95f811be67639b10dedb6)) # [18.1.0](https://github.com/core-ds/core-components/compare/v18.0.0...v18.1.0) (2021-06-29) + ### Features -- **password-input:** add password input (PDS-233) ([#691](https://github.com/core-ds/core-components/issues/691)) ([d872e4d](https://github.com/core-ds/core-components/commit/d872e4dd18fd5db472864fbc2676749b812da00f)) +* **password-input:** add password input (PDS-233) ([#691](https://github.com/core-ds/core-components/issues/691)) ([d872e4d](https://github.com/core-ds/core-components/commit/d872e4dd18fd5db472864fbc2676749b812da00f)) # [18.0.0](https://github.com/core-ds/core-components/compare/v17.6.0...v18.0.0) (2021-06-28) + ### Bug Fixes -- **base-modal:** fix has scroll bug ([#712](https://github.com/core-ds/core-components/issues/712)) ([a6749a1](https://github.com/core-ds/core-components/commit/a6749a149d511b28cc59aaec188d59c380c64243)) -- **space:** remove last element margin ([#713](https://github.com/core-ds/core-components/issues/713)) ([bc36cf7](https://github.com/core-ds/core-components/commit/bc36cf7db35cbd7c5d36c178a50bbd27d2f11b0c)) -- **typography:** add missing weight styles ([#719](https://github.com/core-ds/core-components/issues/719)) ([6b855aa](https://github.com/core-ds/core-components/commit/6b855aa97eff918e0e16f957c4c05bb7f2d8f4fe)) +* **base-modal:** fix has scroll bug ([#712](https://github.com/core-ds/core-components/issues/712)) ([a6749a1](https://github.com/core-ds/core-components/commit/a6749a149d511b28cc59aaec188d59c380c64243)) +* **space:** remove last element margin ([#713](https://github.com/core-ds/core-components/issues/713)) ([bc36cf7](https://github.com/core-ds/core-components/commit/bc36cf7db35cbd7c5d36c178a50bbd27d2f11b0c)) +* **typography:** add missing weight styles ([#719](https://github.com/core-ds/core-components/issues/719)) ([6b855aa](https://github.com/core-ds/core-components/commit/6b855aa97eff918e0e16f957c4c05bb7f2d8f4fe)) + ### Features -- **bottom-sheet:** new component (PDS-228) ([#645](https://github.com/core-ds/core-components/issues/645)) ([1f7391d](https://github.com/core-ds/core-components/commit/1f7391df16a270d8a3a28b8ebaf98d0ed0928bc8)), closes [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) -- **confirmation:** add property for change retry button text ([#720](https://github.com/core-ds/core-components/issues/720)) ([c0f7688](https://github.com/core-ds/core-components/commit/c0f76888cffff8ad4169769bc4615429663352a5)) -- **skeleton:** add display var, change default to block ([#718](https://github.com/core-ds/core-components/issues/718)) ([27aaa60](https://github.com/core-ds/core-components/commit/27aaa605a958d932a52904556ac2fe1dd59356af)) +* **bottom-sheet:** new component (PDS-228) ([#645](https://github.com/core-ds/core-components/issues/645)) ([1f7391d](https://github.com/core-ds/core-components/commit/1f7391df16a270d8a3a28b8ebaf98d0ed0928bc8)), closes [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) +* **confirmation:** add property for change retry button text ([#720](https://github.com/core-ds/core-components/issues/720)) ([c0f7688](https://github.com/core-ds/core-components/commit/c0f76888cffff8ad4169769bc4615429663352a5)) +* **skeleton:** add display var, change default to block ([#718](https://github.com/core-ds/core-components/issues/718)) ([27aaa60](https://github.com/core-ds/core-components/commit/27aaa605a958d932a52904556ac2fe1dd59356af)) + ### BREAKING CHANGES -- **skeleton:** inline-block changes to block -- **confirmation:** buttonRetryText renamed to buttonReturnText +* **skeleton:** inline-block changes to block +* **confirmation:** buttonRetryText renamed to buttonReturnText # [17.6.0](https://github.com/core-ds/core-components/compare/v17.5.1...v17.6.0) (2021-06-22) + ### Bug Fixes -- **intl-phone-input:** format input value ([#703](https://github.com/core-ds/core-components/issues/703)) ([b5e91ed](https://github.com/core-ds/core-components/commit/b5e91edf03867f5dc93fab78425f7c1a128afd9b)) +* **intl-phone-input:** format input value ([#703](https://github.com/core-ds/core-components/issues/703)) ([b5e91ed](https://github.com/core-ds/core-components/commit/b5e91edf03867f5dc93fab78425f7c1a128afd9b)) + ### Features -- **dark-theme-styles-injector:** add prop for selector ([#709](https://github.com/core-ds/core-components/issues/709)) ([f74cdc7](https://github.com/core-ds/core-components/commit/f74cdc7b312321fcb111f1c64f21714ee403e513)) -- **slider-input:** design updates ([#673](https://github.com/core-ds/core-components/issues/673)) ([794e3cc](https://github.com/core-ds/core-components/commit/794e3cc99a3b61ec4faa630469dae7e49a56ee0a)) -- **textarea:** add value counter ([#695](https://github.com/core-ds/core-components/issues/695)) ([cbc6bd3](https://github.com/core-ds/core-components/commit/cbc6bd3eaa48e3df2791d23e156c7c664d67ff49)) +* **dark-theme-styles-injector:** add prop for selector ([#709](https://github.com/core-ds/core-components/issues/709)) ([f74cdc7](https://github.com/core-ds/core-components/commit/f74cdc7b312321fcb111f1c64f21714ee403e513)) +* **slider-input:** design updates ([#673](https://github.com/core-ds/core-components/issues/673)) ([794e3cc](https://github.com/core-ds/core-components/commit/794e3cc99a3b61ec4faa630469dae7e49a56ee0a)) +* **textarea:** add value counter ([#695](https://github.com/core-ds/core-components/issues/695)) ([cbc6bd3](https://github.com/core-ds/core-components/commit/cbc6bd3eaa48e3df2791d23e156c7c664d67ff49)) ## [17.5.1](https://github.com/core-ds/core-components/compare/v17.5.0...v17.5.1) (2021-06-21) + ### Bug Fixes -- **calendar-with-skeleton:** ref & six weeks height issues ([#705](https://github.com/core-ds/core-components/issues/705)) ([907ebe1](https://github.com/core-ds/core-components/commit/907ebe18641ee2e7e91fc4622527404c20867a54)) +* **calendar-with-skeleton:** ref & six weeks height issues ([#705](https://github.com/core-ds/core-components/issues/705)) ([907ebe1](https://github.com/core-ds/core-components/commit/907ebe18641ee2e7e91fc4622527404c20867a54)) # [17.5.0](https://github.com/core-ds/core-components/compare/v17.4.2...v17.5.0) (2021-06-17) + ### Bug Fixes -- **select:** fix checkmark position on click theme ([#699](https://github.com/core-ds/core-components/issues/699)) ([0a3bab5](https://github.com/core-ds/core-components/commit/0a3bab52278b4db8f327a8bf5da97cfb5acecc6a)) +* **select:** fix checkmark position on click theme ([#699](https://github.com/core-ds/core-components/issues/699)) ([0a3bab5](https://github.com/core-ds/core-components/commit/0a3bab52278b4db8f327a8bf5da97cfb5acecc6a)) + ### Features -- **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5)) -- **select:** add useSelectWithLoading preset ([#693](https://github.com/core-ds/core-components/issues/693)) ([12d542f](https://github.com/core-ds/core-components/commit/12d542f11dddcd022c1ba895e4105115be0b98b2)) +* **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5)) +* **select:** add useSelectWithLoading preset ([#693](https://github.com/core-ds/core-components/issues/693)) ([12d542f](https://github.com/core-ds/core-components/commit/12d542f11dddcd022c1ba895e4105115be0b98b2)) ## [17.4.2](https://github.com/core-ds/core-components/compare/v17.4.1...v17.4.2) (2021-06-09) + ### Bug Fixes -- **skeleton:** remove vars that purge kills ([886d1b2](https://github.com/core-ds/core-components/commit/886d1b24b144d9d277821d3264f71a93c7a1b146)) +* **skeleton:** remove vars that purge kills ([886d1b2](https://github.com/core-ds/core-components/commit/886d1b24b144d9d277821d3264f71a93c7a1b146)) ## [17.4.1](https://github.com/core-ds/core-components/compare/v17.4.0...v17.4.1) (2021-06-08) + ### Bug Fixes -- **masked-input:** inline module types ([#692](https://github.com/core-ds/core-components/issues/692)) ([004e60a](https://github.com/core-ds/core-components/commit/004e60ab61f51251b9d65d4d04fd9562eda5e766)) -- **select:** calc height in effect ([#689](https://github.com/core-ds/core-components/issues/689)) ([83f8745](https://github.com/core-ds/core-components/commit/83f87454bcacfbb3473c688e222af3185daef5a9)) -- **select:** fix top bottom paddings ([#683](https://github.com/core-ds/core-components/issues/683)) ([866bc3b](https://github.com/core-ds/core-components/commit/866bc3bee9428f0f67f443b3be0ae23342213b0d)) -- **select:** update optgroup styles ([#679](https://github.com/core-ds/core-components/issues/679)) ([63a06ce](https://github.com/core-ds/core-components/commit/63a06ce4776e22f9374fe689b62e949772443fda)) +* **masked-input:** inline module types ([#692](https://github.com/core-ds/core-components/issues/692)) ([004e60a](https://github.com/core-ds/core-components/commit/004e60ab61f51251b9d65d4d04fd9562eda5e766)) +* **select:** calc height in effect ([#689](https://github.com/core-ds/core-components/issues/689)) ([83f8745](https://github.com/core-ds/core-components/commit/83f87454bcacfbb3473c688e222af3185daef5a9)) +* **select:** fix top bottom paddings ([#683](https://github.com/core-ds/core-components/issues/683)) ([866bc3b](https://github.com/core-ds/core-components/commit/866bc3bee9428f0f67f443b3be0ae23342213b0d)) +* **select:** update optgroup styles ([#679](https://github.com/core-ds/core-components/issues/679)) ([63a06ce](https://github.com/core-ds/core-components/commit/63a06ce4776e22f9374fe689b62e949772443fda)) # [17.4.0](https://github.com/core-ds/core-components/compare/v17.3.0...v17.4.0) (2021-06-08) + ### Features -- **skeleton:** bg animation ([3dac97d](https://github.com/core-ds/core-components/commit/3dac97d18b9c7b2f63f55e2139a1adfb84710b88)) -- **skeleton:** bg animation ([37a52ad](https://github.com/core-ds/core-components/commit/37a52ad3e49f2873aaff86a768599d947a17c754)) +* **skeleton:** bg animation ([3dac97d](https://github.com/core-ds/core-components/commit/3dac97d18b9c7b2f63f55e2139a1adfb84710b88)) +* **skeleton:** bg animation ([37a52ad](https://github.com/core-ds/core-components/commit/37a52ad3e49f2873aaff86a768599d947a17c754)) # [17.3.0](https://github.com/core-ds/core-components/compare/v17.2.0...v17.3.0) (2021-06-07) + ### Features -- **tooltip:** add hint view ([#688](https://github.com/core-ds/core-components/issues/688)) ([9f03cd5](https://github.com/core-ds/core-components/commit/9f03cd5956dd8b17025ee9947a10bc059a339846)) +* **tooltip:** add hint view ([#688](https://github.com/core-ds/core-components/issues/688)) ([9f03cd5](https://github.com/core-ds/core-components/commit/9f03cd5956dd8b17025ee9947a10bc059a339846)) # [17.2.0](https://github.com/core-ds/core-components/compare/v17.1.1...v17.2.0) (2021-06-04) + ### Features -- **plate:** update vars ([#668](https://github.com/core-ds/core-components/issues/668)) ([cbecef5](https://github.com/core-ds/core-components/commit/cbecef55e4cfc7231dcaa16b9220cc920547ff18)) -- **tag:** adjusted colors ([#667](https://github.com/core-ds/core-components/issues/667)) ([ded4ac4](https://github.com/core-ds/core-components/commit/ded4ac4a4e02ee8ec4efdc6d990455caa3ab94bb)) -- **typography:** add rest props ([#682](https://github.com/core-ds/core-components/issues/682)) ([51e1cf8](https://github.com/core-ds/core-components/commit/51e1cf89028c788bfcdbc21ea16acbbe190b5db9)) +* **plate:** update vars ([#668](https://github.com/core-ds/core-components/issues/668)) ([cbecef5](https://github.com/core-ds/core-components/commit/cbecef55e4cfc7231dcaa16b9220cc920547ff18)) +* **tag:** adjusted colors ([#667](https://github.com/core-ds/core-components/issues/667)) ([ded4ac4](https://github.com/core-ds/core-components/commit/ded4ac4a4e02ee8ec4efdc6d990455caa3ab94bb)) +* **typography:** add rest props ([#682](https://github.com/core-ds/core-components/issues/682)) ([51e1cf8](https://github.com/core-ds/core-components/commit/51e1cf89028c788bfcdbc21ea16acbbe190b5db9)) ## [17.1.1](https://github.com/core-ds/core-components/compare/v17.1.0...v17.1.1) (2021-06-04) + ### Bug Fixes -- **dropzone:** add pointer-events none to overlay ([#677](https://github.com/core-ds/core-components/issues/677)) ([5f9077a](https://github.com/core-ds/core-components/commit/5f9077a7c6c88272c7e9e67ec243488249cc5ded)) -- **icon-button:** fix typo in css variable ([#675](https://github.com/core-ds/core-components/issues/675)) ([b227d07](https://github.com/core-ds/core-components/commit/b227d073797f995baf2474a52f4f6df7c6555e91)) -- **modal:** header height & paddings ([#676](https://github.com/core-ds/core-components/issues/676)) ([d8945c6](https://github.com/core-ds/core-components/commit/d8945c6839b059325ad2a90ca4fc6eda2da3b4c2)) -- **select:** fix checkmark ([#681](https://github.com/core-ds/core-components/issues/681)) ([71a51dc](https://github.com/core-ds/core-components/commit/71a51dc0204165827724fd444d3279f8cc6ccfcd)) -- **select:** optionsListWidth prop ([#685](https://github.com/core-ds/core-components/issues/685)) ([3b87e73](https://github.com/core-ds/core-components/commit/3b87e73fdba18c0d41883e47fe4c13976988f2e6)) +* **dropzone:** add pointer-events none to overlay ([#677](https://github.com/core-ds/core-components/issues/677)) ([5f9077a](https://github.com/core-ds/core-components/commit/5f9077a7c6c88272c7e9e67ec243488249cc5ded)) +* **icon-button:** fix typo in css variable ([#675](https://github.com/core-ds/core-components/issues/675)) ([b227d07](https://github.com/core-ds/core-components/commit/b227d073797f995baf2474a52f4f6df7c6555e91)) +* **modal:** header height & paddings ([#676](https://github.com/core-ds/core-components/issues/676)) ([d8945c6](https://github.com/core-ds/core-components/commit/d8945c6839b059325ad2a90ca4fc6eda2da3b4c2)) +* **select:** fix checkmark ([#681](https://github.com/core-ds/core-components/issues/681)) ([71a51dc](https://github.com/core-ds/core-components/commit/71a51dc0204165827724fd444d3279f8cc6ccfcd)) +* **select:** optionsListWidth prop ([#685](https://github.com/core-ds/core-components/issues/685)) ([3b87e73](https://github.com/core-ds/core-components/commit/3b87e73fdba18c0d41883e47fe4c13976988f2e6)) # [17.1.0](https://github.com/core-ds/core-components/compare/v17.0.1...v17.1.0) (2021-05-31) + ### Features -- **confirmation:** set up signTitle prop as slot ([#672](https://github.com/core-ds/core-components/issues/672)) ([85e4786](https://github.com/core-ds/core-components/commit/85e47862689f373fd1904495ae7b86d998ad7cec)) +* **confirmation:** set up signTitle prop as slot ([#672](https://github.com/core-ds/core-components/issues/672)) ([85e4786](https://github.com/core-ds/core-components/commit/85e47862689f373fd1904495ae7b86d998ad7cec)) ## [17.0.1](https://github.com/core-ds/core-components/compare/v17.0.0...v17.0.1) (2021-05-28) + ### Bug Fixes -- **base-modal:** restore body styles on unmount ([#671](https://github.com/core-ds/core-components/issues/671)) ([963a6b1](https://github.com/core-ds/core-components/commit/963a6b18b13924a09cda672a662d0b402d00e75b)) +* **base-modal:** restore body styles on unmount ([#671](https://github.com/core-ds/core-components/issues/671)) ([963a6b1](https://github.com/core-ds/core-components/commit/963a6b18b13924a09cda672a662d0b402d00e75b)) # [17.0.0](https://github.com/core-ds/core-components/compare/v16.5.0...v17.0.0) (2021-05-25) + ### Features -- **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657) +* **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657) + ### BREAKING CHANGES -- **button:** remove inverted themes +* **button:** remove inverted themes # [16.5.0](https://github.com/core-ds/core-components/compare/v16.4.0...v16.5.0) (2021-05-25) + ### Bug Fixes -- **modal:** fix styles ([#665](https://github.com/core-ds/core-components/issues/665)) ([06f3615](https://github.com/core-ds/core-components/commit/06f3615c532f8ec2932d8a4d1fcbb1f5ee6b6a30)) -- **modal:** restore styles after exited ([#663](https://github.com/core-ds/core-components/issues/663)) ([48a8d69](https://github.com/core-ds/core-components/commit/48a8d6986dcde6c191d8411d51f28e6f399e26e6)) +* **modal:** fix styles ([#665](https://github.com/core-ds/core-components/issues/665)) ([06f3615](https://github.com/core-ds/core-components/commit/06f3615c532f8ec2932d8a4d1fcbb1f5ee6b6a30)) +* **modal:** restore styles after exited ([#663](https://github.com/core-ds/core-components/issues/663)) ([48a8d69](https://github.com/core-ds/core-components/commit/48a8d6986dcde6c191d8411d51f28e6f399e26e6)) + ### Features -- **collapse:** add ability to change state using prop expanded ([#659](https://github.com/core-ds/core-components/issues/659)) ([809c835](https://github.com/core-ds/core-components/commit/809c8356f6dec0eeb9167bca8483f36bf5845455)) -- **confirmation:** styles updates ([#636](https://github.com/core-ds/core-components/issues/636)) ([da00fc5](https://github.com/core-ds/core-components/commit/da00fc5bf80251f5104452ba326711788c2f7240)), closes [#1](https://github.com/core-ds/core-components/issues/1) -- **modal:** add layout to footer ([#644](https://github.com/core-ds/core-components/issues/644)) ([eb5a66e](https://github.com/core-ds/core-components/commit/eb5a66ef928df663f4ad0fe048b5d3097b4f4b72)) +* **collapse:** add ability to change state using prop expanded ([#659](https://github.com/core-ds/core-components/issues/659)) ([809c835](https://github.com/core-ds/core-components/commit/809c8356f6dec0eeb9167bca8483f36bf5845455)) +* **confirmation:** styles updates ([#636](https://github.com/core-ds/core-components/issues/636)) ([da00fc5](https://github.com/core-ds/core-components/commit/da00fc5bf80251f5104452ba326711788c2f7240)), closes [#1](https://github.com/core-ds/core-components/issues/1) +* **modal:** add layout to footer ([#644](https://github.com/core-ds/core-components/issues/644)) ([eb5a66e](https://github.com/core-ds/core-components/commit/eb5a66ef928df663f4ad0fe048b5d3097b4f4b72)) # [16.4.0](https://github.com/core-ds/core-components/compare/v16.3.1...v16.4.0) (2021-05-18) + ### Bug Fixes -- **button:** loader position in ie ([#661](https://github.com/core-ds/core-components/issues/661)) ([6f0ddab](https://github.com/core-ds/core-components/commit/6f0ddab3a3e59672f20b0f2239a4de6ba548edb1)) -- **calendar-input:** allow to pass all props via calendarProps ([#653](https://github.com/core-ds/core-components/issues/653)) ([82c4675](https://github.com/core-ds/core-components/commit/82c4675e2f64b282f9d9772825874a6e1854704b)) -- **modal:** click theme sticky footer bg ([#641](https://github.com/core-ds/core-components/issues/641)) ([215a155](https://github.com/core-ds/core-components/commit/215a155030d9966508afa1b8ee8059cc422a2765)) -- **select:** add aria-disabled when disabled ([#662](https://github.com/core-ds/core-components/issues/662)) ([bd93614](https://github.com/core-ds/core-components/commit/bd93614530567515af8e9bee3a7e0e08c8528b4c)) -- **select:** fix hidden label ([#652](https://github.com/core-ds/core-components/issues/652)) ([a5fecfc](https://github.com/core-ds/core-components/commit/a5fecfc16db2a7bad73282706c2c588b235acf8a)) -- **select:** recalc options-list width when open ([#640](https://github.com/core-ds/core-components/issues/640)) ([1a7a3c2](https://github.com/core-ds/core-components/commit/1a7a3c2f596e438686a59999411ef7a437dc00fe)) +* **button:** loader position in ie ([#661](https://github.com/core-ds/core-components/issues/661)) ([6f0ddab](https://github.com/core-ds/core-components/commit/6f0ddab3a3e59672f20b0f2239a4de6ba548edb1)) +* **calendar-input:** allow to pass all props via calendarProps ([#653](https://github.com/core-ds/core-components/issues/653)) ([82c4675](https://github.com/core-ds/core-components/commit/82c4675e2f64b282f9d9772825874a6e1854704b)) +* **modal:** click theme sticky footer bg ([#641](https://github.com/core-ds/core-components/issues/641)) ([215a155](https://github.com/core-ds/core-components/commit/215a155030d9966508afa1b8ee8059cc422a2765)) +* **select:** add aria-disabled when disabled ([#662](https://github.com/core-ds/core-components/issues/662)) ([bd93614](https://github.com/core-ds/core-components/commit/bd93614530567515af8e9bee3a7e0e08c8528b4c)) +* **select:** fix hidden label ([#652](https://github.com/core-ds/core-components/issues/652)) ([a5fecfc](https://github.com/core-ds/core-components/commit/a5fecfc16db2a7bad73282706c2c588b235acf8a)) +* **select:** recalc options-list width when open ([#640](https://github.com/core-ds/core-components/issues/640)) ([1a7a3c2](https://github.com/core-ds/core-components/commit/1a7a3c2f596e438686a59999411ef7a437dc00fe)) + ### Features -- **drawer:** update animtaion ([#643](https://github.com/core-ds/core-components/issues/643)) ([3a3cfc5](https://github.com/core-ds/core-components/commit/3a3cfc5be89908df476f77a35bcf6b9460ecb92a)) -- **input:** pretty webkit autofill ([#660](https://github.com/core-ds/core-components/issues/660)) ([d50e83e](https://github.com/core-ds/core-components/commit/d50e83e627e1641c3634ace505b9abe163ef6530)) +* **drawer:** update animtaion ([#643](https://github.com/core-ds/core-components/issues/643)) ([3a3cfc5](https://github.com/core-ds/core-components/commit/3a3cfc5be89908df476f77a35bcf6b9460ecb92a)) +* **input:** pretty webkit autofill ([#660](https://github.com/core-ds/core-components/issues/660)) ([d50e83e](https://github.com/core-ds/core-components/commit/d50e83e627e1641c3634ace505b9abe163ef6530)) ## [16.3.1](https://github.com/core-ds/core-components/compare/v16.3.0...v16.3.1) (2021-05-14) + ### Bug Fixes -- **select-with-tags:** changed includes method for IE11 support ([#651](https://github.com/core-ds/core-components/issues/651)) ([254bca3](https://github.com/core-ds/core-components/commit/254bca3df02107dfffc5175f74e35162453c20d0)) +* **select-with-tags:** changed includes method for IE11 support ([#651](https://github.com/core-ds/core-components/issues/651)) ([254bca3](https://github.com/core-ds/core-components/commit/254bca3df02107dfffc5175f74e35162453c20d0)) # [16.3.0](https://github.com/core-ds/core-components/compare/v16.2.0...v16.3.0) (2021-05-07) + ### Features -- **button:** fix version ([#648](https://github.com/core-ds/core-components/issues/648)) ([ec51599](https://github.com/core-ds/core-components/commit/ec5159910a7fdc103d4f4e8d3d4198db3ffbdcc8)) -- **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b)) +* **button:** fix version ([#648](https://github.com/core-ds/core-components/issues/648)) ([ec51599](https://github.com/core-ds/core-components/commit/ec5159910a7fdc103d4f4e8d3d4198db3ffbdcc8)) +* **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b)) # [16.2.0](https://github.com/core-ds/core-components/compare/v16.1.3...v16.2.0) (2021-05-07) + ### Features -- **button:** add loader minimal display interval ([#634](https://github.com/core-ds/core-components/issues/634)) ([d2f7edc](https://github.com/core-ds/core-components/commit/d2f7edc52c3e43ce3f5db8250446227b869ab731)) -- **icon-button:** add negative view ([#635](https://github.com/core-ds/core-components/issues/635)) ([7006116](https://github.com/core-ds/core-components/commit/70061167d1e00a786e28c53ebb26e4e174d03311)) +* **button:** add loader minimal display interval ([#634](https://github.com/core-ds/core-components/issues/634)) ([d2f7edc](https://github.com/core-ds/core-components/commit/d2f7edc52c3e43ce3f5db8250446227b869ab731)) +* **icon-button:** add negative view ([#635](https://github.com/core-ds/core-components/issues/635)) ([7006116](https://github.com/core-ds/core-components/commit/70061167d1e00a786e28c53ebb26e4e174d03311)) ## [16.1.3](https://github.com/core-ds/core-components/compare/v16.1.2...v16.1.3) (2021-05-06) + ### Bug Fixes -- update popover versions ([#646](https://github.com/core-ds/core-components/issues/646)) ([199cf80](https://github.com/core-ds/core-components/commit/199cf80cd60e6edf0ac5d41c7eb258ab05d3b534)) +* update popover versions ([#646](https://github.com/core-ds/core-components/issues/646)) ([199cf80](https://github.com/core-ds/core-components/commit/199cf80cd60e6edf0ac5d41c7eb258ab05d3b534)) ## [16.1.2](https://github.com/core-ds/core-components/compare/v16.1.1...v16.1.2) (2021-05-05) + ### Bug Fixes -- **toast-plate:** fix cross color ([#642](https://github.com/core-ds/core-components/issues/642)) ([96a17fd](https://github.com/core-ds/core-components/commit/96a17fdcd28a37519845d5a0c40809f107e3031f)) +* **toast-plate:** fix cross color ([#642](https://github.com/core-ds/core-components/issues/642)) ([96a17fd](https://github.com/core-ds/core-components/commit/96a17fdcd28a37519845d5a0c40809f107e3031f)) ## [16.1.1](https://github.com/core-ds/core-components/compare/v16.1.0...v16.1.1) (2021-05-04) + ### Bug Fixes -- **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e)) +* **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e)) # [16.1.0](https://github.com/core-ds/core-components/compare/v16.0.0...v16.1.0) (2021-04-28) + ### Features -- **button:** experimental active transform (site theme) ([a741e4f](https://github.com/core-ds/core-components/commit/a741e4fb73716902e6a72957e672921c21e7696b)) +* **button:** experimental active transform (site theme) ([a741e4f](https://github.com/core-ds/core-components/commit/a741e4fb73716902e6a72957e672921c21e7696b)) # [16.0.0](https://github.com/core-ds/core-components/compare/v15.4.0...v16.0.0) (2021-04-26) + ### Features -- **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6)) +* **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6)) + ### BREAKING CHANGES -- **stack:** remove z-index, add stack component +* **stack:** remove z-index, add stack component -- feat(modal): remove z-index, add stack component +* feat(modal): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(notification-manager): remove z-index, add stack component +* feat(notification-manager): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(notification): remove z-index, add stack component +* feat(notification): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(popover): remove z-index, add stack component +* feat(popover): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(select): remove z-index, add stack component +* feat(select): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(toast): remove z-index, add stack component +* feat(toast): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(tooltip): remove z-index, add stack component +* feat(tooltip): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component +* feat(stack): fix comment -- feat(stack): fix comment - -- Revert "feat(modal): remove z-index, add stack component" +* Revert "feat(modal): remove z-index, add stack component" This reverts commit fcae901c6ec58311701cd491296a7b04016a9a65. -- feat(base-modal): remove z-index, add stack component +* feat(base-modal): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- test(file-upload-item): update snapshot +* test(file-upload-item): update snapshot # [15.4.0](https://github.com/core-ds/core-components/compare/v15.3.0...v15.4.0) (2021-04-26) + ### Features -- **calendar-input:** toggle calendar on enter ([#618](https://github.com/core-ds/core-components/issues/618)) ([110e836](https://github.com/core-ds/core-components/commit/110e8369dffa9576ec07a517076a11d6ba2e80fa)) -- **dropzone:** add component ([#566](https://github.com/core-ds/core-components/issues/566)) ([693a720](https://github.com/core-ds/core-components/commit/693a720202d78d47e39954edff7b72335904d714)) -- **file-upload-item:** add component ([#571](https://github.com/core-ds/core-components/issues/571)) ([e627350](https://github.com/core-ds/core-components/commit/e627350b3eabfb36aaa67c17411a9b98b551867d)) -- **modal:** fixed position ([#617](https://github.com/core-ds/core-components/issues/617)) ([77db054](https://github.com/core-ds/core-components/commit/77db054b18c1dba6713d9a9d99c95a1ef5c98e8e)) -- **select:** label + placeholder ([#535](https://github.com/core-ds/core-components/issues/535)) ([e821c41](https://github.com/core-ds/core-components/commit/e821c41e65d01ad517dab983685506614df0db89)) +* **calendar-input:** toggle calendar on enter ([#618](https://github.com/core-ds/core-components/issues/618)) ([110e836](https://github.com/core-ds/core-components/commit/110e8369dffa9576ec07a517076a11d6ba2e80fa)) +* **dropzone:** add component ([#566](https://github.com/core-ds/core-components/issues/566)) ([693a720](https://github.com/core-ds/core-components/commit/693a720202d78d47e39954edff7b72335904d714)) +* **file-upload-item:** add component ([#571](https://github.com/core-ds/core-components/issues/571)) ([e627350](https://github.com/core-ds/core-components/commit/e627350b3eabfb36aaa67c17411a9b98b551867d)) +* **modal:** fixed position ([#617](https://github.com/core-ds/core-components/issues/617)) ([77db054](https://github.com/core-ds/core-components/commit/77db054b18c1dba6713d9a9d99c95a1ef5c98e8e)) +* **select:** label + placeholder ([#535](https://github.com/core-ds/core-components/issues/535)) ([e821c41](https://github.com/core-ds/core-components/commit/e821c41e65d01ad517dab983685506614df0db89)) # [15.3.0](https://github.com/core-ds/core-components/compare/v15.2.2...v15.3.0) (2021-04-26) + ### Bug Fixes -- **calendar:** ie fixes ([#628](https://github.com/core-ds/core-components/issues/628)) ([983509c](https://github.com/core-ds/core-components/commit/983509cd1cfe5be64a8627fed44ec55d989eb8a2)) -- **drawer:** lost vars ([#632](https://github.com/core-ds/core-components/issues/632)) ([82a8e46](https://github.com/core-ds/core-components/commit/82a8e461fc16d4ae8b6d3d268c92f7dc969e81f8)) -- **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552)) -- update plugin ([#627](https://github.com/core-ds/core-components/issues/627)) ([5bb78f2](https://github.com/core-ds/core-components/commit/5bb78f231e525d0f86ec7fb8ccd8af65121c5169)) -- **skeleton:** remove extra bottom margin ([#619](https://github.com/core-ds/core-components/issues/619)) ([8f83022](https://github.com/core-ds/core-components/commit/8f83022c5a89e2f0b63449970437d0ca00129e5d)) -- **tabs:** fix ssr rendering ([#621](https://github.com/core-ds/core-components/issues/621)) ([e45efe7](https://github.com/core-ds/core-components/commit/e45efe78ff2583b92393e9c271f07fe3718b9d40)) +* **calendar:** ie fixes ([#628](https://github.com/core-ds/core-components/issues/628)) ([983509c](https://github.com/core-ds/core-components/commit/983509cd1cfe5be64a8627fed44ec55d989eb8a2)) +* **drawer:** lost vars ([#632](https://github.com/core-ds/core-components/issues/632)) ([82a8e46](https://github.com/core-ds/core-components/commit/82a8e461fc16d4ae8b6d3d268c92f7dc969e81f8)) +* **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552)) +* update plugin ([#627](https://github.com/core-ds/core-components/issues/627)) ([5bb78f2](https://github.com/core-ds/core-components/commit/5bb78f231e525d0f86ec7fb8ccd8af65121c5169)) +* **skeleton:** remove extra bottom margin ([#619](https://github.com/core-ds/core-components/issues/619)) ([8f83022](https://github.com/core-ds/core-components/commit/8f83022c5a89e2f0b63449970437d0ca00129e5d)) +* **tabs:** fix ssr rendering ([#621](https://github.com/core-ds/core-components/issues/621)) ([e45efe7](https://github.com/core-ds/core-components/commit/e45efe78ff2583b92393e9c271f07fe3718b9d40)) + ### Features -- **space:** fix dataTestId ([#625](https://github.com/core-ds/core-components/issues/625)) ([a33ca6b](https://github.com/core-ds/core-components/commit/a33ca6ba791a43252b09c5a6d81dbd206aaec2d7)) +* **space:** fix dataTestId ([#625](https://github.com/core-ds/core-components/issues/625)) ([a33ca6b](https://github.com/core-ds/core-components/commit/a33ca6ba791a43252b09c5a6d81dbd206aaec2d7)) ## [15.2.2](https://github.com/core-ds/core-components/compare/v15.2.1...v15.2.2) (2021-04-20) + ### Bug Fixes -- **amount-input:** fix float in amount input ([a9e1802](https://github.com/core-ds/core-components/commit/a9e180285073e29a05703a991c946e2c1247177a)) +* **amount-input:** fix float in amount input ([a9e1802](https://github.com/core-ds/core-components/commit/a9e180285073e29a05703a991c946e2c1247177a)) ## [15.2.1](https://github.com/core-ds/core-components/compare/v15.2.0...v15.2.1) (2021-04-09) + ### Bug Fixes -- **backdrop:** styles ([82bdfa7](https://github.com/core-ds/core-components/commit/82bdfa7759240755f74bf12906c395d633f464e4)) -- **base-modal:** correct cb ([256a142](https://github.com/core-ds/core-components/commit/256a142398a9ada34386e92d012185763cedef5a)) -- **drawer:** backdrop styles ([04da4fa](https://github.com/core-ds/core-components/commit/04da4fac310dbe2634ea4130ead480a88d47ee8e)) +* **backdrop:** styles ([82bdfa7](https://github.com/core-ds/core-components/commit/82bdfa7759240755f74bf12906c395d633f464e4)) +* **base-modal:** correct cb ([256a142](https://github.com/core-ds/core-components/commit/256a142398a9ada34386e92d012185763cedef5a)) +* **drawer:** backdrop styles ([04da4fa](https://github.com/core-ds/core-components/commit/04da4fac310dbe2634ea4130ead480a88d47ee8e)) # [15.2.0](https://github.com/core-ds/core-components/compare/v15.1.0...v15.2.0) (2021-04-09) + ### Bug Fixes -- **calendar-input:** call onchange with empty value ([3fbc73a](https://github.com/core-ds/core-components/commit/3fbc73a1d32586161b6fe527f76ca27cd54abebb)) -- **select:** options list width calc ([5294af7](https://github.com/core-ds/core-components/commit/5294af78ef61b50edde42ed255e66e6ea004c0fd)) -- **select:** virtual list wrong height ([8708228](https://github.com/core-ds/core-components/commit/8708228749acdeed0d1dfe4b9538dc22683e7f28)) -- **slider-input:** label + info + error issue ([147bb71](https://github.com/core-ds/core-components/commit/147bb716ab6dc500aaf0923d5442560c743e6b66)) +* **calendar-input:** call onchange with empty value ([3fbc73a](https://github.com/core-ds/core-components/commit/3fbc73a1d32586161b6fe527f76ca27cd54abebb)) +* **select:** options list width calc ([5294af7](https://github.com/core-ds/core-components/commit/5294af78ef61b50edde42ed255e66e6ea004c0fd)) +* **select:** virtual list wrong height ([8708228](https://github.com/core-ds/core-components/commit/8708228749acdeed0d1dfe4b9538dc22683e7f28)) +* **slider-input:** label + info + error issue ([147bb71](https://github.com/core-ds/core-components/commit/147bb716ab6dc500aaf0923d5442560c743e6b66)) + ### Features -- **backdrop:** add component ([948a6c2](https://github.com/core-ds/core-components/commit/948a6c2fb5ec58edb2d087691ce4713d75da6e35)) -- **backdrop:** add component ([2b87958](https://github.com/core-ds/core-components/commit/2b87958e51449645c58bbd02552ce7a908c6bab8)) -- **calendar-with-skeleton:** add component ([e940c88](https://github.com/core-ds/core-components/commit/e940c88703a7434e0db4ce0efc27a234455b449c)) -- **form-control:** add hidden label instead min-width ([a40ffcf](https://github.com/core-ds/core-components/commit/a40ffcf149282c83a834587a9486bc09b2929f90)) -- **slider:** click theme ([15c308a](https://github.com/core-ds/core-components/commit/15c308a50e9fbcd8e40a8681f32aefea5b3d5cf9)) +* **backdrop:** add component ([948a6c2](https://github.com/core-ds/core-components/commit/948a6c2fb5ec58edb2d087691ce4713d75da6e35)) +* **backdrop:** add component ([2b87958](https://github.com/core-ds/core-components/commit/2b87958e51449645c58bbd02552ce7a908c6bab8)) +* **calendar-with-skeleton:** add component ([e940c88](https://github.com/core-ds/core-components/commit/e940c88703a7434e0db4ce0efc27a234455b449c)) +* **form-control:** add hidden label instead min-width ([a40ffcf](https://github.com/core-ds/core-components/commit/a40ffcf149282c83a834587a9486bc09b2929f90)) +* **slider:** click theme ([15c308a](https://github.com/core-ds/core-components/commit/15c308a50e9fbcd8e40a8681f32aefea5b3d5cf9)) # [15.1.0](https://github.com/core-ds/core-components/compare/v15.0.1...v15.1.0) (2021-04-06) + ### Features -- **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe)) +* **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe)) ## [15.0.1](https://github.com/core-ds/core-components/compare/v15.0.0...v15.0.1) (2021-04-01) + ### Reverts -- Revert "comic thursday" ([708304e](https://github.com/core-ds/core-components/commit/708304e3be6f096137d04346872a2e1c95e3154a)) +* Revert "comic thursday" ([708304e](https://github.com/core-ds/core-components/commit/708304e3be6f096137d04346872a2e1c95e3154a)) # [15.0.0](https://github.com/core-ds/core-components/compare/v14.0.2...v15.0.0) (2021-04-01) + ### Bug Fixes -- radio/checkbox ([#594](https://github.com/core-ds/core-components/issues/594)) ([4c9c13f](https://github.com/core-ds/core-components/commit/4c9c13fdf4ab3db9a6b176aeaba529c9b23f971b)) -- **modal:** fullscreen & header title styles ([#580](https://github.com/core-ds/core-components/issues/580)) ([39fa494](https://github.com/core-ds/core-components/commit/39fa4940223b6187a391ff6c0b6706ae8a333dc0)) -- **select-with-tags:** tag box-sizing issue ([#589](https://github.com/core-ds/core-components/issues/589)) ([9bc9a44](https://github.com/core-ds/core-components/commit/9bc9a4484b1e46372bce5fc16663f3ac05378310)) +* radio/checkbox ([#594](https://github.com/core-ds/core-components/issues/594)) ([4c9c13f](https://github.com/core-ds/core-components/commit/4c9c13fdf4ab3db9a6b176aeaba529c9b23f971b)) +* **modal:** fullscreen & header title styles ([#580](https://github.com/core-ds/core-components/issues/580)) ([39fa494](https://github.com/core-ds/core-components/commit/39fa4940223b6187a391ff6c0b6706ae8a333dc0)) +* **select-with-tags:** tag box-sizing issue ([#589](https://github.com/core-ds/core-components/issues/589)) ([9bc9a44](https://github.com/core-ds/core-components/commit/9bc9a4484b1e46372bce5fc16663f3ac05378310)) + ### Features -- **button:** updated xs button font-weight ([#599](https://github.com/core-ds/core-components/issues/599)) ([b05a554](https://github.com/core-ds/core-components/commit/b05a5547c97afba0d66489eca83a7a04d6c24283)) -- **mq:** change mobile-s to mobile-xs ([9abf5ba](https://github.com/core-ds/core-components/commit/9abf5bada45287a786610dd6cce7cc047d779012)) +* **button:** updated xs button font-weight ([#599](https://github.com/core-ds/core-components/issues/599)) ([b05a554](https://github.com/core-ds/core-components/commit/b05a5547c97afba0d66489eca83a7a04d6c24283)) +* **mq:** change mobile-s to mobile-xs ([9abf5ba](https://github.com/core-ds/core-components/commit/9abf5bada45287a786610dd6cce7cc047d779012)) + ### BREAKING CHANGES -- **mq:** mobile-s теперь 360 +* **mq:** mobile-s теперь 360 ## [14.0.2](https://github.com/core-ds/core-components/compare/v14.0.1...v14.0.2) (2021-03-31) + ### Bug Fixes -- **calendar-input:** z-index increased ([8e0df44](https://github.com/core-ds/core-components/commit/8e0df445a1be317291f2d35e2f4d4afb9d24609c)) +* **calendar-input:** z-index increased ([8e0df44](https://github.com/core-ds/core-components/commit/8e0df445a1be317291f2d35e2f4d4afb9d24609c)) ## [14.0.1](https://github.com/core-ds/core-components/compare/v14.0.0...v14.0.1) (2021-03-30) + ### Bug Fixes -- **themes:** fixed button corp theme ([4dec71c](https://github.com/core-ds/core-components/commit/4dec71ccc9bd321a9d7a50dba221b13267b092f9)) +* **themes:** fixed button corp theme ([4dec71c](https://github.com/core-ds/core-components/commit/4dec71ccc9bd321a9d7a50dba221b13267b092f9)) # [14.0.0](https://github.com/core-ds/core-components/compare/v13.3.1...v14.0.0) (2021-03-30) + ### Bug Fixes -- **toast-plate:** fix children margin ([#583](https://github.com/core-ds/core-components/issues/583)) ([3b2a964](https://github.com/core-ds/core-components/commit/3b2a96408c56a08eb8796c83a344df20bd4ae032)) +* **toast-plate:** fix children margin ([#583](https://github.com/core-ds/core-components/issues/583)) ([3b2a964](https://github.com/core-ds/core-components/commit/3b2a96408c56a08eb8796c83a344df20bd4ae032)) + ### Features -- **tooltip:** add wrapper around children component ([#587](https://github.com/core-ds/core-components/issues/587)) ([a2ecbb6](https://github.com/core-ds/core-components/commit/a2ecbb67bd517b583284ec0b8365de9e58e753ed)) +* **tooltip:** add wrapper around children component ([#587](https://github.com/core-ds/core-components/issues/587)) ([a2ecbb6](https://github.com/core-ds/core-components/commit/a2ecbb67bd517b583284ec0b8365de9e58e753ed)) + ### BREAKING CHANGES -- **tooltip:** add wrapper around children component +* **tooltip:** add wrapper around children component -- feat(tooltip): add target className prop +* feat(tooltip): add target className prop -- feat(tooltip): fix passed classNames +* feat(tooltip): fix passed classNames ## [13.3.1](https://github.com/core-ds/core-components/compare/v13.3.0...v13.3.1) (2021-03-30) + ### Bug Fixes -- subComponentName ([8064ac6](https://github.com/core-ds/core-components/commit/8064ac67af83750673ac2dde4794b2ec8fc04f2e)) +* subComponentName ([8064ac6](https://github.com/core-ds/core-components/commit/8064ac67af83750673ac2dde4794b2ec8fc04f2e)) # [13.3.0](https://github.com/core-ds/core-components/compare/v13.2.0...v13.3.0) (2021-03-24) + ### Features -- **alert:** add component ([#548](https://github.com/core-ds/core-components/issues/548)) ([264cbf8](https://github.com/core-ds/core-components/commit/264cbf8f7465d2ecaf043bf0f67530e040fc83f6)) -- **calendar-input:** remove input width ([#576](https://github.com/core-ds/core-components/issues/576)) ([f0954b0](https://github.com/core-ds/core-components/commit/f0954b0724ead52ea0a60ab8baebd5dfa3638a01)) -- **select:** add options-list width ([#578](https://github.com/core-ds/core-components/issues/578)) ([6f1c12b](https://github.com/core-ds/core-components/commit/6f1c12b9196d3ebf87e1ea3e0610f73b8832b771)) -- **select:** add optionsSize ([#577](https://github.com/core-ds/core-components/issues/577)) ([12f3b43](https://github.com/core-ds/core-components/commit/12f3b4342a3dada9db97eb80839a3d7adb9e3747)) +* **alert:** add component ([#548](https://github.com/core-ds/core-components/issues/548)) ([264cbf8](https://github.com/core-ds/core-components/commit/264cbf8f7465d2ecaf043bf0f67530e040fc83f6)) +* **calendar-input:** remove input width ([#576](https://github.com/core-ds/core-components/issues/576)) ([f0954b0](https://github.com/core-ds/core-components/commit/f0954b0724ead52ea0a60ab8baebd5dfa3638a01)) +* **select:** add options-list width ([#578](https://github.com/core-ds/core-components/issues/578)) ([6f1c12b](https://github.com/core-ds/core-components/commit/6f1c12b9196d3ebf87e1ea3e0610f73b8832b771)) +* **select:** add optionsSize ([#577](https://github.com/core-ds/core-components/issues/577)) ([12f3b43](https://github.com/core-ds/core-components/commit/12f3b4342a3dada9db97eb80839a3d7adb9e3747)) # [13.2.0](https://github.com/core-ds/core-components/compare/v13.1.4...v13.2.0) (2021-03-24) + ### Features -- **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b)) +* **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b)) ## [13.1.4](https://github.com/core-ds/core-components/compare/v13.1.3...v13.1.4) (2021-03-19) + ### Bug Fixes -- **tabs:** optional children ([#572](https://github.com/core-ds/core-components/issues/572)) ([b03ee8c](https://github.com/core-ds/core-components/commit/b03ee8ca7f37e9c5b8a46d4a04123792cdc1bfa6)) -- fix types importing in root package ([#569](https://github.com/core-ds/core-components/issues/569)) ([bdb362a](https://github.com/core-ds/core-components/commit/bdb362ad7e23b6ffee8a0299ff91a49cad1f66c2)) -- **button:** fixed alignment of several buttons in a row ([#561](https://github.com/core-ds/core-components/issues/561)) ([8d9e1e2](https://github.com/core-ds/core-components/commit/8d9e1e2f7a4ba8c5c986bb833f7424b38601d463)) -- **gaps:** add description ([#562](https://github.com/core-ds/core-components/issues/562)) ([0e0b2d3](https://github.com/core-ds/core-components/commit/0e0b2d3ffa5fe83f3282acf6b3db80c1ddd09b1f)) +* **tabs:** optional children ([#572](https://github.com/core-ds/core-components/issues/572)) ([b03ee8c](https://github.com/core-ds/core-components/commit/b03ee8ca7f37e9c5b8a46d4a04123792cdc1bfa6)) +* fix types importing in root package ([#569](https://github.com/core-ds/core-components/issues/569)) ([bdb362a](https://github.com/core-ds/core-components/commit/bdb362ad7e23b6ffee8a0299ff91a49cad1f66c2)) +* **button:** fixed alignment of several buttons in a row ([#561](https://github.com/core-ds/core-components/issues/561)) ([8d9e1e2](https://github.com/core-ds/core-components/commit/8d9e1e2f7a4ba8c5c986bb833f7424b38601d463)) +* **gaps:** add description ([#562](https://github.com/core-ds/core-components/issues/562)) ([0e0b2d3](https://github.com/core-ds/core-components/commit/0e0b2d3ffa5fe83f3282acf6b3db80c1ddd09b1f)) ## [13.1.3](https://github.com/core-ds/core-components/compare/v13.1.2...v13.1.3) (2021-03-18) + ### Bug Fixes -- one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc)) +* one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc)) ## [13.1.2](https://github.com/core-ds/core-components/compare/v13.1.1...v13.1.2) (2021-03-16) + ### Bug Fixes -- border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073)) +* border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073)) ## [13.1.1](https://github.com/core-ds/core-components/compare/v13.1.0...v13.1.1) (2021-03-15) + ### Bug Fixes -- **themes:** fixes border-radius ([9d152d9](https://github.com/core-ds/core-components/commit/9d152d9ae0e70736cf78f3a014b6710dc8aa2331)) +* **themes:** fixes border-radius ([9d152d9](https://github.com/core-ds/core-components/commit/9d152d9ae0e70736cf78f3a014b6710dc8aa2331)) # [13.1.0](https://github.com/core-ds/core-components/compare/v13.0.2...v13.1.0) (2021-03-15) + ### Features -- **vars:** introducing border-radius vars ([1a6fb28](https://github.com/core-ds/core-components/commit/1a6fb287bcfab50048c3a9100645b4dee8cd3395)) +* **vars:** introducing border-radius vars ([1a6fb28](https://github.com/core-ds/core-components/commit/1a6fb287bcfab50048c3a9100645b4dee8cd3395)) ## [13.0.2](https://github.com/core-ds/core-components/compare/v13.0.1...v13.0.2) (2021-03-14) + ### Bug Fixes -- **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e)) +* **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e)) ## [13.0.1](https://github.com/core-ds/core-components/compare/v13.0.0...v13.0.1) (2021-03-11) + ### Bug Fixes -- **toast:** remove extra timer clearing ([#559](https://github.com/core-ds/core-components/issues/559)) ([ae5d811](https://github.com/core-ds/core-components/commit/ae5d81169d4db0427ae5baf0bffd784adee184ee)) +* **toast:** remove extra timer clearing ([#559](https://github.com/core-ds/core-components/issues/559)) ([ae5d811](https://github.com/core-ds/core-components/commit/ae5d81169d4db0427ae5baf0bffd784adee184ee)) # [13.0.0](https://github.com/core-ds/core-components/compare/v12.3.0...v13.0.0) (2021-03-11) + ### Bug Fixes -- **confirmation:** fix bug with timers ([2bdb105](https://github.com/core-ds/core-components/commit/2bdb10505ebb91713bca0b56e4d10af08cbcd4ed)) +* **confirmation:** fix bug with timers ([2bdb105](https://github.com/core-ds/core-components/commit/2bdb10505ebb91713bca0b56e4d10af08cbcd4ed)) + ### Features -- **confirmation:** add noAttemptsLeftMessage prop ([7dc0e02](https://github.com/core-ds/core-components/commit/7dc0e02074443fd68c13aa0ac54bd966e8968ffc)) -- **confirmation:** always show sms come link ([0a14a54](https://github.com/core-ds/core-components/commit/0a14a54b177ee72ccf8cd8b057ea48db0168c1fb)) -- **confirmation:** confirmation design updates ([69f26e4](https://github.com/core-ds/core-components/commit/69f26e415a195d863686076941b6a3f15f3d1d15)) -- **confirmation:** fix text ([40d4d6b](https://github.com/core-ds/core-components/commit/40d4d6b2261b2e0db79bc160266cc207a1ca3858)) +* **confirmation:** add noAttemptsLeftMessage prop ([7dc0e02](https://github.com/core-ds/core-components/commit/7dc0e02074443fd68c13aa0ac54bd966e8968ffc)) +* **confirmation:** always show sms come link ([0a14a54](https://github.com/core-ds/core-components/commit/0a14a54b177ee72ccf8cd8b057ea48db0168c1fb)) +* **confirmation:** confirmation design updates ([69f26e4](https://github.com/core-ds/core-components/commit/69f26e415a195d863686076941b6a3f15f3d1d15)) +* **confirmation:** fix text ([40d4d6b](https://github.com/core-ds/core-components/commit/40d4d6b2261b2e0db79bc160266cc207a1ca3858)) + ### BREAKING CHANGES -- **confirmation:** Add phone formatting into component. Phone prop doesn't have to be formatted. +* **confirmation:** Add phone formatting into component. Phone prop doesn't have to be formatted. # [12.3.0](https://github.com/core-ds/core-components/compare/v12.2.0...v12.3.0) (2021-03-10) + ### Features -- **skeleton:** updated default theme, click theme ([#549](https://github.com/core-ds/core-components/issues/549)) ([9bf9259](https://github.com/core-ds/core-components/commit/9bf9259d4d1efd73067ea548cdfaf3007b0f8839)) +* **skeleton:** updated default theme, click theme ([#549](https://github.com/core-ds/core-components/issues/549)) ([9bf9259](https://github.com/core-ds/core-components/commit/9bf9259d4d1efd73067ea548cdfaf3007b0f8839)) # [12.2.0](https://github.com/core-ds/core-components/compare/v12.1.0...v12.2.0) (2021-03-05) + ### Features -- **status:** add component ([#546](https://github.com/core-ds/core-components/issues/546)) ([52a1f0b](https://github.com/core-ds/core-components/commit/52a1f0bd8578fe34d1c214b93a363e7b76621c17)) +* **status:** add component ([#546](https://github.com/core-ds/core-components/issues/546)) ([52a1f0b](https://github.com/core-ds/core-components/commit/52a1f0bd8578fe34d1c214b93a363e7b76621c17)) # [12.1.0](https://github.com/core-ds/core-components/compare/v12.0.0...v12.1.0) (2021-03-04) + ### Features -- **icon-button:** inverted theme ([#550](https://github.com/core-ds/core-components/issues/550)) ([98c3691](https://github.com/core-ds/core-components/commit/98c36919f682041278aa31753f1d18be95358df1)) +* **icon-button:** inverted theme ([#550](https://github.com/core-ds/core-components/issues/550)) ([98c3691](https://github.com/core-ds/core-components/commit/98c36919f682041278aa31753f1d18be95358df1)) # [12.0.0](https://github.com/core-ds/core-components/compare/v11.8.0...v12.0.0) (2021-03-04) + ### Features -- size vars (xs/s/m/l/xl → 32/48/56/64/72) ([d7254d2](https://github.com/core-ds/core-components/commit/d7254d2963106663e8f04b84bc747b38e4f57632)) -- **amount-input:** changed size L (72 → 64), added size XL (72) ([a2c0b7c](https://github.com/core-ds/core-components/commit/a2c0b7ce6c208183897064cd6235d69445e3afe5)) -- **button:** changed size L (72 → 64), added size XL (72) ([051d964](https://github.com/core-ds/core-components/commit/051d964e83fd7af3703c82facf75345eca66915b)) -- **form-control:** changed size L (72 → 64), added size XL (72) ([4a129f3](https://github.com/core-ds/core-components/commit/4a129f3ca3c80e94489cbc485018e6eb6e542244)) -- **input:** changed size L (72 → 64), added size XL (72) ([79699e3](https://github.com/core-ds/core-components/commit/79699e34d28075809e537b73911875ff5fc2d406)) -- **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917)) -- **intl-phone-input:** changed size L (72 → 64), added size XL (72) ([9077b7f](https://github.com/core-ds/core-components/commit/9077b7f454035cdc7be611d526a5f9642ae4d76d)) -- **phone-input:** changed size L (72 → 64), added size XL (72) ([13257c5](https://github.com/core-ds/core-components/commit/13257c54543b2f1a870527093df11c532143dab9)) -- **popover:** change animation, add scale ([2e48a02](https://github.com/core-ds/core-components/commit/2e48a02a8f3f7ff9a6df48cf4e6337a8928f67c7)) -- **pure-input:** changed size L (72 → 64), added size XL (72) ([af4cfb5](https://github.com/core-ds/core-components/commit/af4cfb515a25c6dcae32a7e2a0730fe4f9e6e791)) -- **select:** changed size L (72 → 64), added size XL (72) ([af5dc6a](https://github.com/core-ds/core-components/commit/af5dc6a4f5b52f45bc97f4cc16633aca499aa67a)) -- **select-with-tags:** changed size L (72 → 64), added size XL (72) ([523b96f](https://github.com/core-ds/core-components/commit/523b96fa79bc12972ec6ac748105ba20906ba236)) -- **slider-input:** changed size L (72 → 64), added size XL (72) ([f5fda56](https://github.com/core-ds/core-components/commit/f5fda569e0e73a06850914c1e494024a3aaab12c)) -- **tabs:** changed size L (72 → 64), added size XL (72) ([2043939](https://github.com/core-ds/core-components/commit/2043939c5ecdb03c9b84379a3cce21c6f6047530)) -- **tag:** changed size L (72 → 64), added size XL (72) ([ea43560](https://github.com/core-ds/core-components/commit/ea435601abb79b3bde9e34d60616239e2a0ef6bc)) -- **textarea:** changed size L (72 → 64), added size XL (72) ([175e360](https://github.com/core-ds/core-components/commit/175e360d5acb4eb146c81020fd65dc725588edee)) -- **themes:** updated click theme for tabs ([0a4c17e](https://github.com/core-ds/core-components/commit/0a4c17e5628f959d72e0ee6044ca56bd3c890d92)) -- **toast:** update popover ([9961bc8](https://github.com/core-ds/core-components/commit/9961bc8a15428c4417af9df9585d8fc55b6a154c)) -- **with-suffix:** xl size ([d2bb796](https://github.com/core-ds/core-components/commit/d2bb7967b6756f8b06b3484c7900ef7637b1c777)) +* size vars (xs/s/m/l/xl → 32/48/56/64/72) ([d7254d2](https://github.com/core-ds/core-components/commit/d7254d2963106663e8f04b84bc747b38e4f57632)) +* **amount-input:** changed size L (72 → 64), added size XL (72) ([a2c0b7c](https://github.com/core-ds/core-components/commit/a2c0b7ce6c208183897064cd6235d69445e3afe5)) +* **button:** changed size L (72 → 64), added size XL (72) ([051d964](https://github.com/core-ds/core-components/commit/051d964e83fd7af3703c82facf75345eca66915b)) +* **form-control:** changed size L (72 → 64), added size XL (72) ([4a129f3](https://github.com/core-ds/core-components/commit/4a129f3ca3c80e94489cbc485018e6eb6e542244)) +* **input:** changed size L (72 → 64), added size XL (72) ([79699e3](https://github.com/core-ds/core-components/commit/79699e34d28075809e537b73911875ff5fc2d406)) +* **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917)) +* **intl-phone-input:** changed size L (72 → 64), added size XL (72) ([9077b7f](https://github.com/core-ds/core-components/commit/9077b7f454035cdc7be611d526a5f9642ae4d76d)) +* **phone-input:** changed size L (72 → 64), added size XL (72) ([13257c5](https://github.com/core-ds/core-components/commit/13257c54543b2f1a870527093df11c532143dab9)) +* **popover:** change animation, add scale ([2e48a02](https://github.com/core-ds/core-components/commit/2e48a02a8f3f7ff9a6df48cf4e6337a8928f67c7)) +* **pure-input:** changed size L (72 → 64), added size XL (72) ([af4cfb5](https://github.com/core-ds/core-components/commit/af4cfb515a25c6dcae32a7e2a0730fe4f9e6e791)) +* **select:** changed size L (72 → 64), added size XL (72) ([af5dc6a](https://github.com/core-ds/core-components/commit/af5dc6a4f5b52f45bc97f4cc16633aca499aa67a)) +* **select-with-tags:** changed size L (72 → 64), added size XL (72) ([523b96f](https://github.com/core-ds/core-components/commit/523b96fa79bc12972ec6ac748105ba20906ba236)) +* **slider-input:** changed size L (72 → 64), added size XL (72) ([f5fda56](https://github.com/core-ds/core-components/commit/f5fda569e0e73a06850914c1e494024a3aaab12c)) +* **tabs:** changed size L (72 → 64), added size XL (72) ([2043939](https://github.com/core-ds/core-components/commit/2043939c5ecdb03c9b84379a3cce21c6f6047530)) +* **tag:** changed size L (72 → 64), added size XL (72) ([ea43560](https://github.com/core-ds/core-components/commit/ea435601abb79b3bde9e34d60616239e2a0ef6bc)) +* **textarea:** changed size L (72 → 64), added size XL (72) ([175e360](https://github.com/core-ds/core-components/commit/175e360d5acb4eb146c81020fd65dc725588edee)) +* **themes:** updated click theme for tabs ([0a4c17e](https://github.com/core-ds/core-components/commit/0a4c17e5628f959d72e0ee6044ca56bd3c890d92)) +* **toast:** update popover ([9961bc8](https://github.com/core-ds/core-components/commit/9961bc8a15428c4417af9df9585d8fc55b6a154c)) +* **with-suffix:** xl size ([d2bb796](https://github.com/core-ds/core-components/commit/d2bb7967b6756f8b06b3484c7900ef7637b1c777)) + ### BREAKING CHANGES -- **phone-input:** size L changed to size XL -- **amount-input:** size L changed to size XL -- **pure-input:** size L changed to size XL -- **input-autocomplete:** size L changed to size XL -- **intl-phone-input:** size L changed to size XL -- **input:** size L changed to size XL -- **tag:** size L changed to size XL -- **select-with-tags:** size L changed to size XL -- **tabs:** size L changed to size XL -- **form-control:** size L changed to size XL -- **textarea:** size L changed to size XL -- **select:** size L changed to size XL -- **slider-input:** size L changed to size XL -- **button:** size L changed to size XL -- **popover:** Change html structure of popover component. +* **phone-input:** size L changed to size XL +* **amount-input:** size L changed to size XL +* **pure-input:** size L changed to size XL +* **input-autocomplete:** size L changed to size XL +* **intl-phone-input:** size L changed to size XL +* **input:** size L changed to size XL +* **tag:** size L changed to size XL +* **select-with-tags:** size L changed to size XL +* **tabs:** size L changed to size XL +* **form-control:** size L changed to size XL +* **textarea:** size L changed to size XL +* **select:** size L changed to size XL +* **slider-input:** size L changed to size XL +* **button:** size L changed to size XL +* **popover:** Change html structure of popover component. # [11.8.0](https://github.com/core-ds/core-components/compare/v11.7.1...v11.8.0) (2021-03-03) + ### Bug Fixes -- **confirmation:** add font feature settings ([#540](https://github.com/core-ds/core-components/issues/540)) ([08057f6](https://github.com/core-ds/core-components/commit/08057f6930e9cd19c0213442a4915e366d26e607)) -- **select-with-tags:** remove pointer events from placeholder ([#545](https://github.com/core-ds/core-components/issues/545)) ([41b860b](https://github.com/core-ds/core-components/commit/41b860bd550b71d2025081d76d7c1240258ecaf9)) +* **confirmation:** add font feature settings ([#540](https://github.com/core-ds/core-components/issues/540)) ([08057f6](https://github.com/core-ds/core-components/commit/08057f6930e9cd19c0213442a4915e366d26e607)) +* **select-with-tags:** remove pointer events from placeholder ([#545](https://github.com/core-ds/core-components/issues/545)) ([41b860b](https://github.com/core-ds/core-components/commit/41b860bd550b71d2025081d76d7c1240258ecaf9)) + ### Features -- **intl-phone-input:** add onCountryChange handler ([#539](https://github.com/core-ds/core-components/issues/539)) ([f8c0cd6](https://github.com/core-ds/core-components/commit/f8c0cd618ced23bbb49a81cfee07c1f45ee20427)) +* **intl-phone-input:** add onCountryChange handler ([#539](https://github.com/core-ds/core-components/issues/539)) ([f8c0cd6](https://github.com/core-ds/core-components/commit/f8c0cd618ced23bbb49a81cfee07c1f45ee20427)) ## [11.7.1](https://github.com/core-ds/core-components/compare/v11.7.0...v11.7.1) (2021-03-03) + ### Bug Fixes -- **select-with-tags:** missed dot ([c3c98d0](https://github.com/core-ds/core-components/commit/c3c98d0106072a431a616e8420edb01d83ad5fce)) +* **select-with-tags:** missed dot ([c3c98d0](https://github.com/core-ds/core-components/commit/c3c98d0106072a431a616e8420edb01d83ad5fce)) # [11.7.0](https://github.com/core-ds/core-components/compare/v11.6.3...v11.7.0) (2021-03-03) + ### Features -- **vars:** 2px gap ([#544](https://github.com/core-ds/core-components/issues/544)) ([e401782](https://github.com/core-ds/core-components/commit/e40178290a02c45bd9ea23ab0deffabd74a69276)) +* **vars:** 2px gap ([#544](https://github.com/core-ds/core-components/issues/544)) ([e401782](https://github.com/core-ds/core-components/commit/e40178290a02c45bd9ea23ab0deffabd74a69276)) ## [11.6.3](https://github.com/core-ds/core-components/compare/v11.6.2...v11.6.3) (2021-03-01) + ### Bug Fixes -- **select-with-tags:** fixed styles ([#543](https://github.com/core-ds/core-components/issues/543)) ([206db51](https://github.com/core-ds/core-components/commit/206db5138c8ba2869c5ac458609928c4753cc83b)) +* **select-with-tags:** fixed styles ([#543](https://github.com/core-ds/core-components/issues/543)) ([206db51](https://github.com/core-ds/core-components/commit/206db5138c8ba2869c5ac458609928c4753cc83b)) ## [11.6.2](https://github.com/core-ds/core-components/compare/v11.6.1...v11.6.2) (2021-02-20) + ### Bug Fixes -- **select:** recalc height on options changed ([#536](https://github.com/core-ds/core-components/issues/536)) ([4c27c19](https://github.com/core-ds/core-components/commit/4c27c197882256e507ec83678da4811f6285c2fe)) +* **select:** recalc height on options changed ([#536](https://github.com/core-ds/core-components/issues/536)) ([4c27c19](https://github.com/core-ds/core-components/commit/4c27c197882256e507ec83678da4811f6285c2fe)) ## [11.6.1](https://github.com/core-ds/core-components/compare/v11.6.0...v11.6.1) (2021-02-20) + ### Bug Fixes -- **themes:** lost core vars ([#534](https://github.com/core-ds/core-components/issues/534)) ([54a23c9](https://github.com/core-ds/core-components/commit/54a23c90997c4aa90944d0391f2aab27f799353d)) +* **themes:** lost core vars ([#534](https://github.com/core-ds/core-components/issues/534)) ([54a23c9](https://github.com/core-ds/core-components/commit/54a23c90997c4aa90944d0391f2aab27f799353d)) # [11.6.0](https://github.com/core-ds/core-components/compare/v11.5.0...v11.6.0) (2021-02-19) + ### Features -- **drawer:** add component ([#497](https://github.com/core-ds/core-components/issues/497)) ([5943188](https://github.com/core-ds/core-components/commit/594318886d581e6afca99fcebe9088c222aa3d52)) -- **modal:** reinvent modal ([#489](https://github.com/core-ds/core-components/issues/489)) ([06cb8ba](https://github.com/core-ds/core-components/commit/06cb8ba7f7a09445c04ab2a9871a86c1abf4a79c)) +* **drawer:** add component ([#497](https://github.com/core-ds/core-components/issues/497)) ([5943188](https://github.com/core-ds/core-components/commit/594318886d581e6afca99fcebe9088c222aa3d52)) +* **modal:** reinvent modal ([#489](https://github.com/core-ds/core-components/issues/489)) ([06cb8ba](https://github.com/core-ds/core-components/commit/06cb8ba7f7a09445c04ab2a9871a86c1abf4a79c)) # [11.5.0](https://github.com/core-ds/core-components/compare/v11.4.0...v11.5.0) (2021-02-19) + ### Features -- **select-with-tags:** added collapsed tag list ([#511](https://github.com/core-ds/core-components/issues/511)) ([fe1d551](https://github.com/core-ds/core-components/commit/fe1d551385e9122c205bbe7a679f02a6eb376569)) +* **select-with-tags:** added collapsed tag list ([#511](https://github.com/core-ds/core-components/issues/511)) ([fe1d551](https://github.com/core-ds/core-components/commit/fe1d551385e9122c205bbe7a679f02a6eb376569)) # [11.4.0](https://github.com/core-ds/core-components/compare/v11.3.2...v11.4.0) (2021-02-19) + ### Features -- **button:** add rel='noopener noreferrer' if target='blank' ([#522](https://github.com/core-ds/core-components/issues/522)) ([a1da871](https://github.com/core-ds/core-components/commit/a1da87118a32195ba844c239f5a0f73e164faa6f)) -- **link:** set rel='noopener noreferrer' if target='\_blank' ([#520](https://github.com/core-ds/core-components/issues/520)) ([08c556e](https://github.com/core-ds/core-components/commit/08c556ecc0944d121b23566ae54319a1a33899ba)), closes [#519](https://github.com/core-ds/core-components/issues/519) -- **themes:** list click theme ([#528](https://github.com/core-ds/core-components/issues/528)) ([e54ad60](https://github.com/core-ds/core-components/commit/e54ad605a9f873b06e0fe984bc87bcbb810a2541)) +* **button:** add rel='noopener noreferrer' if target='blank' ([#522](https://github.com/core-ds/core-components/issues/522)) ([a1da871](https://github.com/core-ds/core-components/commit/a1da87118a32195ba844c239f5a0f73e164faa6f)) +* **link:** set rel='noopener noreferrer' if target='_blank' ([#520](https://github.com/core-ds/core-components/issues/520)) ([08c556e](https://github.com/core-ds/core-components/commit/08c556ecc0944d121b23566ae54319a1a33899ba)), closes [#519](https://github.com/core-ds/core-components/issues/519) +* **themes:** list click theme ([#528](https://github.com/core-ds/core-components/issues/528)) ([e54ad60](https://github.com/core-ds/core-components/commit/e54ad605a9f873b06e0fe984bc87bcbb810a2541)) ## [11.3.2](https://github.com/core-ds/core-components/compare/v11.3.1...v11.3.2) (2021-02-19) + ### Bug Fixes -- **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1)) -- **select:** min width bug ([#524](https://github.com/core-ds/core-components/issues/524)) ([cdd686b](https://github.com/core-ds/core-components/commit/cdd686ba0780fdde982fff6629afd2fa798f9479)) +* **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1)) +* **select:** min width bug ([#524](https://github.com/core-ds/core-components/issues/524)) ([cdd686b](https://github.com/core-ds/core-components/commit/cdd686ba0780fdde982fff6629afd2fa798f9479)) ## [11.3.1](https://github.com/core-ds/core-components/compare/v11.3.0...v11.3.1) (2021-02-19) + ### Bug Fixes -- **toast-plate:** polish toast-plate themes ([#527](https://github.com/core-ds/core-components/issues/527)) ([57d73d4](https://github.com/core-ds/core-components/commit/57d73d47b089997b2cc0d85e37b70f068c945e50)) +* **toast-plate:** polish toast-plate themes ([#527](https://github.com/core-ds/core-components/issues/527)) ([57d73d4](https://github.com/core-ds/core-components/commit/57d73d47b089997b2cc0d85e37b70f068c945e50)) # [11.3.0](https://github.com/core-ds/core-components/compare/v11.2.0...v11.3.0) (2021-02-18) + ### Features -- **select:** add visible-options ([#506](https://github.com/core-ds/core-components/issues/506)) ([0154866](https://github.com/core-ds/core-components/commit/0154866bb8fc8308945d32f115b3ab1e46f98db6)) +* **select:** add visible-options ([#506](https://github.com/core-ds/core-components/issues/506)) ([0154866](https://github.com/core-ds/core-components/commit/0154866bb8fc8308945d32f115b3ab1e46f98db6)) # [11.2.0](https://github.com/core-ds/core-components/compare/v11.1.0...v11.2.0) (2021-02-18) + ### Features -- updated design tokens ([#516](https://github.com/core-ds/core-components/issues/516)) ([ef66b65](https://github.com/core-ds/core-components/commit/ef66b65bb35b2ef06292b8da709ccc335eb44735)) +* updated design tokens ([#516](https://github.com/core-ds/core-components/issues/516)) ([ef66b65](https://github.com/core-ds/core-components/commit/ef66b65bb35b2ef06292b8da709ccc335eb44735)) # [11.1.0](https://github.com/core-ds/core-components/compare/v11.0.3...v11.1.0) (2021-02-18) + ### Features -- **tabs:** disabled view ([#513](https://github.com/core-ds/core-components/issues/513)) ([8bdb1a7](https://github.com/core-ds/core-components/commit/8bdb1a789f720c6ccd98ebed3f0ae3c84dbbf52e)) +* **tabs:** disabled view ([#513](https://github.com/core-ds/core-components/issues/513)) ([8bdb1a7](https://github.com/core-ds/core-components/commit/8bdb1a789f720c6ccd98ebed3f0ae3c84dbbf52e)) ## [11.0.3](https://github.com/core-ds/core-components/compare/v11.0.2...v11.0.3) (2021-02-18) + ### Bug Fixes -- update versions ([1d83612](https://github.com/core-ds/core-components/commit/1d8361241fecb6be83e3ce8b546f19def1efc592)) +* update versions ([1d83612](https://github.com/core-ds/core-components/commit/1d8361241fecb6be83e3ce8b546f19def1efc592)) ## [11.0.2](https://github.com/core-ds/core-components/compare/v11.0.1...v11.0.2) (2021-02-18) + ### Bug Fixes -- update versions ([d1b69a3](https://github.com/core-ds/core-components/commit/d1b69a3f0f488bdef5bea2b3aafc0e275058f321)) +* update versions ([d1b69a3](https://github.com/core-ds/core-components/commit/d1b69a3f0f488bdef5bea2b3aafc0e275058f321)) ## [11.0.1](https://github.com/core-ds/core-components/compare/v11.0.0...v11.0.1) (2021-02-18) + ### Bug Fixes -- update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70)) +* update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70)) # [11.0.0](https://github.com/core-ds/core-components/compare/v10.6.0...v11.0.0) (2021-02-18) -- Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521) + +* Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521) + ### BREAKING CHANGES -- --notification-desktop-width var removed +* --notification-desktop-width var removed # [10.6.0](https://github.com/core-ds/core-components/compare/v10.5.0...v10.6.0) (2021-02-17) + ### Features -- **toast-plate:** add action button theming, fix addons align ([#514](https://github.com/core-ds/core-components/issues/514)) ([20a7c67](https://github.com/core-ds/core-components/commit/20a7c67e89e4b6d3d90a9f1da2eb1b428c8ebf73)) +* **toast-plate:** add action button theming, fix addons align ([#514](https://github.com/core-ds/core-components/issues/514)) ([20a7c67](https://github.com/core-ds/core-components/commit/20a7c67e89e4b6d3d90a9f1da2eb1b428c8ebf73)) # [10.5.0](https://github.com/core-ds/core-components/compare/v10.4.4...v10.5.0) (2021-02-17) + ### Features -- **icon-button:** add component ([#505](https://github.com/core-ds/core-components/issues/505)) ([da8ba6e](https://github.com/core-ds/core-components/commit/da8ba6e4473da87d8043713a592368d500cd284f)) +* **icon-button:** add component ([#505](https://github.com/core-ds/core-components/issues/505)) ([da8ba6e](https://github.com/core-ds/core-components/commit/da8ba6e4473da87d8043713a592368d500cd284f)) ## [10.4.4](https://github.com/core-ds/core-components/compare/v10.4.3...v10.4.4) (2021-02-16) + ### Bug Fixes -- **plate:** fixed --arrow-transform var, tuned transition ([#509](https://github.com/core-ds/core-components/issues/509)) ([dd51018](https://github.com/core-ds/core-components/commit/dd510185db28fefb102b287ae5022cf42e8072dc)) +* **plate:** fixed --arrow-transform var, tuned transition ([#509](https://github.com/core-ds/core-components/issues/509)) ([dd51018](https://github.com/core-ds/core-components/commit/dd510185db28fefb102b287ae5022cf42e8072dc)) ## [10.4.3](https://github.com/core-ds/core-components/compare/v10.4.2...v10.4.3) (2021-02-16) + ### Bug Fixes -- **form-control:** ff blink ([490ff25](https://github.com/core-ds/core-components/commit/490ff257eacb61c5d0d7f8861d12e43af9df3a55)) +* **form-control:** ff blink ([490ff25](https://github.com/core-ds/core-components/commit/490ff257eacb61c5d0d7f8861d12e43af9df3a55)) ## [10.4.2](https://github.com/core-ds/core-components/compare/v10.4.1...v10.4.2) (2021-02-15) + ### Bug Fixes -- **themes:** fixed click theme for tabs size S ([#510](https://github.com/core-ds/core-components/issues/510)) ([1ce93e5](https://github.com/core-ds/core-components/commit/1ce93e55d0622951e8db652f16b883a151a75e79)) +* **themes:** fixed click theme for tabs size S ([#510](https://github.com/core-ds/core-components/issues/510)) ([1ce93e5](https://github.com/core-ds/core-components/commit/1ce93e55d0622951e8db652f16b883a151a75e79)) ## [10.4.1](https://github.com/core-ds/core-components/compare/v10.4.0...v10.4.1) (2021-02-15) + ### Bug Fixes -- **themes:** corp theme ([#512](https://github.com/core-ds/core-components/issues/512)) ([6226238](https://github.com/core-ds/core-components/commit/6226238be1104550622eba1b842dac5ed9828d83)) +* **themes:** corp theme ([#512](https://github.com/core-ds/core-components/issues/512)) ([6226238](https://github.com/core-ds/core-components/commit/6226238be1104550622eba1b842dac5ed9828d83)) # [10.4.0](https://github.com/core-ds/core-components/compare/v10.3.0...v10.4.0) (2021-02-11) + ### Features -- improve read-only behaviour (PDS-200) ([#502](https://github.com/core-ds/core-components/issues/502)) ([3b3c5e6](https://github.com/core-ds/core-components/commit/3b3c5e664a829351f09f97d742311396dd0c98c6)) +* improve read-only behaviour (PDS-200) ([#502](https://github.com/core-ds/core-components/issues/502)) ([3b3c5e6](https://github.com/core-ds/core-components/commit/3b3c5e664a829351f09f97d742311396dd0c98c6)) # [10.3.0](https://github.com/core-ds/core-components/compare/v10.2.1...v10.3.0) (2021-02-11) + ### Features -- **grid:** add component ([#486](https://github.com/core-ds/core-components/issues/486)) ([96bd0f3](https://github.com/core-ds/core-components/commit/96bd0f34047fa4c8a877c75a60cc39f839f20b84)) +* **grid:** add component ([#486](https://github.com/core-ds/core-components/issues/486)) ([96bd0f3](https://github.com/core-ds/core-components/commit/96bd0f34047fa4c8a877c75a60cc39f839f20b84)) ## [10.2.1](https://github.com/core-ds/core-components/compare/v10.2.0...v10.2.1) (2021-02-10) + ### Bug Fixes -- form-control colors ([#503](https://github.com/core-ds/core-components/issues/503)) ([784e05e](https://github.com/core-ds/core-components/commit/784e05ecebf2cf9991447bf2dbac4b1dd36b9792)) +* form-control colors ([#503](https://github.com/core-ds/core-components/issues/503)) ([784e05e](https://github.com/core-ds/core-components/commit/784e05ecebf2cf9991447bf2dbac4b1dd36b9792)) # [10.2.0](https://github.com/core-ds/core-components/compare/v10.1.0...v10.2.0) (2021-02-09) + ### Features -- **cdn-icon:** add component ([#494](https://github.com/core-ds/core-components/issues/494)) ([a6df885](https://github.com/core-ds/core-components/commit/a6df885077c1c4a5ae76d110f6f5f6e369236182)) +* **cdn-icon:** add component ([#494](https://github.com/core-ds/core-components/issues/494)) ([a6df885](https://github.com/core-ds/core-components/commit/a6df885077c1c4a5ae76d110f6f5f6e369236182)) # [10.1.0](https://github.com/core-ds/core-components/compare/v10.0.0...v10.1.0) (2021-02-09) + ### Features -- **button:** updated button colors and themes ([#500](https://github.com/core-ds/core-components/issues/500)) ([b34f12d](https://github.com/core-ds/core-components/commit/b34f12db8cebc53641a642de9164075d0ed2dacf)) +* **button:** updated button colors and themes ([#500](https://github.com/core-ds/core-components/issues/500)) ([b34f12d](https://github.com/core-ds/core-components/commit/b34f12db8cebc53641a642de9164075d0ed2dacf)) # [10.0.0](https://github.com/core-ds/core-components/compare/v9.1.0...v10.0.0) (2021-02-08) + ### Features -- **badge:** reinvented icon view, visibleIconOutline prop ([#499](https://github.com/core-ds/core-components/issues/499)) ([bad9140](https://github.com/core-ds/core-components/commit/bad91400cb72edcd0878f7a07188e928d4bf3281)) +* **badge:** reinvented icon view, visibleIconOutline prop ([#499](https://github.com/core-ds/core-components/issues/499)) ([bad9140](https://github.com/core-ds/core-components/commit/bad91400cb72edcd0878f7a07188e928d4bf3281)) + ### BREAKING CHANGES -- **badge:** new icon view without fixed size +* **badge:** new icon view without fixed size # [9.1.0](https://github.com/core-ds/core-components/compare/v9.0.0...v9.1.0) (2021-02-08) + ### Bug Fixes -- **calendar:** fixes ([#498](https://github.com/core-ds/core-components/issues/498)) ([410630e](https://github.com/core-ds/core-components/commit/410630e3cdd093027444207f16a0f942a62b86de)) +* **calendar:** fixes ([#498](https://github.com/core-ds/core-components/issues/498)) ([410630e](https://github.com/core-ds/core-components/commit/410630e3cdd093027444207f16a0f942a62b86de)) + ### Features -- **select-with-tags:** design review fixes ([#472](https://github.com/core-ds/core-components/issues/472)) ([0ff989f](https://github.com/core-ds/core-components/commit/0ff989fa09e482a5e9bda1d64bf5eed9241fc451)) +* **select-with-tags:** design review fixes ([#472](https://github.com/core-ds/core-components/issues/472)) ([0ff989f](https://github.com/core-ds/core-components/commit/0ff989fa09e482a5e9bda1d64bf5eed9241fc451)) # [9.0.0](https://github.com/core-ds/core-components/compare/v8.3.1...v9.0.0) (2021-02-08) + ### Features -- **notification:** move inner content to toast ([8b7a4e9](https://github.com/core-ds/core-components/commit/8b7a4e932a7ac684edc62d2039263d0b9183ff0a)) -- **popover:** fix transition ([f8564bc](https://github.com/core-ds/core-components/commit/f8564bceace99104b521fc92d037f7ef9c635f91)) -- **themes:** add button ghost inverted theme ([dd71bbf](https://github.com/core-ds/core-components/commit/dd71bbf94ba3f7cc3502f1ff4f60dad4b023ff9e)) -- **toast:** remove extra prop ([6a8167a](https://github.com/core-ds/core-components/commit/6a8167a6685a290efc30ac9fc285ddc4b62bd1fe)) -- **toast:** review fixes ([50fea1d](https://github.com/core-ds/core-components/commit/50fea1d764a2b99b66a1212fa56c98958e34f147)) -- yet another fixes ([6ecd273](https://github.com/core-ds/core-components/commit/6ecd273b8900e9559e1b8a54a95d1874b4c4a7a3)) -- **themes:** updates ([86bd76f](https://github.com/core-ds/core-components/commit/86bd76fa1cb204b274c0092a5fcc0d984d3f57a1)) -- **toast:** add draft component ([d04fbb3](https://github.com/core-ds/core-components/commit/d04fbb315adda99553f87f5d8e477ff60314a070)) -- **toast:** add new component ([09de8b0](https://github.com/core-ds/core-components/commit/09de8b0ad2684b047d129929506a83127b2ccf99)) -- **toast:** add portal ([439148d](https://github.com/core-ds/core-components/commit/439148d04d950f21b0d7186c1cbc4e681f305d63)) -- **toast:** add stop, start timers ([b28ea98](https://github.com/core-ds/core-components/commit/b28ea982cec94eb9c0a50250d51cf173d0bc0a02)) -- **toast:** fix linter error ([e994512](https://github.com/core-ds/core-components/commit/e9945125a90935e205aee8e4a6bb8b762e352d25)) -- **toast:** fix linter problems ([e8342e8](https://github.com/core-ds/core-components/commit/e8342e89353b6f1a3935473c46a1694b2186561e)) -- **toast:** some fixes ([fe95b5d](https://github.com/core-ds/core-components/commit/fe95b5d8930698ab6d37ab6dd15497af056ac4ee)) -- **toast:** updates ([896ac02](https://github.com/core-ds/core-components/commit/896ac02f251d6b45698bdb35c08eb6131141080a)) -- **toast:** updates ([24cc308](https://github.com/core-ds/core-components/commit/24cc3089a04e7f86ca929192405b71209ed3ebe7)) -- **toast-plate:** change close button position to absolute ([2f9161d](https://github.com/core-ds/core-components/commit/2f9161d8b23647485df7759c1f5a4bbf0c113925)) -- **toast-plate:** design review fixes ([55b58fd](https://github.com/core-ds/core-components/commit/55b58fd1713c89bed3da74ede15487021477545d)) -- **toast-plate:** fix ([4e378ec](https://github.com/core-ds/core-components/commit/4e378ec7cd9901807458ff1c1a09c0cbf3c41401)) -- **toast-plate:** fix styles ([b600f86](https://github.com/core-ds/core-components/commit/b600f860b37c039f8a4272a9f27aa5689643b614)) -- **toast-plate:** fix styles ([14af3b4](https://github.com/core-ds/core-components/commit/14af3b49fe8803cec870cd946e3835f3b92cd3e8)) -- **toast-plate:** updates ([2303335](https://github.com/core-ds/core-components/commit/230333560732c11cff2c850db41112c398e6ab76)) +* **notification:** move inner content to toast ([8b7a4e9](https://github.com/core-ds/core-components/commit/8b7a4e932a7ac684edc62d2039263d0b9183ff0a)) +* **popover:** fix transition ([f8564bc](https://github.com/core-ds/core-components/commit/f8564bceace99104b521fc92d037f7ef9c635f91)) +* **themes:** add button ghost inverted theme ([dd71bbf](https://github.com/core-ds/core-components/commit/dd71bbf94ba3f7cc3502f1ff4f60dad4b023ff9e)) +* **toast:** remove extra prop ([6a8167a](https://github.com/core-ds/core-components/commit/6a8167a6685a290efc30ac9fc285ddc4b62bd1fe)) +* **toast:** review fixes ([50fea1d](https://github.com/core-ds/core-components/commit/50fea1d764a2b99b66a1212fa56c98958e34f147)) +* yet another fixes ([6ecd273](https://github.com/core-ds/core-components/commit/6ecd273b8900e9559e1b8a54a95d1874b4c4a7a3)) +* **themes:** updates ([86bd76f](https://github.com/core-ds/core-components/commit/86bd76fa1cb204b274c0092a5fcc0d984d3f57a1)) +* **toast:** add draft component ([d04fbb3](https://github.com/core-ds/core-components/commit/d04fbb315adda99553f87f5d8e477ff60314a070)) +* **toast:** add new component ([09de8b0](https://github.com/core-ds/core-components/commit/09de8b0ad2684b047d129929506a83127b2ccf99)) +* **toast:** add portal ([439148d](https://github.com/core-ds/core-components/commit/439148d04d950f21b0d7186c1cbc4e681f305d63)) +* **toast:** add stop, start timers ([b28ea98](https://github.com/core-ds/core-components/commit/b28ea982cec94eb9c0a50250d51cf173d0bc0a02)) +* **toast:** fix linter error ([e994512](https://github.com/core-ds/core-components/commit/e9945125a90935e205aee8e4a6bb8b762e352d25)) +* **toast:** fix linter problems ([e8342e8](https://github.com/core-ds/core-components/commit/e8342e89353b6f1a3935473c46a1694b2186561e)) +* **toast:** some fixes ([fe95b5d](https://github.com/core-ds/core-components/commit/fe95b5d8930698ab6d37ab6dd15497af056ac4ee)) +* **toast:** updates ([896ac02](https://github.com/core-ds/core-components/commit/896ac02f251d6b45698bdb35c08eb6131141080a)) +* **toast:** updates ([24cc308](https://github.com/core-ds/core-components/commit/24cc3089a04e7f86ca929192405b71209ed3ebe7)) +* **toast-plate:** change close button position to absolute ([2f9161d](https://github.com/core-ds/core-components/commit/2f9161d8b23647485df7759c1f5a4bbf0c113925)) +* **toast-plate:** design review fixes ([55b58fd](https://github.com/core-ds/core-components/commit/55b58fd1713c89bed3da74ede15487021477545d)) +* **toast-plate:** fix ([4e378ec](https://github.com/core-ds/core-components/commit/4e378ec7cd9901807458ff1c1a09c0cbf3c41401)) +* **toast-plate:** fix styles ([b600f86](https://github.com/core-ds/core-components/commit/b600f860b37c039f8a4272a9f27aa5689643b614)) +* **toast-plate:** fix styles ([14af3b4](https://github.com/core-ds/core-components/commit/14af3b49fe8803cec870cd946e3835f3b92cd3e8)) +* **toast-plate:** updates ([2303335](https://github.com/core-ds/core-components/commit/230333560732c11cff2c850db41112c398e6ab76)) + ### BREAKING CHANGES -- **popover:** fix popover transition, change Transition to CSSTransition +* **popover:** fix popover transition, change Transition to CSSTransition ## [8.3.1](https://github.com/core-ds/core-components/compare/v8.3.0...v8.3.1) (2021-02-03) + ### Bug Fixes -- update data and utils dependencies ([#496](https://github.com/core-ds/core-components/issues/496)) ([76eba5d](https://github.com/core-ds/core-components/commit/76eba5dec90fc8f7616018171ddbf97ddfe091ce)) +* update data and utils dependencies ([#496](https://github.com/core-ds/core-components/issues/496)) ([76eba5d](https://github.com/core-ds/core-components/commit/76eba5dec90fc8f7616018171ddbf97ddfe091ce)) # [8.3.0](https://github.com/core-ds/core-components/compare/v8.2.1...v8.3.0) (2021-02-01) + ### Bug Fixes -- **switch:** box-sizing issue ([#490](https://github.com/core-ds/core-components/issues/490)) ([73c9eb0](https://github.com/core-ds/core-components/commit/73c9eb0b682a7d8168ae97b9a524d56c65fbd5a5)) +* **switch:** box-sizing issue ([#490](https://github.com/core-ds/core-components/issues/490)) ([73c9eb0](https://github.com/core-ds/core-components/commit/73c9eb0b682a7d8168ae97b9a524d56c65fbd5a5)) + ### Features -- **calendar-range:** allow to select one-day range ([#491](https://github.com/core-ds/core-components/issues/491)) ([7fe56eb](https://github.com/core-ds/core-components/commit/7fe56eb7128146127b9b0732a945f11ee08980f3)) +* **calendar-range:** allow to select one-day range ([#491](https://github.com/core-ds/core-components/issues/491)) ([7fe56eb](https://github.com/core-ds/core-components/commit/7fe56eb7128146127b9b0732a945f11ee08980f3)) ## [8.2.1](https://github.com/core-ds/core-components/compare/v8.2.0...v8.2.1) (2021-02-01) + ### Bug Fixes -- **phone-input:** fix caret ([#493](https://github.com/core-ds/core-components/issues/493)) ([b510257](https://github.com/core-ds/core-components/commit/b510257a7793041766a1d7f4f0a8eae61ee69a8d)) -- **select:** fix safari overflow bug ([#492](https://github.com/core-ds/core-components/issues/492)) ([a273dc1](https://github.com/core-ds/core-components/commit/a273dc1372d171b0a36ad7acfa6e50e65b10a889)) +* **phone-input:** fix caret ([#493](https://github.com/core-ds/core-components/issues/493)) ([b510257](https://github.com/core-ds/core-components/commit/b510257a7793041766a1d7f4f0a8eae61ee69a8d)) +* **select:** fix safari overflow bug ([#492](https://github.com/core-ds/core-components/issues/492)) ([a273dc1](https://github.com/core-ds/core-components/commit/a273dc1372d171b0a36ad7acfa6e50e65b10a889)) # [8.2.0](https://github.com/core-ds/core-components/compare/v8.1.0...v8.2.0) (2021-01-28) + ### Features -- **button:** transparent view ([e395049](https://github.com/core-ds/core-components/commit/e39504987bf7c3afb01fc78151bff182199d08cb)) +* **button:** transparent view ([e395049](https://github.com/core-ds/core-components/commit/e39504987bf7c3afb01fc78151bff182199d08cb)) # [8.1.0](https://github.com/core-ds/core-components/compare/v8.0.3...v8.1.0) (2021-01-27) + ### Features -- **amount-input:** delete zero minor part in passed amount ([#484](https://github.com/core-ds/core-components/issues/484)) ([b787cb1](https://github.com/core-ds/core-components/commit/b787cb1ea1a56bc022470a644e4029bba623b151)) +* **amount-input:** delete zero minor part in passed amount ([#484](https://github.com/core-ds/core-components/issues/484)) ([b787cb1](https://github.com/core-ds/core-components/commit/b787cb1ea1a56bc022470a644e4029bba623b151)) # Changelog @@ -1343,15 +1521,17 @@ All notable changes to this project will be documented in this file. See [standa ## [8.0.2](https://github.com/core-ds/core-components/compare/v8.0.1...v8.0.2) (2021-01-20) + ### Bug Fixes -- **tag:** fix formatting ([#480](https://github.com/core-ds/core-components/issues/480)) ([111bf08](https://github.com/core-ds/core-components/commit/111bf08c068f4efe400ce6a25a60280a50fda7b4)) +* **tag:** fix formatting ([#480](https://github.com/core-ds/core-components/issues/480)) ([111bf08](https://github.com/core-ds/core-components/commit/111bf08c068f4efe400ce6a25a60280a50fda7b4)) ## [8.0.1](https://github.com/core-ds/core-components/compare/v8.0.0...v8.0.1) (2021-01-20) + ### Bug Fixes -- adds semantic release configs again ([01231a3](https://github.com/core-ds/core-components/commit/01231a3e0de52beb226d5f4bb350db54478307d3)) +* adds semantic release configs again ([01231a3](https://github.com/core-ds/core-components/commit/01231a3e0de52beb226d5f4bb350db54478307d3)) # Changelog @@ -1359,248 +1539,276 @@ All notable changes to this project will be documented in this file. See [standa ## [8.0.0](https://github.com/core-ds/core-components/compare/v7.0.0...v8.0.0) (2021-01-20) + ### ⚠ BREAKING CHANGES -- может затронуть кастомную стилизацию контролов +* может затронуть кастомную стилизацию контролов ### Features -- add fieldClassName ([#467](https://github.com/core-ds/core-components/issues/467)) ([8847c5a](https://github.com/core-ds/core-components/commit/8847c5a83187b97ab8f83b0149965a1d3825f89f)) -- add stylelint-core-vars ([#461](https://github.com/core-ds/core-components/issues/461)) ([c2f515e](https://github.com/core-ds/core-components/commit/c2f515e46a590815df66321ae8da011f5b2f24db)) -- **calendar:** add scrolling to selected year when open year select ([#471](https://github.com/core-ds/core-components/issues/471)) ([bf295ab](https://github.com/core-ds/core-components/commit/bf295ab281c80df550cd38d04e86f934e822f3eb)) -- **radio:** add addons ([7923354](https://github.com/core-ds/core-components/commit/7923354468ded0a2ea4602c7dae0eb722871c1f1)) -- **radio:** add align ([fe9faec](https://github.com/core-ds/core-components/commit/fe9faecb74b2528f5a2e18f1707dffa28ec29f7d)) -- **radio:** addons, align, block for Checkbox ([78c6f37](https://github.com/core-ds/core-components/commit/78c6f37ef7cb828ac4e8b54bd6edc9d9d4a151ab)) -- **radio:** addons, align, block for Switch ([df81ef9](https://github.com/core-ds/core-components/commit/df81ef9a6ad1c560c43d08741ba0e134a4658af3)) -- **radio:** fix reversed addons of switch ([30721a9](https://github.com/core-ds/core-components/commit/30721a9ee525aca73e9a73565755607b3abcfba3)) -- **radio:** fixes ([12128fb](https://github.com/core-ds/core-components/commit/12128fb8db85c27d0309ef806ef46673f4abbddc)) -- **radio:** fullWidth -> block ([97e0cf6](https://github.com/core-ds/core-components/commit/97e0cf65b0cc9a7dc60ec99ee16d4028a2c724cc)) -- **radio:** lil fixy ([7e8103a](https://github.com/core-ds/core-components/commit/7e8103a863194f0c5115b586aaddd0ba89f75469)) +* add fieldClassName ([#467](https://github.com/core-ds/core-components/issues/467)) ([8847c5a](https://github.com/core-ds/core-components/commit/8847c5a83187b97ab8f83b0149965a1d3825f89f)) +* add stylelint-core-vars ([#461](https://github.com/core-ds/core-components/issues/461)) ([c2f515e](https://github.com/core-ds/core-components/commit/c2f515e46a590815df66321ae8da011f5b2f24db)) +* **calendar:** add scrolling to selected year when open year select ([#471](https://github.com/core-ds/core-components/issues/471)) ([bf295ab](https://github.com/core-ds/core-components/commit/bf295ab281c80df550cd38d04e86f934e822f3eb)) +* **radio:** add addons ([7923354](https://github.com/core-ds/core-components/commit/7923354468ded0a2ea4602c7dae0eb722871c1f1)) +* **radio:** add align ([fe9faec](https://github.com/core-ds/core-components/commit/fe9faecb74b2528f5a2e18f1707dffa28ec29f7d)) +* **radio:** addons, align, block for Checkbox ([78c6f37](https://github.com/core-ds/core-components/commit/78c6f37ef7cb828ac4e8b54bd6edc9d9d4a151ab)) +* **radio:** addons, align, block for Switch ([df81ef9](https://github.com/core-ds/core-components/commit/df81ef9a6ad1c560c43d08741ba0e134a4658af3)) +* **radio:** fix reversed addons of switch ([30721a9](https://github.com/core-ds/core-components/commit/30721a9ee525aca73e9a73565755607b3abcfba3)) +* **radio:** fixes ([12128fb](https://github.com/core-ds/core-components/commit/12128fb8db85c27d0309ef806ef46673f4abbddc)) +* **radio:** fullWidth -> block ([97e0cf6](https://github.com/core-ds/core-components/commit/97e0cf65b0cc9a7dc60ec99ee16d4028a2c724cc)) +* **radio:** lil fixy ([7e8103a](https://github.com/core-ds/core-components/commit/7e8103a863194f0c5115b586aaddd0ba89f75469)) + ### Bug Fixes -- **amount:** fix story ([#463](https://github.com/core-ds/core-components/issues/463)) ([3e1d6c1](https://github.com/core-ds/core-components/commit/3e1d6c178cc7b0305b0f82e79588bf4d1fa40f91)) -- **calendar:** fix years-table position ([#474](https://github.com/core-ds/core-components/issues/474)) ([0f8cfe2](https://github.com/core-ds/core-components/commit/0f8cfe2b7405989f69d4df964bc2df7858c20ac6)) -- **input:** prevent autocomplete to change bgcolor ([#468](https://github.com/core-ds/core-components/issues/468)) ([d00abe3](https://github.com/core-ds/core-components/commit/d00abe396fad28d6e22887cf5878367d9a6997f8)) -- **input:** set aria-label attr when label passed ([#462](https://github.com/core-ds/core-components/issues/462)) ([c8e4489](https://github.com/core-ds/core-components/commit/c8e448929e9f1a63e9391dda4db2b0d3a7d94902)) -- **input-autocomplete:** fix mousedown issue ([#473](https://github.com/core-ds/core-components/issues/473)) ([889d5ff](https://github.com/core-ds/core-components/commit/889d5ffa35a6f2163107b646165dc2ecd2401887)) -- add fallback for IE for width: max-content ([22a88bb](https://github.com/core-ds/core-components/commit/22a88bb40b40e8ea6d8a7d618c2957ed33751a86)) -- fix style for form-control and base-select ([51f9800](https://github.com/core-ds/core-components/commit/51f9800f13a3c4d682be310fe155c2aaddcc7191)) -- **picker-button:** fix test ([639fbe6](https://github.com/core-ds/core-components/commit/639fbe69f5771e5ffbff5fe65a5e46d009a6bd7c)) +* **amount:** fix story ([#463](https://github.com/core-ds/core-components/issues/463)) ([3e1d6c1](https://github.com/core-ds/core-components/commit/3e1d6c178cc7b0305b0f82e79588bf4d1fa40f91)) +* **calendar:** fix years-table position ([#474](https://github.com/core-ds/core-components/issues/474)) ([0f8cfe2](https://github.com/core-ds/core-components/commit/0f8cfe2b7405989f69d4df964bc2df7858c20ac6)) +* **input:** prevent autocomplete to change bgcolor ([#468](https://github.com/core-ds/core-components/issues/468)) ([d00abe3](https://github.com/core-ds/core-components/commit/d00abe396fad28d6e22887cf5878367d9a6997f8)) +* **input:** set aria-label attr when label passed ([#462](https://github.com/core-ds/core-components/issues/462)) ([c8e4489](https://github.com/core-ds/core-components/commit/c8e448929e9f1a63e9391dda4db2b0d3a7d94902)) +* **input-autocomplete:** fix mousedown issue ([#473](https://github.com/core-ds/core-components/issues/473)) ([889d5ff](https://github.com/core-ds/core-components/commit/889d5ffa35a6f2163107b646165dc2ecd2401887)) +* add fallback for IE for width: max-content ([22a88bb](https://github.com/core-ds/core-components/commit/22a88bb40b40e8ea6d8a7d618c2957ed33751a86)) +* fix style for form-control and base-select ([51f9800](https://github.com/core-ds/core-components/commit/51f9800f13a3c4d682be310fe155c2aaddcc7191)) +* **picker-button:** fix test ([639fbe6](https://github.com/core-ds/core-components/commit/639fbe69f5771e5ffbff5fe65a5e46d009a6bd7c)) ## [7.0.0](https://github.com/core-ds/core-components/compare/v6.0.0...v7.0.0) (2020-12-30) + ### Features -- read-only state ([#459](https://github.com/core-ds/core-components/issues/459)) ([ed087c7](https://github.com/core-ds/core-components/commit/ed087c7f0440cb7ebdeb2883a3c3998c3c48fa30)) -- **checkbox:** size m ([9fdbf2b](https://github.com/core-ds/core-components/commit/9fdbf2ba938a5ef336020c17041ceaa6c524f1b0)) -- **collapse:** add component ([eea2a52](https://github.com/core-ds/core-components/commit/eea2a52de14dbada541735b7684090aee17a2bcd)) -- **collapse:** codestyle fixes ([74b780a](https://github.com/core-ds/core-components/commit/74b780a51fc0fb80b810e2e621fc08a1e0ca2dc6)) -- **collapse:** codestyle fixes again ([1cd37b7](https://github.com/core-ds/core-components/commit/1cd37b7894cc3b71dc29359c297ba15b261dea08)) -- **collapse:** fix icon ([5f64a69](https://github.com/core-ds/core-components/commit/5f64a69838d2e6803e0d744ce5b3699eefb600f8)) -- **collapse:** fixes ([81d48d0](https://github.com/core-ds/core-components/commit/81d48d0674be40241f781487df47c5fff6ad9658)) -- **collapse:** forgotten ref ([3a256fb](https://github.com/core-ds/core-components/commit/3a256fb74380b70bca89c9f491836caf5078e9cb)) -- **core-components-fade:** add fade ([459d2c0](https://github.com/core-ds/core-components/commit/459d2c0111f0ab9a3fd6a22c46ed27cbcd1df6e0)) -- **core-components-modal:** add modal ([2a71f1b](https://github.com/core-ds/core-components/commit/2a71f1bb2296306df359c9f051fbef44ca0abe6b)) -- **core-components-trap-focus:** add trap-focus ([a5be636](https://github.com/core-ds/core-components/commit/a5be6367b5a1683dae00a13dea1ab5bc103083cc)) -- **link:** simplify link without addons, fixes [#406](https://github.com/core-ds/core-components/issues/406) ([37288e4](https://github.com/core-ds/core-components/commit/37288e45eb529fcabdf9dc79e0cd04ba015a7d4e)) -- **modal:** hide ([9d02eba](https://github.com/core-ds/core-components/commit/9d02eba13214038b483dc43d696f38328a95c597)) -- **picker-button:** simplify picker-button using colorless icons ([bd0bdba](https://github.com/core-ds/core-components/commit/bd0bdbaa8425bca05b209d7680c9ecadb65235e1)) -- **radio:** size m ([c8dfb66](https://github.com/core-ds/core-components/commit/c8dfb66f5a5b3ab5b904edc57ac88ec6003b02ba)) -- **select:** add empty list placeholder prop ([#438](https://github.com/core-ds/core-components/issues/438)) ([75b0c9c](https://github.com/core-ds/core-components/commit/75b0c9c7824b0fcb6d4ae3e238d2eb858d615808)) -- **select:** popoverPosition, render to body, test issues ([#428](https://github.com/core-ds/core-components/issues/428)) ([7688ec7](https://github.com/core-ds/core-components/commit/7688ec74bce41dac4fff6fd36a61723f7ce1b9d3)), closes [#429](https://github.com/core-ds/core-components/issues/429) -- **select-with-tags:** add select with tags ([#435](https://github.com/core-ds/core-components/issues/435)) ([bc42165](https://github.com/core-ds/core-components/commit/bc42165b73e2c50455534c5c7f7aec4a5d155f75)) -- **themes:** arrow transform var with click theme ([35d4ef2](https://github.com/core-ds/core-components/commit/35d4ef2db379391c58919445e161c2234b1b16a9)) -- **themes:** fixed click theme for tag ([c0b4fad](https://github.com/core-ds/core-components/commit/c0b4fada71b1f44b5aead6e3a2b51dcccaacb0c4)) -- **themes:** updated tabs border colors ([5a41d86](https://github.com/core-ds/core-components/commit/5a41d86b23fd961e0e7b8a214906363551ae0e41)) - -### Bug Fixes - -- **space:** removed excess div ([776e093](https://github.com/core-ds/core-components/commit/776e09393cc74eb31e4e56d3fba29a797f813a7f)) -- snapshots ([6d387a8](https://github.com/core-ds/core-components/commit/6d387a802a5eb1a5b150cb47ec35b5cbe3f086d7)) -- **calendar-range:** fix snapshot ([a135dde](https://github.com/core-ds/core-components/commit/a135ddee4ae99c576df85133984a247231fbb786)) -- **core-components-\*:** fix class properties transform ([f407938](https://github.com/core-ds/core-components/commit/f4079384388728251fd90154758fc4aa100f50d6)) -- **core-components-\*:** fix undefined refs ([ea5dac0](https://github.com/core-ds/core-components/commit/ea5dac0c5e4371a7224c0a2eddbd80a257675961)) -- **core-components-\*:** portal related issues ([a5735fb](https://github.com/core-ds/core-components/commit/a5735fbc17110372464fdc7fa0c59bd072c1b525)) -- **core-components-\*:** remove optional chaining to fix build issues ([75b0e7a](https://github.com/core-ds/core-components/commit/75b0e7a701c1f2891533d1242e7c83a83854f414)) -- **core-components-modal:** fix lint issues ([5fc1eb4](https://github.com/core-ds/core-components/commit/5fc1eb4c4a42dde687e2255e6a544b7a0e1b193f)) -- **core-components-portal:** update portal ([5638163](https://github.com/core-ds/core-components/commit/5638163e98e6c0c4a9ea3254761fe1fdb739c78e)) -- **core-components-vars:** import colors-transparent in index ([2109973](https://github.com/core-ds/core-components/commit/2109973ecfd4549f0cb2d711ee19ddd07faa415d)) -- **divider:** missed vars ([afeb14e](https://github.com/core-ds/core-components/commit/afeb14ea21281d49fdd24a456f4f18aaa6452cc9)) -- **modal:** fix class properties transform ([f6a1de5](https://github.com/core-ds/core-components/commit/f6a1de5b769bcf7605cc992a7e9ebf63445d1169)) -- **modal:** fix comments issues ([3c5c9e2](https://github.com/core-ds/core-components/commit/3c5c9e2704070a41cc466fd3ea7881ff13ea1edd)) -- **modal:** fix comments issues ([dd8370f](https://github.com/core-ds/core-components/commit/dd8370f79264d29c5de5b5fa558339cf98384486)) -- **portal:** revert "portal related issues" ([407489a](https://github.com/core-ds/core-components/commit/407489a4278f16806900e97fd2af3655e5b8b071)) -- **portal:** revert "update portal" ([d93aeb1](https://github.com/core-ds/core-components/commit/d93aeb1afdbef0c590d1586c7cd0c6d66f89da9b)) -- **themes:** fixed click select theme ([68dd29e](https://github.com/core-ds/core-components/commit/68dd29e6e0dcbdf4378687e9550d02c875d11b20)) +* read-only state ([#459](https://github.com/core-ds/core-components/issues/459)) ([ed087c7](https://github.com/core-ds/core-components/commit/ed087c7f0440cb7ebdeb2883a3c3998c3c48fa30)) +* **checkbox:** size m ([9fdbf2b](https://github.com/core-ds/core-components/commit/9fdbf2ba938a5ef336020c17041ceaa6c524f1b0)) +* **collapse:** add component ([eea2a52](https://github.com/core-ds/core-components/commit/eea2a52de14dbada541735b7684090aee17a2bcd)) +* **collapse:** codestyle fixes ([74b780a](https://github.com/core-ds/core-components/commit/74b780a51fc0fb80b810e2e621fc08a1e0ca2dc6)) +* **collapse:** codestyle fixes again ([1cd37b7](https://github.com/core-ds/core-components/commit/1cd37b7894cc3b71dc29359c297ba15b261dea08)) +* **collapse:** fix icon ([5f64a69](https://github.com/core-ds/core-components/commit/5f64a69838d2e6803e0d744ce5b3699eefb600f8)) +* **collapse:** fixes ([81d48d0](https://github.com/core-ds/core-components/commit/81d48d0674be40241f781487df47c5fff6ad9658)) +* **collapse:** forgotten ref ([3a256fb](https://github.com/core-ds/core-components/commit/3a256fb74380b70bca89c9f491836caf5078e9cb)) +* **core-components-fade:** add fade ([459d2c0](https://github.com/core-ds/core-components/commit/459d2c0111f0ab9a3fd6a22c46ed27cbcd1df6e0)) +* **core-components-modal:** add modal ([2a71f1b](https://github.com/core-ds/core-components/commit/2a71f1bb2296306df359c9f051fbef44ca0abe6b)) +* **core-components-trap-focus:** add trap-focus ([a5be636](https://github.com/core-ds/core-components/commit/a5be6367b5a1683dae00a13dea1ab5bc103083cc)) +* **link:** simplify link without addons, fixes [#406](https://github.com/core-ds/core-components/issues/406) ([37288e4](https://github.com/core-ds/core-components/commit/37288e45eb529fcabdf9dc79e0cd04ba015a7d4e)) +* **modal:** hide ([9d02eba](https://github.com/core-ds/core-components/commit/9d02eba13214038b483dc43d696f38328a95c597)) +* **picker-button:** simplify picker-button using colorless icons ([bd0bdba](https://github.com/core-ds/core-components/commit/bd0bdbaa8425bca05b209d7680c9ecadb65235e1)) +* **radio:** size m ([c8dfb66](https://github.com/core-ds/core-components/commit/c8dfb66f5a5b3ab5b904edc57ac88ec6003b02ba)) +* **select:** add empty list placeholder prop ([#438](https://github.com/core-ds/core-components/issues/438)) ([75b0c9c](https://github.com/core-ds/core-components/commit/75b0c9c7824b0fcb6d4ae3e238d2eb858d615808)) +* **select:** popoverPosition, render to body, test issues ([#428](https://github.com/core-ds/core-components/issues/428)) ([7688ec7](https://github.com/core-ds/core-components/commit/7688ec74bce41dac4fff6fd36a61723f7ce1b9d3)), closes [#429](https://github.com/core-ds/core-components/issues/429) +* **select-with-tags:** add select with tags ([#435](https://github.com/core-ds/core-components/issues/435)) ([bc42165](https://github.com/core-ds/core-components/commit/bc42165b73e2c50455534c5c7f7aec4a5d155f75)) +* **themes:** arrow transform var with click theme ([35d4ef2](https://github.com/core-ds/core-components/commit/35d4ef2db379391c58919445e161c2234b1b16a9)) +* **themes:** fixed click theme for tag ([c0b4fad](https://github.com/core-ds/core-components/commit/c0b4fada71b1f44b5aead6e3a2b51dcccaacb0c4)) +* **themes:** updated tabs border colors ([5a41d86](https://github.com/core-ds/core-components/commit/5a41d86b23fd961e0e7b8a214906363551ae0e41)) + + +### Bug Fixes + +* **space:** removed excess div ([776e093](https://github.com/core-ds/core-components/commit/776e09393cc74eb31e4e56d3fba29a797f813a7f)) +* snapshots ([6d387a8](https://github.com/core-ds/core-components/commit/6d387a802a5eb1a5b150cb47ec35b5cbe3f086d7)) +* **calendar-range:** fix snapshot ([a135dde](https://github.com/core-ds/core-components/commit/a135ddee4ae99c576df85133984a247231fbb786)) +* **core-components-*:** fix class properties transform ([f407938](https://github.com/core-ds/core-components/commit/f4079384388728251fd90154758fc4aa100f50d6)) +* **core-components-*:** fix undefined refs ([ea5dac0](https://github.com/core-ds/core-components/commit/ea5dac0c5e4371a7224c0a2eddbd80a257675961)) +* **core-components-*:** portal related issues ([a5735fb](https://github.com/core-ds/core-components/commit/a5735fbc17110372464fdc7fa0c59bd072c1b525)) +* **core-components-*:** remove optional chaining to fix build issues ([75b0e7a](https://github.com/core-ds/core-components/commit/75b0e7a701c1f2891533d1242e7c83a83854f414)) +* **core-components-modal:** fix lint issues ([5fc1eb4](https://github.com/core-ds/core-components/commit/5fc1eb4c4a42dde687e2255e6a544b7a0e1b193f)) +* **core-components-portal:** update portal ([5638163](https://github.com/core-ds/core-components/commit/5638163e98e6c0c4a9ea3254761fe1fdb739c78e)) +* **core-components-vars:** import colors-transparent in index ([2109973](https://github.com/core-ds/core-components/commit/2109973ecfd4549f0cb2d711ee19ddd07faa415d)) +* **divider:** missed vars ([afeb14e](https://github.com/core-ds/core-components/commit/afeb14ea21281d49fdd24a456f4f18aaa6452cc9)) +* **modal:** fix class properties transform ([f6a1de5](https://github.com/core-ds/core-components/commit/f6a1de5b769bcf7605cc992a7e9ebf63445d1169)) +* **modal:** fix comments issues ([3c5c9e2](https://github.com/core-ds/core-components/commit/3c5c9e2704070a41cc466fd3ea7881ff13ea1edd)) +* **modal:** fix comments issues ([dd8370f](https://github.com/core-ds/core-components/commit/dd8370f79264d29c5de5b5fa558339cf98384486)) +* **portal:** revert "portal related issues" ([407489a](https://github.com/core-ds/core-components/commit/407489a4278f16806900e97fd2af3655e5b8b071)) +* **portal:** revert "update portal" ([d93aeb1](https://github.com/core-ds/core-components/commit/d93aeb1afdbef0c590d1586c7cd0c6d66f89da9b)) +* **themes:** fixed click select theme ([68dd29e](https://github.com/core-ds/core-components/commit/68dd29e6e0dcbdf4378687e9550d02c875d11b20)) ## [6.0.0](https://github.com/core-ds/core-components/compare/v5.10.0...v6.0.0) (2020-12-29) + ### Features -- **calendar-range:** add component ([#426](https://github.com/core-ds/core-components/issues/426)) ([7bf76d9](https://github.com/core-ds/core-components/commit/7bf76d9528ffae9b69bf6fdebf8a27e198393eaa)) -- **input-autocomplete:** dont close popover on input click ([#445](https://github.com/core-ds/core-components/issues/445)) ([5b49e54](https://github.com/core-ds/core-components/commit/5b49e542d3e4433024152ba6099d3992a4fc66e3)) -- **typography:** add default margins ([#446](https://github.com/core-ds/core-components/issues/446)) ([fb98d10](https://github.com/core-ds/core-components/commit/fb98d101651abfb7126dac3a7dee7226972f6a62)) -- change form-control styles ([#444](https://github.com/core-ds/core-components/issues/444)) ([2e464a8](https://github.com/core-ds/core-components/commit/2e464a87fba7ae6b60e0f58796f8663c3e456239)) +* **calendar-range:** add component ([#426](https://github.com/core-ds/core-components/issues/426)) ([7bf76d9](https://github.com/core-ds/core-components/commit/7bf76d9528ffae9b69bf6fdebf8a27e198393eaa)) +* **input-autocomplete:** dont close popover on input click ([#445](https://github.com/core-ds/core-components/issues/445)) ([5b49e54](https://github.com/core-ds/core-components/commit/5b49e542d3e4433024152ba6099d3992a4fc66e3)) +* **typography:** add default margins ([#446](https://github.com/core-ds/core-components/issues/446)) ([fb98d10](https://github.com/core-ds/core-components/commit/fb98d101651abfb7126dac3a7dee7226972f6a62)) +* change form-control styles ([#444](https://github.com/core-ds/core-components/issues/444)) ([2e464a8](https://github.com/core-ds/core-components/commit/2e464a87fba7ae6b60e0f58796f8663c3e456239)) + ### Bug Fixes -- **calendar:** snapshots timezone issue ([#448](https://github.com/core-ds/core-components/issues/448)) ([18f8080](https://github.com/core-ds/core-components/commit/18f80805499a78cec06377472cdf8d0e81b2378d)) -- **themes:** add missing variables import ([#449](https://github.com/core-ds/core-components/issues/449)) ([456c045](https://github.com/core-ds/core-components/commit/456c0450b484863287c24088eefc51d6d7396570)), closes [#442](https://github.com/core-ds/core-components/issues/442) -- **tooltip:** execute tooltip's target missing callbacks ([#443](https://github.com/core-ds/core-components/issues/443)) ([237cef1](https://github.com/core-ds/core-components/commit/237cef12805284bc036ddc59789771a3ad9c9210)) +* **calendar:** snapshots timezone issue ([#448](https://github.com/core-ds/core-components/issues/448)) ([18f8080](https://github.com/core-ds/core-components/commit/18f80805499a78cec06377472cdf8d0e81b2378d)) +* **themes:** add missing variables import ([#449](https://github.com/core-ds/core-components/issues/449)) ([456c045](https://github.com/core-ds/core-components/commit/456c0450b484863287c24088eefc51d6d7396570)), closes [#442](https://github.com/core-ds/core-components/issues/442) +* **tooltip:** execute tooltip's target missing callbacks ([#443](https://github.com/core-ds/core-components/issues/443)) ([237cef1](https://github.com/core-ds/core-components/commit/237cef12805284bc036ddc59789771a3ad9c9210)) ## [5.10.0](https://github.com/core-ds/core-components/compare/v5.9.1...v5.10.0) (2020-12-28) + ### Features -- **space:** codestyle ([36994db](https://github.com/core-ds/core-components/commit/36994db62086c32f4f583454e880bff915721193)) -- **space:** codestyle ([fc6d760](https://github.com/core-ds/core-components/commit/fc6d7604be3803cf6499dc7d2f034922a7858524)) -- **space:** first Space tests ([9434b91](https://github.com/core-ds/core-components/commit/9434b910f20737b58194c006a4d4d47fb931767f)) -- **space:** just add Space component ([945a456](https://github.com/core-ds/core-components/commit/945a45635e6a90f295c27a61dac9ec08676669c3)) -- **space:** lil fixes ([b9c588a](https://github.com/core-ds/core-components/commit/b9c588ab97e95e01d9962296d453b9bb2f712126)) -- **space:** remove label and more knobs ([e2af148](https://github.com/core-ds/core-components/commit/e2af148d1dc603495e2d6eb559502c6f363aa7f0)) -- **space:** remove label and more knobs 2 ([b85b459](https://github.com/core-ds/core-components/commit/b85b4595303c2ac2e2516db17b562d08da833204)) -- **space:** version ([f262441](https://github.com/core-ds/core-components/commit/f26244139550d96cc2503c60173d0bae7e9dbea5)) +* **space:** codestyle ([36994db](https://github.com/core-ds/core-components/commit/36994db62086c32f4f583454e880bff915721193)) +* **space:** codestyle ([fc6d760](https://github.com/core-ds/core-components/commit/fc6d7604be3803cf6499dc7d2f034922a7858524)) +* **space:** first Space tests ([9434b91](https://github.com/core-ds/core-components/commit/9434b910f20737b58194c006a4d4d47fb931767f)) +* **space:** just add Space component ([945a456](https://github.com/core-ds/core-components/commit/945a45635e6a90f295c27a61dac9ec08676669c3)) +* **space:** lil fixes ([b9c588a](https://github.com/core-ds/core-components/commit/b9c588ab97e95e01d9962296d453b9bb2f712126)) +* **space:** remove label and more knobs ([e2af148](https://github.com/core-ds/core-components/commit/e2af148d1dc603495e2d6eb559502c6f363aa7f0)) +* **space:** remove label and more knobs 2 ([b85b459](https://github.com/core-ds/core-components/commit/b85b4595303c2ac2e2516db17b562d08da833204)) +* **space:** version ([f262441](https://github.com/core-ds/core-components/commit/f26244139550d96cc2503c60173d0bae7e9dbea5)) ### [5.9.1](https://github.com/core-ds/core-components/compare/v5.9.0...v5.9.1) (2020-12-24) + ### Bug Fixes -- **calendar:** set max date to years calculation ([#441](https://github.com/core-ds/core-components/issues/441)) ([ec9fd36](https://github.com/core-ds/core-components/commit/ec9fd36c278bcb8cca209eb5a15690c5ac0dd3d8)) +* **calendar:** set max date to years calculation ([#441](https://github.com/core-ds/core-components/issues/441)) ([ec9fd36](https://github.com/core-ds/core-components/commit/ec9fd36c278bcb8cca209eb5a15690c5ac0dd3d8)) ## [5.9.0](https://github.com/core-ds/core-components/compare/v5.8.0...v5.9.0) (2020-12-21) + ### Features -- **select:** add exporting select utils ([#436](https://github.com/core-ds/core-components/issues/436)) ([0499ae9](https://github.com/core-ds/core-components/commit/0499ae9f36731d6b25a4f2501c1c760afdb8a687)) +* **select:** add exporting select utils ([#436](https://github.com/core-ds/core-components/issues/436)) ([0499ae9](https://github.com/core-ds/core-components/commit/0499ae9f36731d6b25a4f2501c1c760afdb8a687)) + ### Bug Fixes -- change icons imports paths ([#437](https://github.com/core-ds/core-components/issues/437)) ([e3d4e25](https://github.com/core-ds/core-components/commit/e3d4e2504b282810973eab14201844cd084c4237)) +* change icons imports paths ([#437](https://github.com/core-ds/core-components/issues/437)) ([e3d4e25](https://github.com/core-ds/core-components/commit/e3d4e2504b282810973eab14201844cd084c4237)) ## [5.8.0](https://github.com/core-ds/core-components/compare/v5.7.0...v5.8.0) (2020-12-17) + ### Bug Fixes -- **calendar:** vars import ([b8cabec](https://github.com/core-ds/core-components/commit/b8cabec5811e2ac0839d05335edee568dc360f54)) -- **calendar-input:** vars import, fix pattern ([f1f9336](https://github.com/core-ds/core-components/commit/f1f9336d7ae5ed62b4ee5123636fe1950bc25f34)) +* **calendar:** vars import ([b8cabec](https://github.com/core-ds/core-components/commit/b8cabec5811e2ac0839d05335edee568dc360f54)) +* **calendar-input:** vars import, fix pattern ([f1f9336](https://github.com/core-ds/core-components/commit/f1f9336d7ae5ed62b4ee5123636fe1950bc25f34)) ## [5.7.0](https://github.com/core-ds/core-components/compare/v5.6.0...v5.7.0) (2020-12-15) + ### Features -- **loader:** updated loader animation ([ec6b50c](https://github.com/core-ds/core-components/commit/ec6b50cf7942d93c89c4c5d0d8e98b3a96ab3509)) -- **slider-input:** use numeric mobile keyboard ([a866dab](https://github.com/core-ds/core-components/commit/a866dabf667f53e62733bd173f16b14c158e2368)) +* **loader:** updated loader animation ([ec6b50c](https://github.com/core-ds/core-components/commit/ec6b50cf7942d93c89c4c5d0d8e98b3a96ab3509)) +* **slider-input:** use numeric mobile keyboard ([a866dab](https://github.com/core-ds/core-components/commit/a866dabf667f53e62733bd173f16b14c158e2368)) + ### Bug Fixes -- **calendar-input:** fix focus issue ([60af1b9](https://github.com/core-ds/core-components/commit/60af1b92d076ce393ac308b64b93af182a68c933)) -- **calendar-input:** fix story ([ff2732d](https://github.com/core-ds/core-components/commit/ff2732da4c7dc35819aebdfdc224472d932a42a2)) -- **circular-progress-bar:** change max-height ([b587c87](https://github.com/core-ds/core-components/commit/b587c8747fe242b32ea11ebad38ef960cf5669b6)) -- **loader:** fixed animation start ([4df4712](https://github.com/core-ds/core-components/commit/4df47121429793652f9c838ec306072136f75931)) -- **picker-button:** remove global style ([281ed10](https://github.com/core-ds/core-components/commit/281ed10010756c8337cfa1965da2a58e8a1dfe42)) +* **calendar-input:** fix focus issue ([60af1b9](https://github.com/core-ds/core-components/commit/60af1b92d076ce393ac308b64b93af182a68c933)) +* **calendar-input:** fix story ([ff2732d](https://github.com/core-ds/core-components/commit/ff2732da4c7dc35819aebdfdc224472d932a42a2)) +* **circular-progress-bar:** change max-height ([b587c87](https://github.com/core-ds/core-components/commit/b587c8747fe242b32ea11ebad38ef960cf5669b6)) +* **loader:** fixed animation start ([4df4712](https://github.com/core-ds/core-components/commit/4df47121429793652f9c838ec306072136f75931)) +* **picker-button:** remove global style ([281ed10](https://github.com/core-ds/core-components/commit/281ed10010756c8337cfa1965da2a58e8a1dfe42)) ## [5.6.0](https://github.com/core-ds/core-components/compare/v5.5.0...v5.6.0) (2020-12-11) + ### Features -- **calendar:** add component ([#376](https://github.com/core-ds/core-components/issues/376)) ([2994d02](https://github.com/core-ds/core-components/commit/2994d02b49ad172d601f0fc63f89dea20896fd7d)), closes [#2](https://github.com/core-ds/core-components/issues/2) [#2](https://github.com/core-ds/core-components/issues/2) [#413](https://github.com/core-ds/core-components/issues/413) +* **calendar:** add component ([#376](https://github.com/core-ds/core-components/issues/376)) ([2994d02](https://github.com/core-ds/core-components/commit/2994d02b49ad172d601f0fc63f89dea20896fd7d)), closes [#2](https://github.com/core-ds/core-components/issues/2) [#2](https://github.com/core-ds/core-components/issues/2) [#413](https://github.com/core-ds/core-components/issues/413) + ### Bug Fixes -- **themes:** fix corp button themes ([#425](https://github.com/core-ds/core-components/issues/425)) ([2e49682](https://github.com/core-ds/core-components/commit/2e4968281a01c197bf98c37b791022fd8182d3a5)) -- snapshots ([03a70ef](https://github.com/core-ds/core-components/commit/03a70ef8c30e901347e718784a107d23bad127d6)) +* **themes:** fix corp button themes ([#425](https://github.com/core-ds/core-components/issues/425)) ([2e49682](https://github.com/core-ds/core-components/commit/2e4968281a01c197bf98c37b791022fd8182d3a5)) +* snapshots ([03a70ef](https://github.com/core-ds/core-components/commit/03a70ef8c30e901347e718784a107d23bad127d6)) ## [5.5.0](https://github.com/core-ds/core-components/compare/v5.4.1...v5.5.0) (2020-12-11) + ### Features -- **amount-input:** added integerLength prop ([881af44](https://github.com/core-ds/core-components/commit/881af44b1823560d522ac07a7359cc6c5739ba0e)) -- **button:** add conditions ([5f034f3](https://github.com/core-ds/core-components/commit/5f034f382fcb1dc1304c9c0b9ccdcff765c5c7fd)) -- **button:** add css to button ([34b23ed](https://github.com/core-ds/core-components/commit/34b23ed2885a39f00928c3df0e485d1966fe6ec0)) -- **button:** update snapshorts ([29c36ac](https://github.com/core-ds/core-components/commit/29c36ac278407a04be7726996bf50f54c150ba97)) -- **picker-button:** add compoonent PickerButton ([e14b73d](https://github.com/core-ds/core-components/commit/e14b73db302acd401010b9fd227e33de10eca9fc)) -- **themes:** add dark theme mixins ([#420](https://github.com/core-ds/core-components/issues/420)) ([6cfd317](https://github.com/core-ds/core-components/commit/6cfd31795e937e33cd37262b85057f3e977a900c)) -- **themes:** updated button mobile theme ([ebdf5a1](https://github.com/core-ds/core-components/commit/ebdf5a14b912bffcefe087b95d62d4a35531e09f)) -- **vars:** fresh tokens ([48f2591](https://github.com/core-ds/core-components/commit/48f2591d030e7852fbd239e7d91e4c4c2bed6468)) -- **vars:** new reverse shadows ([6c18699](https://github.com/core-ds/core-components/commit/6c18699b02044e1ba38561d0fcded98d89c67339)) +* **amount-input:** added integerLength prop ([881af44](https://github.com/core-ds/core-components/commit/881af44b1823560d522ac07a7359cc6c5739ba0e)) +* **button:** add conditions ([5f034f3](https://github.com/core-ds/core-components/commit/5f034f382fcb1dc1304c9c0b9ccdcff765c5c7fd)) +* **button:** add css to button ([34b23ed](https://github.com/core-ds/core-components/commit/34b23ed2885a39f00928c3df0e485d1966fe6ec0)) +* **button:** update snapshorts ([29c36ac](https://github.com/core-ds/core-components/commit/29c36ac278407a04be7726996bf50f54c150ba97)) +* **picker-button:** add compoonent PickerButton ([e14b73d](https://github.com/core-ds/core-components/commit/e14b73db302acd401010b9fd227e33de10eca9fc)) +* **themes:** add dark theme mixins ([#420](https://github.com/core-ds/core-components/issues/420)) ([6cfd317](https://github.com/core-ds/core-components/commit/6cfd31795e937e33cd37262b85057f3e977a900c)) +* **themes:** updated button mobile theme ([ebdf5a1](https://github.com/core-ds/core-components/commit/ebdf5a14b912bffcefe087b95d62d4a35531e09f)) +* **vars:** fresh tokens ([48f2591](https://github.com/core-ds/core-components/commit/48f2591d030e7852fbd239e7d91e4c4c2bed6468)) +* **vars:** new reverse shadows ([6c18699](https://github.com/core-ds/core-components/commit/6c18699b02044e1ba38561d0fcded98d89c67339)) + ### Bug Fixes -- delete extra cn ([#415](https://github.com/core-ds/core-components/issues/415)) ([d08966f](https://github.com/core-ds/core-components/commit/d08966fd00459d497640d27a27afa5d0d0fddab9)) -- **button:** design review fixes ([4eca9d1](https://github.com/core-ds/core-components/commit/4eca9d10185f6ffc42644086e679ba7f361cc4f1)) -- **list:** apply --list-marker-color only to marker ([5479f47](https://github.com/core-ds/core-components/commit/5479f47dd44fc8d9cfedb84f7787e5af84c1f41d)) -- **picker-button:** fix icon color ([f8d97b4](https://github.com/core-ds/core-components/commit/f8d97b44680fa2ace1539b11b5d0a318d45094aa)) +* delete extra cn ([#415](https://github.com/core-ds/core-components/issues/415)) ([d08966f](https://github.com/core-ds/core-components/commit/d08966fd00459d497640d27a27afa5d0d0fddab9)) +* **button:** design review fixes ([4eca9d1](https://github.com/core-ds/core-components/commit/4eca9d10185f6ffc42644086e679ba7f361cc4f1)) +* **list:** apply --list-marker-color only to marker ([5479f47](https://github.com/core-ds/core-components/commit/5479f47dd44fc8d9cfedb84f7787e5af84c1f41d)) +* **picker-button:** fix icon color ([f8d97b4](https://github.com/core-ds/core-components/commit/f8d97b44680fa2ace1539b11b5d0a318d45094aa)) ### [5.4.1](https://github.com/core-ds/core-components/compare/v5.4.0...v5.4.1) (2020-12-04) + ### Bug Fixes -- **themes:** remove imports from mixins ([4d878b5](https://github.com/core-ds/core-components/commit/4d878b59e46c1cfc1799182367421402af6462db)) +* **themes:** remove imports from mixins ([4d878b5](https://github.com/core-ds/core-components/commit/4d878b59e46c1cfc1799182367421402af6462db)) ## [5.4.0](https://github.com/core-ds/core-components/compare/v5.3.0...v5.4.0) (2020-12-03) + ### Features -- add inverted theme for link & button ([#405](https://github.com/core-ds/core-components/issues/405)) ([a3ccf39](https://github.com/core-ds/core-components/commit/a3ccf394369af6d5b0f8c8dd5d64a4b18eeb2155)) -- add update popover position prop ([#401](https://github.com/core-ds/core-components/issues/401)) ([5588870](https://github.com/core-ds/core-components/commit/5588870b663ba6547bf80853487da4620b2f74d6)) -- use disabled-cursor ([#399](https://github.com/core-ds/core-components/issues/399)) ([ba5ba74](https://github.com/core-ds/core-components/commit/ba5ba7492f2daf4974941130466dcffd3976662b)) -- **popover:** prevent flip ([#398](https://github.com/core-ds/core-components/issues/398)) ([c0c1723](https://github.com/core-ds/core-components/commit/c0c1723f15af7b8f09330bc5ce3ea549ea30afa1)) -- **select:** allow to use options as selected value ([#393](https://github.com/core-ds/core-components/issues/393)) ([a16f47a](https://github.com/core-ds/core-components/commit/a16f47ac6dd8f10c02a6ea38ec09963fab6f3942)) -- **select:** change optionslist shadow styles ([#397](https://github.com/core-ds/core-components/issues/397)) ([d13c1f8](https://github.com/core-ds/core-components/commit/d13c1f8eacd7a51152a065b5ed358515a3044c18)) +* add inverted theme for link & button ([#405](https://github.com/core-ds/core-components/issues/405)) ([a3ccf39](https://github.com/core-ds/core-components/commit/a3ccf394369af6d5b0f8c8dd5d64a4b18eeb2155)) +* add update popover position prop ([#401](https://github.com/core-ds/core-components/issues/401)) ([5588870](https://github.com/core-ds/core-components/commit/5588870b663ba6547bf80853487da4620b2f74d6)) +* use disabled-cursor ([#399](https://github.com/core-ds/core-components/issues/399)) ([ba5ba74](https://github.com/core-ds/core-components/commit/ba5ba7492f2daf4974941130466dcffd3976662b)) +* **popover:** prevent flip ([#398](https://github.com/core-ds/core-components/issues/398)) ([c0c1723](https://github.com/core-ds/core-components/commit/c0c1723f15af7b8f09330bc5ce3ea549ea30afa1)) +* **select:** allow to use options as selected value ([#393](https://github.com/core-ds/core-components/issues/393)) ([a16f47a](https://github.com/core-ds/core-components/commit/a16f47ac6dd8f10c02a6ea38ec09963fab6f3942)) +* **select:** change optionslist shadow styles ([#397](https://github.com/core-ds/core-components/issues/397)) ([d13c1f8](https://github.com/core-ds/core-components/commit/d13c1f8eacd7a51152a065b5ed358515a3044c18)) + ### Bug Fixes -- **circular-progress-bar:** fix label width ([#395](https://github.com/core-ds/core-components/issues/395)) ([1d3cb6b](https://github.com/core-ds/core-components/commit/1d3cb6b134bc85febd89ad8183f537abbda18482)), closes [#394](https://github.com/core-ds/core-components/issues/394) -- **mq:** use addListener and removeListener ([#402](https://github.com/core-ds/core-components/issues/402)) ([9918383](https://github.com/core-ds/core-components/commit/9918383c31b07ea2aad253765f2f17a88d00b943)) -- theme-switcher select value ([845de5d](https://github.com/core-ds/core-components/commit/845de5d5124a2459cad2cf40dd015d6580e68700)) +* **circular-progress-bar:** fix label width ([#395](https://github.com/core-ds/core-components/issues/395)) ([1d3cb6b](https://github.com/core-ds/core-components/commit/1d3cb6b134bc85febd89ad8183f537abbda18482)), closes [#394](https://github.com/core-ds/core-components/issues/394) +* **mq:** use addListener and removeListener ([#402](https://github.com/core-ds/core-components/issues/402)) ([9918383](https://github.com/core-ds/core-components/commit/9918383c31b07ea2aad253765f2f17a88d00b943)) +* theme-switcher select value ([845de5d](https://github.com/core-ds/core-components/commit/845de5d5124a2459cad2cf40dd015d6580e68700)) ## [5.3.0](https://github.com/core-ds/core-components/compare/v5.2.0...v5.3.0) (2020-11-27) + ### Features -- **core-components-card-image:** add cardImage component ([#326](https://github.com/core-ds/core-components/issues/326)) ([06901af](https://github.com/core-ds/core-components/commit/06901af839f48e5051fc6195446687b756420fc7)) -- **core-components-notification:** add component ([#357](https://github.com/core-ds/core-components/issues/357)) ([c6644a0](https://github.com/core-ds/core-components/commit/c6644a018b97dfc68e327bcbcff2edae802921be)), closes [#351](https://github.com/core-ds/core-components/issues/351) -- improve theme switcher ([#386](https://github.com/core-ds/core-components/issues/386)) ([9c5c4ec](https://github.com/core-ds/core-components/commit/9c5c4ec79e0940f54a76c83bd7017649a0f17093)) +* **core-components-card-image:** add cardImage component ([#326](https://github.com/core-ds/core-components/issues/326)) ([06901af](https://github.com/core-ds/core-components/commit/06901af839f48e5051fc6195446687b756420fc7)) +* **core-components-notification:** add component ([#357](https://github.com/core-ds/core-components/issues/357)) ([c6644a0](https://github.com/core-ds/core-components/commit/c6644a018b97dfc68e327bcbcff2edae802921be)), closes [#351](https://github.com/core-ds/core-components/issues/351) +* improve theme switcher ([#386](https://github.com/core-ds/core-components/issues/386)) ([9c5c4ec](https://github.com/core-ds/core-components/commit/9c5c4ec79e0940f54a76c83bd7017649a0f17093)) + ### Bug Fixes -- **confirmation:** fix symbols deleting ([#392](https://github.com/core-ds/core-components/issues/392)) ([fee41f1](https://github.com/core-ds/core-components/commit/fee41f17dfb84f9af2ad40e6150e1026ff07ada9)) +* **confirmation:** fix symbols deleting ([#392](https://github.com/core-ds/core-components/issues/392)) ([fee41f1](https://github.com/core-ds/core-components/commit/fee41f17dfb84f9af2ad40e6150e1026ff07ada9)) ## [5.2.0](https://github.com/core-ds/core-components/compare/v5.1.0...v5.2.0) (2020-11-25) + ### Features -- **core-components-typography:** add responsive title ([#362](https://github.com/core-ds/core-components/issues/362)) ([d3af0cd](https://github.com/core-ds/core-components/commit/d3af0cd52bcdbf92a1716e993104360acafcdc61)) +* **core-components-typography:** add responsive title ([#362](https://github.com/core-ds/core-components/issues/362)) ([d3af0cd](https://github.com/core-ds/core-components/commit/d3af0cd52bcdbf92a1716e993104360acafcdc61)) + ### Bug Fixes -- fix ie bundle ([#385](https://github.com/core-ds/core-components/issues/385)) ([9ca6024](https://github.com/core-ds/core-components/commit/9ca60245991903600c0308c9cd30955f39bd914f)) +* fix ie bundle ([#385](https://github.com/core-ds/core-components/issues/385)) ([9ca6024](https://github.com/core-ds/core-components/commit/9ca60245991903600c0308c9cd30955f39bd914f)) # [5.1.0](https://github.com/core-ds/core-components/compare/v5.0.0...v5.1.0) (2020-11-25) + ### Features -- **button:** design review fixes ([e8f5faf](https://github.com/core-ds/core-components/commit/e8f5faf42b2ea98eff7d5914076a1916008b13b9)) -- **checkbox:** improved theming ([cb1d196](https://github.com/core-ds/core-components/commit/cb1d196ade34622d5b92fc0ec5c20af5f5e27d3c)) -- **radio:** improved theming ([3dcb532](https://github.com/core-ds/core-components/commit/3dcb532b8b6d9a4e610a56b557a54f6c68e6ce46)) -- **switch:** improved theming ([b4ecc39](https://github.com/core-ds/core-components/commit/b4ecc399c706e1de7086e255e57219e3907414e0)) -- **themes:** experimental click theme for checkbox/radio/switch ([f5b2263](https://github.com/core-ds/core-components/commit/f5b22636af4b68b12b42158737e11af59e714848)) -- **themes:** updated click theme for tabs size m ([56dd5b6](https://github.com/core-ds/core-components/commit/56dd5b6530085de0a1dc6fc7be6cb78825c438f4)) +* **button:** design review fixes ([e8f5faf](https://github.com/core-ds/core-components/commit/e8f5faf42b2ea98eff7d5914076a1916008b13b9)) +* **checkbox:** improved theming ([cb1d196](https://github.com/core-ds/core-components/commit/cb1d196ade34622d5b92fc0ec5c20af5f5e27d3c)) +* **radio:** improved theming ([3dcb532](https://github.com/core-ds/core-components/commit/3dcb532b8b6d9a4e610a56b557a54f6c68e6ce46)) +* **switch:** improved theming ([b4ecc39](https://github.com/core-ds/core-components/commit/b4ecc399c706e1de7086e255e57219e3907414e0)) +* **themes:** experimental click theme for checkbox/radio/switch ([f5b2263](https://github.com/core-ds/core-components/commit/f5b22636af4b68b12b42158737e11af59e714848)) +* **themes:** updated click theme for tabs size m ([56dd5b6](https://github.com/core-ds/core-components/commit/56dd5b6530085de0a1dc6fc7be6cb78825c438f4)) # [5.0.0](https://github.com/core-ds/core-components/compare/v4.5.1...v5.0.0) (2020-11-25) + ### Bug Fixes -- slightly better and safer ie fixes ([0e34b4f](https://github.com/core-ds/core-components/commit/0e34b4fb9800a435c05dc8f83146ce5617cf99a5)) +* slightly better and safer ie fixes ([0e34b4f](https://github.com/core-ds/core-components/commit/0e34b4fb9800a435c05dc8f83146ce5617cf99a5)) + ### Features -- remove extra vars, update docs ([#370](https://github.com/core-ds/core-components/issues/370)) ([af1b133](https://github.com/core-ds/core-components/commit/af1b1339e768e59a2377409bf164cc8c439bd3bf)) +* remove extra vars, update docs ([#370](https://github.com/core-ds/core-components/issues/370)) ([af1b133](https://github.com/core-ds/core-components/commit/af1b1339e768e59a2377409bf164cc8c439bd3bf)) + ### BREAKING CHANGES -- remove packages/vars/src/breakpoints.css +* remove packages/vars/src/breakpoints.css # Changelog @@ -1608,272 +1816,308 @@ All notable changes to this project will be documented in this file. See [standa ### [4.5.1](https://github.com/core-ds/core-components/compare/v4.5.0...v4.5.1) (2020-11-24) + ### Features -- **button:** updated addons margin, use gaps ([514fb86](https://github.com/core-ds/core-components/commit/514fb863e41956be7f4888e03a886ab7d35029b1)) -- **select:** change arrow icon ([6335973](https://github.com/core-ds/core-components/commit/63359734754308eeca217526d2f4f652f78fc79d)) +* **button:** updated addons margin, use gaps ([514fb86](https://github.com/core-ds/core-components/commit/514fb863e41956be7f4888e03a886ab7d35029b1)) +* **select:** change arrow icon ([6335973](https://github.com/core-ds/core-components/commit/63359734754308eeca217526d2f4f652f78fc79d)) + ### Bug Fixes -- **form-control:** fix height ([#380](https://github.com/core-ds/core-components/issues/380)) ([afc3722](https://github.com/core-ds/core-components/commit/afc3722dc08eb3f742eaec53be5b0233afad02c3)) +* **form-control:** fix height ([#380](https://github.com/core-ds/core-components/issues/380)) ([afc3722](https://github.com/core-ds/core-components/commit/afc3722dc08eb3f742eaec53be5b0233afad02c3)) ### [4.5.0](https://github.com/core-ds/core-components/compare/v4.4.1...v4.5.0) (2020-11-23) + ### Features -- **core-components-button:** added nowrap ([#365](https://github.com/core-ds/core-components/issues/365)) ([99a87eb](https://github.com/core-ds/core-components/commit/99a87ebd4c97e325b7724b70991b00ca121601da)) -- **core-components-spinner:** add spinner component ([#360](https://github.com/core-ds/core-components/issues/360)) ([8c6e453](https://github.com/core-ds/core-components/commit/8c6e45341b0ac6232e2fc89ed6860bb8ccbc371c)) -- **input-autocomplete:** revert arrow ([07f0ef4](https://github.com/core-ds/core-components/commit/07f0ef45a7cdd27132861932c7fa93ab0c00a024)) +* **core-components-button:** added nowrap ([#365](https://github.com/core-ds/core-components/issues/365)) ([99a87eb](https://github.com/core-ds/core-components/commit/99a87ebd4c97e325b7724b70991b00ca121601da)) +* **core-components-spinner:** add spinner component ([#360](https://github.com/core-ds/core-components/issues/360)) ([8c6e453](https://github.com/core-ds/core-components/commit/8c6e45341b0ac6232e2fc89ed6860bb8ccbc371c)) +* **input-autocomplete:** revert arrow ([07f0ef4](https://github.com/core-ds/core-components/commit/07f0ef45a7cdd27132861932c7fa93ab0c00a024)) + ### Bug Fixes -- **button:** show loader when href is set ([#374](https://github.com/core-ds/core-components/issues/374)) ([79d6750](https://github.com/core-ds/core-components/commit/79d675007a86fe1e36e77376ba7a3afa3b8045e8)) -- **plate:** remove redunadant className ([#373](https://github.com/core-ds/core-components/issues/373)) ([fdd6b3d](https://github.com/core-ds/core-components/commit/fdd6b3dabb0b5b607d6c84471640c73e65128d0e)), closes [#366](https://github.com/core-ds/core-components/issues/366) -- **radio:** fix input width ([#378](https://github.com/core-ds/core-components/issues/378)) ([369684e](https://github.com/core-ds/core-components/commit/369684ed2ce7aae07a00941e663accf82f8f2763)) +* **button:** show loader when href is set ([#374](https://github.com/core-ds/core-components/issues/374)) ([79d6750](https://github.com/core-ds/core-components/commit/79d675007a86fe1e36e77376ba7a3afa3b8045e8)) +* **plate:** remove redunadant className ([#373](https://github.com/core-ds/core-components/issues/373)) ([fdd6b3d](https://github.com/core-ds/core-components/commit/fdd6b3dabb0b5b607d6c84471640c73e65128d0e)), closes [#366](https://github.com/core-ds/core-components/issues/366) +* **radio:** fix input width ([#378](https://github.com/core-ds/core-components/issues/378)) ([369684e](https://github.com/core-ds/core-components/commit/369684ed2ce7aae07a00941e663accf82f8f2763)) ### [4.4.1](https://github.com/core-ds/core-components/compare/v4.4.0...v4.4.1) (2020-11-19) + ### Bug Fixes -- **select:** fix wrong options height ([18f26d9](https://github.com/core-ds/core-components/commit/18f26d9e6c0d9b99c4396f0b6d86b352014fac0a)) +* **select:** fix wrong options height ([18f26d9](https://github.com/core-ds/core-components/commit/18f26d9e6c0d9b99c4396f0b6d86b352014fac0a)) ## [4.4.0](https://github.com/core-ds/core-components/compare/v4.3.1...v4.4.0) (2020-11-17) + ### Features -- **core-components-tabs:** addons and container class name ([#361](https://github.com/core-ds/core-components/issues/361)) ([68f1322](https://github.com/core-ds/core-components/commit/68f1322436a5d083a3a98a4405b1d94540e0b8dc)) -- **core-components-vars:** add breakpoints ([#358](https://github.com/core-ds/core-components/issues/358)) ([9cd5699](https://github.com/core-ds/core-components/commit/9cd569915b4af8c3d92045aea23b2faa054ba241)) +* **core-components-tabs:** addons and container class name ([#361](https://github.com/core-ds/core-components/issues/361)) ([68f1322](https://github.com/core-ds/core-components/commit/68f1322436a5d083a3a98a4405b1d94540e0b8dc)) +* **core-components-vars:** add breakpoints ([#358](https://github.com/core-ds/core-components/issues/358)) ([9cd5699](https://github.com/core-ds/core-components/commit/9cd569915b4af8c3d92045aea23b2faa054ba241)) ### [4.3.1](https://github.com/core-ds/core-components/compare/v4.3.0...v4.3.1) (2020-11-16) ## [4.3.0](https://github.com/core-ds/core-components/compare/v4.2.0...v4.3.0) (2020-11-14) + ### Features -- **core-components-mq:** add component and hook ([#350](https://github.com/core-ds/core-components/issues/350)) ([6dbd11f](https://github.com/core-ds/core-components/commit/6dbd11f4e3dc369dd645638f46f49b4e0e6c13e6)) +* **core-components-mq:** add component and hook ([#350](https://github.com/core-ds/core-components/issues/350)) ([6dbd11f](https://github.com/core-ds/core-components/commit/6dbd11f4e3dc369dd645638f46f49b4e0e6c13e6)) ## [4.2.0](https://github.com/core-ds/core-components/compare/v4.1.0...v4.2.0) (2020-11-11) + ### Features -- icons & arrow ([#356](https://github.com/core-ds/core-components/issues/356)) ([e263356](https://github.com/core-ds/core-components/commit/e263356b7fd1537ae5c434ddc9c5cb074a2e7ab8)) +* icons & arrow ([#356](https://github.com/core-ds/core-components/issues/356)) ([e263356](https://github.com/core-ds/core-components/commit/e263356b7fd1537ae5c434ddc9c5cb074a2e7ab8)) ## [4.1.0](https://github.com/core-ds/core-components/compare/v4.0.4...v4.1.0) (2020-11-09) + ### Features -- **core-components-form-control:** set opactiy in disabled state ([#342](https://github.com/core-ds/core-components/issues/342)) ([586a8d1](https://github.com/core-ds/core-components/commit/586a8d15f1be9fe6ceea62ac2231c7ecb1125b7e)) -- **core-components-intl-phone-input:** add component ([#333](https://github.com/core-ds/core-components/issues/333)) ([4d7c71d](https://github.com/core-ds/core-components/commit/4d7c71d3ace0d44ba1045ab4d2774575e1db65f9)), closes [#336](https://github.com/core-ds/core-components/issues/336) [#334](https://github.com/core-ds/core-components/issues/334) -- **core-components-link:** add slots ([#337](https://github.com/core-ds/core-components/issues/337)) ([86f0886](https://github.com/core-ds/core-components/commit/86f0886129f9119a74a5a054232726f871c1634e)) -- **core-components-list-header:** add component ([#344](https://github.com/core-ds/core-components/issues/344)) ([cce69f3](https://github.com/core-ds/core-components/commit/cce69f30d1671d4344e0a85f62516e1f7a1f9266)) -- **core-components-plate:** add component ([62e18bf](https://github.com/core-ds/core-components/commit/62e18bf581651bca66a74c0d02b945522b452b4a)), closes [#340](https://github.com/core-ds/core-components/issues/340) +* **core-components-form-control:** set opactiy in disabled state ([#342](https://github.com/core-ds/core-components/issues/342)) ([586a8d1](https://github.com/core-ds/core-components/commit/586a8d15f1be9fe6ceea62ac2231c7ecb1125b7e)) +* **core-components-intl-phone-input:** add component ([#333](https://github.com/core-ds/core-components/issues/333)) ([4d7c71d](https://github.com/core-ds/core-components/commit/4d7c71d3ace0d44ba1045ab4d2774575e1db65f9)), closes [#336](https://github.com/core-ds/core-components/issues/336) [#334](https://github.com/core-ds/core-components/issues/334) +* **core-components-link:** add slots ([#337](https://github.com/core-ds/core-components/issues/337)) ([86f0886](https://github.com/core-ds/core-components/commit/86f0886129f9119a74a5a054232726f871c1634e)) +* **core-components-list-header:** add component ([#344](https://github.com/core-ds/core-components/issues/344)) ([cce69f3](https://github.com/core-ds/core-components/commit/cce69f30d1671d4344e0a85f62516e1f7a1f9266)) +* **core-components-plate:** add component ([62e18bf](https://github.com/core-ds/core-components/commit/62e18bf581651bca66a74c0d02b945522b452b4a)), closes [#340](https://github.com/core-ds/core-components/issues/340) ### [4.0.4](https://github.com/core-ds/core-components/compare/v4.0.3...v4.0.4) (2020-11-03) + ### Bug Fixes -- **core-components-amount-input:** missing handlers ([be512d5](https://github.com/core-ds/core-components/commit/be512d51fae847f2dd7a4e939adbbd93aadcff67)) +* **core-components-amount-input:** missing handlers ([be512d5](https://github.com/core-ds/core-components/commit/be512d51fae847f2dd7a4e939adbbd93aadcff67)) ### [4.0.3](https://github.com/core-ds/core-components/compare/v4.0.2...v4.0.3) (2020-10-30) ### [4.0.2](https://github.com/core-ds/core-components/compare/v4.0.1...v4.0.2) (2020-10-29) + ### Bug Fixes -- **core-components-confirmation:** fix showed keyboard on old devices ([#341](https://github.com/core-ds/core-components/issues/341)) ([7165ed1](https://github.com/core-ds/core-components/commit/7165ed1846910ffcef685cb35f8ec9afd802116f)) +* **core-components-confirmation:** fix showed keyboard on old devices ([#341](https://github.com/core-ds/core-components/issues/341)) ([7165ed1](https://github.com/core-ds/core-components/commit/7165ed1846910ffcef685cb35f8ec9afd802116f)) ### [4.0.1](https://github.com/core-ds/core-components/compare/v4.0.0...v4.0.1) (2020-10-28) + ### Features -- **core-components-select:** add missing changes ([053b512](https://github.com/core-ds/core-components/commit/053b512382028863c1bb2aa7c6c1e8296cbc29c4)) +* **core-components-select:** add missing changes ([053b512](https://github.com/core-ds/core-components/commit/053b512382028863c1bb2aa7c6c1e8296cbc29c4)) ## [4.0.0](https://github.com/core-ds/core-components/compare/v3.1.0...v4.0.0) (2020-10-27) + ### ⚠ BREAKING CHANGES -- **core-components-confirmation:** separate error and error text +* **core-components-confirmation:** separate error and error text -- feat(core-components-confirmation): fix margins +* feat(core-components-confirmation): fix margins ### Features -- **core-components-badge:** add component ([#330](https://github.com/core-ds/core-components/issues/330)) ([eb1c617](https://github.com/core-ds/core-components/commit/eb1c617ed03366060f7a60a9bd13396159cfce72)), closes [#327](https://github.com/core-ds/core-components/issues/327) -- **core-components-confirmation:** separate error and error text ([#329](https://github.com/core-ds/core-components/issues/329)) ([03fc4fb](https://github.com/core-ds/core-components/commit/03fc4fb85fd9f5636493fdf6d79440227c8a0be0)) -- **core-components-input:** hide clear if input is readonly ([#328](https://github.com/core-ds/core-components/issues/328)) ([93f7ba4](https://github.com/core-ds/core-components/commit/93f7ba429fb8e8f430d3dfadefe8375d6ea2e642)) -- **core-components-select:** inputs & types ([#323](https://github.com/core-ds/core-components/issues/323)) ([0f4d547](https://github.com/core-ds/core-components/commit/0f4d547c3a5792e095de2011db2c6c1e9dbfb386)) -- **core-components-slider-input:** update stories ([d6a2937](https://github.com/core-ds/core-components/commit/d6a29370739d15427c961b58c553d22c9df87799)) +* **core-components-badge:** add component ([#330](https://github.com/core-ds/core-components/issues/330)) ([eb1c617](https://github.com/core-ds/core-components/commit/eb1c617ed03366060f7a60a9bd13396159cfce72)), closes [#327](https://github.com/core-ds/core-components/issues/327) +* **core-components-confirmation:** separate error and error text ([#329](https://github.com/core-ds/core-components/issues/329)) ([03fc4fb](https://github.com/core-ds/core-components/commit/03fc4fb85fd9f5636493fdf6d79440227c8a0be0)) +* **core-components-input:** hide clear if input is readonly ([#328](https://github.com/core-ds/core-components/issues/328)) ([93f7ba4](https://github.com/core-ds/core-components/commit/93f7ba429fb8e8f430d3dfadefe8375d6ea2e642)) +* **core-components-select:** inputs & types ([#323](https://github.com/core-ds/core-components/issues/323)) ([0f4d547](https://github.com/core-ds/core-components/commit/0f4d547c3a5792e095de2011db2c6c1e9dbfb386)) +* **core-components-slider-input:** update stories ([d6a2937](https://github.com/core-ds/core-components/commit/d6a29370739d15427c961b58c553d22c9df87799)) ## [3.1.0](https://github.com/core-ds/core-components/compare/v3.0.1...v3.1.0) (2020-10-20) + ### Features -- **core-components-form-control:** add addons classname ([707cd54](https://github.com/core-ds/core-components/commit/707cd547b2b695cb7585c996efcb8c070b789038)) -- **core-components-input:** add addons classname ([9f40cdc](https://github.com/core-ds/core-components/commit/9f40cdc2a79feea9b5b3d5cdb411676f0ff05f35)) +* **core-components-form-control:** add addons classname ([707cd54](https://github.com/core-ds/core-components/commit/707cd547b2b695cb7585c996efcb8c070b789038)) +* **core-components-input:** add addons classname ([9f40cdc](https://github.com/core-ds/core-components/commit/9f40cdc2a79feea9b5b3d5cdb411676f0ff05f35)) + ### Bug Fixes -- **core-components-bank-card:** label styles ([#316](https://github.com/core-ds/core-components/issues/316)) ([31ea1ce](https://github.com/core-ds/core-components/commit/31ea1cec588cacd425b35b3e71d4a18925b71a5a)) -- **core-components-form-control:** fix hover state ([#317](https://github.com/core-ds/core-components/issues/317)) ([41b2d51](https://github.com/core-ds/core-components/commit/41b2d51fdbf2fc729a1180d6a515ee56b521c555)) +* **core-components-bank-card:** label styles ([#316](https://github.com/core-ds/core-components/issues/316)) ([31ea1ce](https://github.com/core-ds/core-components/commit/31ea1cec588cacd425b35b3e71d4a18925b71a5a)) +* **core-components-form-control:** fix hover state ([#317](https://github.com/core-ds/core-components/issues/317)) ([41b2d51](https://github.com/core-ds/core-components/commit/41b2d51fdbf2fc729a1180d6a515ee56b521c555)) ### [3.0.1](https://github.com/core-ds/core-components/compare/v3.0.0...v3.0.1) (2020-10-14) + ### Bug Fixes -- typings issue ([dd17a7b](https://github.com/core-ds/core-components/commit/dd17a7b0c04413dce337c2eecd8bc197e580e067)) +* typings issue ([dd17a7b](https://github.com/core-ds/core-components/commit/dd17a7b0c04413dce337c2eecd8bc197e580e067)) ## [3.0.0](https://github.com/core-ds/core-components/compare/v2.2.0...v3.0.0) (2020-10-13) + ### Features -- **core-components-bank-card:** change caret color ([1b69839](https://github.com/core-ds/core-components/commit/1b698399bbcb3afaea80e81f0cbfa9d3d13074ff)) -- **core-components-confirmation:** fixes ([#311](https://github.com/core-ds/core-components/issues/311)) ([e56a137](https://github.com/core-ds/core-components/commit/e56a137a62e78e56ac63f3d701660fc8a7c5658a)) -- **core-components-input:** add filled and focused classNames ([ebaac73](https://github.com/core-ds/core-components/commit/ebaac73103caf4601e8df7302af14f79f8a096d1)) -- **core-components-input:** updated input click theme ([#315](https://github.com/core-ds/core-components/issues/315)) ([69e6f81](https://github.com/core-ds/core-components/commit/69e6f81cc85fac5f5c988e2e409b82ad25ef8a6f)) -- **core-components-list:** adds a new component ([#296](https://github.com/core-ds/core-components/issues/296)) ([7d5a93d](https://github.com/core-ds/core-components/commit/7d5a93d8318a71d61da91c0bf1a2f88896242fee)) -- **core-components-select:** show error icon and arrow both ([#299](https://github.com/core-ds/core-components/issues/299)) ([b563989](https://github.com/core-ds/core-components/commit/b563989a57bf64a9450915d0d0d73687f5358d06)) -- **core-components-slider:** add component ([#285](https://github.com/core-ds/core-components/issues/285)) ([57a645e](https://github.com/core-ds/core-components/commit/57a645e735af3218b77c92ce8a66b7efc64f53ad)) -- **core-components-slider-input:** add component ([#288](https://github.com/core-ds/core-components/issues/288)) ([901df73](https://github.com/core-ds/core-components/commit/901df73692bf019a06db7d6d056f2cb6ee9e5f8d)), closes [#294](https://github.com/core-ds/core-components/issues/294) -- **core-components-vars:** update primitives ([#291](https://github.com/core-ds/core-components/issues/291)) ([d995190](https://github.com/core-ds/core-components/commit/d9951902b1d9325e7e7a88e302d23eafd2705643)) -- **core-components-vars:** updated colors addons ([5206618](https://github.com/core-ds/core-components/commit/5206618ffa8ad9a441120b871e8950196ed6540f)) -- **core-components-with-suffix:** add hoc ([7055c98](https://github.com/core-ds/core-components/commit/7055c98ca5c1c6dda33323522c5168bc6657850b)) -- **core-components-with-suffix:** add hoc ([#301](https://github.com/core-ds/core-components/issues/301)) ([df9b797](https://github.com/core-ds/core-components/commit/df9b79781d3f831360a71dbc0816f795b95e288f)) +* **core-components-bank-card:** change caret color ([1b69839](https://github.com/core-ds/core-components/commit/1b698399bbcb3afaea80e81f0cbfa9d3d13074ff)) +* **core-components-confirmation:** fixes ([#311](https://github.com/core-ds/core-components/issues/311)) ([e56a137](https://github.com/core-ds/core-components/commit/e56a137a62e78e56ac63f3d701660fc8a7c5658a)) +* **core-components-input:** add filled and focused classNames ([ebaac73](https://github.com/core-ds/core-components/commit/ebaac73103caf4601e8df7302af14f79f8a096d1)) +* **core-components-input:** updated input click theme ([#315](https://github.com/core-ds/core-components/issues/315)) ([69e6f81](https://github.com/core-ds/core-components/commit/69e6f81cc85fac5f5c988e2e409b82ad25ef8a6f)) +* **core-components-list:** adds a new component ([#296](https://github.com/core-ds/core-components/issues/296)) ([7d5a93d](https://github.com/core-ds/core-components/commit/7d5a93d8318a71d61da91c0bf1a2f88896242fee)) +* **core-components-select:** show error icon and arrow both ([#299](https://github.com/core-ds/core-components/issues/299)) ([b563989](https://github.com/core-ds/core-components/commit/b563989a57bf64a9450915d0d0d73687f5358d06)) +* **core-components-slider:** add component ([#285](https://github.com/core-ds/core-components/issues/285)) ([57a645e](https://github.com/core-ds/core-components/commit/57a645e735af3218b77c92ce8a66b7efc64f53ad)) +* **core-components-slider-input:** add component ([#288](https://github.com/core-ds/core-components/issues/288)) ([901df73](https://github.com/core-ds/core-components/commit/901df73692bf019a06db7d6d056f2cb6ee9e5f8d)), closes [#294](https://github.com/core-ds/core-components/issues/294) +* **core-components-vars:** update primitives ([#291](https://github.com/core-ds/core-components/issues/291)) ([d995190](https://github.com/core-ds/core-components/commit/d9951902b1d9325e7e7a88e302d23eafd2705643)) +* **core-components-vars:** updated colors addons ([5206618](https://github.com/core-ds/core-components/commit/5206618ffa8ad9a441120b871e8950196ed6540f)) +* **core-components-with-suffix:** add hoc ([7055c98](https://github.com/core-ds/core-components/commit/7055c98ca5c1c6dda33323522c5168bc6657850b)) +* **core-components-with-suffix:** add hoc ([#301](https://github.com/core-ds/core-components/issues/301)) ([df9b797](https://github.com/core-ds/core-components/commit/df9b79781d3f831360a71dbc0816f795b95e288f)) + ### Bug Fixes -- **core-components-bank-card:** deleting issue, add useCallback ([#309](https://github.com/core-ds/core-components/issues/309)) ([5f768bd](https://github.com/core-ds/core-components/commit/5f768bd3b0242d4f0adae25c33b8c38575bfedef)) -- **core-components-button:** add text align ([#306](https://github.com/core-ds/core-components/issues/306)) ([a60a4dc](https://github.com/core-ds/core-components/commit/a60a4dcb7f7280c6c4e4628deb48456fde3c6171)) -- **core-components-button:** fixed primary button background color ([874e203](https://github.com/core-ds/core-components/commit/874e20336bea6500c75b207bf2cc14262bb878ff)) -- **core-components-tabs:** fix styles build ([#310](https://github.com/core-ds/core-components/issues/310)) ([d05a0ef](https://github.com/core-ds/core-components/commit/d05a0ef86880903e3e33703ef245655cf11e66e7)), closes [#314](https://github.com/core-ds/core-components/issues/314) -- **core-components-themes:** add all vars import ([6d50c3e](https://github.com/core-ds/core-components/commit/6d50c3e089f0e31721adaaf0b56b741b8dec6a7a)) -- **core-components-themes:** process color-mod, fix vars ([5d77f9b](https://github.com/core-ds/core-components/commit/5d77f9be7766f13ac100130a2ff95f6735fe05d9)) -- **core-components-with-suffix:** add text styles ([b4dbabe](https://github.com/core-ds/core-components/commit/b4dbabe06b4af072b9cb8e05d54861a587c3f41a)) -- **core-components-with-suffix:** fix stories ([6226300](https://github.com/core-ds/core-components/commit/6226300716354fef9f01d2fa40dbf294d47aa5ba)) +* **core-components-bank-card:** deleting issue, add useCallback ([#309](https://github.com/core-ds/core-components/issues/309)) ([5f768bd](https://github.com/core-ds/core-components/commit/5f768bd3b0242d4f0adae25c33b8c38575bfedef)) +* **core-components-button:** add text align ([#306](https://github.com/core-ds/core-components/issues/306)) ([a60a4dc](https://github.com/core-ds/core-components/commit/a60a4dcb7f7280c6c4e4628deb48456fde3c6171)) +* **core-components-button:** fixed primary button background color ([874e203](https://github.com/core-ds/core-components/commit/874e20336bea6500c75b207bf2cc14262bb878ff)) +* **core-components-tabs:** fix styles build ([#310](https://github.com/core-ds/core-components/issues/310)) ([d05a0ef](https://github.com/core-ds/core-components/commit/d05a0ef86880903e3e33703ef245655cf11e66e7)), closes [#314](https://github.com/core-ds/core-components/issues/314) +* **core-components-themes:** add all vars import ([6d50c3e](https://github.com/core-ds/core-components/commit/6d50c3e089f0e31721adaaf0b56b741b8dec6a7a)) +* **core-components-themes:** process color-mod, fix vars ([5d77f9b](https://github.com/core-ds/core-components/commit/5d77f9be7766f13ac100130a2ff95f6735fe05d9)) +* **core-components-with-suffix:** add text styles ([b4dbabe](https://github.com/core-ds/core-components/commit/b4dbabe06b4af072b9cb8e05d54861a587c3f41a)) +* **core-components-with-suffix:** fix stories ([6226300](https://github.com/core-ds/core-components/commit/6226300716354fef9f01d2fa40dbf294d47aa5ba)) ## [2.2.0](https://github.com/core-ds/core-components/compare/v2.1.0...v2.2.0) (2020-09-25) + ### Features -- update theming docs ([2ceba6d](https://github.com/core-ds/core-components/commit/2ceba6d577857ef0821ea01ee3dd0ec9ddd98fda)) -- **core-components-link:** updated colors and click theme ([573c785](https://github.com/core-ds/core-components/commit/573c78516a41194c9c802eb3ecfdbe7653730311)) -- **core-components-skeleton:** adds a new component ([11e6ce9](https://github.com/core-ds/core-components/commit/11e6ce94c8bca6f5b91a9c04c2f750ec232aea23)) -- **core-components-skeleton:** changes styles ([379a8d9](https://github.com/core-ds/core-components/commit/379a8d971ce074242de47972382a78697038864d)) -- **core-components-tooltip:** updated font size and popover shadow ([e0d54b1](https://github.com/core-ds/core-components/commit/e0d54b18ffaa632e52750f30bc6b2b3d710011ca)) -- **core-components-vars:** introducing shadows vars ([defc486](https://github.com/core-ds/core-components/commit/defc486204d46ed5b431555b1fe8226dee2046c4)) -- **core-components-vars:** introducing shadows vars ([8ff8aba](https://github.com/core-ds/core-components/commit/8ff8aba0301a20ac652078f9df3f85f79a121ef6)) +* update theming docs ([2ceba6d](https://github.com/core-ds/core-components/commit/2ceba6d577857ef0821ea01ee3dd0ec9ddd98fda)) +* **core-components-link:** updated colors and click theme ([573c785](https://github.com/core-ds/core-components/commit/573c78516a41194c9c802eb3ecfdbe7653730311)) +* **core-components-skeleton:** adds a new component ([11e6ce9](https://github.com/core-ds/core-components/commit/11e6ce94c8bca6f5b91a9c04c2f750ec232aea23)) +* **core-components-skeleton:** changes styles ([379a8d9](https://github.com/core-ds/core-components/commit/379a8d971ce074242de47972382a78697038864d)) +* **core-components-tooltip:** updated font size and popover shadow ([e0d54b1](https://github.com/core-ds/core-components/commit/e0d54b18ffaa632e52750f30bc6b2b3d710011ca)) +* **core-components-vars:** introducing shadows vars ([defc486](https://github.com/core-ds/core-components/commit/defc486204d46ed5b431555b1fe8226dee2046c4)) +* **core-components-vars:** introducing shadows vars ([8ff8aba](https://github.com/core-ds/core-components/commit/8ff8aba0301a20ac652078f9df3f85f79a121ef6)) + ### Bug Fixes -- storybook build with assets ([0d2e819](https://github.com/core-ds/core-components/commit/0d2e819ae27900e9022bae53dac5a381336871a0)) -- **core-components-amount-input:** resolve [#281](https://github.com/core-ds/core-components/issues/281) ([7e91e9e](https://github.com/core-ds/core-components/commit/7e91e9ed5c4902be979e7dde8818698d71017e68)) -- **core-components-popover:** add missing styles ([578f1cb](https://github.com/core-ds/core-components/commit/578f1cb20cad08fec606b6da11c961552ca990d1)) -- **core-components-skeleton:** fix styles ([0aac24f](https://github.com/core-ds/core-components/commit/0aac24f3e7ed536fef560abec9627daf42a688df)) +* storybook build with assets ([0d2e819](https://github.com/core-ds/core-components/commit/0d2e819ae27900e9022bae53dac5a381336871a0)) +* **core-components-amount-input:** resolve [#281](https://github.com/core-ds/core-components/issues/281) ([7e91e9e](https://github.com/core-ds/core-components/commit/7e91e9ed5c4902be979e7dde8818698d71017e68)) +* **core-components-popover:** add missing styles ([578f1cb](https://github.com/core-ds/core-components/commit/578f1cb20cad08fec606b6da11c961552ca990d1)) +* **core-components-skeleton:** fix styles ([0aac24f](https://github.com/core-ds/core-components/commit/0aac24f3e7ed536fef560abec9627daf42a688df)) ## [2.1.0](https://github.com/core-ds/core-components/compare/v2.0.0...v2.1.0) (2020-09-18) + ### Features -- **core-components-amount-input:** add forward ref ([5471887](https://github.com/core-ds/core-components/commit/5471887361dcb1383ae695f69cc13c201d713607)) +* **core-components-amount-input:** add forward ref ([5471887](https://github.com/core-ds/core-components/commit/5471887361dcb1383ae695f69cc13c201d713607)) + ### Bug Fixes -- **core-components-amount-input:** fix console error ([461d435](https://github.com/core-ds/core-components/commit/461d435643d6b5908344fadfe66927dd48ed014c)) -- **core-components-themes:** temp fix for color-mod ([94a79a0](https://github.com/core-ds/core-components/commit/94a79a08d53266963d3d96bf3c5c41321629d360)) +* **core-components-amount-input:** fix console error ([461d435](https://github.com/core-ds/core-components/commit/461d435643d6b5908344fadfe66927dd48ed014c)) +* **core-components-themes:** temp fix for color-mod ([94a79a0](https://github.com/core-ds/core-components/commit/94a79a08d53266963d3d96bf3c5c41321629d360)) ## [2.0.0](https://github.com/core-ds/core-components/compare/v1.18.0...v2.0.0) (2020-09-14) + ### Features -- **core-components-button:** button themes (click, corp, mobile), change l-size height ([cf658c3](https://github.com/core-ds/core-components/commit/cf658c388bb0cbf06517b04b4c24f8e5715d8cbe)) -- **core-components-form-control:** change l-size height ([c87f908](https://github.com/core-ds/core-components/commit/c87f908fe8174e9d0e976153daac1e46e3a252bd)) -- **core-components-input:** add clear button ([4f9a453](https://github.com/core-ds/core-components/commit/4f9a4537db28404281415c4354408386bc4c4021)) -- **core-components-input:** add css-var for clear button icon ([637286c](https://github.com/core-ds/core-components/commit/637286ca68bf9b25653298b4315c97bb145a2089)) -- **core-components-pure-input:** change l-size height ([5287559](https://github.com/core-ds/core-components/commit/5287559cbc7a3beac54047884174b26c21cdf453)) -- **core-components-tabs:** remove gaps, add sizes ([da7d435](https://github.com/core-ds/core-components/commit/da7d4350b9fb46e8765ec65cf483c7aadab134c3)) -- **core-components-tag:** add click theme ([eeb2400](https://github.com/core-ds/core-components/commit/eeb24000b0f75d48a4780fe069a4698867006b8b)) -- **core-components-tag:** min-width for tags ([fce5ce3](https://github.com/core-ds/core-components/commit/fce5ce382e9b25190504ff3de3a5479527024afa)) -- **core-components-textarea:** change l-size height ([f314bf6](https://github.com/core-ds/core-components/commit/f314bf63b9d1f5d539c53e310ede11c2a8cdd8c7)) -- **core-components-themes:** add tabs click theme ([0ffbc3f](https://github.com/core-ds/core-components/commit/0ffbc3f9d1edbdb13549957a7174871e365e0f40)) -- **core-components-themes:** add tabs site theme ([da5d9ec](https://github.com/core-ds/core-components/commit/da5d9ec07f16b328c15ebebbb55498e25ff866b1)) +* **core-components-button:** button themes (click, corp, mobile), change l-size height ([cf658c3](https://github.com/core-ds/core-components/commit/cf658c388bb0cbf06517b04b4c24f8e5715d8cbe)) +* **core-components-form-control:** change l-size height ([c87f908](https://github.com/core-ds/core-components/commit/c87f908fe8174e9d0e976153daac1e46e3a252bd)) +* **core-components-input:** add clear button ([4f9a453](https://github.com/core-ds/core-components/commit/4f9a4537db28404281415c4354408386bc4c4021)) +* **core-components-input:** add css-var for clear button icon ([637286c](https://github.com/core-ds/core-components/commit/637286ca68bf9b25653298b4315c97bb145a2089)) +* **core-components-pure-input:** change l-size height ([5287559](https://github.com/core-ds/core-components/commit/5287559cbc7a3beac54047884174b26c21cdf453)) +* **core-components-tabs:** remove gaps, add sizes ([da7d435](https://github.com/core-ds/core-components/commit/da7d4350b9fb46e8765ec65cf483c7aadab134c3)) +* **core-components-tag:** add click theme ([eeb2400](https://github.com/core-ds/core-components/commit/eeb24000b0f75d48a4780fe069a4698867006b8b)) +* **core-components-tag:** min-width for tags ([fce5ce3](https://github.com/core-ds/core-components/commit/fce5ce382e9b25190504ff3de3a5479527024afa)) +* **core-components-textarea:** change l-size height ([f314bf6](https://github.com/core-ds/core-components/commit/f314bf63b9d1f5d539c53e310ede11c2a8cdd8c7)) +* **core-components-themes:** add tabs click theme ([0ffbc3f](https://github.com/core-ds/core-components/commit/0ffbc3f9d1edbdb13549957a7174871e365e0f40)) +* **core-components-themes:** add tabs site theme ([da5d9ec](https://github.com/core-ds/core-components/commit/da5d9ec07f16b328c15ebebbb55498e25ff866b1)) + ### Bug Fixes -- **core-components-input:** fix clear button, fix focus issues ([24fc3c6](https://github.com/core-ds/core-components/commit/24fc3c603e92418e8589c09bed2ca5d8bdf57f5a)) -- **core-components-select:** remove default autocomplete ([a223433](https://github.com/core-ds/core-components/commit/a2234334eaf145582a39bc045b84d61a97a7660c)) +* **core-components-input:** fix clear button, fix focus issues ([24fc3c6](https://github.com/core-ds/core-components/commit/24fc3c603e92418e8589c09bed2ca5d8bdf57f5a)) +* **core-components-select:** remove default autocomplete ([a223433](https://github.com/core-ds/core-components/commit/a2234334eaf145582a39bc045b84d61a97a7660c)) ## [1.18.0](https://github.com/core-ds/core-components/compare/v1.17.1...v1.18.0) (2020-09-11) + ### Features -- **core-components-confirmation:** add confirmation ([#230](https://github.com/core-ds/core-components/issues/230)) ([7a494ba](https://github.com/core-ds/core-components/commit/7a494bafb18af572babb18e7a4fa9a15c2fe6a30)) +* **core-components-confirmation:** add confirmation ([#230](https://github.com/core-ds/core-components/issues/230)) ([7a494ba](https://github.com/core-ds/core-components/commit/7a494bafb18af572babb18e7a4fa9a15c2fe6a30)) ### [1.17.1](https://github.com/core-ds/core-components/compare/v1.17.0...v1.17.1) (2020-09-02) + ### Bug Fixes -- add missing deps ([231402b](https://github.com/core-ds/core-components/commit/231402b2f054defddea4afd4eaf94f5d1791ccb4)) +* add missing deps ([231402b](https://github.com/core-ds/core-components/commit/231402b2f054defddea4afd4eaf94f5d1791ccb4)) ## [1.17.0](https://github.com/core-ds/core-components/compare/v1.16.0...v1.17.0) (2020-09-02) + ### Features -- **core-components-bank-card:** add component draft ([#208](https://github.com/core-ds/core-components/issues/208)) ([93943b7](https://github.com/core-ds/core-components/commit/93943b7861d8c95ca365bc7545a87d493a793f1e)) -- **core-components-input:** add labelClassName ([8494b21](https://github.com/core-ds/core-components/commit/8494b21f3f2027a1439823c4e1237cb9add5cab9)) -- **core-components-select:** add dataTestId ([83c5dd5](https://github.com/core-ds/core-components/commit/83c5dd5cf8b551a6dcc6c319a6ae69d32113ab34)) +* **core-components-bank-card:** add component draft ([#208](https://github.com/core-ds/core-components/issues/208)) ([93943b7](https://github.com/core-ds/core-components/commit/93943b7861d8c95ca365bc7545a87d493a793f1e)) +* **core-components-input:** add labelClassName ([8494b21](https://github.com/core-ds/core-components/commit/8494b21f3f2027a1439823c4e1237cb9add5cab9)) +* **core-components-select:** add dataTestId ([83c5dd5](https://github.com/core-ds/core-components/commit/83c5dd5cf8b551a6dcc6c319a6ae69d32113ab34)) + ### Bug Fixes -- **core-components-bank-card:** fix test ([77c72db](https://github.com/core-ds/core-components/commit/77c72db21f3bef02f07295015331d55da9c27621)) -- **core-components-select:** fix typings, add id ([341d79d](https://github.com/core-ds/core-components/commit/341d79dad610fce77b28cff31382e38152b02d3b)) -- **core-components-tabs:** recalc line styles on render ([#250](https://github.com/core-ds/core-components/issues/250)) ([b9fd710](https://github.com/core-ds/core-components/commit/b9fd7105c19809fc682f60fca275bd645e082c85)) +* **core-components-bank-card:** fix test ([77c72db](https://github.com/core-ds/core-components/commit/77c72db21f3bef02f07295015331d55da9c27621)) +* **core-components-select:** fix typings, add id ([341d79d](https://github.com/core-ds/core-components/commit/341d79dad610fce77b28cff31382e38152b02d3b)) +* **core-components-tabs:** recalc line styles on render ([#250](https://github.com/core-ds/core-components/issues/250)) ([b9fd710](https://github.com/core-ds/core-components/commit/b9fd7105c19809fc682f60fca275bd645e082c85)) ## [1.16.0](https://github.com/core-ds/core-components/compare/v1.15.3...v1.16.0) (2020-08-28) + ### Features -- **core-components-attach:** add Attach component ([#235](https://github.com/core-ds/core-components/issues/235)) ([71aa41c](https://github.com/core-ds/core-components/commit/71aa41c9383c09ae227a1df84585f5f760de350e)), closes [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) +* **core-components-attach:** add Attach component ([#235](https://github.com/core-ds/core-components/issues/235)) ([71aa41c](https://github.com/core-ds/core-components/commit/71aa41c9383c09ae227a1df84585f5f760de350e)), closes [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) + ### Bug Fixes -- build issues ([cdacf43](https://github.com/core-ds/core-components/commit/cdacf43a0b8f24a4b2b6ca97d0c008b30692c841)) -- **core-components-phone-input:** fix controlled value bug ([#248](https://github.com/core-ds/core-components/issues/248)) ([62c3cd2](https://github.com/core-ds/core-components/commit/62c3cd25ccf3657e70fb5ebafa5e0ac2e9a8c1da)), closes [#253](https://github.com/core-ds/core-components/issues/253) +* build issues ([cdacf43](https://github.com/core-ds/core-components/commit/cdacf43a0b8f24a4b2b6ca97d0c008b30692c841)) +* **core-components-phone-input:** fix controlled value bug ([#248](https://github.com/core-ds/core-components/issues/248)) ([62c3cd2](https://github.com/core-ds/core-components/commit/62c3cd25ccf3657e70fb5ebafa5e0ac2e9a8c1da)), closes [#253](https://github.com/core-ds/core-components/issues/253) ### [1.15.3](https://github.com/core-ds/core-components/compare/v1.15.2...v1.15.3) (2020-08-25) + ### Features -- add styrene font-face ([9dfc8da](https://github.com/core-ds/core-components/commit/9dfc8da61e322e4f7fe915bc63614270cf5f6dd4)) +* add styrene font-face ([9dfc8da](https://github.com/core-ds/core-components/commit/9dfc8da61e322e4f7fe915bc63614270cf5f6dd4)) + ### Bug Fixes -- **core-components-button:** fix loader position ([#236](https://github.com/core-ds/core-components/issues/236)) ([697c44a](https://github.com/core-ds/core-components/commit/697c44a0559515f593541909fabc7145a66ee7e1)) -- **core-components-select:** fix typings, unused css ([c223dbb](https://github.com/core-ds/core-components/commit/c223dbb9245f7cc6113a76077f458c4bdcd75462)) -- **core-components-tabs:** fix css-modules build ([#239](https://github.com/core-ds/core-components/issues/239)) ([0e9d8d0](https://github.com/core-ds/core-components/commit/0e9d8d073dc000484816c8d10beddff12e0c463e)) -- fix import example ([#237](https://github.com/core-ds/core-components/issues/237)) ([0ea47b5](https://github.com/core-ds/core-components/commit/0ea47b59138690cb294314883da7298e7b5d0195)) -- fix radio & checkbox colors ([56a0a16](https://github.com/core-ds/core-components/commit/56a0a16d1259f05b51b06ba81035003eadc1f2b3)) +* **core-components-button:** fix loader position ([#236](https://github.com/core-ds/core-components/issues/236)) ([697c44a](https://github.com/core-ds/core-components/commit/697c44a0559515f593541909fabc7145a66ee7e1)) +* **core-components-select:** fix typings, unused css ([c223dbb](https://github.com/core-ds/core-components/commit/c223dbb9245f7cc6113a76077f458c4bdcd75462)) +* **core-components-tabs:** fix css-modules build ([#239](https://github.com/core-ds/core-components/issues/239)) ([0e9d8d0](https://github.com/core-ds/core-components/commit/0e9d8d073dc000484816c8d10beddff12e0c463e)) +* fix import example ([#237](https://github.com/core-ds/core-components/issues/237)) ([0ea47b5](https://github.com/core-ds/core-components/commit/0ea47b59138690cb294314883da7298e7b5d0195)) +* fix radio & checkbox colors ([56a0a16](https://github.com/core-ds/core-components/commit/56a0a16d1259f05b51b06ba81035003eadc1f2b3)) ### [1.15.2](https://github.com/core-ds/core-components/compare/v1.15.1...v1.15.2) (2020-08-19) + ### Features -- **core-components-keyboard-focusable:** add component and hook ([#215](https://github.com/core-ds/core-components/issues/215)) ([f777f72](https://github.com/core-ds/core-components/commit/f777f729e9c880d15b79f58ae9a8f1d5fa6662b1)) -- **core-components-textarea:** add Textarea component ([#221](https://github.com/core-ds/core-components/issues/221)) ([a23b731](https://github.com/core-ds/core-components/commit/a23b73192a7ad3601ea3745f8ac2fdbfaf34346b)), closes [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) -- set system font by default in storybook ([c40ab25](https://github.com/core-ds/core-components/commit/c40ab256af022f4688d079c62e895cb4b8a6e69f)) +* **core-components-keyboard-focusable:** add component and hook ([#215](https://github.com/core-ds/core-components/issues/215)) ([f777f72](https://github.com/core-ds/core-components/commit/f777f729e9c880d15b79f58ae9a8f1d5fa6662b1)) +* **core-components-textarea:** add Textarea component ([#221](https://github.com/core-ds/core-components/issues/221)) ([a23b731](https://github.com/core-ds/core-components/commit/a23b73192a7ad3601ea3745f8ac2fdbfaf34346b)), closes [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) +* set system font by default in storybook ([c40ab25](https://github.com/core-ds/core-components/commit/c40ab256af022f4688d079c62e895cb4b8a6e69f)) + ### Bug Fixes -- add new colors, fix typography ([e50365e](https://github.com/core-ds/core-components/commit/e50365e7e7c6d17422aff61c266b3a1b55a0ecf3)) +* add new colors, fix typography ([e50365e](https://github.com/core-ds/core-components/commit/e50365e7e7c6d17422aff61c266b3a1b55a0ecf3)) ### [1.15.1](https://github.com/core-ds/core-components/compare/v1.15.0...v1.15.1) (2020-08-14) + ### Features -- **core-components-themes:** add theming example ([aba4c8a](https://github.com/core-ds/core-components/commit/aba4c8a98a3f577dd89b5e8cf3a2ccfc54b2f16e)) -- **tag:** remove pointer-events none style ([#224](https://github.com/core-ds/core-components/issues/224)) ([dcaec57](https://github.com/core-ds/core-components/commit/dcaec5712f31cc094f4cacda0a3146e0564d86b3)) +* **core-components-themes:** add theming example ([aba4c8a](https://github.com/core-ds/core-components/commit/aba4c8a98a3f577dd89b5e8cf3a2ccfc54b2f16e)) +* **tag:** remove pointer-events none style ([#224](https://github.com/core-ds/core-components/issues/224)) ([dcaec57](https://github.com/core-ds/core-components/commit/dcaec5712f31cc094f4cacda0a3146e0564d86b3)) + ### Bug Fixes -- use correct vars ([171c45d](https://github.com/core-ds/core-components/commit/171c45da81d6e8df6b76a8333068d7ccbe68466c)) +* use correct vars ([171c45d](https://github.com/core-ds/core-components/commit/171c45da81d6e8df6b76a8333068d7ccbe68466c)) ## [1.15.0](https://github.com/core-ds/core-components/compare/v1.14.0...v1.15.0) (2020-08-13) @@ -1885,267 +2129,294 @@ All notable changes to this project will be documented in this file. See [standa ## [1.12.0](https://github.com/core-ds/core-components/compare/v1.11.0...v1.12.0) (2020-08-12) + ### Features -- **core-components-input:** add input wrapper ref ([9c1fba0](https://github.com/core-ds/core-components/commit/9c1fba07c233206eab0defe6e4341fdb0c8b3664)) -- **core-components-input:** add ref tests ([9ed193c](https://github.com/core-ds/core-components/commit/9ed193c1f5f0f4a22a276877893e6d5de4c4a2a0)) -- **core-components-input:** update type ([9ab3733](https://github.com/core-ds/core-components/commit/9ab373369c5b692bd3632d43ef1afda7d9ffc63e)) -- **core-components-phone-input:** add phone-input ([#192](https://github.com/core-ds/core-components/issues/192)) ([42cedbf](https://github.com/core-ds/core-components/commit/42cedbf9583f1c836cb0825789b0d4b47fbbdddd)) -- **core-components-phone-input:** remove optional chaining ([#222](https://github.com/core-ds/core-components/issues/222)) ([d8a9ca2](https://github.com/core-ds/core-components/commit/d8a9ca2f004bb8bd1df31a5499ead7d7c28e0d80)) -- **core-components-radio:** add radio component ([#183](https://github.com/core-ds/core-components/issues/183)) ([858c81b](https://github.com/core-ds/core-components/commit/858c81b7b3e6bef27b39e719bbecfe1d32f92d19)) -- **core-components-tabs:** add tabs ([#149](https://github.com/core-ds/core-components/issues/149)) ([b08b668](https://github.com/core-ds/core-components/commit/b08b66861fd7c068a1db7e32d3d697ad13acbd6f)), closes [#175](https://github.com/core-ds/core-components/issues/175) [#200](https://github.com/core-ds/core-components/issues/200) -- **core-components-vars:** add new typography styles ([#211](https://github.com/core-ds/core-components/issues/211)) ([7df831f](https://github.com/core-ds/core-components/commit/7df831f396525bec0c57264606a44abd2417a78c)) +* **core-components-input:** add input wrapper ref ([9c1fba0](https://github.com/core-ds/core-components/commit/9c1fba07c233206eab0defe6e4341fdb0c8b3664)) +* **core-components-input:** add ref tests ([9ed193c](https://github.com/core-ds/core-components/commit/9ed193c1f5f0f4a22a276877893e6d5de4c4a2a0)) +* **core-components-input:** update type ([9ab3733](https://github.com/core-ds/core-components/commit/9ab373369c5b692bd3632d43ef1afda7d9ffc63e)) +* **core-components-phone-input:** add phone-input ([#192](https://github.com/core-ds/core-components/issues/192)) ([42cedbf](https://github.com/core-ds/core-components/commit/42cedbf9583f1c836cb0825789b0d4b47fbbdddd)) +* **core-components-phone-input:** remove optional chaining ([#222](https://github.com/core-ds/core-components/issues/222)) ([d8a9ca2](https://github.com/core-ds/core-components/commit/d8a9ca2f004bb8bd1df31a5499ead7d7c28e0d80)) +* **core-components-radio:** add radio component ([#183](https://github.com/core-ds/core-components/issues/183)) ([858c81b](https://github.com/core-ds/core-components/commit/858c81b7b3e6bef27b39e719bbecfe1d32f92d19)) +* **core-components-tabs:** add tabs ([#149](https://github.com/core-ds/core-components/issues/149)) ([b08b668](https://github.com/core-ds/core-components/commit/b08b66861fd7c068a1db7e32d3d697ad13acbd6f)), closes [#175](https://github.com/core-ds/core-components/issues/175) [#200](https://github.com/core-ds/core-components/issues/200) +* **core-components-vars:** add new typography styles ([#211](https://github.com/core-ds/core-components/issues/211)) ([7df831f](https://github.com/core-ds/core-components/commit/7df831f396525bec0c57264606a44abd2417a78c)) + ### Bug Fixes -- **core-components-tooltip:** change tooltip timer to ref ([#207](https://github.com/core-ds/core-components/issues/207)) ([139f0a7](https://github.com/core-ds/core-components/commit/139f0a74d414f3c1dde11b46ecf96a984b599359)) +* **core-components-tooltip:** change tooltip timer to ref ([#207](https://github.com/core-ds/core-components/issues/207)) ([139f0a7](https://github.com/core-ds/core-components/commit/139f0a74d414f3c1dde11b46ecf96a984b599359)) ## [1.11.0](https://github.com/core-ds/core-components/compare/v1.10.0...v1.11.0) (2020-07-22) + ### Features -- **storybook:** add theme switcher to storybook ([#199](https://github.com/core-ds/core-components/issues/199)) ([7794f80](https://github.com/core-ds/core-components/commit/7794f80dc83cba171ffe7282e54d5ce0f4bd8245)) +* **storybook:** add theme switcher to storybook ([#199](https://github.com/core-ds/core-components/issues/199)) ([7794f80](https://github.com/core-ds/core-components/commit/7794f80dc83cba171ffe7282e54d5ce0f4bd8245)) + ### Bug Fixes -- **core-components-progress-bar:** use theme ([#201](https://github.com/core-ds/core-components/issues/201)) ([a9ab773](https://github.com/core-ds/core-components/commit/a9ab773d75f4fcbc68ad648b378cfb3c2b9c0c19)) +* **core-components-progress-bar:** use theme ([#201](https://github.com/core-ds/core-components/issues/201)) ([a9ab773](https://github.com/core-ds/core-components/commit/a9ab773d75f4fcbc68ad648b378cfb3c2b9c0c19)) ## [1.10.0](https://github.com/core-ds/core-components/compare/v1.9.0...v1.10.0) (2020-07-17) + ### Features -- **core-components-progress-bar:** add progress bar component ([39ee713](https://github.com/core-ds/core-components/commit/39ee713522f67f2744fc2f6b4fcb2ac861a55f41)) +* **core-components-progress-bar:** add progress bar component ([39ee713](https://github.com/core-ds/core-components/commit/39ee713522f67f2744fc2f6b4fcb2ac861a55f41)) + ### Bug Fixes -- **core-components-progress-bar:** refactor, snapshot tests fix ([7b0b553](https://github.com/core-ds/core-components/commit/7b0b553eafce92307bec53d0d35f847969bf8904)) +* **core-components-progress-bar:** refactor, snapshot tests fix ([7b0b553](https://github.com/core-ds/core-components/commit/7b0b553eafce92307bec53d0d35f847969bf8904)) ## [1.9.0](https://github.com/core-ds/core-components/compare/v1.8.0...v1.9.0) (2020-07-13) + ### Bug Fixes -- **tag:** add height in ie (fix bug with flex and align-items) ([9fd2abd](https://github.com/core-ds/core-components/commit/9fd2abd401d92e01e853ce5a3f497645d74b8e04)) +* **tag:** add height in ie (fix bug with flex and align-items) ([9fd2abd](https://github.com/core-ds/core-components/commit/9fd2abd401d92e01e853ce5a3f497645d74b8e04)) ## [1.8.0](https://github.com/core-ds/core-components/compare/v1.7.3...v1.8.0) (2020-06-30) + ### Features -- **core-components-amount:** add boilerplate for amount ([5614885](https://github.com/core-ds/core-components/commit/5614885237a9a4843fb312c22c6b5810a3509e63)) -- **core-components-amount:** add click theme ([b4b0699](https://github.com/core-ds/core-components/commit/b4b0699dcffd2f505935489d66fd0d48b633ecf7)) -- **core-components-amount:** allow withZeroMinorPart formatting ([e86529d](https://github.com/core-ds/core-components/commit/e86529d72e28e8cde8bffbfd4b4d263129ec4d78)) -- **core-components-amount:** export CurrencyCodes ([1a6155a](https://github.com/core-ds/core-components/commit/1a6155a63655084895831094127404cdbcb0ef54)) -- **core-components-amount:** feat, change api, add PureAmount ([f946776](https://github.com/core-ds/core-components/commit/f94677645a8244dedf6f003f901290d5a2c6c16d)) -- **core-components-amount:** implemented amount, add demo ([1e78129](https://github.com/core-ds/core-components/commit/1e781295de03ff4aac5f5a7ec761f22b529716bd)) -- **core-components-popover:** add classname for tooltip popover ([c837199](https://github.com/core-ds/core-components/commit/c837199eda8890806388f87a32d61cc88a4165dd)) +* **core-components-amount:** add boilerplate for amount ([5614885](https://github.com/core-ds/core-components/commit/5614885237a9a4843fb312c22c6b5810a3509e63)) +* **core-components-amount:** add click theme ([b4b0699](https://github.com/core-ds/core-components/commit/b4b0699dcffd2f505935489d66fd0d48b633ecf7)) +* **core-components-amount:** allow withZeroMinorPart formatting ([e86529d](https://github.com/core-ds/core-components/commit/e86529d72e28e8cde8bffbfd4b4d263129ec4d78)) +* **core-components-amount:** export CurrencyCodes ([1a6155a](https://github.com/core-ds/core-components/commit/1a6155a63655084895831094127404cdbcb0ef54)) +* **core-components-amount:** feat, change api, add PureAmount ([f946776](https://github.com/core-ds/core-components/commit/f94677645a8244dedf6f003f901290d5a2c6c16d)) +* **core-components-amount:** implemented amount, add demo ([1e78129](https://github.com/core-ds/core-components/commit/1e781295de03ff4aac5f5a7ec761f22b529716bd)) +* **core-components-popover:** add classname for tooltip popover ([c837199](https://github.com/core-ds/core-components/commit/c837199eda8890806388f87a32d61cc88a4165dd)) + ### Bug Fixes -- 🐛 use mixinsDir to import mixins ([#182](https://github.com/core-ds/core-components/issues/182)) ([06a6f2d](https://github.com/core-ds/core-components/commit/06a6f2dde49db07681d09a5afb94e91ab1c9da04)), closes [#181](https://github.com/core-ds/core-components/issues/181) +* 🐛 use mixinsDir to import mixins ([#182](https://github.com/core-ds/core-components/issues/182)) ([06a6f2d](https://github.com/core-ds/core-components/commit/06a6f2dde49db07681d09a5afb94e91ab1c9da04)), closes [#181](https://github.com/core-ds/core-components/issues/181) ### [1.7.3](https://github.com/core-ds/core-components/compare/v1.7.2...v1.7.3) (2020-06-23) + ### Bug Fixes -- **core-components-button:** background in loading state ([2064e59](https://github.com/core-ds/core-components/commit/2064e593914354258cd47a4da9ca65cf26585542)) -- **core-components-button:** disabled styles are back ([bf81264](https://github.com/core-ds/core-components/commit/bf81264bb922ea98752adb9b2a6b09c946d48ed9)) +* **core-components-button:** background in loading state ([2064e59](https://github.com/core-ds/core-components/commit/2064e593914354258cd47a4da9ca65cf26585542)) +* **core-components-button:** disabled styles are back ([bf81264](https://github.com/core-ds/core-components/commit/bf81264bb922ea98752adb9b2a6b09c946d48ed9)) ### [1.7.2](https://github.com/core-ds/core-components/compare/v1.7.1...v1.7.2) (2020-06-22) + ### Bug Fixes -- **core-components-money-input:** fix default placeholder ([2efbcbd](https://github.com/core-ds/core-components/commit/2efbcbd49fbc2c02a6644867bfa25c96b3943223)) +* **core-components-money-input:** fix default placeholder ([2efbcbd](https://github.com/core-ds/core-components/commit/2efbcbd49fbc2c02a6644867bfa25c96b3943223)) ### [1.7.1](https://github.com/core-ds/core-components/compare/v1.7.0...v1.7.1) (2020-06-19) + ### Bug Fixes -- fix import replacement ([5354d06](https://github.com/core-ds/core-components/commit/5354d0604125d9d21c2939987cecd10d428a509f)), closes [#170](https://github.com/core-ds/core-components/issues/170) +* fix import replacement ([5354d06](https://github.com/core-ds/core-components/commit/5354d0604125d9d21c2939987cecd10d428a509f)), closes [#170](https://github.com/core-ds/core-components/issues/170) ## [1.7.0](https://github.com/core-ds/core-components/compare/v1.6.1...v1.7.0) (2020-06-19) + ### Features -- **core-components-money-input:** add money-input, story, base test ([aab595a](https://github.com/core-ds/core-components/commit/aab595a0e3d705335b7abe7539364206f20806fc)) -- **core-components-money-input:** added smart default placeholder ([dff6e63](https://github.com/core-ds/core-components/commit/dff6e63bd1ed72a1fab9c50a3f3d982da49e531b)) -- **core-components-money-input:** change minority color ([e35b06a](https://github.com/core-ds/core-components/commit/e35b06a74bb43663a8b44fe7d3486b7a7d81af2d)) -- **core-components-money-input:** fix demo according PR comments ([15f339d](https://github.com/core-ds/core-components/commit/15f339d83d8606c82b3a6cc4deeba350bab9f785)) -- **core-components-money-input:** fixes according review comments ([3ba9e0b](https://github.com/core-ds/core-components/commit/3ba9e0b5a653e58898e9f5a72b37a3eaea2fa2da)) -- **core-components-money-input:** fixes according review comments ([0b0c285](https://github.com/core-ds/core-components/commit/0b0c285b40df3e80cf28167c410ddc25b2f405c9)) -- **core-components-money-input:** remove composed props from MoneyInput ([3d3f5b8](https://github.com/core-ds/core-components/commit/3d3f5b83b25990ab56826c5c39e74aa346672f44)) -- **core-components-money-input:** tune to latest requirements ([62fcaf4](https://github.com/core-ds/core-components/commit/62fcaf4038d866271178289e6338e8bc1c01c50e)) +* **core-components-money-input:** add money-input, story, base test ([aab595a](https://github.com/core-ds/core-components/commit/aab595a0e3d705335b7abe7539364206f20806fc)) +* **core-components-money-input:** added smart default placeholder ([dff6e63](https://github.com/core-ds/core-components/commit/dff6e63bd1ed72a1fab9c50a3f3d982da49e531b)) +* **core-components-money-input:** change minority color ([e35b06a](https://github.com/core-ds/core-components/commit/e35b06a74bb43663a8b44fe7d3486b7a7d81af2d)) +* **core-components-money-input:** fix demo according PR comments ([15f339d](https://github.com/core-ds/core-components/commit/15f339d83d8606c82b3a6cc4deeba350bab9f785)) +* **core-components-money-input:** fixes according review comments ([3ba9e0b](https://github.com/core-ds/core-components/commit/3ba9e0b5a653e58898e9f5a72b37a3eaea2fa2da)) +* **core-components-money-input:** fixes according review comments ([0b0c285](https://github.com/core-ds/core-components/commit/0b0c285b40df3e80cf28167c410ddc25b2f405c9)) +* **core-components-money-input:** remove composed props from MoneyInput ([3d3f5b8](https://github.com/core-ds/core-components/commit/3d3f5b83b25990ab56826c5c39e74aa346672f44)) +* **core-components-money-input:** tune to latest requirements ([62fcaf4](https://github.com/core-ds/core-components/commit/62fcaf4038d866271178289e6338e8bc1c01c50e)) + ### Bug Fixes -- **core-components-money-input:** add todo ([612c88c](https://github.com/core-ds/core-components/commit/612c88c87197e3c42332291f81dd1a918599f637)) -- **core-components-money-input:** fix bold ([4625eee](https://github.com/core-ds/core-components/commit/4625eee240f1024e3934e205b4a20845f8da1542)) -- **core-components-money-input:** fix build ([c68fa08](https://github.com/core-ds/core-components/commit/c68fa0890965a5415b1acc7fab144eaaabbb9676)) -- **core-components-money-input:** fix demo ([2b22f2d](https://github.com/core-ds/core-components/commit/2b22f2db919ff0e9bd1c393234154234b3675582)) -- **core-components-money-input:** fix dependency ([1ea92b7](https://github.com/core-ds/core-components/commit/1ea92b78aacaf5421ddaa867c795ecf4ed4d9318)) -- **core-components-money-input:** fix zindex ([0688bd9](https://github.com/core-ds/core-components/commit/0688bd925a52a3b0d1ce28779b75e626a961627d)) -- **core-components-money-input:** remove temp wrapper ([fc6e904](https://github.com/core-ds/core-components/commit/fc6e904aeb2df1b05b172c59d4897418e67c7993)) -- **core-components-money-input:** type for currency according comments ([078069d](https://github.com/core-ds/core-components/commit/078069d523c545b8d7b3d7edb2f8676a2aa4a522)) +* **core-components-money-input:** add todo ([612c88c](https://github.com/core-ds/core-components/commit/612c88c87197e3c42332291f81dd1a918599f637)) +* **core-components-money-input:** fix bold ([4625eee](https://github.com/core-ds/core-components/commit/4625eee240f1024e3934e205b4a20845f8da1542)) +* **core-components-money-input:** fix build ([c68fa08](https://github.com/core-ds/core-components/commit/c68fa0890965a5415b1acc7fab144eaaabbb9676)) +* **core-components-money-input:** fix demo ([2b22f2d](https://github.com/core-ds/core-components/commit/2b22f2db919ff0e9bd1c393234154234b3675582)) +* **core-components-money-input:** fix dependency ([1ea92b7](https://github.com/core-ds/core-components/commit/1ea92b78aacaf5421ddaa867c795ecf4ed4d9318)) +* **core-components-money-input:** fix zindex ([0688bd9](https://github.com/core-ds/core-components/commit/0688bd925a52a3b0d1ce28779b75e626a961627d)) +* **core-components-money-input:** remove temp wrapper ([fc6e904](https://github.com/core-ds/core-components/commit/fc6e904aeb2df1b05b172c59d4897418e67c7993)) +* **core-components-money-input:** type for currency according comments ([078069d](https://github.com/core-ds/core-components/commit/078069d523c545b8d7b3d7edb2f8676a2aa4a522)) ### [1.6.1](https://github.com/core-ds/core-components/compare/v1.6.0...v1.6.1) (2020-06-19) ## [1.6.0](https://github.com/core-ds/core-components/compare/v1.5.2...v1.6.0) (2020-06-19) + ### Features -- **core-components-form-control:** allow to hide error icon in theme ([c19a73c](https://github.com/core-ds/core-components/commit/c19a73c676e359f2ecba8b21a53f671b725ec032)) +* **core-components-form-control:** allow to hide error icon in theme ([c19a73c](https://github.com/core-ds/core-components/commit/c19a73c676e359f2ecba8b21a53f671b725ec032)) + ### Bug Fixes -- **core-components-button:** fix button loading state ([eac3c3c](https://github.com/core-ds/core-components/commit/eac3c3ca888ee0092a1693b9a39843c1dd9a75f1)) +* **core-components-button:** fix button loading state ([eac3c3c](https://github.com/core-ds/core-components/commit/eac3c3ca888ee0092a1693b9a39843c1dd9a75f1)) ### [1.5.2](https://github.com/core-ds/core-components/compare/v1.5.1...v1.5.2) (2020-06-18) + ### Bug Fixes -- **checkbox-group:** fix css classnames ([1ec07fa](https://github.com/core-ds/core-components/commit/1ec07faa276bfa20917b1ff4decfde2c81c66ffe)) +* **checkbox-group:** fix css classnames ([1ec07fa](https://github.com/core-ds/core-components/commit/1ec07faa276bfa20917b1ff4decfde2c81c66ffe)) ### [1.5.1](https://github.com/core-ds/core-components/compare/v1.5.0...v1.5.1) (2020-06-18) + ### Bug Fixes -- **core-components-button:** fix block button width ([4abf5d9](https://github.com/core-ds/core-components/commit/4abf5d9d915909c4b5b4beddad7d287df812beb4)) +* **core-components-button:** fix block button width ([4abf5d9](https://github.com/core-ds/core-components/commit/4abf5d9d915909c4b5b4beddad7d287df812beb4)) ## [1.5.0](https://github.com/core-ds/core-components/compare/v1.4.1...v1.5.0) (2020-06-15) + ### Features -- **button:** keyboard-only focus ([#102](https://github.com/core-ds/core-components/issues/102)) ([739d240](https://github.com/core-ds/core-components/commit/739d240ab3d06b5a232b8c863f54ea888f2f635a)), closes [#125](https://github.com/core-ds/core-components/issues/125) -- **core-components-button:** fix button types ([#138](https://github.com/core-ds/core-components/issues/138)) ([6af3a2c](https://github.com/core-ds/core-components/commit/6af3a2c099c52d94fbb91663facfb3d5c79a8492)) -- **core-components-form-control:** change errors logic ([#150](https://github.com/core-ds/core-components/issues/150)) ([1c0e494](https://github.com/core-ds/core-components/commit/1c0e49489fb59dce68504223744efd290c38d214)) -- **core-components-link:** add new component ([#142](https://github.com/core-ds/core-components/issues/142)) ([33e11eb](https://github.com/core-ds/core-components/commit/33e11eb403fb7d8231e00cf55adf116b914aef3b)) -- **core-components-vars:** update alfa-ui-primitives and build colors ([#153](https://github.com/core-ds/core-components/issues/153)) ([007e2d6](https://github.com/core-ds/core-components/commit/007e2d67d5e22e830ca353de3d7ea690b82af73f)) +* **button:** keyboard-only focus ([#102](https://github.com/core-ds/core-components/issues/102)) ([739d240](https://github.com/core-ds/core-components/commit/739d240ab3d06b5a232b8c863f54ea888f2f635a)), closes [#125](https://github.com/core-ds/core-components/issues/125) +* **core-components-button:** fix button types ([#138](https://github.com/core-ds/core-components/issues/138)) ([6af3a2c](https://github.com/core-ds/core-components/commit/6af3a2c099c52d94fbb91663facfb3d5c79a8492)) +* **core-components-form-control:** change errors logic ([#150](https://github.com/core-ds/core-components/issues/150)) ([1c0e494](https://github.com/core-ds/core-components/commit/1c0e49489fb59dce68504223744efd290c38d214)) +* **core-components-link:** add new component ([#142](https://github.com/core-ds/core-components/issues/142)) ([33e11eb](https://github.com/core-ds/core-components/commit/33e11eb403fb7d8231e00cf55adf116b914aef3b)) +* **core-components-vars:** update alfa-ui-primitives and build colors ([#153](https://github.com/core-ds/core-components/issues/153)) ([007e2d6](https://github.com/core-ds/core-components/commit/007e2d67d5e22e830ca353de3d7ea690b82af73f)) + ### Bug Fixes -- **core-components-tag:** fix tag background ([#151](https://github.com/core-ds/core-components/issues/151)) ([03b465b](https://github.com/core-ds/core-components/commit/03b465b9f6c231375da8803382ed3539b2e7743a)) -- **core-components-tooltip:** pass target original classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([d253f8a](https://github.com/core-ds/core-components/commit/d253f8a363a0b4c605ee897a9b3172fdf977a073)) +* **core-components-tag:** fix tag background ([#151](https://github.com/core-ds/core-components/issues/151)) ([03b465b](https://github.com/core-ds/core-components/commit/03b465b9f6c231375da8803382ed3539b2e7743a)) +* **core-components-tooltip:** pass target original classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([d253f8a](https://github.com/core-ds/core-components/commit/d253f8a363a0b4c605ee897a9b3172fdf977a073)) ### [1.4.1](https://github.com/core-ds/core-components/compare/v1.4.0...v1.4.1) (2020-06-01) + ### Bug Fixes -- fixed themes and default font-family ([6bab367](https://github.com/core-ds/core-components/commit/6bab367eb0df53c7d42e31c5e404859638d8d6c9)) -- **core-components-checkbox-group:** fix classnames to camelcase ([522af20](https://github.com/core-ds/core-components/commit/522af2088bbc7ef9343b4f6c3de5bb7ee51c6202)) +* fixed themes and default font-family ([6bab367](https://github.com/core-ds/core-components/commit/6bab367eb0df53c7d42e31c5e404859638d8d6c9)) +* **core-components-checkbox-group:** fix classnames to camelcase ([522af20](https://github.com/core-ds/core-components/commit/522af2088bbc7ef9343b4f6c3de5bb7ee51c6202)) ## [1.4.0](https://github.com/core-ds/core-components/compare/v1.3.1...v1.4.0) (2020-05-28) + ### Bug Fixes -- **core-components-select:** move select vars to separate file ([8e09aba](https://github.com/core-ds/core-components/commit/8e09abaa90d8a91298be69ef136770588630d824)) +* **core-components-select:** move select vars to separate file ([8e09aba](https://github.com/core-ds/core-components/commit/8e09abaa90d8a91298be69ef136770588630d824)) ### [1.3.1](https://github.com/core-ds/core-components/compare/v1.3.0...v1.3.1) (2020-05-28) + ### ⚠ BREAKING CHANGES -- **core-components-form-control:** Компонент Input теперь зависим от FormField. Большая часть стилей перенесена в +* **core-components-form-control:** Компонент Input теперь зависим от FormField. Большая часть стилей перенесена в FormField -- refactor(core-components-form-control): rename component +* refactor(core-components-form-control): rename component -- refactor(core-components-form-control): component improvements +* refactor(core-components-form-control): component improvements ### Features -- **core-components-button:** add loading state ([5c0a75a](https://github.com/core-ds/core-components/commit/5c0a75a3cae3232ce52be5cd800644c2030abb3b)) -- **core-components-form-control:** add FormControl component ([#127](https://github.com/core-ds/core-components/issues/127)) ([1ea79d1](https://github.com/core-ds/core-components/commit/1ea79d1fc565c2073483a7480893958efff25dff)) -- **core-components-loader:** add new component ([24f0c35](https://github.com/core-ds/core-components/commit/24f0c3538d79059ee64468ab6c7e372eb5647f76)) -- **core-components-popover:** can render without Transition ([#130](https://github.com/core-ds/core-components/issues/130)) ([2569a32](https://github.com/core-ds/core-components/commit/2569a32994e8de57c4a4a5bce853f706183af749)) -- **select:** add select component ([#118](https://github.com/core-ds/core-components/issues/118)) ([8892bd9](https://github.com/core-ds/core-components/commit/8892bd94a6be3ad8ba1e609545becadc8be54b47)) +* **core-components-button:** add loading state ([5c0a75a](https://github.com/core-ds/core-components/commit/5c0a75a3cae3232ce52be5cd800644c2030abb3b)) +* **core-components-form-control:** add FormControl component ([#127](https://github.com/core-ds/core-components/issues/127)) ([1ea79d1](https://github.com/core-ds/core-components/commit/1ea79d1fc565c2073483a7480893958efff25dff)) +* **core-components-loader:** add new component ([24f0c35](https://github.com/core-ds/core-components/commit/24f0c3538d79059ee64468ab6c7e372eb5647f76)) +* **core-components-popover:** can render without Transition ([#130](https://github.com/core-ds/core-components/issues/130)) ([2569a32](https://github.com/core-ds/core-components/commit/2569a32994e8de57c4a4a5bce853f706183af749)) +* **select:** add select component ([#118](https://github.com/core-ds/core-components/issues/118)) ([8892bd9](https://github.com/core-ds/core-components/commit/8892bd94a6be3ad8ba1e609545becadc8be54b47)) + ### Bug Fixes -- **core-components-button:** iconOnly button min-width fix ([ecdf518](https://github.com/core-ds/core-components/commit/ecdf518c89a931b649a6c917caa45b9f4dc2dc7b)) -- **core-components-select:** fix onOpen description ([b28f75a](https://github.com/core-ds/core-components/commit/b28f75afe180dd252900139147f2c7c8df92aeb8)) +* **core-components-button:** iconOnly button min-width fix ([ecdf518](https://github.com/core-ds/core-components/commit/ecdf518c89a931b649a6c917caa45b9f4dc2dc7b)) +* **core-components-select:** fix onOpen description ([b28f75a](https://github.com/core-ds/core-components/commit/b28f75afe180dd252900139147f2c7c8df92aeb8)) ## [1.3.0](https://github.com/core-ds/core-components/compare/v1.2.0...v1.3.0) (2020-05-22) + ### Bug Fixes -- **core-components-popover:** change box-sizing to border-box ([#121](https://github.com/core-ds/core-components/issues/121)) ([2a6883d](https://github.com/core-ds/core-components/commit/2a6883d6832713d197447e23ada822ea07bed5f4)) -- **core-components-popover:** make transition props optional ([#119](https://github.com/core-ds/core-components/issues/119)) ([dce9249](https://github.com/core-ds/core-components/commit/dce924922b67dff1c4ea6b173bd2b70874b56270)) +* **core-components-popover:** change box-sizing to border-box ([#121](https://github.com/core-ds/core-components/issues/121)) ([2a6883d](https://github.com/core-ds/core-components/commit/2a6883d6832713d197447e23ada822ea07bed5f4)) +* **core-components-popover:** make transition props optional ([#119](https://github.com/core-ds/core-components/issues/119)) ([dce9249](https://github.com/core-ds/core-components/commit/dce924922b67dff1c4ea6b173bd2b70874b56270)) ## 1.2.0 (2020-05-08) + ### Features -- add comments to bash ([6149931](https://github.com/core-ds/core-components/commit/61499310c0f928077b887e19621fc50989bac9dc)) -- add demo script ([b5d1c00](https://github.com/core-ds/core-components/commit/b5d1c000e049568768fb6dc018bb8c89a23a8b73)) -- add masked-input ([#76](https://github.com/core-ds/core-components/issues/76)) ([d5c4ba5](https://github.com/core-ds/core-components/commit/d5c4ba51e6ba1e255345a2b570ee54d3c3dfcf5f)) -- delete postInstall ([fd30ef9](https://github.com/core-ds/core-components/commit/fd30ef9eba4e06d81b52e3668d4d38ac2e2ed5ea)) -- fix eslint ([c4f5261](https://github.com/core-ds/core-components/commit/c4f5261ec4ed63f285e0cb7dc0bdbc17e94dc38d)) -- lint fix ([f64c8b9](https://github.com/core-ds/core-components/commit/f64c8b94c801b92b77ab321d3f5990d070e56ca4)) -- modify config for storybook ([c81ad6e](https://github.com/core-ds/core-components/commit/c81ad6e225324c38052fd8aae37001be0ef5c756)) -- post storybook url to PR after push ([#39](https://github.com/core-ds/core-components/issues/39)) ([9acc8ab](https://github.com/core-ds/core-components/commit/9acc8abaff1e48c6a62872b803340212b67ae237)) -- publishing ([bc584e2](https://github.com/core-ds/core-components/commit/bc584e224e17e29fd7178ea096a500264e286685)) -- setup tests ([3e722bd](https://github.com/core-ds/core-components/commit/3e722bda2da14460cbf14cadefafe52b84a2fb76)) -- update demo script ([46d600c](https://github.com/core-ds/core-components/commit/46d600cea9eea44b0372b95d73fca7c4e4d3d404)) -- update dependencies ([a27310a](https://github.com/core-ds/core-components/commit/a27310a23532fad6c719775d35a3032b13432f2c)) -- use custom css-modules naming ([7eacdab](https://github.com/core-ds/core-components/commit/7eacdab49c905486c00fafc19abe38d018765ce8)) -- **base-input:** add base-input ([55ecad6](https://github.com/core-ds/core-components/commit/55ecad6b33f44c6ea3fdd548138d8809f1cc97d8)) -- **button:** add types. add forwardRef ([bd86206](https://github.com/core-ds/core-components/commit/bd86206310cbf3cec2215ccdd81158aa036fadfc)) -- **button:** fixed story ([4811af8](https://github.com/core-ds/core-components/commit/4811af87c8ef9f8f37be6d1dad10621f6698d394)) -- **button:** href prop, updated types & styles ([8745e44](https://github.com/core-ds/core-components/commit/8745e4463deaad04f954bf3d4ae0eca66ddfa99a)) -- **button:** improved button theming ([0d2a255](https://github.com/core-ds/core-components/commit/0d2a2553aafbc34090dbc37edcb2291e0c8f09a6)) -- **button:** updated button styles ([643429d](https://github.com/core-ds/core-components/commit/643429df73fb0b5d96975de2b4b9020c42e99416)) -- **divider:** add divider ([0e4199c](https://github.com/core-ds/core-components/commit/0e4199c6d5b23438442393ef9a8f05594bc39a70)) -- **input:** add new default input ([2314b3b](https://github.com/core-ds/core-components/commit/2314b3b6f47e7b4ebfb3718927ecd593d33b2e1b)) -- **inputs:** icons & addons improvements ([e0abeba](https://github.com/core-ds/core-components/commit/e0abeba1772f8f0c12d01ca9ef5482d80a4e59cc)) -- **inputs:** improve components, update styles & props ([98ff5dd](https://github.com/core-ds/core-components/commit/98ff5dda37e4b55ff5f4bd7c8c9bb80791625935)) -- **inputs:** some refactor. add events & props ([27f5bba](https://github.com/core-ds/core-components/commit/27f5bba60e65181ad848a0628b72711f08377653)) -- **lint:** add lint ([3bd5492](https://github.com/core-ds/core-components/commit/3bd5492bba179083cb26aa99c295a43f8e3be037)) -- **portal:** add new portal component ([#75](https://github.com/core-ds/core-components/issues/75)) ([80d5499](https://github.com/core-ds/core-components/commit/80d5499edfc75c6c382feb3fa638c844c54edd11)) -- **stories:** move to mdx stories ([#104](https://github.com/core-ds/core-components/issues/104)) ([40d6aff](https://github.com/core-ds/core-components/commit/40d6aff309e93dd7072c325c6752f067670fb263)) -- **storybook:** add @storybook/addon-docs. update stories ([1e66461](https://github.com/core-ds/core-components/commit/1e66461164ac48252a305477a78ab49356a12343)) -- **switch:** add new component ([4e23acd](https://github.com/core-ds/core-components/commit/4e23acd4d05db21930d137de72e55fc9732332d3)) -- **tag:** add new component Tag ([1101b57](https://github.com/core-ds/core-components/commit/1101b5792eda538b2c508ff6ace7294c0544d1f0)) -- **themes:** add themes structure ([#108](https://github.com/core-ds/core-components/issues/108)) ([eb05b6d](https://github.com/core-ds/core-components/commit/eb05b6df0d56c76f39ebdcf6a1a6de079c3aa63b)) -- **typography:** add tools for mixin building ([e995924](https://github.com/core-ds/core-components/commit/e99592428c15573e9097a6457dd33361f5a75e85)) -- **typography:** update tokens & scripts. rebuild ([91c7c76](https://github.com/core-ds/core-components/commit/91c7c769d9623cc38f9b44a38d3a027f9fed7136)) -- **vars:** add index.css ([#90](https://github.com/core-ds/core-components/issues/90)) ([d9f3af1](https://github.com/core-ds/core-components/commit/d9f3af1521187d406271fed448dc4af498beb39e)) -- **vars:** add negative gaps ([#99](https://github.com/core-ds/core-components/issues/99)) ([5dc2cf4](https://github.com/core-ds/core-components/commit/5dc2cf404558d705411f248b353aa4841a508799)) - -### Bug Fixes - -- fix 4 spaces ([049cfa9](https://github.com/core-ds/core-components/commit/049cfa919cfd96315f716d724c0ea670c667aae2)) -- fix issues accodring to PR [#36](https://github.com/core-ds/core-components/issues/36) ([9c57325](https://github.com/core-ds/core-components/commit/9c5732519063c89fa5a544ae87611cc1244ee78b)) -- fix lint errors ([86fa366](https://github.com/core-ds/core-components/commit/86fa36694323671bd3e4bbb28980134d4e7e2ce2)) -- fixed linter errors ([0c9f9c6](https://github.com/core-ds/core-components/commit/0c9f9c69127ba979a03e66dd80f4be083d2760ce)) -- prepare inputs. move @types/jest to devDeps ([5f30dbb](https://github.com/core-ds/core-components/commit/5f30dbb064b468e54159914604426c8ec3310522)) -- restore babel config ([50eaa68](https://github.com/core-ds/core-components/commit/50eaa682c93733a4d5f1dc0fbcd32a4214b643f3)) -- update scripts & snapshots ([ce35a02](https://github.com/core-ds/core-components/commit/ce35a026850700af09953e47006bce0885c920aa)) -- **build-root-package:** several hyphens in dir name ([aeb5dfb](https://github.com/core-ds/core-components/commit/aeb5dfba8a88153762602a9c20c8db478ae2943f)) -- **button:** add missing href ([756d84b](https://github.com/core-ds/core-components/commit/756d84b775298045cdb205bc2f5155d04c6d4f35)) -- **button:** remove unused deps ([f287d48](https://github.com/core-ds/core-components/commit/f287d48dadab80b2f98e43c5a9d74029d4286303)) -- **button:** transition duration fix ([cd49653](https://github.com/core-ds/core-components/commit/cd49653db2670f9c846fb9d839f3c75d8e1c1f54)) -- **deploy:** fix demo-build for master branch ([fc46861](https://github.com/core-ds/core-components/commit/fc46861e0c8b9664abda0efaba42a175504ab02f)) -- **deps:** fix wrong dependencies ([#92](https://github.com/core-ds/core-components/issues/92)) ([085e2ce](https://github.com/core-ds/core-components/commit/085e2cef73841178322c89ef90e90747e6971adf)) -- **divider:** delete default margin ([c514bf3](https://github.com/core-ds/core-components/commit/c514bf386755b7e29f36ae148deea7a08c7984da)) -- **divider:** remarks from PR ([5df2c6f](https://github.com/core-ds/core-components/commit/5df2c6fae1d7eab7aaa77604e4f0f09c3304e1ab)) -- **divider:** style ([d718a69](https://github.com/core-ds/core-components/commit/d718a6922f38ec0e60eea23ebe1803a8798de8fa)) -- **input:** fix l bottom margin ([c41a840](https://github.com/core-ds/core-components/commit/c41a8408e1c8f338be4a787bb06d51be7f1e66da)) -- **input:** fix render fn ([4cf8ef1](https://github.com/core-ds/core-components/commit/4cf8ef18dc8fc703f50ebf70877762b8bcac7a71)) -- **input:** fix wrong filled state ([#109](https://github.com/core-ds/core-components/issues/109)) ([576495a](https://github.com/core-ds/core-components/commit/576495ac639278bf5e873535173736a8082d1b44)) -- **input:** pass sub as BaseInput child ([b60d64c](https://github.com/core-ds/core-components/commit/b60d64ca432ccf94b7472116f04010327b7c9c72)) -- **inputs:** border-box fix ([81752e1](https://github.com/core-ds/core-components/commit/81752e189382e7c2dc3982b50291b9be5827cea1)) -- **inputs:** fix css vars ([1e233a2](https://github.com/core-ds/core-components/commit/1e233a26423c544ead925851a2e7925402710951)) -- **inputs:** fix input width ([9ed950f](https://github.com/core-ds/core-components/commit/9ed950f103057c74cf02ff4a95a7a6ba868aced8)) -- **inputs:** fix placeholders styles ([e404483](https://github.com/core-ds/core-components/commit/e4044838c96b527228a78a33ee24104c4899c80f)) -- **inputs:** fix styles and types ([cb6b189](https://github.com/core-ds/core-components/commit/cb6b18957d86410deddfae2d41fea0ed201e4073)) -- **inputs:** l size side paddings ([b9688a2](https://github.com/core-ds/core-components/commit/b9688a246aec4c5e442e6ee7a84a77c87d95371b)) -- **inputs:** remove from state, detect by value prop ([208c07e](https://github.com/core-ds/core-components/commit/208c07e9a73640f43950779615d4ec3f39e61c66)) -- **inputs:** remove file type. fix styles. withIcon -> rightAddons ([f149aa8](https://github.com/core-ds/core-components/commit/f149aa88de2f94329e5c905846034d619589a7bf)) -- **inputs:** styles fixes ([9a3199e](https://github.com/core-ds/core-components/commit/9a3199ef03d8e6a97d48c376b79938c2f1bf1372)) -- **masked-input,switch:** fix wrong main field ([76d0e4e](https://github.com/core-ds/core-components/commit/76d0e4e6b05973977f49ef5edeb56790daffa566)) -- **switch:** fix global tag styling ([66ce011](https://github.com/core-ds/core-components/commit/66ce0111b0e4c47e957f94afbf66f1ff50cab607)) -- **switch:** replace div with span ([69624f9](https://github.com/core-ds/core-components/commit/69624f9c2a2e07aa91829a8940245e83e7576d05)) -- **tag:** fix disabled state ([#110](https://github.com/core-ds/core-components/issues/110)) ([a622101](https://github.com/core-ds/core-components/commit/a622101cb448e623e95ae9bfecc310548ac52dbe)) -- **tag:** fix styles ([#80](https://github.com/core-ds/core-components/issues/80)) ([bc80ba4](https://github.com/core-ds/core-components/commit/bc80ba47366a91d998d764675e17aeaed3c31666)) -- **tests:** rewrite tests titles ([d0f16ad](https://github.com/core-ds/core-components/commit/d0f16ad812cb098ba9cbf612bde245784dfb6227)) -- **tsconfig:** fix local module resolution ([f8faadf](https://github.com/core-ds/core-components/commit/f8faadfdfea9e8b570c77e1c8b3bf462ea6d26e6)) -- **typography:** add prettier-ignore to fix mixin breaking. rebuild ([6909df6](https://github.com/core-ds/core-components/commit/6909df62bbc9b0dd67143cdb950dd8e50bf54067)) -- **update-colors.js:** fix it ([c9b8c68](https://github.com/core-ds/core-components/commit/c9b8c68b8ac07e2bff33399cc1a99405bb71132d)) -- **vars:** fix build for vars. add typography to index ([cc00344](https://github.com/core-ds/core-components/commit/cc00344d6db8e60b0b230829d8bed4ef5f20c9d1)) +* add comments to bash ([6149931](https://github.com/core-ds/core-components/commit/61499310c0f928077b887e19621fc50989bac9dc)) +* add demo script ([b5d1c00](https://github.com/core-ds/core-components/commit/b5d1c000e049568768fb6dc018bb8c89a23a8b73)) +* add masked-input ([#76](https://github.com/core-ds/core-components/issues/76)) ([d5c4ba5](https://github.com/core-ds/core-components/commit/d5c4ba51e6ba1e255345a2b570ee54d3c3dfcf5f)) +* delete postInstall ([fd30ef9](https://github.com/core-ds/core-components/commit/fd30ef9eba4e06d81b52e3668d4d38ac2e2ed5ea)) +* fix eslint ([c4f5261](https://github.com/core-ds/core-components/commit/c4f5261ec4ed63f285e0cb7dc0bdbc17e94dc38d)) +* lint fix ([f64c8b9](https://github.com/core-ds/core-components/commit/f64c8b94c801b92b77ab321d3f5990d070e56ca4)) +* modify config for storybook ([c81ad6e](https://github.com/core-ds/core-components/commit/c81ad6e225324c38052fd8aae37001be0ef5c756)) +* post storybook url to PR after push ([#39](https://github.com/core-ds/core-components/issues/39)) ([9acc8ab](https://github.com/core-ds/core-components/commit/9acc8abaff1e48c6a62872b803340212b67ae237)) +* publishing ([bc584e2](https://github.com/core-ds/core-components/commit/bc584e224e17e29fd7178ea096a500264e286685)) +* setup tests ([3e722bd](https://github.com/core-ds/core-components/commit/3e722bda2da14460cbf14cadefafe52b84a2fb76)) +* update demo script ([46d600c](https://github.com/core-ds/core-components/commit/46d600cea9eea44b0372b95d73fca7c4e4d3d404)) +* update dependencies ([a27310a](https://github.com/core-ds/core-components/commit/a27310a23532fad6c719775d35a3032b13432f2c)) +* use custom css-modules naming ([7eacdab](https://github.com/core-ds/core-components/commit/7eacdab49c905486c00fafc19abe38d018765ce8)) +* **base-input:** add base-input ([55ecad6](https://github.com/core-ds/core-components/commit/55ecad6b33f44c6ea3fdd548138d8809f1cc97d8)) +* **button:** add types. add forwardRef ([bd86206](https://github.com/core-ds/core-components/commit/bd86206310cbf3cec2215ccdd81158aa036fadfc)) +* **button:** fixed story ([4811af8](https://github.com/core-ds/core-components/commit/4811af87c8ef9f8f37be6d1dad10621f6698d394)) +* **button:** href prop, updated types & styles ([8745e44](https://github.com/core-ds/core-components/commit/8745e4463deaad04f954bf3d4ae0eca66ddfa99a)) +* **button:** improved button theming ([0d2a255](https://github.com/core-ds/core-components/commit/0d2a2553aafbc34090dbc37edcb2291e0c8f09a6)) +* **button:** updated button styles ([643429d](https://github.com/core-ds/core-components/commit/643429df73fb0b5d96975de2b4b9020c42e99416)) +* **divider:** add divider ([0e4199c](https://github.com/core-ds/core-components/commit/0e4199c6d5b23438442393ef9a8f05594bc39a70)) +* **input:** add new default input ([2314b3b](https://github.com/core-ds/core-components/commit/2314b3b6f47e7b4ebfb3718927ecd593d33b2e1b)) +* **inputs:** icons & addons improvements ([e0abeba](https://github.com/core-ds/core-components/commit/e0abeba1772f8f0c12d01ca9ef5482d80a4e59cc)) +* **inputs:** improve components, update styles & props ([98ff5dd](https://github.com/core-ds/core-components/commit/98ff5dda37e4b55ff5f4bd7c8c9bb80791625935)) +* **inputs:** some refactor. add events & props ([27f5bba](https://github.com/core-ds/core-components/commit/27f5bba60e65181ad848a0628b72711f08377653)) +* **lint:** add lint ([3bd5492](https://github.com/core-ds/core-components/commit/3bd5492bba179083cb26aa99c295a43f8e3be037)) +* **portal:** add new portal component ([#75](https://github.com/core-ds/core-components/issues/75)) ([80d5499](https://github.com/core-ds/core-components/commit/80d5499edfc75c6c382feb3fa638c844c54edd11)) +* **stories:** move to mdx stories ([#104](https://github.com/core-ds/core-components/issues/104)) ([40d6aff](https://github.com/core-ds/core-components/commit/40d6aff309e93dd7072c325c6752f067670fb263)) +* **storybook:** add @storybook/addon-docs. update stories ([1e66461](https://github.com/core-ds/core-components/commit/1e66461164ac48252a305477a78ab49356a12343)) +* **switch:** add new component ([4e23acd](https://github.com/core-ds/core-components/commit/4e23acd4d05db21930d137de72e55fc9732332d3)) +* **tag:** add new component Tag ([1101b57](https://github.com/core-ds/core-components/commit/1101b5792eda538b2c508ff6ace7294c0544d1f0)) +* **themes:** add themes structure ([#108](https://github.com/core-ds/core-components/issues/108)) ([eb05b6d](https://github.com/core-ds/core-components/commit/eb05b6df0d56c76f39ebdcf6a1a6de079c3aa63b)) +* **typography:** add tools for mixin building ([e995924](https://github.com/core-ds/core-components/commit/e99592428c15573e9097a6457dd33361f5a75e85)) +* **typography:** update tokens & scripts. rebuild ([91c7c76](https://github.com/core-ds/core-components/commit/91c7c769d9623cc38f9b44a38d3a027f9fed7136)) +* **vars:** add index.css ([#90](https://github.com/core-ds/core-components/issues/90)) ([d9f3af1](https://github.com/core-ds/core-components/commit/d9f3af1521187d406271fed448dc4af498beb39e)) +* **vars:** add negative gaps ([#99](https://github.com/core-ds/core-components/issues/99)) ([5dc2cf4](https://github.com/core-ds/core-components/commit/5dc2cf404558d705411f248b353aa4841a508799)) + + +### Bug Fixes + +* fix 4 spaces ([049cfa9](https://github.com/core-ds/core-components/commit/049cfa919cfd96315f716d724c0ea670c667aae2)) +* fix issues accodring to PR [#36](https://github.com/core-ds/core-components/issues/36) ([9c57325](https://github.com/core-ds/core-components/commit/9c5732519063c89fa5a544ae87611cc1244ee78b)) +* fix lint errors ([86fa366](https://github.com/core-ds/core-components/commit/86fa36694323671bd3e4bbb28980134d4e7e2ce2)) +* fixed linter errors ([0c9f9c6](https://github.com/core-ds/core-components/commit/0c9f9c69127ba979a03e66dd80f4be083d2760ce)) +* prepare inputs. move @types/jest to devDeps ([5f30dbb](https://github.com/core-ds/core-components/commit/5f30dbb064b468e54159914604426c8ec3310522)) +* restore babel config ([50eaa68](https://github.com/core-ds/core-components/commit/50eaa682c93733a4d5f1dc0fbcd32a4214b643f3)) +* update scripts & snapshots ([ce35a02](https://github.com/core-ds/core-components/commit/ce35a026850700af09953e47006bce0885c920aa)) +* **build-root-package:** several hyphens in dir name ([aeb5dfb](https://github.com/core-ds/core-components/commit/aeb5dfba8a88153762602a9c20c8db478ae2943f)) +* **button:** add missing href ([756d84b](https://github.com/core-ds/core-components/commit/756d84b775298045cdb205bc2f5155d04c6d4f35)) +* **button:** remove unused deps ([f287d48](https://github.com/core-ds/core-components/commit/f287d48dadab80b2f98e43c5a9d74029d4286303)) +* **button:** transition duration fix ([cd49653](https://github.com/core-ds/core-components/commit/cd49653db2670f9c846fb9d839f3c75d8e1c1f54)) +* **deploy:** fix demo-build for master branch ([fc46861](https://github.com/core-ds/core-components/commit/fc46861e0c8b9664abda0efaba42a175504ab02f)) +* **deps:** fix wrong dependencies ([#92](https://github.com/core-ds/core-components/issues/92)) ([085e2ce](https://github.com/core-ds/core-components/commit/085e2cef73841178322c89ef90e90747e6971adf)) +* **divider:** delete default margin ([c514bf3](https://github.com/core-ds/core-components/commit/c514bf386755b7e29f36ae148deea7a08c7984da)) +* **divider:** remarks from PR ([5df2c6f](https://github.com/core-ds/core-components/commit/5df2c6fae1d7eab7aaa77604e4f0f09c3304e1ab)) +* **divider:** style ([d718a69](https://github.com/core-ds/core-components/commit/d718a6922f38ec0e60eea23ebe1803a8798de8fa)) +* **input:** fix l bottom margin ([c41a840](https://github.com/core-ds/core-components/commit/c41a8408e1c8f338be4a787bb06d51be7f1e66da)) +* **input:** fix render fn ([4cf8ef1](https://github.com/core-ds/core-components/commit/4cf8ef18dc8fc703f50ebf70877762b8bcac7a71)) +* **input:** fix wrong filled state ([#109](https://github.com/core-ds/core-components/issues/109)) ([576495a](https://github.com/core-ds/core-components/commit/576495ac639278bf5e873535173736a8082d1b44)) +* **input:** pass sub as BaseInput child ([b60d64c](https://github.com/core-ds/core-components/commit/b60d64ca432ccf94b7472116f04010327b7c9c72)) +* **inputs:** border-box fix ([81752e1](https://github.com/core-ds/core-components/commit/81752e189382e7c2dc3982b50291b9be5827cea1)) +* **inputs:** fix css vars ([1e233a2](https://github.com/core-ds/core-components/commit/1e233a26423c544ead925851a2e7925402710951)) +* **inputs:** fix input width ([9ed950f](https://github.com/core-ds/core-components/commit/9ed950f103057c74cf02ff4a95a7a6ba868aced8)) +* **inputs:** fix placeholders styles ([e404483](https://github.com/core-ds/core-components/commit/e4044838c96b527228a78a33ee24104c4899c80f)) +* **inputs:** fix styles and types ([cb6b189](https://github.com/core-ds/core-components/commit/cb6b18957d86410deddfae2d41fea0ed201e4073)) +* **inputs:** l size side paddings ([b9688a2](https://github.com/core-ds/core-components/commit/b9688a246aec4c5e442e6ee7a84a77c87d95371b)) +* **inputs:** remove from state, detect by value prop ([208c07e](https://github.com/core-ds/core-components/commit/208c07e9a73640f43950779615d4ec3f39e61c66)) +* **inputs:** remove file type. fix styles. withIcon -> rightAddons ([f149aa8](https://github.com/core-ds/core-components/commit/f149aa88de2f94329e5c905846034d619589a7bf)) +* **inputs:** styles fixes ([9a3199e](https://github.com/core-ds/core-components/commit/9a3199ef03d8e6a97d48c376b79938c2f1bf1372)) +* **masked-input,switch:** fix wrong main field ([76d0e4e](https://github.com/core-ds/core-components/commit/76d0e4e6b05973977f49ef5edeb56790daffa566)) +* **switch:** fix global tag styling ([66ce011](https://github.com/core-ds/core-components/commit/66ce0111b0e4c47e957f94afbf66f1ff50cab607)) +* **switch:** replace div with span ([69624f9](https://github.com/core-ds/core-components/commit/69624f9c2a2e07aa91829a8940245e83e7576d05)) +* **tag:** fix disabled state ([#110](https://github.com/core-ds/core-components/issues/110)) ([a622101](https://github.com/core-ds/core-components/commit/a622101cb448e623e95ae9bfecc310548ac52dbe)) +* **tag:** fix styles ([#80](https://github.com/core-ds/core-components/issues/80)) ([bc80ba4](https://github.com/core-ds/core-components/commit/bc80ba47366a91d998d764675e17aeaed3c31666)) +* **tests:** rewrite tests titles ([d0f16ad](https://github.com/core-ds/core-components/commit/d0f16ad812cb098ba9cbf612bde245784dfb6227)) +* **tsconfig:** fix local module resolution ([f8faadf](https://github.com/core-ds/core-components/commit/f8faadfdfea9e8b570c77e1c8b3bf462ea6d26e6)) +* **typography:** add prettier-ignore to fix mixin breaking. rebuild ([6909df6](https://github.com/core-ds/core-components/commit/6909df62bbc9b0dd67143cdb950dd8e50bf54067)) +* **update-colors.js:** fix it ([c9b8c68](https://github.com/core-ds/core-components/commit/c9b8c68b8ac07e2bff33399cc1a99405bb71132d)) +* **vars:** fix build for vars. add typography to index ([cc00344](https://github.com/core-ds/core-components/commit/cc00344d6db8e60b0b230829d8bed4ef5f20c9d1)) diff --git a/CHANGELOG.2022.md b/CHANGELOG.2022.md index efb1cb6bdc..183fe025ba 100644 --- a/CHANGELOG.2022.md +++ b/CHANGELOG.2022.md @@ -5,83 +5,76 @@ ### [#430](https://github.com/core-ds/core-components/pull/430) #### Что изменилось - - Поднята специфичность стилей #### Влияние на компоненты - - Патчи
`icon-button` + ### [#436](https://github.com/core-ds/core-components/pull/436) #### Что изменилось - - Исправлен font-weight для TitleResponsive #### Влияние на компоненты - - Патчи
`typography` + ### [#410](https://github.com/core-ds/core-components/pull/410) #### Что изменилось - - Исправлено поведение таба при disabled-состоянии #### Влияние на компоненты - - Патчи
`tabs` + ### [#419](https://github.com/core-ds/core-components/pull/419) #### Что изменилось - - Добавлен новый компонент GenericWrapper. Исправлено поведение компонента Gap для flex лейаута #### Влияние на компоненты - - Минорное
`generic-wrapper` `gap` + ### [#413](https://github.com/core-ds/core-components/pull/413) #### Что изменилось - - Добавлен проп `collapsedTabsIds`, позволяющий заранее определять и контроллировать список вкладок, вынесенный под меню «Ещё» #### Влияние на компоненты - - Минорное
`tabs` + ### [#432](https://github.com/core-ds/core-components/pull/432) #### Что изменилось - - Обновлен тип для props 'size' #### Влияние на компоненты - - Патчи
`icon-view` + ### [#433](https://github.com/core-ds/core-components/pull/433) #### Что изменилось - - Добавлен новый опциональный prop `showClear` в компонент FilterTag. Теперь есть возможность скрывать наличие крестика в активном состоянии тэга #### Влияние на компоненты - - Патчи
`filter-tag` + ### [#431](https://github.com/core-ds/core-components/pull/431) #### Что изменилось - - Добавленa возможность убирать стрелку через пропс showArrow #### Влияние на компоненты - - Минорное
`picker-button` + + ## 37.0.0 @@ -89,19 +82,17 @@ ### [#397](https://github.com/core-ds/core-components/pull/397) #### Что изменилось - - Обновлен размер 's' c 18px на 20px для Badge view='icon' - Исправлено сжатие svg в размерах 's' и 'm'
- Обводка для Badge view='count' изменена с внешней на внутреннюю
#### Влияние на компоненты - - Мажорное
`badge` + ### [#393](https://github.com/core-ds/core-components/pull/393) #### Что изменилось - - Исправлен borderRadius у календаря - Исправлена ошибка, из-за которой коллбэки onChange и onComplete в компоненте DateTimeInput не вызывались, если даты выбиралась с помощью календаря
- В компоненте DateTimeInput изменена типизация onChange и onComplete коллбэков. Теперь event опциональный, так как при выборе даты в пикере ChangeEvent в инпуте не происходит
@@ -109,54 +100,51 @@ - В компоненте DateRangeInput исправлены ошибки, из-за которых в коллбэке onComplete передавалось неверное значение value и при полной очистке инпута период в календаре не сбрасывался
#### Влияние на компоненты - - Мажорное
`date-time-input` + - Патчи
`date-range-input` + ### [#396](https://github.com/core-ds/core-components/pull/396) #### Что изменилось - - Добавлен новый вид выреза под индикатор - Добавлены новые размеры 32px и 20px
- В старых размерах изменены вырезы под аддон и размер аддонов (в 64 размере с 18px до 24px, в 48 и 40 размерах с 18px до 20px)
- Добавлена возможность прокидывать иконку в шейп
#### Влияние на компоненты - - Мажорное
`icon-view`
#### Что изменилось - - Обновлена версия пакета @alfalab/icons-glyph в зависимостях #### Влияние на компоненты - - Патчи
`attach` `bank-card` `calendar` `checkbox` `confirmation-v1`
`confirmation` `dropzone` `file-upload-item` `gallery` `input`
`modal` `pass-code` `password-input` `picker-button` `select-with-tags`
`select` `steps` `toast-plate` + ### [#429](https://github.com/core-ds/core-components/pull/429) #### Что изменилось - - Исправлено переполнение контейнера PureCell.Text #### Влияние на компоненты - - Патчи
`pure-cell` + ### [#426](https://github.com/core-ds/core-components/pull/426) #### Что изменилось - - Исправлен дефект позволяющий удалить `dialCode` при выключеном `clearableCountryCode` #### Влияние на компоненты - - Патчи
`intl-phone-input` + + ## 36.5.1 @@ -164,43 +152,40 @@ ### [#423](https://github.com/core-ds/core-components/pull/423) #### Что изменилось - - Исправлен импорт компонента Badge #### Влияние на компоненты - - Патчи
`input` `select` + ### [#422](https://github.com/core-ds/core-components/pull/422) #### Что изменилось - - "export" типов заменен на "export type" #### Влияние на компоненты - - Патчи
`calendar-input` `calendar` `date-range-input` `date-time-input` `input-autocomplete`
`picker-button` `tooltip` + ### [#428](https://github.com/core-ds/core-components/pull/428) #### Что изменилось - - Исправлен patternId для imageUrl #### Влияние на компоненты - - Патчи
`icon-view` + ### [#411](https://github.com/core-ds/core-components/pull/411) #### Что изменилось - - Исправлен отступ у лоадера в мобильной версии #### Влияние на компоненты - - Патчи
`confirmation` + + ## 36.5.0 @@ -208,26 +193,25 @@ ### [#334](https://github.com/core-ds/core-components/pull/334) #### Что изменилось - - В компонентах DateRangeInput, DateTimeInput и CalendarInput добавлены mobile и desktop версии компонентов. Название компонентов было изменено по схеме Component → ComponentDesktop - В компонентах Calendar и InputAutocomplete добавлена responsive версия компонентов. Название компонентов было изменено по схеме Component → ComponentResponsive
- В компонентах PickerButton и Tooltip добавлен новый пропс breakpoint. Название компонентов было изменено по схеме Component -→ ComponentResponsive для PickerButton и Component → ComponentDesktop для Tooltip
- В компонентах Confirmation и SidePanel добавлен новый пропс breakpoint
#### Влияние на компоненты - - Минорное
`calendar-input` `calendar` `confirmation` `date-range-input` `date-time-input`
`input-autocomplete` `picker-button` `side-panel` `tooltip` + ### [#418](https://github.com/core-ds/core-components/pull/418) #### Что изменилось - - Исправлена проблема с default-импортом в cjs форматах #### Влияние на компоненты - - Патчи
`action-button` `alert` `amount` `amount-input` `attach`
`backdrop` `badge` `bank-card` `base-modal` `bottom-sheet`
`button` `calendar` `calendar-input` `calendar-range` `calendar-with-skeleton`
`card-image` `cdn-icon` `chart` `checkbox` `checkbox-group`
`circular-progress-bar` `code-input` `collapse` `comment` `confirmation`
`confirmation-v1` `custom-button` `date-input` `date-range-input` `date-time-input`
`divider` `drawer` `dropzone` `file-upload-item` `filter-tag`
`form-control` `gallery` `gap` `global-store` `grid`
`hatching-progress-bar` `icon-button` `icon-view` `input` `input-autocomplete`
`intl-phone-input` `keyboard-focusable` `link` `list` `list-header`
`loader` `masked-input` `modal` `mq` `notification`
`notification-manager` `pagination` `pass-code` `password-input` `pattern-lock`
`phone-input` `picker-button` `plate` `popover` `portal`
`progress-bar` `pure-cell` `pure-input` `radio` `radio-group`
`scrollbar` `select` `select-with-tags` `side-panel` `skeleton`
`slider` `slider-input` `space` `spinner` `stack`
`status` `stepped-progress-bar` `steps` `switch` `table`
`tabs` `tag` `textarea` `themes` `time-input`
`toast` `toast-plate` `tooltip` `typography` `vars`
`with-suffix` + + ## 36.4.0 @@ -235,57 +219,54 @@ ### [#402](https://github.com/core-ds/core-components/pull/402) #### Что изменилось - - Добавлено свойство `max-width` для Tooltip. #### Влияние на компоненты - - Патчи
`tooltip` + ### [#407](https://github.com/core-ds/core-components/pull/407) #### Что изменилось - - В CodeInput добавлен новый проп onErrorAnimationEnd - В Confirmation теперь сбрасывается состоянии ошибки при включенном пропе clearCodeOnError
- В Confirmation исправлена ошибка, из-за которой не показывался текст из пропа texts.blockSmsRetry
#### Влияние на компоненты - - Минорное
`code-input` + - Патчи
`confirmation` + ### [#394](https://github.com/core-ds/core-components/pull/394) #### Что изменилось - - Исправлена генерация типов в .d.ts #### Влияние на компоненты - - Патчи
`modal` + ### [#375](https://github.com/core-ds/core-components/pull/375) #### Что изменилось - - Добавлен опциональный prop `multiple` в компонент InputAutocompleteMobile. Теперь есть возможность выбрать несколько значений #### Влияние на компоненты - - Минорное
`input-autocomplete` + ### [#399](https://github.com/core-ds/core-components/pull/399) #### Что изменилось - - Исправлено некорректное выделение текста который превышает maxLength #### Влияние на компоненты - - Патчи
`textarea` + + ## 36.3.1 @@ -293,24 +274,23 @@ ### [#400](https://github.com/core-ds/core-components/pull/400) #### Что изменилось - - Исправлена верстка fatal-error экрана - Поднята специфичность стилей Confirmation, чтобы они всегда перебивали стили других компонентов.
#### Влияние на компоненты - - Патчи
`confirmation` + ### [#388](https://github.com/core-ds/core-components/pull/388) #### Что изменилось - - Исправлен импорт PickerButtonDesktop компонента #### Влияние на компоненты - - Патчи
`tabs` + + ## 36.3.0 @@ -318,103 +298,93 @@ ### [#377](https://github.com/core-ds/core-components/pull/377) #### Что изменилось - - Добавлен новый компонент PatternLock #### Влияние на компоненты - - Минорное
`pattern-lock`
#### Что изменилось - - Добавлены новые токены light-graphic-positive-alpha-10 и light-graphic-negative-alpha-10 #### Влияние на компоненты - - Минорное
`themes` `vars` + ### [#364](https://github.com/core-ds/core-components/pull/364) #### Что изменилось - - Замена иконок флагов на новые, если для страны нет соответствующего флага в наборе, вместо него выводится заглушка. #### Влияние на компоненты - - Минорное
`intl-phone-input` + ### [#383](https://github.com/core-ds/core-components/pull/383) #### Что изменилось - - Добавлен новый компонент PassCode #### Влияние на компоненты - - Минорное
`pass-code` + ### [#370](https://github.com/core-ds/core-components/pull/370) #### Что изменилось - - feat(picker-button): extend options type #### Влияние на компоненты - - Минорное
`picker-button` + ### [#390](https://github.com/core-ds/core-components/pull/390) #### Что изменилось - - Подправлена типизация для компонента Typography.Text, чтобы можно было передавать ref #### Влияние на компоненты - - Патчи
`typography` + ### [#381](https://github.com/core-ds/core-components/pull/381) #### Что изменилось - - В хук useMatchMedia добавлено значение по-умолчанию. Также useEffect заменен на useLayoutEffect #### Влияние на компоненты - - Минорное
`mq` + ### [#357](https://github.com/core-ds/core-components/pull/357) #### Что изменилось - - Добавлена механика переполнения в Textarea. Теперь ввод будет доступен даже если количество введённых символов превышает maxLength. Символы, позиция которых превышает maxLength, будут выделены цветом ошибки. #### Влияние на компоненты - - Минорное
`textarea` + ### [#376](https://github.com/core-ds/core-components/pull/376) #### Что изменилось - - Убрали дополнительную обертку, которая ограничивала применение пропа `className` #### Влияние на компоненты - - Патчи
`plate` + ### [#362](https://github.com/core-ds/core-components/pull/362) #### Что изменилось - - Исправлена ошибка в onChange обработчике, из-за которой некорректно работала вставка значений с пробелом. #### Влияние на компоненты - - Патчи
`slider-input` + + ## 36.2.0 @@ -422,23 +392,22 @@ ### [#347](https://github.com/core-ds/core-components/pull/347) #### Что изменилось - - feat(themes): add js entries #### Влияние на компоненты - - Минорное
`themes` + ### [#348](https://github.com/core-ds/core-components/pull/348) #### Что изменилось - - feat(select-mobile): allow to customize optionsList #### Влияние на компоненты - - Минорное
`select` + + ## 36.1.2 @@ -446,33 +415,31 @@ ### [#358](https://github.com/core-ds/core-components/pull/358) #### Что изменилось - - Добавлен новый prop `defaultMargins` в компонент Text. Теперь есть возможность отключить отступ для тега `p` #### Влияние на компоненты - - Патчи
`typography` + ### [#371](https://github.com/core-ds/core-components/pull/371) #### Что изменилось - - Добавлен новый опциональный prop `rowLimit` в компонент Plate. Теперь есть возможность ограничивать количество строк для передаваемого текста в `children` (от 1 до 3). #### Влияние на компоненты - - Патчи
`plate` + ### [#372](https://github.com/core-ds/core-components/pull/372) #### Что изменилось - - Исправлена ошибка "document is not defined" при immediateMount=true #### Влияние на компоненты - - Патчи
`portal` + + ## 36.1.1 @@ -480,13 +447,13 @@ ### [#368](https://github.com/core-ds/core-components/pull/368) #### Что изменилось - - Обновлен пакет ui-primitives и миксины typography (изменился line-height 24→20 у миксинов headline-mobile_xsmall и headline-system-mobile_xsmall) #### Влияние на компоненты - - Патчи
`typography` + + ## 36.1.0 @@ -494,101 +461,90 @@ ### [#336](https://github.com/core-ds/core-components/pull/336) #### Что изменилось - - Добавлен пропс collapsible, при включении которого не помещающиеся в окне табы сворачиваются в PickerButton. - Добавлен хук use-collapsible-elements, который следит за изменением ширины контейнера и возвращает те элементы, которые не помещаются в данном контейнере.
#### Влияние на компоненты - - Минорное
`tabs` + ### [#360](https://github.com/core-ds/core-components/pull/360) #### Что изменилось - - Исправили max-height контента. Теперь max-height добавляется только раскрываемому(foldable) контенту. #### Влияние на компоненты - - Патчи
`plate` + ### [#329](https://github.com/core-ds/core-components/pull/329) #### Что изменилось - - Добавлен z-index к липкому header #### Влияние на компоненты - - Минорное
`modal`
#### Что изменилось - - Добавлен новый компонент BaseOption - Изменены отступы у заголовка группы (компонент Optgroup)
- Изменены отступы у футера, который возвращает хук useSelectWithApply
- Добавлена возможность прокидывать кастомный Option в useLazyLoading и useSelectWithLoading хук
#### Влияние на компоненты - - Минорное
`select`
#### Что изменилось - - Добавлено вертикальное выравнивание у компонента PureCell.Graphics #### Влияние на компоненты - - Минорное
`pure-cell` + ### [#346](https://github.com/core-ds/core-components/pull/346) #### Что изменилось - - В компоненте Select иконки подгружаемые с cdn были заменены на иконки из icons-glyph #### Влияние на компоненты - - Минорное
`select` `themes` + ### [#335](https://github.com/core-ds/core-components/pull/335) #### Что изменилось - - Добавлен обязательный параметр(expanded) в типы обработчиков состояний. Добавлены пропсы:

-- `expandedContentClassName` - позволяет устанавливать дополнительный класс для скрываемого контента.
-- `defaultExpanded` - позволяет устанавливать начальное состояние неконтролируемого компонента.
+- `expandedContentClassName` - позволяет устанавливать дополнительный класс для скрываемого контента.
+- `defaultExpanded` - позволяет устанавливать начальное состояние неконтролируемого компонента.
#### Влияние на компоненты - - Минорное
`collapse`
#### Что изменилось - - Добавили restProps в компонент #### Влияние на компоненты - - Минорное
`list` + ### [#342](https://github.com/core-ds/core-components/pull/342) #### Что изменилось - - В компонентах Gallery и Input иконки подгружаемые с cdn были заменены на иконки из icons-glyph #### Влияние на компоненты - - Минорное
`gallery` `input` `themes` `amount-input` `date-input`
`date-range-input` `date-time-input` `input-autocomplete` `intl-phone-input` `masked-input`
`password-input` `slider-input` `time-input` `calendar-input` `phone-input`
+ + ## 36.0.0 @@ -596,114 +552,104 @@ ### [#344](https://github.com/core-ds/core-components/pull/344) #### Что изменилось - - При наличии правого аддона, дефолтная иконка кнопки не исчезает #### Влияние на компоненты - - Мажорное
`picker-button` + ### [#331](https://github.com/core-ds/core-components/pull/331) #### Что изменилось - - Изменен фоновый цвет на light/specialbg/secondary-transparent для компонента Plate в режиме common #### Влияние на компоненты - - Минорное
`plate` + ### [#350](https://github.com/core-ds/core-components/pull/350) #### Что изменилось - - В документацию добавлены пропсы и их описание для подкомпонентов SidePanel #### Влияние на компоненты - - Патчи
`side-panel` + ### [#326](https://github.com/core-ds/core-components/pull/326) #### Что изменилось - - Исправлены прыжки поповера в react 18 #### Влияние на компоненты - - Патчи
`popover` + ### [#352](https://github.com/core-ds/core-components/pull/352) #### Что изменилось - - Исправлена ошибка в ModalResponsive, из-за которой сбрасывалось состояние у дочерник компонентов при переключении desktop -> mobile и наоборот #### Влияние на компоненты - - Патчи
`modal` + ### [#343](https://github.com/core-ds/core-components/pull/343) #### Что изменилось - - Добавлен проп clearCodeOnError. Если он включен, то при возникновении ошибки код будет очищаться #### Влияние на компоненты - - Минорное
`code-input` `confirmation` + ### [#317](https://github.com/core-ds/core-components/pull/317) #### Что изменилось - - Исправлены ошибки в браузере IE 11 в компонентах Сheckbox и FormControl #### Влияние на компоненты - - Патчи
`checkbox` `form-control` + ### [#327](https://github.com/core-ds/core-components/pull/327) #### Что изменилось - - Добавлен новый размер (24px) для компонента SuperEllipse - Добавлены новые размеры (24px и 128px) для компонента Circle
#### Влияние на компоненты - - Минорное
`icon-view` + ### [#359](https://github.com/core-ds/core-components/pull/359) #### Что изменилось - - Исправили disabled в режиме Ссылки #### Влияние на компоненты - - Патчи
`button` + ### [#339](https://github.com/core-ds/core-components/pull/339) #### Что изменилось - - Добавлен новый компонент Gap #### Влияние на компоненты - - Минорное
`gap` + ### [#340](https://github.com/core-ds/core-components/pull/340) #### Что изменилось - - В компоненте Plate иконки подгружаемые с cdn были заменены на иконки из icons-glyph #### Влияние на компоненты - - Минорное
`plate` + + ## 35.2.0 @@ -711,33 +657,30 @@ ### [#333](https://github.com/core-ds/core-components/pull/333) #### Что изменилось - - Явные значения в css классах(padding, border-radius и т.п) заменены на переменные #### Влияние на компоненты - - Патчи
`badge` `bank-card` `bottom-sheet` `loader` `slider`
`steps` + ### [6d0fc7849](https://github.com/core-ds/core-components/commit/6d0fc7849f1cd01d03a911c6b0b64ed5d00a3f24) #### Что изменилось - - Добавлен пропс `stickyHeader` для фиксации заголовков при скролле #### Влияние на компоненты - - Минорное
`table` ### [a32104b45](https://github.com/core-ds/core-components/commit/a32104b45de2c4f93aad8c380428ed88331801fb) #### Что изменилось - - Исправлено форматирование номера в intl-phone-input, который передаётся снаружи компонента в props `value` #### Влияние на компоненты - - Патчи
`intl-phone-input` + + ## 35.1.0 @@ -745,74 +688,68 @@ ### [#320](https://github.com/core-ds/core-components/pull/320) #### Что изменилось - - Скрыт нативный спиннер (стрелочки) у компонента Input при type='number' #### Влияние на компоненты - - Патчи
`input` `amount-input` `date-input` `date-range-input` `date-time-input`
`input-autocomplete` `intl-phone-input` `masked-input` `password-input` `select`
`slider-input` `time-input` `with-suffix` `calendar-input` `calendar-range`
`bank-card` `phone-input` `picker-button` `select-with-tags` + ### [#314](https://github.com/core-ds/core-components/pull/314) #### Что изменилось - - Исправлена ошибка в css из-за которой не работал проп withoutBorder #### Влияние на компоненты - - Патчи
`table` + ### [#323](https://github.com/core-ds/core-components/pull/323) #### Что изменилось - - Добавлена возможность передавать пропсы в компонент Scrollbar #### Влияние на компоненты - - Минорное
`drawer` `side-panel` + ### [#322](https://github.com/core-ds/core-components/pull/322) #### Что изменилось - - Исправлено некорректное отображение в Safari при взаимодействии с компонентом FilterTag #### Влияние на компоненты - - Патчи
`filter-tag` + ### [#319](https://github.com/core-ds/core-components/pull/319) #### Что изменилось - - Добавлен текстовый стиль letter-spacing для компонента Status #### Влияние на компоненты - - Патчи
`status` + ### [#324](https://github.com/core-ds/core-components/pull/324) #### Что изменилось - - "export" типов заменен на "export type" #### Влияние на компоненты - - Патчи
`amount` `confirmation-v1` `global-store` `picker-button` `typography`
+ ### [#308](https://github.com/core-ds/core-components/pull/308) #### Что изменилось - - Добавлен новый пропс в компонент Amount - codeFormat, который отображает код валюты в зависимости от указанного формата. Обновлена библиотека @alfalab/utils, теперь метод formatAmount форматирует сумму, разделяя ее средним математическим пробелом.
#### Влияние на компоненты - - Минорное
`amount` `amount-input` + + ## 35.0.0 @@ -820,41 +757,41 @@ ### [#292](https://github.com/core-ds/core-components/pull/292) #### Что изменилось - - Новые стили кнопок в теме default - Новый вид состояния loading во всех темах (Loader заменён на Spinner)
- Исправлена высота кнопки ghost в размерах s/m/l/xl (увеличилась на 4px)
- Исправлена ширина кнопок secondary/tertiary (уменьшилась на 2px)
#### Влияние на компоненты - - Мажорное
`button` `attach` `custom-button` `icon-button` `picker-button`
+ - Патчи
`alert` `bottom-sheet` `confirmation` `confirmation-v1` `themes`
`pure-cell` `side-panel` `plate` `tag` `toast-plate`
`modal` + ### [#310](https://github.com/core-ds/core-components/pull/310) #### Что изменилось - - Добавлена возможность менять иконку Closer #### Влияние на компоненты - - Минорное
`side-panel` + ### [#286](https://github.com/core-ds/core-components/pull/286) #### Что изменилось - - Новые стили инпутов в теме default (все компоненты на основе FormControl, включая Select) - Исправлен отступ до hint в SliderInput (уменьшился на 2px)
#### Влияние на компоненты - - Мажорное
`input` `form-control` `amount-input` `calendar-input` `date-input`
`date-range-input` `date-time-input` `input-autocomplete` `intl-phone-input` `password-input`
`select` `slider-input` `textarea` `time-input` `masked-input`
`select-with-tags` `calendar-range` `phone-input` + - Патчи
`keyboard-focusable` `picker-button` `with-suffix` `themes` `bank-card`
+ + ## 34.0.0 @@ -919,57 +856,53 @@ ### [#307](https://github.com/core-ds/core-components/pull/307) #### Что изменилось - - Добавили зависимость @alfalab/icons-glyph в компонент Modal #### Влияние на компоненты - - Патчи
`modal` + ### [#306](https://github.com/core-ds/core-components/pull/306) #### Что изменилось - - В portal добавлен проп immediateMount, с помощью которого можно мгновенно отрендерить дочерние элементы через портал. - В base-modal исправлена проблема с доступом к ref-ам контента, который рендерился через portal.
#### Влияние на компоненты - - Минорное
`portal` + - Патчи
`base-modal` + ### [#293](https://github.com/core-ds/core-components/pull/293) #### Что изменилось - - Изменен размер инпута с "s" на "m" #### Влияние на компоненты - - Патчи
`bank-card`
#### Что изменилось - - Исправлена высота инпута в OS Windows #### Влияние на компоненты - - Патчи
`input` + ### [#305](https://github.com/core-ds/core-components/pull/305) #### Что изменилось - - Добавлен проп placement, теперь Drawer и SidePanel могут появляться слева - Добавлен кастомный скроллбар.
#### Влияние на компоненты - - Минорное
`drawer` `side-panel` + + ## 33.0.2 @@ -977,43 +910,40 @@ ### [#296](https://github.com/core-ds/core-components/pull/296) #### Что изменилось - - Удалены разделители опций в выпадающем списке для темы "click" #### Влияние на компоненты - - Патчи
`picker-button` + ### [#298](https://github.com/core-ds/core-components/pull/298) #### Что изменилось - - Заменены иконки M размера на S #### Влияние на компоненты - - Патчи
`attach` `file-upload-item` + ### [#301](https://github.com/core-ds/core-components/pull/301) #### Что изменилось - - Исправлена ошибка, из-за которой не рендерился контент CalendarMobile в iOS < 13.4 #### Влияние на компоненты - - Патчи
`calendar` `modal` + + ## 33.0.1 ### Patch Changes #### `@alfalab/core-components-slider` - - [#289](https://github.com/core-ds/core-components/pull/289): Увеличена кликабельная область слайдера. Thanks [@reme3d2y](https://github.com/reme3d2y) -#### `@alfalab/core-components-slider-input` +#### `@alfalab/core-components-slider-input` - [#289](https://github.com/core-ds/core-components/pull/289): Увеличена кликабельная область слайдера. Thanks [@reme3d2y](https://github.com/reme3d2y) ## 33.0.0 @@ -1021,71 +951,69 @@ ### Major Changes #### `@alfalab/core-components/vars` - - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и типографика. Thanks [@Valeri8888](https://github.com/Valeri8888) - Удалённые миксины с текстовыми стилями были помечены как deprecated более двух лет назад и в макетах давно не используются. + Удалённые миксины с текстовыми стилями были помечены как deprecated более двух лет назад и в макетах давно не используются. - Основное изменение, про которое нужно знать — удалены текстовые transparent цвета. - При обновлении достаточно убрать `-transparent` из названий: - `--color-light-text-secondary-transparent` → `--color-light-text-secondary` + Основное изменение, про которое нужно знать — удалены текстовые transparent цвета. + При обновлении достаточно убрать `-transparent` из названий: + `--color-light-text-secondary-transparent` → `--color-light-text-secondary` ### Patch Changes #### `@alfalab/core-components/themes` - - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-amount-input` +#### `@alfalab/core-components-amount-input` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-amount` +#### `@alfalab/core-components-amount` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-attach` +#### `@alfalab/core-components-attach` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-button` +#### `@alfalab/core-components-button` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-calendar-input` +#### `@alfalab/core-components-calendar-input` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-calendar` +#### `@alfalab/core-components-calendar` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-checkbox-group` +#### `@alfalab/core-components-checkbox-group` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-checkbox` +#### `@alfalab/core-components-checkbox` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-date-input` +#### `@alfalab/core-components-date-input` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-date-range-input` +#### `@alfalab/core-components-date-range-input` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-date-time-input` +#### `@alfalab/core-components-date-time-input` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-filter-tag` +#### `@alfalab/core-components-filter-tag` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) -#### `@alfalab/core-components-form-control` +#### `@alfalab/core-components-form-control` - [#282](https://github.com/core-ds/core-components/pull/282): Обновление vars из последней версии ui-primitives, удалены deprecated цвета и миксины типографики. Thanks [@Valeri8888](https://github.com/Valeri8888) ## 32.2.0 @@ -1093,109 +1021,108 @@ ### Minor Changes #### `@alfalab/core-components-bank-card` - - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-confirmation` +#### `@alfalab/core-components-confirmation` - [#233](https://github.com/core-ds/core-components/pull/233): Добавлены новые компоненты ConfirmationMobile, ConfirmationResponsive. Thanks [@Valeri8888](https://github.com/Valeri8888) Обновлены стили компонента для соответствия актуальным макетам -#### `@alfalab/core-components-themes` +#### `@alfalab/core-components-themes` - [#233](https://github.com/core-ds/core-components/pull/233): Добавлены новые компоненты ConfirmationMobile, ConfirmationResponsive. Thanks [@Valeri8888](https://github.com/Valeri8888) Обновлены стили компонента для соответствия актуальным макетам + ### Patch Changes #### `@alfalab/core-components-attach` - - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-calendar` +#### `@alfalab/core-components-calendar` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-checkbox` +#### `@alfalab/core-components-checkbox` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-collapse` +#### `@alfalab/core-components-collapse` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-confirmation` +#### `@alfalab/core-components-confirmation` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) + #### `@alfalab/core-components-confirmation-v1` - - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-dropzone` +#### `@alfalab/core-components-dropzone` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-file-upload-item` +#### `@alfalab/core-components-file-upload-item` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-gallery` +#### `@alfalab/core-components-gallery` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-input` +#### `@alfalab/core-components-input` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-password-input` +#### `@alfalab/core-components-password-input` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-picker-button` +#### `@alfalab/core-components-picker-button` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-select-with-tags` +#### `@alfalab/core-components-select-with-tags` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-steps` +#### `@alfalab/core-components-steps` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-toast-plate` +#### `@alfalab/core-components-toast-plate` - [#208](https://github.com/core-ds/core-components/pull/208): Обновлён лого в BankCard. Thanks [@reabiliti](https://github.com/reabiliti) Обновлены версии зависимостей с иконками (icons-logotype/icons-classic/icons-glyph/icons-flag) -#### `@alfalab/core-components-badge` +#### `@alfalab/core-components-badge` - [#284](https://github.com/core-ds/core-components/pull/284): В компоненте Badge уменьшен font-size до 11px для размера 's' (высота 16-17). Thanks [@Valeri8888](https://github.com/Valeri8888) В компоненте Tabs свойство font-feature-settings: 'ss01' назначено только для темы click -#### `@alfalab/core-components-tabs` +#### `@alfalab/core-components-tabs` - [#284](https://github.com/core-ds/core-components/pull/284): В компоненте Badge уменьшен font-size до 11px для размера 's' (высота 16-17). Thanks [@Valeri8888](https://github.com/Valeri8888) В компоненте Tabs свойство font-feature-settings: 'ss01' назначено только для темы click -#### `@alfalab/core-components-themes` +#### `@alfalab/core-components-themes` - [#284](https://github.com/core-ds/core-components/pull/284): В компоненте Badge уменьшен font-size до 11px для размера 's' (высота 16-17). Thanks [@Valeri8888](https://github.com/Valeri8888) В компоненте Tabs свойство font-feature-settings: 'ss01' назначено только для темы click @@ -1204,7 +1131,6 @@ ### Patch Changes #### `@alfalab/core-components-link` - - [#283](https://github.com/core-ds/core-components/pull/283): Добавлен атрибут type=button для Link при pseudo=true. Thanks [@dmitrbrvsk](https://github.com/dmitrbrvsk) ## 32.1.1 @@ -1212,39 +1138,38 @@ ### Patch Changes #### `@alfalab/core-components-calendar-input` - - [#277](https://github.com/core-ds/core-components/pull/277): Внешняя ошибка больше не влияет на вызов onChange. Thanks [@reme3d2y](https://github.com/reme3d2y) -#### `@alfalab/core-components-collapse` +#### `@alfalab/core-components-collapse` - [#278](https://github.com/core-ds/core-components/pull/278): Отключена анимация при изначальном expanded=true. Убран ненужный пропс style.. Thanks [@reme3d2y](https://github.com/reme3d2y) -#### `@alfalab/core-components-amount-input` +#### `@alfalab/core-components-amount-input` - [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) -#### `@alfalab/core-components-amount` +#### `@alfalab/core-components-amount` - [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) -#### `@alfalab/core-components-attach` +#### `@alfalab/core-components-attach` - [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) -#### `@alfalab/core-components-confirmation-v1` +#### `@alfalab/core-components-confirmation-v1` - [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) -#### `@alfalab/core-components-confirmation` +#### `@alfalab/core-components-confirmation` - [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) -#### `@alfalab/core-components-filter-tag` +#### `@alfalab/core-components-filter-tag` - [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) -#### `@alfalab/core-components-intl-phone-input` +#### `@alfalab/core-components-intl-phone-input` - [#279](https://github.com/core-ds/core-components/pull/279): chore: обновились @alfalab-data и @alfalab/utils версии в зависимостях. Thanks [@EGNKupava](https://github.com/EGNKupava) ## 32.1.0 @@ -1252,29 +1177,28 @@ ### Minor Changes #### `@alfalab/core-components-date-range-input` - - [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-date-time-input` +#### `@alfalab/core-components-date-time-input` - [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-time-input` +#### `@alfalab/core-components-time-input` - [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-themes` +#### `@alfalab/core-components-themes` - [#269](https://github.com/core-ds/core-components/pull/269): Удалена темизация click для компонента CodeInput. Thanks [@Valeri8888](https://github.com/Valeri8888) + ### Patch Changes #### `@alfalab/core-components-calendar` - - [#175](https://github.com/core-ds/core-components/pull/175): Новые компоненты: TimeInput, DateTimeInput, DateRangeInput. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-code-input` +#### `@alfalab/core-components-code-input` - [#274](https://github.com/core-ds/core-components/pull/274): Компактная версия теперь включается когда >6 полей. Thanks [@Valeri8888](https://github.com/Valeri8888) ## 32.0.1 @@ -1282,16 +1206,15 @@ ### Patch Changes #### `@alfalab/core-components-pure-cell` - - [#271](https://github.com/core-ds/core-components/pull/271): Внутренний компонент "comment" заменен на @alfalab/core-components-comment. Thanks [@Lacronts](https://github.com/Lacronts) - [#272](https://github.com/core-ds/core-components/pull/272): HTML-тег main заменен на div. Thanks [@Lacronts](https://github.com/Lacronts) -#### `@alfalab/core-components-side-panel` +#### `@alfalab/core-components-side-panel` - [#270](https://github.com/core-ds/core-components/pull/270): Исправлена ошибка, когда non-static position контент при скролле перекрывал sticky заголовок. Thanks [@Lacronts](https://github.com/Lacronts) -#### `@alfalab/core-components-vars` +#### `@alfalab/core-components-vars` - [#273](https://github.com/core-ds/core-components/pull/273): Исправлены пути импорта переменных в бандле. Thanks [@Lacronts](https://github.com/Lacronts) ## 32.0.0 @@ -1299,76 +1222,75 @@ ### Major Changes #### `@alfalab/core-components-pure-cell` - - [#182](https://github.com/core-ds/core-components/pull/182): Убран проп isMultiline. Есть rowLimit, и если его не передавать, ожидается, что текст не будет обрезаться.. Thanks [@blackraydev](https://github.com/blackraydev) + ### Minor Changes #### `@alfalab/core-components-steps` - - [#189](https://github.com/core-ds/core-components/pull/189): Новый компонент Steps. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-confirmation-v1` +#### `@alfalab/core-components-confirmation-v1` - [#260](https://github.com/core-ds/core-components/pull/260): Добавил реэкспорт для компонента ConfirmationV1 как Confirmation и типа пропсов ConfirmationV1Props как ConfirmationProps. Thanks [@EGNKupava](https://github.com/EGNKupava) + ### Patch Changes #### `@alfalab/core-components-attach` - - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-bank-card` +#### `@alfalab/core-components-bank-card` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-calendar` +#### `@alfalab/core-components-calendar` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-checkbox` +#### `@alfalab/core-components-checkbox` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-confirmation` +#### `@alfalab/core-components-confirmation` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-confirmation-v1` +#### `@alfalab/core-components-confirmation-v1` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-dropzone` +#### `@alfalab/core-components-dropzone` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-file-upload-item` +#### `@alfalab/core-components-file-upload-item` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-gallery` +#### `@alfalab/core-components-gallery` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-input` +#### `@alfalab/core-components-input` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-password-input` +#### `@alfalab/core-components-password-input` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-select-with-tags` +#### `@alfalab/core-components-select-with-tags` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) -#### `@alfalab/core-components-toast-plate` +#### `@alfalab/core-components-toast-plate` - [#189](https://github.com/core-ds/core-components/pull/189): Обновлена зависимость @alfalab/icons-glyph. Thanks [@blackraydev](https://github.com/blackraydev) - [#261](https://github.com/core-ds/core-components/pull/261): Обновлены внутренние зависимости. Thanks [@Lacronts](https://github.com/Lacronts) -#### `@alfalab/core-components-modal` +#### `@alfalab/core-components-modal` - [#261](https://github.com/core-ds/core-components/pull/261): Обновлены внутренние зависимости. Thanks [@Lacronts](https://github.com/Lacronts) ## 31.3.3 @@ -1380,335 +1302,384 @@ ### Patch Changes #### `@alfalab/core-components-scrollbar` - - [#239](https://github.com/core-ds/core-components/pull/239): Исправлен border-radius при hover-эффекте. Thanks [@Valeri8888](https://github.com/Valeri8888) # [31.3.0](https://github.com/core-ds/core-components/compare/v31.2.0...v31.3.0) (2022-09-13) + ### Bug Fixes -- **base-modal:** fixed scroll to top issues ([#224](https://github.com/core-ds/core-components/issues/224)) ([2e3fdd2](https://github.com/core-ds/core-components/commit/2e3fdd22a4af2b043c428a3ad800b82ac4166d5d)) -- **base-modal:** fixed ssr error in element matches polyfill ([#257](https://github.com/core-ds/core-components/issues/257)) ([a6e05b1](https://github.com/core-ds/core-components/commit/a6e05b15ed4aabea7ffea0566d7fb121d72b8729)) -- **file-upload-item:** fixed error display by default ([#252](https://github.com/core-ds/core-components/issues/252)) ([874a669](https://github.com/core-ds/core-components/commit/874a6692af0a17624a219ee967bb1503a3dfb629)) +* **base-modal:** fixed scroll to top issues ([#224](https://github.com/core-ds/core-components/issues/224)) ([2e3fdd2](https://github.com/core-ds/core-components/commit/2e3fdd22a4af2b043c428a3ad800b82ac4166d5d)) +* **base-modal:** fixed ssr error in element matches polyfill ([#257](https://github.com/core-ds/core-components/issues/257)) ([a6e05b1](https://github.com/core-ds/core-components/commit/a6e05b15ed4aabea7ffea0566d7fb121d72b8729)) +* **file-upload-item:** fixed error display by default ([#252](https://github.com/core-ds/core-components/issues/252)) ([874a669](https://github.com/core-ds/core-components/commit/874a6692af0a17624a219ee967bb1503a3dfb629)) + ### Features -- **code-input:** update mobile version ([#230](https://github.com/core-ds/core-components/issues/230)) ([bf66e85](https://github.com/core-ds/core-components/commit/bf66e85b147e22be13f1a62d945aba6012d5ccf5)) -- **confirmation-v1:** rename package confirmation-v-1 ([#258](https://github.com/core-ds/core-components/issues/258)) ([195f7a0](https://github.com/core-ds/core-components/commit/195f7a08eeb24bbb9eecf8e62155ec18dbe731d5)) -- **confirmation-v1:** return old confirmation ([#241](https://github.com/core-ds/core-components/issues/241)) ([a8779ed](https://github.com/core-ds/core-components/commit/a8779ed56baf0db9662ae6e00a417e44c56a65f3)) -- **form-control, themes:** change colors in intranet theme ([#236](https://github.com/core-ds/core-components/issues/236)) ([eae8b7d](https://github.com/core-ds/core-components/commit/eae8b7deed8e394ebc0cc00cd584d9f05575b3b0)) -- **plate:** added custom variable for box-shadow ([#256](https://github.com/core-ds/core-components/issues/256)) ([4d75e4e](https://github.com/core-ds/core-components/commit/4d75e4e84ead1ee12070c9097dba3b40400baac6)) -- **tabs:** update click theme ([#225](https://github.com/core-ds/core-components/issues/225)) ([fe12ef6](https://github.com/core-ds/core-components/commit/fe12ef6e8fc7305a165a289e089187ef41119da0)) +* **code-input:** update mobile version ([#230](https://github.com/core-ds/core-components/issues/230)) ([bf66e85](https://github.com/core-ds/core-components/commit/bf66e85b147e22be13f1a62d945aba6012d5ccf5)) +* **confirmation-v1:** rename package confirmation-v-1 ([#258](https://github.com/core-ds/core-components/issues/258)) ([195f7a0](https://github.com/core-ds/core-components/commit/195f7a08eeb24bbb9eecf8e62155ec18dbe731d5)) +* **confirmation-v1:** return old confirmation ([#241](https://github.com/core-ds/core-components/issues/241)) ([a8779ed](https://github.com/core-ds/core-components/commit/a8779ed56baf0db9662ae6e00a417e44c56a65f3)) +* **form-control, themes:** change colors in intranet theme ([#236](https://github.com/core-ds/core-components/issues/236)) ([eae8b7d](https://github.com/core-ds/core-components/commit/eae8b7deed8e394ebc0cc00cd584d9f05575b3b0)) +* **plate:** added custom variable for box-shadow ([#256](https://github.com/core-ds/core-components/issues/256)) ([4d75e4e](https://github.com/core-ds/core-components/commit/4d75e4e84ead1ee12070c9097dba3b40400baac6)) +* **tabs:** update click theme ([#225](https://github.com/core-ds/core-components/issues/225)) ([fe12ef6](https://github.com/core-ds/core-components/commit/fe12ef6e8fc7305a165a289e089187ef41119da0)) # [31.2.0](https://github.com/core-ds/core-components/compare/v31.1.0...v31.2.0) (2022-09-12) + ### Bug Fixes -- **base-modal:** Added element matches polyfill for IE11 ([#245](https://github.com/core-ds/core-components/issues/245)) ([cb95740](https://github.com/core-ds/core-components/commit/cb95740b931ec48d2f92a2cb64a148400b6cb135)) -- **button:** increased click area of the active state ([#246](https://github.com/core-ds/core-components/issues/246)) ([8937248](https://github.com/core-ds/core-components/commit/8937248cbfe7a2f542855a0bba5bb472eb82a076)) -- **checkbox-group:** added onBlur and onFocus ([#250](https://github.com/core-ds/core-components/issues/250)) ([b4a739b](https://github.com/core-ds/core-components/commit/b4a739b8516089265b9979f6f1eb5649d05833f5)) -- **gallery:** fixed swiper height on ios 14 and lower ([#95](https://github.com/core-ds/core-components/issues/95)) ([9703ca7](https://github.com/core-ds/core-components/commit/9703ca74733a6df2697354298be745b354c6cc1a)) -- **input-autocomplete:** add prop for custom input ([#223](https://github.com/core-ds/core-components/issues/223)) ([632cb7f](https://github.com/core-ds/core-components/commit/632cb7fb572366cd42fad1a8741e99098cce1f12)) -- **intl-phone-input:** fixed on ios 14 and lower ([#94](https://github.com/core-ds/core-components/issues/94)) ([8b7d3fc](https://github.com/core-ds/core-components/commit/8b7d3fc0df18d035cf86960832da5c8e07cc22e4)) -- **pure-cell:** better pure-cell text (ReactNode for value) ([#240](https://github.com/core-ds/core-components/issues/240)) ([8eea8b0](https://github.com/core-ds/core-components/commit/8eea8b068dbc75b20362edf89f4de0a56f5eb8d5)) -- **radio-group:** added onBlur and onFocus ([#249](https://github.com/core-ds/core-components/issues/249)) ([68c802c](https://github.com/core-ds/core-components/commit/68c802c2f4b8d1506573f9bd53aa2ef1af2e51ce)) -- renamed default classnames ([#198](https://github.com/core-ds/core-components/issues/198)) ([bf22bba](https://github.com/core-ds/core-components/commit/bf22bbafbd16c14804316cba25a4026b85dde2f7)) -- **select:** removed ssr warning ([#248](https://github.com/core-ds/core-components/issues/248)) ([d7f4abd](https://github.com/core-ds/core-components/commit/d7f4abdfd34b63d977e84dfa7373ae2d1554e3e0)) +* **base-modal:** Added element matches polyfill for IE11 ([#245](https://github.com/core-ds/core-components/issues/245)) ([cb95740](https://github.com/core-ds/core-components/commit/cb95740b931ec48d2f92a2cb64a148400b6cb135)) +* **button:** increased click area of the active state ([#246](https://github.com/core-ds/core-components/issues/246)) ([8937248](https://github.com/core-ds/core-components/commit/8937248cbfe7a2f542855a0bba5bb472eb82a076)) +* **checkbox-group:** added onBlur and onFocus ([#250](https://github.com/core-ds/core-components/issues/250)) ([b4a739b](https://github.com/core-ds/core-components/commit/b4a739b8516089265b9979f6f1eb5649d05833f5)) +* **gallery:** fixed swiper height on ios 14 and lower ([#95](https://github.com/core-ds/core-components/issues/95)) ([9703ca7](https://github.com/core-ds/core-components/commit/9703ca74733a6df2697354298be745b354c6cc1a)) +* **input-autocomplete:** add prop for custom input ([#223](https://github.com/core-ds/core-components/issues/223)) ([632cb7f](https://github.com/core-ds/core-components/commit/632cb7fb572366cd42fad1a8741e99098cce1f12)) +* **intl-phone-input:** fixed on ios 14 and lower ([#94](https://github.com/core-ds/core-components/issues/94)) ([8b7d3fc](https://github.com/core-ds/core-components/commit/8b7d3fc0df18d035cf86960832da5c8e07cc22e4)) +* **pure-cell:** better pure-cell text (ReactNode for value) ([#240](https://github.com/core-ds/core-components/issues/240)) ([8eea8b0](https://github.com/core-ds/core-components/commit/8eea8b068dbc75b20362edf89f4de0a56f5eb8d5)) +* **radio-group:** added onBlur and onFocus ([#249](https://github.com/core-ds/core-components/issues/249)) ([68c802c](https://github.com/core-ds/core-components/commit/68c802c2f4b8d1506573f9bd53aa2ef1af2e51ce)) +* renamed default classnames ([#198](https://github.com/core-ds/core-components/issues/198)) ([bf22bba](https://github.com/core-ds/core-components/commit/bf22bbafbd16c14804316cba25a4026b85dde2f7)) +* **select:** removed ssr warning ([#248](https://github.com/core-ds/core-components/issues/248)) ([d7f4abd](https://github.com/core-ds/core-components/commit/d7f4abdfd34b63d977e84dfa7373ae2d1554e3e0)) + ### Features -- **calendar-range:** added onError callback ([#253](https://github.com/core-ds/core-components/issues/253)) ([46e163c](https://github.com/core-ds/core-components/commit/46e163c750427e410d9aa9df6c554a5fbb86eba2)) -- **form-control:** new input/select label view (outer) ([#177](https://github.com/core-ds/core-components/issues/177)) ([66beb15](https://github.com/core-ds/core-components/commit/66beb15756de97e17a4d1dd4221fa7f401ee8539)) -- **toast-plate:** added inverted views ([#243](https://github.com/core-ds/core-components/issues/243)) ([a527d15](https://github.com/core-ds/core-components/commit/a527d152ab0705b429180ffe009886ff8920686a)) -- **vars:** introducing vars bundles ([#192](https://github.com/core-ds/core-components/issues/192)) ([28c15a4](https://github.com/core-ds/core-components/commit/28c15a49a7037680b38fec19018c0d1268f79ac3)) +* **calendar-range:** added onError callback ([#253](https://github.com/core-ds/core-components/issues/253)) ([46e163c](https://github.com/core-ds/core-components/commit/46e163c750427e410d9aa9df6c554a5fbb86eba2)) +* **form-control:** new input/select label view (outer) ([#177](https://github.com/core-ds/core-components/issues/177)) ([66beb15](https://github.com/core-ds/core-components/commit/66beb15756de97e17a4d1dd4221fa7f401ee8539)) +* **toast-plate:** added inverted views ([#243](https://github.com/core-ds/core-components/issues/243)) ([a527d15](https://github.com/core-ds/core-components/commit/a527d152ab0705b429180ffe009886ff8920686a)) +* **vars:** introducing vars bundles ([#192](https://github.com/core-ds/core-components/issues/192)) ([28c15a4](https://github.com/core-ds/core-components/commit/28c15a49a7037680b38fec19018c0d1268f79ac3)) # [31.1.0](https://github.com/core-ds/core-components/compare/v31.0.0...v31.1.0) (2022-09-09) + ### Bug Fixes -- **action-button:** review fixes ([8c4b419](https://github.com/core-ds/core-components/commit/8c4b4193b2959e99f2b0f6de836f3f3d63ca0b18)) +* **action-button:** review fixes ([8c4b419](https://github.com/core-ds/core-components/commit/8c4b4193b2959e99f2b0f6de836f3f3d63ca0b18)) + ### Features -- new component action-button ([b8b009c](https://github.com/core-ds/core-components/commit/b8b009cc63071b9766c8a23884eac95fdbf6d658)) -- updated colors prop & added tests ([08170e6](https://github.com/core-ds/core-components/commit/08170e6fa6e33e7785477ff41b833f75809e9f60)) +* new component action-button ([b8b009c](https://github.com/core-ds/core-components/commit/b8b009cc63071b9766c8a23884eac95fdbf6d658)) +* updated colors prop & added tests ([08170e6](https://github.com/core-ds/core-components/commit/08170e6fa6e33e7785477ff41b833f75809e9f60)) # [31.0.0](https://github.com/core-ds/core-components/compare/v30.7.0...v31.0.0) (2022-09-06) + ### Bug Fixes -- **link:** replace component with a button in pseudo mode ([#156](https://github.com/core-ds/core-components/issues/156)) ([6f24cbb](https://github.com/core-ds/core-components/commit/6f24cbb433c4ced85986d5f0e0b3bc1289e0fb8d)) +* **link:** replace component with a button in pseudo mode ([#156](https://github.com/core-ds/core-components/issues/156)) ([6f24cbb](https://github.com/core-ds/core-components/commit/6f24cbb433c4ced85986d5f0e0b3bc1289e0fb8d)) + ### BREAKING CHANGES -- **link:** В компоненте Link с пропсом pseudo заменяется дефолтный html-элемент "a" на +* **link:** В компоненте Link с пропсом pseudo заменяется дефолтный html-элемент "a" на "button" Co-authored-by: crybabydanchan # [30.7.0](https://github.com/core-ds/core-components/compare/v30.6.1...v30.7.0) (2022-09-06) + ### Features -- **slider-input:** revert steps ([#234](https://github.com/core-ds/core-components/issues/234)) ([d5e312b](https://github.com/core-ds/core-components/commit/d5e312bb7a54e53414e205a57081159033d53efe)) +* **slider-input:** revert steps ([#234](https://github.com/core-ds/core-components/issues/234)) ([d5e312b](https://github.com/core-ds/core-components/commit/d5e312bb7a54e53414e205a57081159033d53efe)) ## [30.6.1](https://github.com/core-ds/core-components/compare/v30.6.0...v30.6.1) (2022-09-05) + ### Bug Fixes -- **skeleton:** added className for visible === false ([29a1280](https://github.com/core-ds/core-components/commit/29a12809730bd49e5d2c47c66840642fff359f4c)) +* **skeleton:** added className for visible === false ([29a1280](https://github.com/core-ds/core-components/commit/29a12809730bd49e5d2c47c66840642fff359f4c)) # [30.6.0](https://github.com/core-ds/core-components/compare/v30.5.1...v30.6.0) (2022-09-02) + ### Features -- **select:** add showCheckMark to option shape ([#235](https://github.com/core-ds/core-components/issues/235)) ([5339071](https://github.com/core-ds/core-components/commit/53390718a89300184fd82016b02ce40223eca687)) +* **select:** add showCheckMark to option shape ([#235](https://github.com/core-ds/core-components/issues/235)) ([5339071](https://github.com/core-ds/core-components/commit/53390718a89300184fd82016b02ce40223eca687)) ## [30.5.1](https://github.com/core-ds/core-components/compare/v30.5.0...v30.5.1) (2022-09-02) + ### Bug Fixes -- temporary fix for non-existing types ([#237](https://github.com/core-ds/core-components/issues/237)) ([cadb48c](https://github.com/core-ds/core-components/commit/cadb48cdc966690ceb26ed3f6c74f1af2481b6b0)) +* temporary fix for non-existing types ([#237](https://github.com/core-ds/core-components/issues/237)) ([cadb48c](https://github.com/core-ds/core-components/commit/cadb48cdc966690ceb26ed3f6c74f1af2481b6b0)) # [30.5.0](https://github.com/core-ds/core-components/compare/v30.4.1...v30.5.0) (2022-09-01) + ### Features -- **side-panel:** add props imageUrl and fix doc ([#168](https://github.com/core-ds/core-components/issues/168)) ([9ca0f00](https://github.com/core-ds/core-components/commit/9ca0f0094b993bdd302765db79bcf8f91fae2a12)) -- testing-library versions update ([#216](https://github.com/core-ds/core-components/issues/216)) ([33b6225](https://github.com/core-ds/core-components/commit/33b62259a1332f535f367502590ea37e7ad051d4)) +* **side-panel:** add props imageUrl and fix doc ([#168](https://github.com/core-ds/core-components/issues/168)) ([9ca0f00](https://github.com/core-ds/core-components/commit/9ca0f0094b993bdd302765db79bcf8f91fae2a12)) +* testing-library versions update ([#216](https://github.com/core-ds/core-components/issues/216)) ([33b6225](https://github.com/core-ds/core-components/commit/33b62259a1332f535f367502590ea37e7ad051d4)) ## [30.4.1](https://github.com/core-ds/core-components/compare/v30.4.0...v30.4.1) (2022-08-31) + ### Bug Fixes -- **amount:** fix undefined symbol ([#231](https://github.com/core-ds/core-components/issues/231)) ([07a93ab](https://github.com/core-ds/core-components/commit/07a93abefd530532cdacb530baf27d239b7f7174)) -- **filter-tag:** поправлены цвета у иконки крестика ([#167](https://github.com/core-ds/core-components/issues/167)) ([28eb49e](https://github.com/core-ds/core-components/commit/28eb49e012b5b6f8a8e4f07e2214ecb65fae0564)) -- fixed missing css vars ([#227](https://github.com/core-ds/core-components/issues/227)) ([42912d3](https://github.com/core-ds/core-components/commit/42912d306657490e8c7f577cb53120767d503fcb)) -- **loader:** убран лишний отступ у последнего элемента, мешающий выравниванию ([#218](https://github.com/core-ds/core-components/issues/218)) ([e064754](https://github.com/core-ds/core-components/commit/e064754bfa1d4fbd85f5a9569790da4eef0d237c)) -- **pure-cell:** onClick fix ([#217](https://github.com/core-ds/core-components/issues/217)) ([2f08187](https://github.com/core-ds/core-components/commit/2f08187cce6aef3ca0609d183890a8968f054f52)) -- **toast:** word breaking rule ([#228](https://github.com/core-ds/core-components/issues/228)) ([b329c88](https://github.com/core-ds/core-components/commit/b329c88475501bf4ad2285f3804ada83134b51da)) +* **amount:** fix undefined symbol ([#231](https://github.com/core-ds/core-components/issues/231)) ([07a93ab](https://github.com/core-ds/core-components/commit/07a93abefd530532cdacb530baf27d239b7f7174)) +* **filter-tag:** поправлены цвета у иконки крестика ([#167](https://github.com/core-ds/core-components/issues/167)) ([28eb49e](https://github.com/core-ds/core-components/commit/28eb49e012b5b6f8a8e4f07e2214ecb65fae0564)) +* fixed missing css vars ([#227](https://github.com/core-ds/core-components/issues/227)) ([42912d3](https://github.com/core-ds/core-components/commit/42912d306657490e8c7f577cb53120767d503fcb)) +* **loader:** убран лишний отступ у последнего элемента, мешающий выравниванию ([#218](https://github.com/core-ds/core-components/issues/218)) ([e064754](https://github.com/core-ds/core-components/commit/e064754bfa1d4fbd85f5a9569790da4eef0d237c)) +* **pure-cell:** onClick fix ([#217](https://github.com/core-ds/core-components/issues/217)) ([2f08187](https://github.com/core-ds/core-components/commit/2f08187cce6aef3ca0609d183890a8968f054f52)) +* **toast:** word breaking rule ([#228](https://github.com/core-ds/core-components/issues/228)) ([b329c88](https://github.com/core-ds/core-components/commit/b329c88475501bf4ad2285f3804ada83134b51da)) # [30.4.0](https://github.com/core-ds/core-components/compare/v30.3.0...v30.4.0) (2022-08-30) + ### Features -- **table:** change paddings, new compactHorizontal prop ([#214](https://github.com/core-ds/core-components/issues/214)) ([788eebe](https://github.com/core-ds/core-components/commit/788eebe2bb0cd9951fd1d8c2e41a065c3dda25c8)) +* **table:** change paddings, new compactHorizontal prop ([#214](https://github.com/core-ds/core-components/issues/214)) ([788eebe](https://github.com/core-ds/core-components/commit/788eebe2bb0cd9951fd1d8c2e41a065c3dda25c8)) # [30.3.0](https://github.com/core-ds/core-components/compare/v30.2.1...v30.3.0) (2022-08-29) + ### Features -- **textarea:** custom scrollbar ([#196](https://github.com/core-ds/core-components/issues/196)) ([c0d956c](https://github.com/core-ds/core-components/commit/c0d956cc7bf0a5440a66602ca77de2942a268be2)) +* **textarea:** custom scrollbar ([#196](https://github.com/core-ds/core-components/issues/196)) ([c0d956c](https://github.com/core-ds/core-components/commit/c0d956cc7bf0a5440a66602ca77de2942a268be2)) ## [30.2.1](https://github.com/core-ds/core-components/compare/v30.2.0...v30.2.1) (2022-08-26) + ### Bug Fixes -- **code-input:** fixed "cannot read properties of undefined (reading get)" error ([#226](https://github.com/core-ds/core-components/issues/226)) ([8383613](https://github.com/core-ds/core-components/commit/838361388979acc184fb213f96c9e4ab43333fbc)) +* **code-input:** fixed "cannot read properties of undefined (reading get)" error ([#226](https://github.com/core-ds/core-components/issues/226)) ([8383613](https://github.com/core-ds/core-components/commit/838361388979acc184fb213f96c9e4ab43333fbc)) # [30.2.0](https://github.com/core-ds/core-components/compare/v30.1.0...v30.2.0) (2022-08-26) + ### Bug Fixes -- **filter-tag:** добавил font family ([#212](https://github.com/core-ds/core-components/issues/212)) ([34dd253](https://github.com/core-ds/core-components/commit/34dd253c5c7dcdc03443212c7dd1c2b3b8ca9e1b)) -- **pure-cell:** fix subcomponent addon and category ([#172](https://github.com/core-ds/core-components/issues/172)) ([461ee92](https://github.com/core-ds/core-components/commit/461ee920b9fc7ebaa72b355b2678388f35d49b1f)) +* **filter-tag:** добавил font family ([#212](https://github.com/core-ds/core-components/issues/212)) ([34dd253](https://github.com/core-ds/core-components/commit/34dd253c5c7dcdc03443212c7dd1c2b3b8ca9e1b)) +* **pure-cell:** fix subcomponent addon and category ([#172](https://github.com/core-ds/core-components/issues/172)) ([461ee92](https://github.com/core-ds/core-components/commit/461ee920b9fc7ebaa72b355b2678388f35d49b1f)) + ### Features -- **picker-button:** new component picker-button-mobile ([#193](https://github.com/core-ds/core-components/issues/193)) ([6074d38](https://github.com/core-ds/core-components/commit/6074d38861c28cf796699cb3e6ec6304303c4481)) +* **picker-button:** new component picker-button-mobile ([#193](https://github.com/core-ds/core-components/issues/193)) ([6074d38](https://github.com/core-ds/core-components/commit/6074d38861c28cf796699cb3e6ec6304303c4481)) # [30.1.0](https://github.com/core-ds/core-components/compare/v30.0.1...v30.1.0) (2022-08-25) + ### Bug Fixes -- **link:** fix addons size for underline mode in description ([15c796b](https://github.com/core-ds/core-components/commit/15c796b1f5a99122ba7e3ba638490517eb985c6e)) +* **link:** fix addons size for underline mode in description ([15c796b](https://github.com/core-ds/core-components/commit/15c796b1f5a99122ba7e3ba638490517eb985c6e)) + ### Features -- **link:** implemented new view & updated styles ([3873619](https://github.com/core-ds/core-components/commit/38736190773e2aa199ca544ee976efb1ba5a88d3)) -- **link:** updated styles ([b5296f2](https://github.com/core-ds/core-components/commit/b5296f26a8271c2b3c2f34195dd3997308877bbe)) +* **link:** implemented new view & updated styles ([3873619](https://github.com/core-ds/core-components/commit/38736190773e2aa199ca544ee976efb1ba5a88d3)) +* **link:** updated styles ([b5296f2](https://github.com/core-ds/core-components/commit/b5296f26a8271c2b3c2f34195dd3997308877bbe)) ## [30.0.1](https://github.com/core-ds/core-components/compare/v30.0.0...v30.0.1) (2022-08-19) + ### Bug Fixes -- **icon-view:** add aditional path to image and change icon size in addons ([#170](https://github.com/core-ds/core-components/issues/170)) ([51c8259](https://github.com/core-ds/core-components/commit/51c825975296bed2c5461c8b96d7ef527684d7b0)) -- omit enterKeyHint prop ([#197](https://github.com/core-ds/core-components/issues/197)) ([72f4946](https://github.com/core-ds/core-components/commit/72f494623c282f61b45539fa1c13d5c45bc5180c)) -- **picker-button:** increased css specificity ([#190](https://github.com/core-ds/core-components/issues/190)) ([e089871](https://github.com/core-ds/core-components/commit/e08987199825fa5d0dc4b4f1e158849155bb34dc)) +* **icon-view:** add aditional path to image and change icon size in addons ([#170](https://github.com/core-ds/core-components/issues/170)) ([51c8259](https://github.com/core-ds/core-components/commit/51c825975296bed2c5461c8b96d7ef527684d7b0)) +* omit enterKeyHint prop ([#197](https://github.com/core-ds/core-components/issues/197)) ([72f4946](https://github.com/core-ds/core-components/commit/72f494623c282f61b45539fa1c13d5c45bc5180c)) +* **picker-button:** increased css specificity ([#190](https://github.com/core-ds/core-components/issues/190)) ([e089871](https://github.com/core-ds/core-components/commit/e08987199825fa5d0dc4b4f1e158849155bb34dc)) # [30.0.0](https://github.com/core-ds/core-components/compare/v29.4.0...v30.0.0) (2022-08-18) + ### Bug Fixes -- returned dist directory ([#199](https://github.com/core-ds/core-components/issues/199)) ([fabc15e](https://github.com/core-ds/core-components/commit/fabc15effa1457ca65ec7238206f1b1fc2a2a613)) +* returned dist directory ([#199](https://github.com/core-ds/core-components/issues/199)) ([fabc15e](https://github.com/core-ds/core-components/commit/fabc15effa1457ca65ec7238206f1b1fc2a2a613)) + ### Features -- removed dist directory in published packages ([#200](https://github.com/core-ds/core-components/issues/200)) ([8af8fee](https://github.com/core-ds/core-components/commit/8af8fee53ca0bd19fa2d1ca1422e0df23096e2c8)) +* removed dist directory in published packages ([#200](https://github.com/core-ds/core-components/issues/200)) ([8af8fee](https://github.com/core-ds/core-components/commit/8af8fee53ca0bd19fa2d1ca1422e0df23096e2c8)) + ### BREAKING CHANGES -- Изменена директория расположения индексных файлов в опубликованных пакетах (удалена +* Изменена директория расположения индексных файлов в опубликованных пакетах (удалена директория dist) # [29.4.0](https://github.com/core-ds/core-components/compare/v29.3.0...v29.4.0) (2022-08-12) + ### Features -- **plate:** subAddons slot, on/off border&shadow&borderRadius, new view 'custom' ([#158](https://github.com/core-ds/core-components/issues/158)) ([b2fc570](https://github.com/core-ds/core-components/commit/b2fc5703f083d493f0e5222d9a1f752cac190dbf)), closes [#161](https://github.com/core-ds/core-components/issues/161) +* **plate:** subAddons slot, on/off border&shadow&borderRadius, new view 'custom' ([#158](https://github.com/core-ds/core-components/issues/158)) ([b2fc570](https://github.com/core-ds/core-components/commit/b2fc5703f083d493f0e5222d9a1f752cac190dbf)), closes [#161](https://github.com/core-ds/core-components/issues/161) # [29.3.0](https://github.com/core-ds/core-components/compare/v29.2.1...v29.3.0) (2022-08-12) + ### Features -- **BottonSheet:** improved bottomSheet component ([#185](https://github.com/core-ds/core-components/issues/185)) ([ba5fa06](https://github.com/core-ds/core-components/commit/ba5fa06d5f342ac5e04adadb72fd21e1f699c00a)) +* **BottonSheet:** improved bottomSheet component ([#185](https://github.com/core-ds/core-components/issues/185)) ([ba5fa06](https://github.com/core-ds/core-components/commit/ba5fa06d5f342ac5e04adadb72fd21e1f699c00a)) ## [29.2.1](https://github.com/core-ds/core-components/compare/v29.2.0...v29.2.1) (2022-08-11) + ### Bug Fixes -- **slider:** handle slide ([#187](https://github.com/core-ds/core-components/issues/187)) ([709f8df](https://github.com/core-ds/core-components/commit/709f8df47c82c905225dfd4645e345cf14e9f844)) +* **slider:** handle slide ([#187](https://github.com/core-ds/core-components/issues/187)) ([709f8df](https://github.com/core-ds/core-components/commit/709f8df47c82c905225dfd4645e345cf14e9f844)) # [29.2.0](https://github.com/core-ds/core-components/compare/v29.1.0...v29.2.0) (2022-08-09) + ### Features -- **bottom-sheet:** добавлен dataTestId для элементов компонента ([f90c76b](https://github.com/core-ds/core-components/commit/f90c76bf539542957dc0aea7be28089e5c919859)) -- **modal:** добавлен dataTestId для элементов компонента ([151ff8c](https://github.com/core-ds/core-components/commit/151ff8c5220d794719f90c1bdabedb905db841a7)) +* **bottom-sheet:** добавлен dataTestId для элементов компонента ([f90c76b](https://github.com/core-ds/core-components/commit/f90c76bf539542957dc0aea7be28089e5c919859)) +* **modal:** добавлен dataTestId для элементов компонента ([151ff8c](https://github.com/core-ds/core-components/commit/151ff8c5220d794719f90c1bdabedb905db841a7)) # [29.1.0](https://github.com/core-ds/core-components/compare/v29.0.0...v29.1.0) (2022-08-04) + ### Bug Fixes -- **comment:** add missing types ([95888d8](https://github.com/core-ds/core-components/commit/95888d8f87934140c8c6f113aee413a11579c7b6)) -- **progress-bar:** mechanics of progress line fixed ([#169](https://github.com/core-ds/core-components/issues/169)) ([4b46836](https://github.com/core-ds/core-components/commit/4b4683628ea4fd9da178799dfca8b287c0776ff1)) -- purgecss fixes ([#179](https://github.com/core-ds/core-components/issues/179)) ([ca52bab](https://github.com/core-ds/core-components/commit/ca52bab7ca82dd45c5693e46fbcec493943b3bbb)) -- **slider:** заменил interface на type ([#176](https://github.com/core-ds/core-components/issues/176)) ([d19e3cb](https://github.com/core-ds/core-components/commit/d19e3cb3a728feb6a0dc46a6a0691f72fc90e10f)) +* **comment:** add missing types ([95888d8](https://github.com/core-ds/core-components/commit/95888d8f87934140c8c6f113aee413a11579c7b6)) +* **progress-bar:** mechanics of progress line fixed ([#169](https://github.com/core-ds/core-components/issues/169)) ([4b46836](https://github.com/core-ds/core-components/commit/4b4683628ea4fd9da178799dfca8b287c0776ff1)) +* purgecss fixes ([#179](https://github.com/core-ds/core-components/issues/179)) ([ca52bab](https://github.com/core-ds/core-components/commit/ca52bab7ca82dd45c5693e46fbcec493943b3bbb)) +* **slider:** заменил interface на type ([#176](https://github.com/core-ds/core-components/issues/176)) ([d19e3cb](https://github.com/core-ds/core-components/commit/d19e3cb3a728feb6a0dc46a6a0691f72fc90e10f)) + ### Features -- **modal:** add props breakpoint for modal responsive ([#173](https://github.com/core-ds/core-components/issues/173)) ([e835052](https://github.com/core-ds/core-components/commit/e835052c45b4fa2d9d1c8c6401929b0be7088f48)) -- react 18 support ([#159](https://github.com/core-ds/core-components/issues/159)) ([2e6693c](https://github.com/core-ds/core-components/commit/2e6693c62f534e333aadb7d3fff4ffd78ac84c63)) -- **themes:** Добавлена возможность подключать styleMobile через js файл ([#178](https://github.com/core-ds/core-components/issues/178)) ([aa00d4b](https://github.com/core-ds/core-components/commit/aa00d4bc88d601f1af2ccc3ef15f729c35351252)) +* **modal:** add props breakpoint for modal responsive ([#173](https://github.com/core-ds/core-components/issues/173)) ([e835052](https://github.com/core-ds/core-components/commit/e835052c45b4fa2d9d1c8c6401929b0be7088f48)) +* react 18 support ([#159](https://github.com/core-ds/core-components/issues/159)) ([2e6693c](https://github.com/core-ds/core-components/commit/2e6693c62f534e333aadb7d3fff4ffd78ac84c63)) +* **themes:** Добавлена возможность подключать styleMobile через js файл ([#178](https://github.com/core-ds/core-components/issues/178)) ([aa00d4b](https://github.com/core-ds/core-components/commit/aa00d4bc88d601f1af2ccc3ef15f729c35351252)) # [29.0.0](https://github.com/core-ds/core-components/compare/v28.7.0...v29.0.0) (2022-07-25) + ### Features -- Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) +* Новый cdn ([#166](https://github.com/core-ds/core-components/issues/166)) ([e29c89e](https://github.com/core-ds/core-components/commit/e29c89edc8cf60ac23df9570eece9e7811eb11f0)) + ### BREAKING CHANGES -- Добавьте новый домен в список разрешенных 'img-src': `'self' {адрес-ресурса}.ru -data: 'self'` +* Добавьте новый домен в список разрешенных 'img-src': `'self' your-domain.ru + data: 'self'` -- chore(screenshot-utils): change cdn +* chore(screenshot-utils): change cdn -- feat(cdn-icon): add prop baseUrl +* feat(cdn-icon): add prop baseUrl # [28.7.0](https://github.com/core-ds/core-components/compare/v28.6.0...v28.7.0) (2022-07-25) + ### Bug Fixes -- **base-modal:** fixed click on scrollbar bug ([#165](https://github.com/core-ds/core-components/issues/165)) ([c9df897](https://github.com/core-ds/core-components/commit/c9df8977a6f2e30d753a1f825bb6bad061179a6e)) -- **bottom-sheet:** fix component border-radius ([#157](https://github.com/core-ds/core-components/issues/157)) ([57b767e](https://github.com/core-ds/core-components/commit/57b767e43e40e9170967e3a53481e21f92cb0190)) -- **bottom-sheet:** fix doc ([#163](https://github.com/core-ds/core-components/issues/163)) ([cbf3282](https://github.com/core-ds/core-components/commit/cbf32828bc2fe472d59d52c1e5644e7934262d73)) +* **base-modal:** fixed click on scrollbar bug ([#165](https://github.com/core-ds/core-components/issues/165)) ([c9df897](https://github.com/core-ds/core-components/commit/c9df8977a6f2e30d753a1f825bb6bad061179a6e)) +* **bottom-sheet:** fix component border-radius ([#157](https://github.com/core-ds/core-components/issues/157)) ([57b767e](https://github.com/core-ds/core-components/commit/57b767e43e40e9170967e3a53481e21f92cb0190)) +* **bottom-sheet:** fix doc ([#163](https://github.com/core-ds/core-components/issues/163)) ([cbf3282](https://github.com/core-ds/core-components/commit/cbf32828bc2fe472d59d52c1e5644e7934262d73)) + ### Features -- **codemod:** codemode to remove dist from imports ([#164](https://github.com/core-ds/core-components/issues/164)) ([ceab8b8](https://github.com/core-ds/core-components/commit/ceab8b82c34d3429e366a2c8b7ebda37fd3c9237)) +* **codemod:** codemode to remove dist from imports ([#164](https://github.com/core-ds/core-components/issues/164)) ([ceab8b8](https://github.com/core-ds/core-components/commit/ceab8b82c34d3429e366a2c8b7ebda37fd3c9237)) # [28.6.0](https://github.com/core-ds/core-components/compare/v28.5.0...v28.6.0) (2022-07-22) + ### Features -- **comment-view:** add comment view component ([#134](https://github.com/core-ds/core-components/issues/134)) ([f1e0b69](https://github.com/core-ds/core-components/commit/f1e0b695ad9bd17f6a3503aa3ceed03e09112dbd)) +* **comment-view:** add comment view component ([#134](https://github.com/core-ds/core-components/issues/134)) ([f1e0b69](https://github.com/core-ds/core-components/commit/f1e0b695ad9bd17f6a3503aa3ceed03e09112dbd)) # [28.5.0](https://github.com/core-ds/core-components/compare/v28.4.0...v28.5.0) (2022-07-22) + ### Features -- **circular-progress-bar:** added new sizes and props ([#122](https://github.com/core-ds/core-components/issues/122)) ([9b1c412](https://github.com/core-ds/core-components/commit/9b1c4126aabc516349655a51c6302d6af84aa129)) +* **circular-progress-bar:** added new sizes and props ([#122](https://github.com/core-ds/core-components/issues/122)) ([9b1c412](https://github.com/core-ds/core-components/commit/9b1c4126aabc516349655a51c6302d6af84aa129)) # [28.4.0](https://github.com/core-ds/core-components/compare/v28.3.1...v28.4.0) (2022-07-18) + ### Features -- **tabs:** full width TabsMobile ([#124](https://github.com/core-ds/core-components/issues/124)) ([659763a](https://github.com/core-ds/core-components/commit/659763abefd2b3762713958e32272c762bb116c6)) -- **tooltip:** add use anchor width for popover ([#151](https://github.com/core-ds/core-components/issues/151)) ([1f6991c](https://github.com/core-ds/core-components/commit/1f6991c6ae67471a32b74f7295dd0288ee83c05b)) +* **tabs:** full width TabsMobile ([#124](https://github.com/core-ds/core-components/issues/124)) ([659763a](https://github.com/core-ds/core-components/commit/659763abefd2b3762713958e32272c762bb116c6)) +* **tooltip:** add use anchor width for popover ([#151](https://github.com/core-ds/core-components/issues/151)) ([1f6991c](https://github.com/core-ds/core-components/commit/1f6991c6ae67471a32b74f7295dd0288ee83c05b)) ## [28.3.1](https://github.com/core-ds/core-components/compare/v28.3.0...v28.3.1) (2022-07-18) + ### Bug Fixes -- **skeleton:** fixed skeleton animation flickering(safari) ([#142](https://github.com/core-ds/core-components/issues/142)) ([40fb389](https://github.com/core-ds/core-components/commit/40fb389316d2a12492ea6a1827947ac71bf7d081)) +* **skeleton:** fixed skeleton animation flickering(safari) ([#142](https://github.com/core-ds/core-components/issues/142)) ([40fb389](https://github.com/core-ds/core-components/commit/40fb389316d2a12492ea6a1827947ac71bf7d081)) # [28.3.0](https://github.com/core-ds/core-components/compare/v28.2.6...v28.3.0) (2022-07-15) + ### Bug Fixes -- **pure-cell:** fix content ([#144](https://github.com/core-ds/core-components/issues/144)) ([5fdd5b0](https://github.com/core-ds/core-components/commit/5fdd5b0f4f71969deac12b96438d29ec956eed3c)) -- **side-panel:** fix ts ([#149](https://github.com/core-ds/core-components/issues/149)) ([6ec7063](https://github.com/core-ds/core-components/commit/6ec706359d95bf7e55845aa0b24a7fd5190d0932)) -- test timeout time up ([#154](https://github.com/core-ds/core-components/issues/154)) ([17678fc](https://github.com/core-ds/core-components/commit/17678fc948b91769318f5cf8fc76b8a547414b5d)) +* **pure-cell:** fix content ([#144](https://github.com/core-ds/core-components/issues/144)) ([5fdd5b0](https://github.com/core-ds/core-components/commit/5fdd5b0f4f71969deac12b96438d29ec956eed3c)) +* **side-panel:** fix ts ([#149](https://github.com/core-ds/core-components/issues/149)) ([6ec7063](https://github.com/core-ds/core-components/commit/6ec706359d95bf7e55845aa0b24a7fd5190d0932)) +* test timeout time up ([#154](https://github.com/core-ds/core-components/issues/154)) ([17678fc](https://github.com/core-ds/core-components/commit/17678fc948b91769318f5cf8fc76b8a547414b5d)) + ### Features -- **bottom-sheet:** add props for disable blocking scroll and modal wrapper classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([a873c20](https://github.com/core-ds/core-components/commit/a873c2035d4885c1b8e5ffae02ce75c4826d1e71)) -- **tabs:** add className fro tab button and tab children ([#132](https://github.com/core-ds/core-components/issues/132)) ([a1b19d2](https://github.com/core-ds/core-components/commit/a1b19d282d27159103f13205f9ea694489d65c51)) +* **bottom-sheet:** add props for disable blocking scroll and modal wrapper classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([a873c20](https://github.com/core-ds/core-components/commit/a873c2035d4885c1b8e5ffae02ce75c4826d1e71)) +* **tabs:** add className fro tab button and tab children ([#132](https://github.com/core-ds/core-components/issues/132)) ([a1b19d2](https://github.com/core-ds/core-components/commit/a1b19d282d27159103f13205f9ea694489d65c51)) ## [28.2.6](https://github.com/core-ds/core-components/compare/v28.2.5...v28.2.6) (2022-07-15) + ### Bug Fixes -- bump packages version ([#153](https://github.com/core-ds/core-components/issues/153)) ([fd3e082](https://github.com/core-ds/core-components/commit/fd3e08205672129cdce04e1000c673f2cd9c10da)) +* bump packages version ([#153](https://github.com/core-ds/core-components/issues/153)) ([fd3e082](https://github.com/core-ds/core-components/commit/fd3e08205672129cdce04e1000c673f2cd9c10da)) ## [28.2.5](https://github.com/core-ds/core-components/compare/v28.2.4...v28.2.5) (2022-07-14) + ### Bug Fixes -- fixed separate packages build ([#152](https://github.com/core-ds/core-components/issues/152)) ([56da602](https://github.com/core-ds/core-components/commit/56da6023946316e7c4a0af3805db962574cc3f0a)) +* fixed separate packages build ([#152](https://github.com/core-ds/core-components/issues/152)) ([56da602](https://github.com/core-ds/core-components/commit/56da6023946316e7c4a0af3805db962574cc3f0a)) ## [28.2.4](https://github.com/core-ds/core-components/compare/v28.2.3...v28.2.4) (2022-07-14) + ### Bug Fixes -- **base-modal:** fix overflow hidden bug ([#128](https://github.com/core-ds/core-components/issues/128)) ([eb953b9](https://github.com/core-ds/core-components/commit/eb953b9866dae8c28bf8265d6884cdf1544ae63c)) +* **base-modal:** fix overflow hidden bug ([#128](https://github.com/core-ds/core-components/issues/128)) ([eb953b9](https://github.com/core-ds/core-components/commit/eb953b9866dae8c28bf8265d6884cdf1544ae63c)) ## [28.2.3](https://github.com/core-ds/core-components/compare/v28.2.2...v28.2.3) (2022-07-14) + ### Bug Fixes -- **scrollbar:** removed core-js dependency ([#145](https://github.com/core-ds/core-components/issues/145)) ([72da859](https://github.com/core-ds/core-components/commit/72da859555de203e1f4c75a316227738b4b981f2)) +* **scrollbar:** removed core-js dependency ([#145](https://github.com/core-ds/core-components/issues/145)) ([72da859](https://github.com/core-ds/core-components/commit/72da859555de203e1f4c75a316227738b4b981f2)) ## [28.2.2](https://github.com/core-ds/core-components/compare/v28.2.1...v28.2.2) (2022-07-12) + ### Bug Fixes -- **cdn-icon:** edited icon size fit svg ([#141](https://github.com/core-ds/core-components/issues/141)) ([54098bf](https://github.com/core-ds/core-components/commit/54098bff366b8a3715b986d7c3e37556b60bb2bf)) +* **cdn-icon:** edited icon size fit svg ([#141](https://github.com/core-ds/core-components/issues/141)) ([54098bf](https://github.com/core-ds/core-components/commit/54098bff366b8a3715b986d7c3e37556b60bb2bf)) # [28.2.1](https://github.com/core-ds/core-components/compare/v28.1.1...v28.2.0) (2022-07-11) + ### Bug Fixes -- **base-modal:** fix using resize observer ([#136](https://github.com/core-ds/core-components/issues/136)) ([cb8f03c](https://github.com/core-ds/core-components/commit/cb8f03ca55394316189d1d4529ee3fdb691538d9)) -- **select:** added comment for IE ([#127](https://github.com/core-ds/core-components/issues/127)) ([31fb5f6](https://github.com/core-ds/core-components/commit/31fb5f69c57acbf71e897b8c261068a24c883ecc)) +* **base-modal:** fix using resize observer ([#136](https://github.com/core-ds/core-components/issues/136)) ([cb8f03c](https://github.com/core-ds/core-components/commit/cb8f03ca55394316189d1d4529ee3fdb691538d9)) +* **select:** added comment for IE ([#127](https://github.com/core-ds/core-components/issues/127)) ([31fb5f6](https://github.com/core-ds/core-components/commit/31fb5f69c57acbf71e897b8c261068a24c883ecc)) + ### Features -- **bottom-sheet:** add prop to set modal classname ([#133](https://github.com/core-ds/core-components/issues/133)) ([8305c0e](https://github.com/core-ds/core-components/commit/8305c0e50b4fe6ebc8bb1f532d33157c63514915)) -- **tooltip:** change media query for TooltipResponsive ([#131](https://github.com/core-ds/core-components/issues/131)) ([87e44aa](https://github.com/core-ds/core-components/commit/87e44aa499dcac3832e6bdd4894c829c64487c29)) +* **bottom-sheet:** add prop to set modal classname ([#133](https://github.com/core-ds/core-components/issues/133)) ([8305c0e](https://github.com/core-ds/core-components/commit/8305c0e50b4fe6ebc8bb1f532d33157c63514915)) +* **tooltip:** change media query for TooltipResponsive ([#131](https://github.com/core-ds/core-components/issues/131)) ([87e44aa](https://github.com/core-ds/core-components/commit/87e44aa499dcac3832e6bdd4894c829c64487c29)) ## [28.1.1](https://github.com/core-ds/core-components/compare/v28.1.0...v28.1.1) (2022-07-07) + ### Bug Fixes -- fixed 'window is not defined' error ([#126](https://github.com/core-ds/core-components/issues/126)) ([f4e9ca5](https://github.com/core-ds/core-components/commit/f4e9ca54ed52fb328d21c85b7efa8176a90dcb6e)) +* fixed 'window is not defined' error ([#126](https://github.com/core-ds/core-components/issues/126)) ([f4e9ca5](https://github.com/core-ds/core-components/commit/f4e9ca54ed52fb328d21c85b7efa8176a90dcb6e)) # [28.1.0](https://github.com/core-ds/core-components/compare/v28.0.0...v28.1.0) (2022-07-07) + ### Features -- **spinner:** new size & inverted theme ([#123](https://github.com/core-ds/core-components/issues/123)) ([5568ab5](https://github.com/core-ds/core-components/commit/5568ab5183badaded723ebc5a608b20bf471c6bc)) +* **spinner:** new size & inverted theme ([#123](https://github.com/core-ds/core-components/issues/123)) ([5568ab5](https://github.com/core-ds/core-components/commit/5568ab5183badaded723ebc5a608b20bf471c6bc)) # Changelog @@ -1718,185 +1689,215 @@ All notable changes to this project will be documented in this file. See [standa # [27.15.0](https://github.com/core-ds/core-components/compare/v27.14.0...v27.15.0) (2022-07-04) + ### Features -- **slider:** migrate to noui-slider ([#98](https://github.com/core-ds/core-components/issues/98)) ([8056e60](https://github.com/core-ds/core-components/commit/8056e605f2eeef2f7e348a4ddeb4a2fc83e1dbd7)) +* **slider:** migrate to noui-slider ([#98](https://github.com/core-ds/core-components/issues/98)) ([8056e60](https://github.com/core-ds/core-components/commit/8056e605f2eeef2f7e348a4ddeb4a2fc83e1dbd7)) # [27.14.0](https://github.com/core-ds/core-components/compare/v27.13.1...v27.14.0) (2022-07-01) + ### Features -- **select:** add select-modal-mobile ([#47](https://github.com/core-ds/core-components/issues/47)) ([5ec4268](https://github.com/core-ds/core-components/commit/5ec42688065bb279d721541ec21bde242675ab8a)) -- **side-panel:** add new component side-panel ([#56](https://github.com/core-ds/core-components/issues/56)) ([0f9365a](https://github.com/core-ds/core-components/commit/0f9365ab22597cc230ac19ab19032f63d72a816e)) +* **select:** add select-modal-mobile ([#47](https://github.com/core-ds/core-components/issues/47)) ([5ec4268](https://github.com/core-ds/core-components/commit/5ec42688065bb279d721541ec21bde242675ab8a)) +* **side-panel:** add new component side-panel ([#56](https://github.com/core-ds/core-components/issues/56)) ([0f9365a](https://github.com/core-ds/core-components/commit/0f9365ab22597cc230ac19ab19032f63d72a816e)) + ### Performance Improvements -- refuse to use a resize-observer polyfill if it is not needed ([#120](https://github.com/core-ds/core-components/issues/120)) ([f2abcb2](https://github.com/core-ds/core-components/commit/f2abcb2888dd5906b345f5fc64b1624eef56ac13)) +* refuse to use a resize-observer polyfill if it is not needed ([#120](https://github.com/core-ds/core-components/issues/120)) ([f2abcb2](https://github.com/core-ds/core-components/commit/f2abcb2888dd5906b345f5fc64b1624eef56ac13)) ## [27.13.1](https://github.com/core-ds/core-components/compare/v27.13.0...v27.13.1) (2022-06-30) + ### Bug Fixes -- **base-modal:** fixed outside modal click ([#115](https://github.com/core-ds/core-components/issues/115)) ([6a08f72](https://github.com/core-ds/core-components/commit/6a08f726521dcd9a310b0e06345950429eac246a)) -- **intl-phone-input:** fixed caret jumps ([#112](https://github.com/core-ds/core-components/issues/112)) ([1d219e7](https://github.com/core-ds/core-components/commit/1d219e7663b8b19d64d3f099bbea01cf76defcd8)) +* **base-modal:** fixed outside modal click ([#115](https://github.com/core-ds/core-components/issues/115)) ([6a08f72](https://github.com/core-ds/core-components/commit/6a08f726521dcd9a310b0e06345950429eac246a)) +* **intl-phone-input:** fixed caret jumps ([#112](https://github.com/core-ds/core-components/issues/112)) ([1d219e7](https://github.com/core-ds/core-components/commit/1d219e7663b8b19d64d3f099bbea01cf76defcd8)) # [27.13.0](https://github.com/core-ds/core-components/compare/v27.12.0...v27.13.0) (2022-06-30) + ### Features -- **tooltip:** add bottomSheetProps for TooltipResponsive ([#119](https://github.com/core-ds/core-components/issues/119)) ([3e7690c](https://github.com/core-ds/core-components/commit/3e7690c55df998577183b0d51e4069e1131632f4)) +* **tooltip:** add bottomSheetProps for TooltipResponsive ([#119](https://github.com/core-ds/core-components/issues/119)) ([3e7690c](https://github.com/core-ds/core-components/commit/3e7690c55df998577183b0d51e4069e1131632f4)) # [27.12.0](https://github.com/core-ds/core-components/compare/v27.11.0...v27.12.0) (2022-06-29) + ### Features -- **calendar:** implement calendar mobile ([#54](https://github.com/core-ds/core-components/issues/54)) ([730f51d](https://github.com/core-ds/core-components/commit/730f51d35823273f122fe84a0369f95745fd2878)) +* **calendar:** implement calendar mobile ([#54](https://github.com/core-ds/core-components/issues/54)) ([730f51d](https://github.com/core-ds/core-components/commit/730f51d35823273f122fe84a0369f95745fd2878)) # [27.11.0](https://github.com/core-ds/core-components/compare/v27.10.0...v27.11.0) (2022-06-29) + ### Features -- change types for OptionList and add event for handlers to Tooltip ([#114](https://github.com/core-ds/core-components/issues/114)) ([4b23107](https://github.com/core-ds/core-components/commit/4b2310742165035e8841225b699aae4efcdc8958)) +* change types for OptionList and add event for handlers to Tooltip ([#114](https://github.com/core-ds/core-components/issues/114)) ([4b23107](https://github.com/core-ds/core-components/commit/4b2310742165035e8841225b699aae4efcdc8958)) # [27.10.0](https://github.com/core-ds/core-components/compare/v27.9.0...v27.10.0) (2022-06-28) + ### Bug Fixes -- **icon-view:** fix line-height ([#111](https://github.com/core-ds/core-components/issues/111)) ([b16e0ea](https://github.com/core-ds/core-components/commit/b16e0ea206c819ba4370ed8c1662804a83648e0f)) -- **input-autocomplete:** fixed onChange type ([#110](https://github.com/core-ds/core-components/issues/110)) ([c994661](https://github.com/core-ds/core-components/commit/c9946615af9aecb3f1974c887bdd6686708ac18e)) -- **intl-phone-input:** fixed caret jumps ([#107](https://github.com/core-ds/core-components/issues/107)) ([177bf56](https://github.com/core-ds/core-components/commit/177bf5659e79beb08b2ee6ed4c9257215861f904)) -- **pure-cell:** fix stories ([#113](https://github.com/core-ds/core-components/issues/113)) ([01f6138](https://github.com/core-ds/core-components/commit/01f6138615b1b7268510e012c314650c084c9ef0)) +* **icon-view:** fix line-height ([#111](https://github.com/core-ds/core-components/issues/111)) ([b16e0ea](https://github.com/core-ds/core-components/commit/b16e0ea206c819ba4370ed8c1662804a83648e0f)) +* **input-autocomplete:** fixed onChange type ([#110](https://github.com/core-ds/core-components/issues/110)) ([c994661](https://github.com/core-ds/core-components/commit/c9946615af9aecb3f1974c887bdd6686708ac18e)) +* **intl-phone-input:** fixed caret jumps ([#107](https://github.com/core-ds/core-components/issues/107)) ([177bf56](https://github.com/core-ds/core-components/commit/177bf5659e79beb08b2ee6ed4c9257215861f904)) +* **pure-cell:** fix stories ([#113](https://github.com/core-ds/core-components/issues/113)) ([01f6138](https://github.com/core-ds/core-components/commit/01f6138615b1b7268510e012c314650c084c9ef0)) + ### Features -- circumflexus retrieval ([#57](https://github.com/core-ds/core-components/issues/57)) ([3820da8](https://github.com/core-ds/core-components/commit/3820da818bcdcbee6904c648b3e29c3c828fe202)) -- fixed form-control/input/select label and hint margins ([#97](https://github.com/core-ds/core-components/issues/97)) ([abd2f15](https://github.com/core-ds/core-components/commit/abd2f15f210bb63bafe0cee341f0a66b5f2071d7)) -- **pure cell:** new component ([#10](https://github.com/core-ds/core-components/issues/10)) ([4e95c57](https://github.com/core-ds/core-components/commit/4e95c573aaa6f99197292ea4bae12cbbcc3207c9)) +* circumflexus retrieval ([#57](https://github.com/core-ds/core-components/issues/57)) ([3820da8](https://github.com/core-ds/core-components/commit/3820da818bcdcbee6904c648b3e29c3c828fe202)) +* fixed form-control/input/select label and hint margins ([#97](https://github.com/core-ds/core-components/issues/97)) ([abd2f15](https://github.com/core-ds/core-components/commit/abd2f15f210bb63bafe0cee341f0a66b5f2071d7)) +* **pure cell:** new component ([#10](https://github.com/core-ds/core-components/issues/10)) ([4e95c57](https://github.com/core-ds/core-components/commit/4e95c573aaa6f99197292ea4bae12cbbcc3207c9)) # [27.9.0](https://github.com/core-ds/core-components/compare/v27.8.1...v27.9.0) (2022-06-24) + ### Bug Fixes -- **icon-button:** fix disabled colors ([#104](https://github.com/core-ds/core-components/issues/104)) ([3f03849](https://github.com/core-ds/core-components/commit/3f038495bb63f72cd81ceeedbe55b52119581d57)) +* **icon-button:** fix disabled colors ([#104](https://github.com/core-ds/core-components/issues/104)) ([3f03849](https://github.com/core-ds/core-components/commit/3f038495bb63f72cd81ceeedbe55b52119581d57)) + ### Features -- **amount-input:** added functionality to enter negative values ([#106](https://github.com/core-ds/core-components/issues/106)) ([d6b6ca7](https://github.com/core-ds/core-components/commit/d6b6ca71d87b5c4c62d2e87cdbe9d1ff035852c4)) +* **amount-input:** added functionality to enter negative values ([#106](https://github.com/core-ds/core-components/issues/106)) ([d6b6ca7](https://github.com/core-ds/core-components/commit/d6b6ca71d87b5c4c62d2e87cdbe9d1ff035852c4)) ## [27.8.1](https://github.com/core-ds/core-components/compare/v27.8.0...v27.8.1) (2022-06-23) + ### Bug Fixes -- **button:** fix color secondary ([#92](https://github.com/core-ds/core-components/issues/92)) ([57b8e66](https://github.com/core-ds/core-components/commit/57b8e661b8f54acdfd0c235f58ebd59d66c116a4)) -- **scrollbar:** add missing deps ([#108](https://github.com/core-ds/core-components/issues/108)) ([fef70be](https://github.com/core-ds/core-components/commit/fef70be83c00308d90d5de1468e22ae5c6d959fe)) +* **button:** fix color secondary ([#92](https://github.com/core-ds/core-components/issues/92)) ([57b8e66](https://github.com/core-ds/core-components/commit/57b8e661b8f54acdfd0c235f58ebd59d66c116a4)) +* **scrollbar:** add missing deps ([#108](https://github.com/core-ds/core-components/issues/108)) ([fef70be](https://github.com/core-ds/core-components/commit/fef70be83c00308d90d5de1468e22ae5c6d959fe)) # [27.8.0](https://github.com/core-ds/core-components/compare/v27.7.0...v27.8.0) (2022-06-20) + ### Bug Fixes -- fixed launch storybook in IE ([#52](https://github.com/core-ds/core-components/issues/52)) ([379528b](https://github.com/core-ds/core-components/commit/379528b4ee24183dec38930ea15a31661b994085)) +* fixed launch storybook in IE ([#52](https://github.com/core-ds/core-components/issues/52)) ([379528b](https://github.com/core-ds/core-components/commit/379528b4ee24183dec38930ea15a31661b994085)) + ### Features -- **input-autocomplete:** add new component InputAutocompleteMobile ([#96](https://github.com/core-ds/core-components/issues/96)) ([a0e9f95](https://github.com/core-ds/core-components/commit/a0e9f95edbfcd6722e99647d75a262805e81a4a7)) +* **input-autocomplete:** add new component InputAutocompleteMobile ([#96](https://github.com/core-ds/core-components/issues/96)) ([a0e9f95](https://github.com/core-ds/core-components/commit/a0e9f95edbfcd6722e99647d75a262805e81a4a7)) # [27.7.0](https://github.com/core-ds/core-components/compare/v27.6.2...v27.7.0) (2022-06-20) + ### Bug Fixes -- **badge:** fix classname ([#100](https://github.com/core-ds/core-components/issues/100)) ([4b5f2bc](https://github.com/core-ds/core-components/commit/4b5f2bc9ab17daf865a5515828d178eaff94bd2d)) -- **calendar:** increased specificity of the button css class ([#103](https://github.com/core-ds/core-components/issues/103)) ([3d20c11](https://github.com/core-ds/core-components/commit/3d20c112a1c161951afa2e1c6fca8d3c048501e7)) -- **icon-button:** fix loading ([#105](https://github.com/core-ds/core-components/issues/105)) ([0b133f0](https://github.com/core-ds/core-components/commit/0b133f042e86702ec2861915f2cdbcdbad9ca905)) -- **tabs:** increased specificity of the mobile css class ([#102](https://github.com/core-ds/core-components/issues/102)) ([8f212f1](https://github.com/core-ds/core-components/commit/8f212f114d63d83bb7e7340e2ff13b89349bf353)) +* **badge:** fix classname ([#100](https://github.com/core-ds/core-components/issues/100)) ([4b5f2bc](https://github.com/core-ds/core-components/commit/4b5f2bc9ab17daf865a5515828d178eaff94bd2d)) +* **calendar:** increased specificity of the button css class ([#103](https://github.com/core-ds/core-components/issues/103)) ([3d20c11](https://github.com/core-ds/core-components/commit/3d20c112a1c161951afa2e1c6fca8d3c048501e7)) +* **icon-button:** fix loading ([#105](https://github.com/core-ds/core-components/issues/105)) ([0b133f0](https://github.com/core-ds/core-components/commit/0b133f042e86702ec2861915f2cdbcdbad9ca905)) +* **tabs:** increased specificity of the mobile css class ([#102](https://github.com/core-ds/core-components/issues/102)) ([8f212f1](https://github.com/core-ds/core-components/commit/8f212f114d63d83bb7e7340e2ff13b89349bf353)) + ### Features -- **code-input:** autocomplete sms in android ([#67](https://github.com/core-ds/core-components/issues/67)) ([b32f734](https://github.com/core-ds/core-components/commit/b32f73403d5ccce9812368e5f186952a67dca57c)) -- **file-upload-item:** add ability to disable file delete button ([#86](https://github.com/core-ds/core-components/issues/86)) ([daa8775](https://github.com/core-ds/core-components/commit/daa877591736598ef6f9f0237c40ac8759258eeb)) -- **vars:** export CSS custom properties as JS vars ([#45](https://github.com/core-ds/core-components/issues/45)) ([dbb1f78](https://github.com/core-ds/core-components/commit/dbb1f78795247fa09797c05f134b21a7774e6898)) +* **code-input:** autocomplete sms in android ([#67](https://github.com/core-ds/core-components/issues/67)) ([b32f734](https://github.com/core-ds/core-components/commit/b32f73403d5ccce9812368e5f186952a67dca57c)) +* **file-upload-item:** add ability to disable file delete button ([#86](https://github.com/core-ds/core-components/issues/86)) ([daa8775](https://github.com/core-ds/core-components/commit/daa877591736598ef6f9f0237c40ac8759258eeb)) +* **vars:** export CSS custom properties as JS vars ([#45](https://github.com/core-ds/core-components/issues/45)) ([dbb1f78](https://github.com/core-ds/core-components/commit/dbb1f78795247fa09797c05f134b21a7774e6898)) ## [27.6.2](https://github.com/core-ds/core-components/compare/v27.6.1...v27.6.2) (2022-06-16) + ### Bug Fixes -- **tooltip:** passing onClose parameter to tooltip component ([#101](https://github.com/core-ds/core-components/issues/101)) ([216e80f](https://github.com/core-ds/core-components/commit/216e80f2c1f91ae9bdb0dceea2a4db0039c91ec3)) +* **tooltip:** passing onClose parameter to tooltip component ([#101](https://github.com/core-ds/core-components/issues/101)) ([216e80f](https://github.com/core-ds/core-components/commit/216e80f2c1f91ae9bdb0dceea2a4db0039c91ec3)) ## [27.6.1](https://github.com/core-ds/core-components/compare/v27.6.0...v27.6.1) (2022-06-16) + ### Bug Fixes -- **tooltip:** passing open parameter to tooltip component ([#99](https://github.com/core-ds/core-components/issues/99)) ([885a11f](https://github.com/core-ds/core-components/commit/885a11f7f5e40033622dda5e86ed1c8ea03e7534)) +* **tooltip:** passing open parameter to tooltip component ([#99](https://github.com/core-ds/core-components/issues/99)) ([885a11f](https://github.com/core-ds/core-components/commit/885a11f7f5e40033622dda5e86ed1c8ea03e7534)) # [27.6.0](https://github.com/core-ds/core-components/compare/v27.5.0...v27.6.0) (2022-06-16) + ### Features -- **BottonSheet:** prop for controlling animation on screen size chan… ([#89](https://github.com/core-ds/core-components/issues/89)) ([a69e178](https://github.com/core-ds/core-components/commit/a69e17891d1fd91ba6f35bfc097ae1fc9cbf92df)) +* **BottonSheet:** prop for controlling animation on screen size chan… ([#89](https://github.com/core-ds/core-components/issues/89)) ([a69e178](https://github.com/core-ds/core-components/commit/a69e17891d1fd91ba6f35bfc097ae1fc9cbf92df)) # [27.5.0](https://github.com/core-ds/core-components/compare/v27.4.1...v27.5.0) (2022-06-09) + ### Features -- **select-with-tags:** add calling onOpen handler ([#91](https://github.com/core-ds/core-components/issues/91)) ([b48b05c](https://github.com/core-ds/core-components/commit/b48b05c2ad2660e3a6a00a5d8c25a077189c1891)) +* **select-with-tags:** add calling onOpen handler ([#91](https://github.com/core-ds/core-components/issues/91)) ([b48b05c](https://github.com/core-ds/core-components/commit/b48b05c2ad2660e3a6a00a5d8c25a077189c1891)) ## [27.4.1](https://github.com/core-ds/core-components/compare/v27.4.0...v27.4.1) (2022-06-09) + ### Bug Fixes -- **badge:** fix box-sizing ([#90](https://github.com/core-ds/core-components/issues/90)) ([b052b9b](https://github.com/core-ds/core-components/commit/b052b9b15831229104bd25d1231f27ec41d2acb8)) +* **badge:** fix box-sizing ([#90](https://github.com/core-ds/core-components/issues/90)) ([b052b9b](https://github.com/core-ds/core-components/commit/b052b9b15831229104bd25d1231f27ec41d2acb8)) # [27.4.0](https://github.com/core-ds/core-components/compare/v27.3.0...v27.4.0) (2022-06-08) + ### Features -- **scrollbar:** new component scrollbar ([#48](https://github.com/core-ds/core-components/issues/48)) ([5ea6fa3](https://github.com/core-ds/core-components/commit/5ea6fa352ff943cda8c52e35f9d96da9bea97fa3)) -- **select-with-tags:** add support useSelectWithApply hook ([#85](https://github.com/core-ds/core-components/issues/85)) ([461f3bc](https://github.com/core-ds/core-components/commit/461f3bc2cdd498a6cc362809dbd7b44a4cd5fd79)) +* **scrollbar:** new component scrollbar ([#48](https://github.com/core-ds/core-components/issues/48)) ([5ea6fa3](https://github.com/core-ds/core-components/commit/5ea6fa352ff943cda8c52e35f9d96da9bea97fa3)) +* **select-with-tags:** add support useSelectWithApply hook ([#85](https://github.com/core-ds/core-components/issues/85)) ([461f3bc](https://github.com/core-ds/core-components/commit/461f3bc2cdd498a6cc362809dbd7b44a4cd5fd79)) # [27.4.0](https://github.com/core-ds/core-components/compare/v27.3.0...v27.4.0) (2022-06-08) + ### Features -- **scrollbar:** new component scrollbar ([#48](https://github.com/core-ds/core-components/issues/48)) ([5ea6fa3](https://github.com/core-ds/core-components/commit/5ea6fa352ff943cda8c52e35f9d96da9bea97fa3)) +* **scrollbar:** new component scrollbar ([#48](https://github.com/core-ds/core-components/issues/48)) ([5ea6fa3](https://github.com/core-ds/core-components/commit/5ea6fa352ff943cda8c52e35f9d96da9bea97fa3)) # [27.3.0](https://github.com/core-ds/core-components/compare/v27.2.0...v27.3.0) (2022-06-03) + ### Features -- **plate:** update buttons prop in Plate component ([#81](https://github.com/core-ds/core-components/issues/81)) ([0db6283](https://github.com/core-ds/core-components/commit/0db628390bfa91290b5a6529fab2653f06b4e629)) +* **plate:** update buttons prop in Plate component ([#81](https://github.com/core-ds/core-components/issues/81)) ([0db6283](https://github.com/core-ds/core-components/commit/0db628390bfa91290b5a6529fab2653f06b4e629)) # [27.2.0](https://github.com/core-ds/core-components/compare/v27.1.2...v27.2.0) (2022-06-03) + ### Bug Fixes -- **attach:** added size xxs and changed default view prop ([#59](https://github.com/core-ds/core-components/issues/59)) ([f6e297d](https://github.com/core-ds/core-components/commit/f6e297d3af39470b09c9cba26d8d1c47dc72d0da)) -- **button:** fix border-radius ([#63](https://github.com/core-ds/core-components/issues/63)) ([e09991e](https://github.com/core-ds/core-components/commit/e09991e07215b1ca19d4e66d189a1504be52aefd)) -- **tooltip:** added missing props ([#72](https://github.com/core-ds/core-components/issues/72)) ([3f83040](https://github.com/core-ds/core-components/commit/3f83040a32ae6280abebaaddb1b8886a02663096)) +* **attach:** added size xxs and changed default view prop ([#59](https://github.com/core-ds/core-components/issues/59)) ([f6e297d](https://github.com/core-ds/core-components/commit/f6e297d3af39470b09c9cba26d8d1c47dc72d0da)) +* **button:** fix border-radius ([#63](https://github.com/core-ds/core-components/issues/63)) ([e09991e](https://github.com/core-ds/core-components/commit/e09991e07215b1ca19d4e66d189a1504be52aefd)) +* **tooltip:** added missing props ([#72](https://github.com/core-ds/core-components/issues/72)) ([3f83040](https://github.com/core-ds/core-components/commit/3f83040a32ae6280abebaaddb1b8886a02663096)) + ### Features -- **date-input:** removed date validation ([#69](https://github.com/core-ds/core-components/issues/69)) ([ca56ec9](https://github.com/core-ds/core-components/commit/ca56ec97db0d966233bd4312fdddabd59ed427ae)) +* **date-input:** removed date validation ([#69](https://github.com/core-ds/core-components/issues/69)) ([ca56ec9](https://github.com/core-ds/core-components/commit/ca56ec97db0d966233bd4312fdddabd59ed427ae)) # [27.2.0](https://github.com/core-ds/core-components/compare/v27.1.2...v27.2.0) (2022-06-03) + ### Bug Fixes -- **tooltip:** added missing props ([#72](https://github.com/core-ds/core-components/issues/72)) ([3f83040](https://github.com/core-ds/core-components/commit/3f83040a32ae6280abebaaddb1b8886a02663096)) +* **tooltip:** added missing props ([#72](https://github.com/core-ds/core-components/issues/72)) ([3f83040](https://github.com/core-ds/core-components/commit/3f83040a32ae6280abebaaddb1b8886a02663096)) + ### Features -- **date-input:** removed date validation ([#69](https://github.com/core-ds/core-components/issues/69)) ([ca56ec9](https://github.com/core-ds/core-components/commit/ca56ec97db0d966233bd4312fdddabd59ed427ae)) +* **date-input:** removed date validation ([#69](https://github.com/core-ds/core-components/issues/69)) ([ca56ec9](https://github.com/core-ds/core-components/commit/ca56ec97db0d966233bd4312fdddabd59ed427ae)) ### [27.1.2](https://github.com/core-ds/core-components/compare/v27.1.0...v27.1.2) (2022-06-01) + ### Bug Fixes -- **table:** pagination_disappearance ([#64](https://github.com/core-ds/core-components/issues/64)) ([7aa4c53](https://github.com/core-ds/core-components/commit/7aa4c536923ecb0aee5d80f4ba2e72bde06730dd)) +* **table:** pagination_disappearance ([#64](https://github.com/core-ds/core-components/issues/64)) ([7aa4c53](https://github.com/core-ds/core-components/commit/7aa4c536923ecb0aee5d80f4ba2e72bde06730dd)) ## [27.1.1](https://github.com/core-ds/core-components/compare/v27.1.0...v27.1.1) (2022-06-01) + ### Bug Fixes -- **table:** pagination_disappearance ([#64](https://github.com/core-ds/core-components/issues/64)) ([7aa4c53](https://github.com/core-ds/core-components/commit/7aa4c536923ecb0aee5d80f4ba2e72bde06730dd)) +* **table:** pagination_disappearance ([#64](https://github.com/core-ds/core-components/issues/64)) ([7aa4c53](https://github.com/core-ds/core-components/commit/7aa4c536923ecb0aee5d80f4ba2e72bde06730dd)) # Changelog @@ -1904,81 +1905,92 @@ All notable changes to this project will be documented in this file. See [standa ## [27.1.0](https://github.com/core-ds/core-components/compare/v27.0.0...v27.1.0) (2022-05-30) + ### Bug Fixes -- **codemod:** fix shade|alpha modificators bug ([#60](https://github.com/core-ds/core-components/issues/60)) ([bfc0104](https://github.com/core-ds/core-components/commit/bfc0104c1a15066d878ca27d3ae8c5903f6ca9ad)) -- **typography:** removed default weight prop from Typography.Text ([#61](https://github.com/core-ds/core-components/issues/61)) ([7a80cbb](https://github.com/core-ds/core-components/commit/7a80cbb935c013886b4aa28e56ab982f7fe54ac1)) +* **codemod:** fix shade|alpha modificators bug ([#60](https://github.com/core-ds/core-components/issues/60)) ([bfc0104](https://github.com/core-ds/core-components/commit/bfc0104c1a15066d878ca27d3ae8c5903f6ca9ad)) +* **typography:** removed default weight prop from Typography.Text ([#61](https://github.com/core-ds/core-components/issues/61)) ([7a80cbb](https://github.com/core-ds/core-components/commit/7a80cbb935c013886b4aa28e56ab982f7fe54ac1)) ## [27.0.0](https://github.com/core-ds/core-components/compare/v26.12.0...v27.0.0) (2022-05-26) + ### ⚠ BREAKING CHANGES -- change color tokens +* change color tokens -- feat(codemod): add css-codemod +* feat(codemod): add css-codemod ### Features -- change color tokens ([#5](https://github.com/core-ds/core-components/issues/5)) ([ddf7c3f](https://github.com/core-ds/core-components/commit/ddf7c3f7be5bc578645ffb6e56958c9bf8fa6ab2)), closes [#20](https://github.com/core-ds/core-components/issues/20) [#21](https://github.com/core-ds/core-components/issues/21) +* change color tokens ([#5](https://github.com/core-ds/core-components/issues/5)) ([ddf7c3f](https://github.com/core-ds/core-components/commit/ddf7c3f7be5bc578645ffb6e56958c9bf8fa6ab2)), closes [#20](https://github.com/core-ds/core-components/issues/20) [#21](https://github.com/core-ds/core-components/issues/21) ## [26.12.0](https://github.com/core-ds/core-components/compare/v26.11.0...v26.12.0) (2022-05-26) + ### Features -- **amount:** add styling props ([#44](https://github.com/core-ds/core-components/issues/44)) ([539268a](https://github.com/core-ds/core-components/commit/539268a60a44db29f159d16cca6ad343deeef58d)) -- **tabs:** add dataTestId prop to Tab component ([bfa4604](https://github.com/core-ds/core-components/commit/bfa46043d0e62f1839b15c478ee72397a9843155)) +* **amount:** add styling props ([#44](https://github.com/core-ds/core-components/issues/44)) ([539268a](https://github.com/core-ds/core-components/commit/539268a60a44db29f159d16cca6ad343deeef58d)) +* **tabs:** add dataTestId prop to Tab component ([bfa4604](https://github.com/core-ds/core-components/commit/bfa46043d0e62f1839b15c478ee72397a9843155)) ## [26.11.0](https://github.com/core-ds/core-components/compare/v26.10.0...v26.11.0) (2022-05-20) + ### Features -- **badge:** added badge color outlines ([#19](https://github.com/core-ds/core-components/issues/19)) ([f1a0dfa](https://github.com/core-ds/core-components/commit/f1a0dfa0775451a6a163dbfd7f3f80fbd09e47c4)) -- **calendar-range:** default month position ([#11](https://github.com/core-ds/core-components/issues/11)) ([2e72064](https://github.com/core-ds/core-components/commit/2e720646c25b1008dcce1a2a7948b947273ed389)) -- **tooltip:** add inverted colors ([#2](https://github.com/core-ds/core-components/issues/2)) ([9f9f3eb](https://github.com/core-ds/core-components/commit/9f9f3eb69db3e4550d2bf53eb713c2d7196ec7a3)) +* **badge:** added badge color outlines ([#19](https://github.com/core-ds/core-components/issues/19)) ([f1a0dfa](https://github.com/core-ds/core-components/commit/f1a0dfa0775451a6a163dbfd7f3f80fbd09e47c4)) +* **calendar-range:** default month position ([#11](https://github.com/core-ds/core-components/issues/11)) ([2e72064](https://github.com/core-ds/core-components/commit/2e720646c25b1008dcce1a2a7948b947273ed389)) +* **tooltip:** add inverted colors ([#2](https://github.com/core-ds/core-components/issues/2)) ([9f9f3eb](https://github.com/core-ds/core-components/commit/9f9f3eb69db3e4550d2bf53eb713c2d7196ec7a3)) + ### Bug Fixes -- clear button isn't accessible from the keyboard ([#49](https://github.com/core-ds/core-components/issues/49)) ([e751edc](https://github.com/core-ds/core-components/commit/e751edc8557cb4011ab352994c560287ded0f669)) +* clear button isn't accessible from the keyboard ([#49](https://github.com/core-ds/core-components/issues/49)) ([e751edc](https://github.com/core-ds/core-components/commit/e751edc8557cb4011ab352994c560287ded0f669)) ## [26.10.0](https://github.com/core-ds/core-components/compare/v26.9.1...v26.10.0) (2022-05-17) + ### Features -- **icon-view:** adding 40 size for circle and super ellipse ([#42](https://github.com/core-ds/core-components/issues/42)) ([2e717cc](https://github.com/core-ds/core-components/commit/2e717ccec46c40e15fb4f6c1051ef33b1faa4c51)) -- **radio-group:** make radio group value prop nullable ([#33](https://github.com/core-ds/core-components/issues/33)) ([501d41c](https://github.com/core-ds/core-components/commit/501d41c06147843dc02de63ae5dc35023d112b05)) -- add lint-pr action ([#34](https://github.com/core-ds/core-components/issues/34)) ([477a464](https://github.com/core-ds/core-components/commit/477a464c97221b04c5fc8011e2164644d86788bb)) +* **icon-view:** adding 40 size for circle and super ellipse ([#42](https://github.com/core-ds/core-components/issues/42)) ([2e717cc](https://github.com/core-ds/core-components/commit/2e717ccec46c40e15fb4f6c1051ef33b1faa4c51)) +* **radio-group:** make radio group value prop nullable ([#33](https://github.com/core-ds/core-components/issues/33)) ([501d41c](https://github.com/core-ds/core-components/commit/501d41c06147843dc02de63ae5dc35023d112b05)) +* add lint-pr action ([#34](https://github.com/core-ds/core-components/issues/34)) ([477a464](https://github.com/core-ds/core-components/commit/477a464c97221b04c5fc8011e2164644d86788bb)) + ### Bug Fixes -- **chart:** chart stories restored ([#46](https://github.com/core-ds/core-components/issues/46)) ([b3bca85](https://github.com/core-ds/core-components/commit/b3bca858af37dc7e1cb6878e8e1c114ca218a998)) -- **modal:** rewrite invisible prop from backdropProps ([#38](https://github.com/core-ds/core-components/issues/38)) ([436e833](https://github.com/core-ds/core-components/commit/436e83346d2d35f02f94da0b67de7918d090e53a)) -- change package paths in storybook webpack config ([#27](https://github.com/core-ds/core-components/issues/27)) ([e7ff0b4](https://github.com/core-ds/core-components/commit/e7ff0b49e6c473d42f2695ed4a1f919c43e9c5ca)) +* **chart:** chart stories restored ([#46](https://github.com/core-ds/core-components/issues/46)) ([b3bca85](https://github.com/core-ds/core-components/commit/b3bca858af37dc7e1cb6878e8e1c114ca218a998)) +* **modal:** rewrite invisible prop from backdropProps ([#38](https://github.com/core-ds/core-components/issues/38)) ([436e833](https://github.com/core-ds/core-components/commit/436e83346d2d35f02f94da0b67de7918d090e53a)) +* change package paths in storybook webpack config ([#27](https://github.com/core-ds/core-components/issues/27)) ([e7ff0b4](https://github.com/core-ds/core-components/commit/e7ff0b49e6c473d42f2695ed4a1f919c43e9c5ca)) ### [26.9.1](https://github.com/core-ds/core-components/compare/v26.8.0...v26.9.1) (2022-05-13) + ### Features -- **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) -- **toast:** add use anchor width for popover ([#39](https://github.com/core-ds/core-components/issues/39)) ([747e1e2](https://github.com/core-ds/core-components/commit/747e1e26b82bc98dfd245dd4b427cd319f729b71)) +* **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) +* **toast:** add use anchor width for popover ([#39](https://github.com/core-ds/core-components/issues/39)) ([747e1e2](https://github.com/core-ds/core-components/commit/747e1e26b82bc98dfd245dd4b427cd319f729b71)) # [26.9.0](https://github.com/core-ds/core-components/compare/v26.8.0...v26.9.0) (2022-05-13) + ### Features -- **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) -- **toast:** add use anchor width for popover ([#39](https://github.com/core-ds/core-components/issues/39)) ([747e1e2](https://github.com/core-ds/core-components/commit/747e1e26b82bc98dfd245dd4b427cd319f729b71)) +* **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) +* **toast:** add use anchor width for popover ([#39](https://github.com/core-ds/core-components/issues/39)) ([747e1e2](https://github.com/core-ds/core-components/commit/747e1e26b82bc98dfd245dd4b427cd319f729b71)) # [26.9.0](https://github.com/core-ds/core-components/compare/v26.8.0...v26.9.0) (2022-05-11) + ### Features -- **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) +* **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) # [26.9.0](https://github.com/core-ds/core-components/compare/v26.8.0...v26.9.0) (2022-05-06) + ### Features -- **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) +* **attach:** add new icon ([#15](https://github.com/core-ds/core-components/issues/15)) ([4643792](https://github.com/core-ds/core-components/commit/46437929e503b8a1f22afb34f8fe6ad961211d86)) # Changelog @@ -1986,41 +1998,48 @@ All notable changes to this project will be documented in this file. See [standa ## [26.8.0](https://github.com/core-ds/core-components/compare/v26.7.0...v26.8.0) (2022-05-05) + ### Features -- **calendar:** add selectable year and month for PeriodSlider ([#18](https://github.com/core-ds/core-components/issues/18)) ([918767c](https://github.com/core-ds/core-components/commit/918767ce06e5dec1ba094a57282e88fc4cd2de66)) +* **calendar:** add selectable year and month for PeriodSlider ([#18](https://github.com/core-ds/core-components/issues/18)) ([918767c](https://github.com/core-ds/core-components/commit/918767ce06e5dec1ba094a57282e88fc4cd2de66)) + ### Bug Fixes -- add disabled props to checkbox ([#32](https://github.com/core-ds/core-components/issues/32)) ([b64adff](https://github.com/core-ds/core-components/commit/b64adffb8439a64bbf85e30864d1b932fc4dd2eb)) +* add disabled props to checkbox ([#32](https://github.com/core-ds/core-components/issues/32)) ([b64adff](https://github.com/core-ds/core-components/commit/b64adffb8439a64bbf85e30864d1b932fc4dd2eb)) ## [26.7.0](https://github.com/core-ds/core-components/compare/v26.5.3...v26.7.0) (2022-05-04) + ### Features -- **button:** add overflow hidden and text overflow ellipsis for nowrap ([#17](https://github.com/core-ds/core-components/issues/17)) ([7d9669a](https://github.com/core-ds/core-components/commit/7d9669a56c6b134caae9a0317ffc2c0206928a27)) -- **toast:** break text in toast ([#25](https://github.com/core-ds/core-components/issues/25)) ([5356ce6](https://github.com/core-ds/core-components/commit/5356ce685e35b9414a465fb023382535f150abf5)) +* **button:** add overflow hidden and text overflow ellipsis for nowrap ([#17](https://github.com/core-ds/core-components/issues/17)) ([7d9669a](https://github.com/core-ds/core-components/commit/7d9669a56c6b134caae9a0317ffc2c0206928a27)) +* **toast:** break text in toast ([#25](https://github.com/core-ds/core-components/issues/25)) ([5356ce6](https://github.com/core-ds/core-components/commit/5356ce685e35b9414a465fb023382535f150abf5)) + ### Bug Fixes -- **code-input:** auto-fill styles ([#24](https://github.com/core-ds/core-components/issues/24)) ([7e83e02](https://github.com/core-ds/core-components/commit/7e83e02b4aae0aeefe91a2526744ca10d7577290)) -- **confirmation:** fix countdown timer ([#23](https://github.com/core-ds/core-components/issues/23)) ([2752723](https://github.com/core-ds/core-components/commit/2752723bdbf71e42cfb1e8c6e9009c719663ec09)) +* **code-input:** auto-fill styles ([#24](https://github.com/core-ds/core-components/issues/24)) ([7e83e02](https://github.com/core-ds/core-components/commit/7e83e02b4aae0aeefe91a2526744ca10d7577290)) +* **confirmation:** fix countdown timer ([#23](https://github.com/core-ds/core-components/issues/23)) ([2752723](https://github.com/core-ds/core-components/commit/2752723bdbf71e42cfb1e8c6e9009c719663ec09)) # [26.6.0](https://github.com/core-ds/core-components/compare/v26.5.3...v26.6.0) (2022-05-04) + ### Bug Fixes -- **code-input:** auto-fill styles ([#24](https://github.com/core-ds/core-components/issues/24)) ([7e83e02](https://github.com/core-ds/core-components/commit/7e83e02b4aae0aeefe91a2526744ca10d7577290)) -- **confirmation:** fix countdown timer ([#23](https://github.com/core-ds/core-components/issues/23)) ([2752723](https://github.com/core-ds/core-components/commit/2752723bdbf71e42cfb1e8c6e9009c719663ec09)) +* **code-input:** auto-fill styles ([#24](https://github.com/core-ds/core-components/issues/24)) ([7e83e02](https://github.com/core-ds/core-components/commit/7e83e02b4aae0aeefe91a2526744ca10d7577290)) +* **confirmation:** fix countdown timer ([#23](https://github.com/core-ds/core-components/issues/23)) ([2752723](https://github.com/core-ds/core-components/commit/2752723bdbf71e42cfb1e8c6e9009c719663ec09)) + ### Features -- **button:** add overflow hidden and text overflow ellipsis for nowrap ([#17](https://github.com/core-ds/core-components/issues/17)) ([7d9669a](https://github.com/core-ds/core-components/commit/7d9669a56c6b134caae9a0317ffc2c0206928a27)) -- **toast:** break text in toast ([#25](https://github.com/core-ds/core-components/issues/25)) ([5356ce6](https://github.com/core-ds/core-components/commit/5356ce685e35b9414a465fb023382535f150abf5)) +* **button:** add overflow hidden and text overflow ellipsis for nowrap ([#17](https://github.com/core-ds/core-components/issues/17)) ([7d9669a](https://github.com/core-ds/core-components/commit/7d9669a56c6b134caae9a0317ffc2c0206928a27)) +* **toast:** break text in toast ([#25](https://github.com/core-ds/core-components/issues/25)) ([5356ce6](https://github.com/core-ds/core-components/commit/5356ce685e35b9414a465fb023382535f150abf5)) + ### Reverts -- Revert "исправление (управление формы): исправление высоты метки линии (#14)" (#16) ([a4b70d1](https://github.com/core-ds/core-components/commit/a4b70d1ca36294fbc114486d65eef9fdb0543ad8)), closes [#14](https://github.com/core-ds/core-components/issues/14) [#16](https://github.com/core-ds/core-components/issues/16) +* Revert "исправление (управление формы): исправление высоты метки линии (#14)" (#16) ([a4b70d1](https://github.com/core-ds/core-components/commit/a4b70d1ca36294fbc114486d65eef9fdb0543ad8)), closes [#14](https://github.com/core-ds/core-components/issues/14) [#16](https://github.com/core-ds/core-components/issues/16) # Changelog @@ -2028,22 +2047,25 @@ All notable changes to this project will be documented in this file. See [standa ### [26.5.3](https://github.com/core-ds/core-components/compare/v26.5.2...v26.5.3) (2022-04-26) + ### Bug Fixes -- default className bug ([#13](https://github.com/core-ds/core-components/issues/13)) ([32883b3](https://github.com/core-ds/core-components/commit/32883b3a54f04b558e97e285824c9701fc802f99)) -- `default` className bug ([624d4c8](https://github.com/core-ds/core-components/commit/624d4c835fd1b85833aff8e79e75afc41e25b536)) +* default className bug ([#13](https://github.com/core-ds/core-components/issues/13)) ([32883b3](https://github.com/core-ds/core-components/commit/32883b3a54f04b558e97e285824c9701fc802f99)) +* `default` className bug ([624d4c8](https://github.com/core-ds/core-components/commit/624d4c835fd1b85833aff8e79e75afc41e25b536)) ### [26.5.2](https://github.com/core-ds/core-components/compare/v26.5.0...v26.5.2) (2022-04-22) + ### Bug Fixes -- **attach:** невозможность загрузить файл с таким же именем после удаления ([#8](https://github.com/core-ds/core-components/issues/8)) ([f323c56](https://github.com/core-ds/core-components/commit/f323c56d0ffee36ab4b42d3c5ab06a0abc35e3be)) +* **attach:** невозможность загрузить файл с таким же именем после удаления ([#8](https://github.com/core-ds/core-components/issues/8)) ([f323c56](https://github.com/core-ds/core-components/commit/f323c56d0ffee36ab4b42d3c5ab06a0abc35e3be)) ## [26.5.1](https://github.com/core-ds/core-components/compare/v26.5.0...v26.5.1) (2022-04-22) + ### Bug Fixes -- **attach:** невозможность загрузить файл с таким же именем после удаления ([#8](https://github.com/core-ds/core-components/issues/8)) ([f323c56](https://github.com/core-ds/core-components/commit/f323c56d0ffee36ab4b42d3c5ab06a0abc35e3be)) +* **attach:** невозможность загрузить файл с таким же именем после удаления ([#8](https://github.com/core-ds/core-components/issues/8)) ([f323c56](https://github.com/core-ds/core-components/commit/f323c56d0ffee36ab4b42d3c5ab06a0abc35e3be)) # Changelog @@ -2051,1379 +2073,1418 @@ All notable changes to this project will be documented in this file. See [standa ## 26.5.0 (2022-04-21) + ### ⚠ BREAKING CHANGES -- **modal:** Большое обновление стилей и темизации +* **modal:** Большое обновление стилей и темизации -- fix(modal): remove unused align -- **bottom-sheet:** Большое обновление стилей, множество дополнительных настроек -- Большое обновление CalendarRange +* fix(modal): remove unused align +* **bottom-sheet:** Большое обновление стилей, множество дополнительных настроек +* Большое обновление CalendarRange -- feat(date-input): add some improvements +* feat(date-input): add some improvements -- feat(date-input): some updates +* feat(date-input): some updates -- feat(date-input): validation +* feat(date-input): validation -- feat(calendar): change period selection logic +* feat(calendar): change period selection logic -- fix(calendar): range styles +* fix(calendar): range styles -- fix(calendar): fix styles, add rangeComplete flag +* fix(calendar): fix styles, add rangeComplete flag -- refactor(calendar-range): temporary +* refactor(calendar-range): temporary -- fix(calendar-range): fix hook +* fix(calendar-range): fix hook -- fix(calendar-range): fix period +* fix(calendar-range): fix period -- fix(calendar-range): fix tests, fix max date +* fix(calendar-range): fix tests, fix max date -- fix: update exports +* fix: update exports -- feat(calendar): allow empty values for PeriodSlider, update today +* feat(calendar): allow empty values for PeriodSlider, update today -- fix(calendar-range): hide error icon +* fix(calendar-range): hide error icon -- chore(calendar-range): demo +* chore(calendar-range): demo -- feat(calendar): use IconButton +* feat(calendar): use IconButton -- feat(calendar-range): add onChange, update demo +* feat(calendar-range): add onChange, update demo -- fix(calendar-range): update width +* fix(calendar-range): update width -- test(calendar-range): update snapshot +* test(calendar-range): update snapshot -- fix: import date-fns separately +* fix: import date-fns separately -- fix(calendar-range): fix rest props +* fix(calendar-range): fix rest props Co-authored-by: dmitrsavk +* **confirmation:** Удалена пропса code -- **confirmation:** Удалена пропса code - -- feat(code-input): ref updates +* feat(code-input): ref updates -- feat(confirmation): updates, fix tests +* feat(confirmation): updates, fix tests -- feat(confirmation): initial +* feat(confirmation): initial -- feat(confirmation): updates +* feat(confirmation): updates -- feat(confirmation): update tests +* feat(confirmation): update tests -- feat(confirmation): updates +* feat(confirmation): updates -- feat(confirmation): dont reset code, if error +* feat(confirmation): dont reset code, if error -- test(confirmation): update snapshot -- **confirmation:** Удалена пропса code +* test(confirmation): update snapshot +* **confirmation:** Удалена пропса code -- Добавьте новый домен в список разрешенных 'img-src': `'self' {ваш-ресурс}.co data: 'self'` +* Добавьте новый домен в список разрешенных 'img-src': `'self' your-domain.co data: 'self'` This reverts commit 953fbcfec46a40089a5cfde670597315269b05f5. +* **button:** Кнопка размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо + заменить размер на xxs. Можно воспользоваться codemod. -- **button:** Кнопка размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо - заменить размер на xxs. Можно воспользоваться codemod. - -- feat(codemod): add button xs to xxs transformer +* feat(codemod): add button xs to xxs transformer -- feat(tag): добавлен тэг размера 40px, изменены отступы +* feat(tag): добавлен тэг размера 40px, изменены отступы Добавлен тэг размером 40px, изменены отступы. Тем, кто использовал размер xs, надо заменить размер на xxs. - -- **button:** Тэг размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо +* **button:** Тэг размера xs теперь имеет размер 40px. Тем, кто использовал размер xs, надо заменить размер на xxs. Можно воспользоваться codemod. -- test: update screenshots +* test: update screenshots -- test: update screenshots +* test: update screenshots -- feat(button): linter fix +* feat(button): linter fix -- feat(button): fix min-width +* feat(button): fix min-width -- feat(tag): remove vertical paddings +* feat(tag): remove vertical paddings -- feat(tag): remove vertical paddings +* feat(tag): remove vertical paddings -- feat(button): updates -- **select:** удалена переменная --select-arrow-background -- **calendar-input:** удалена переменная --calendar-input-calendar-icon -- remove dark-theme-injector. remove vars duplications -- buttonRetryText renamed to buttonReturnText +* feat(button): updates +* **select:** удалена переменная --select-arrow-background +* **calendar-input:** удалена переменная --calendar-input-calendar-icon +* remove dark-theme-injector. remove vars duplications +* buttonRetryText renamed to buttonReturnText -- inline-block changes to block +* inline-block changes to block -- chore(release): 18.0.0 [skip ci] +* chore(release): 18.0.0 [skip ci] # [18.0.0](https://github.com/alfa-laboratory/core-components/compare/v17.6.0...v18.0.0) (2021-06-28) ### Bug Fixes +* **skeleton:** inline-block changes to block +* **confirmation:** buttonRetryText renamed to buttonReturnText -- **skeleton:** inline-block changes to block -- **confirmation:** buttonRetryText renamed to buttonReturnText - -- **button:** remove inverted themes -- **stack:** remove z-index, add stack component +* **button:** remove inverted themes +* **stack:** remove z-index, add stack component -- feat(modal): remove z-index, add stack component +* feat(modal): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(notification-manager): remove z-index, add stack component +* feat(notification-manager): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(notification): remove z-index, add stack component +* feat(notification): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(popover): remove z-index, add stack component +* feat(popover): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(select): remove z-index, add stack component +* feat(select): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(toast): remove z-index, add stack component +* feat(toast): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component - -- feat(tooltip): remove z-index, add stack component +* feat(tooltip): remove z-index, add stack component remove z-index, add stack component +* **stack:** remove z-index, add stack component -- **stack:** remove z-index, add stack component +* feat(stack): fix comment -- feat(stack): fix comment - -- Revert "feat(modal): remove z-index, add stack component" +* Revert "feat(modal): remove z-index, add stack component" This reverts commit fcae901c6ec58311701cd491296a7b04016a9a65. -- feat(base-modal): remove z-index, add stack component +* feat(base-modal): remove z-index, add stack component remove z-index, add stack component - -- **stack:** remove z-index, add stack component - -- test(file-upload-item): update snapshot -- **mq:** mobile-s теперь 360 -- **tooltip:** add wrapper around children component - -- feat(tooltip): add target className prop - -- feat(tooltip): fix passed classNames -- **phone-input:** size L changed to size XL -- **amount-input:** size L changed to size XL -- **pure-input:** size L changed to size XL -- **input-autocomplete:** size L changed to size XL -- **intl-phone-input:** size L changed to size XL -- **input:** size L changed to size XL -- **tag:** size L changed to size XL -- **select-with-tags:** size L changed to size XL -- **tabs:** size L changed to size XL -- **form-control:** size L changed to size XL -- **textarea:** size L changed to size XL -- **select:** size L changed to size XL -- **slider-input:** size L changed to size XL -- **button:** size L changed to size XL -- **confirmation:** Add phone formatting into component. Phone prop doesn't have to be formatted. -- **popover:** Change html structure of popover component. -- --notification-desktop-width var removed -- **badge:** new icon view without fixed size -- **popover:** fix popover transition, change Transition to CSSTransition -- может затронуть кастомную стилизацию контролов -- remove packages/vars/src/breakpoints.css -- **core-components-confirmation:** separate error and error text - -- feat(core-components-confirmation): fix margins -- **core-components-form-control:** Компонент Input теперь зависим от FormField. Большая часть стилей перенесена в +* **stack:** remove z-index, add stack component + +* test(file-upload-item): update snapshot +* **mq:** mobile-s теперь 360 +* **tooltip:** add wrapper around children component + +* feat(tooltip): add target className prop + +* feat(tooltip): fix passed classNames +* **phone-input:** size L changed to size XL +* **amount-input:** size L changed to size XL +* **pure-input:** size L changed to size XL +* **input-autocomplete:** size L changed to size XL +* **intl-phone-input:** size L changed to size XL +* **input:** size L changed to size XL +* **tag:** size L changed to size XL +* **select-with-tags:** size L changed to size XL +* **tabs:** size L changed to size XL +* **form-control:** size L changed to size XL +* **textarea:** size L changed to size XL +* **select:** size L changed to size XL +* **slider-input:** size L changed to size XL +* **button:** size L changed to size XL +* **confirmation:** Add phone formatting into component. Phone prop doesn't have to be formatted. +* **popover:** Change html structure of popover component. +* --notification-desktop-width var removed +* **badge:** new icon view without fixed size +* **popover:** fix popover transition, change Transition to CSSTransition +* может затронуть кастомную стилизацию контролов +* remove packages/vars/src/breakpoints.css +* **core-components-confirmation:** separate error and error text + +* feat(core-components-confirmation): fix margins +* **core-components-form-control:** Компонент Input теперь зависим от FormField. Большая часть стилей перенесена в FormField -- refactor(core-components-form-control): rename component - -- refactor(core-components-form-control): component improvements - -### Features - -- change repository name ([85dc9c5](https://github.com/core-ds/core-components/commit/85dc9c59ad778afeb1cf9716c2e6adea69641d57)) -- update all screenshots ([8b09f60](https://github.com/core-ds/core-components/commit/8b09f608203b0561652cab030ddc8471b8c952d7)) -- **amount:** add rightAddons, add showPlus, make currency optional ([#955](https://github.com/core-ds/core-components/issues/955)) ([ac35b9a](https://github.com/core-ds/core-components/commit/ac35b9aaf842d88fd28caeb4f888cdf74facf644)) -- **badge:** add screenshots ([4b5d31c](https://github.com/core-ds/core-components/commit/4b5d31c8113c1da084ea0f15976edfea517f6db6)) -- **base-modal:** add component ref for base modal ([#1008](https://github.com/core-ds/core-components/issues/1008)) ([fb13dbd](https://github.com/core-ds/core-components/commit/fb13dbdf6352b10b80a74fa87edfcb1f54b76d5a)) -- **base-modal:** extract modal store to global ([#943](https://github.com/core-ds/core-components/issues/943)) ([9587f17](https://github.com/core-ds/core-components/commit/9587f1773bb690ac6696077509d4a519aa109198)) -- **bottom-sheet:** update-bottom-sheet ([#1025](https://github.com/core-ds/core-components/issues/1025)) ([26fa9aa](https://github.com/core-ds/core-components/commit/26fa9aab68bebf0f7093a38bc0f18a9b596ccf37)), closes [#1032](https://github.com/core-ds/core-components/issues/1032) -- **button:** добавлена кнопка размера 40px, изменены скругления ([#886](https://github.com/core-ds/core-components/issues/886)) ([88e657a](https://github.com/core-ds/core-components/commit/88e657a9f0f68b8b58f6e9437053954ee984f83c)), closes [#890](https://github.com/core-ds/core-components/issues/890) -- **calendar:** add intranet theme ([#1026](https://github.com/core-ds/core-components/issues/1026)) ([292b76c](https://github.com/core-ds/core-components/commit/292b76c100bb12ebb1011d2a9981ba2b2899dd7a)) -- **calendar:** design & logic updates ([#991](https://github.com/core-ds/core-components/issues/991)) ([358142c](https://github.com/core-ds/core-components/commit/358142c6d259e1463954139cc648787cdf461f76)), closes [#993](https://github.com/core-ds/core-components/issues/993) [#990](https://github.com/core-ds/core-components/issues/990) -- **calendar:** split header to header & period-slider ([#939](https://github.com/core-ds/core-components/issues/939)) ([107cee0](https://github.com/core-ds/core-components/commit/107cee0f2b5d609a02b61023b324dcc8c98c5220)) -- **calendar:** мобильные стили ([#867](https://github.com/core-ds/core-components/issues/867)) ([febf545](https://github.com/core-ds/core-components/commit/febf54551f8179a1ba03fe65ed47aa3b20b01472)) -- **calendar:** показываем будущий год ([#900](https://github.com/core-ds/core-components/issues/900)) ([3cd3c63](https://github.com/core-ds/core-components/commit/3cd3c63e5ff88066599d0944a2d3183e63150664)) -- **calendar-input:** add popover z-index ([#924](https://github.com/core-ds/core-components/issues/924)) ([378286d](https://github.com/core-ds/core-components/commit/378286d746ca33aeb755617270f66310712d1c61)) -- **chart:** added border radius to bar charts ([cfd0ad2](https://github.com/core-ds/core-components/commit/cfd0ad2c23a2b80de0bc5dfae7b65a14263e37e9)) -- **checkbox:** состояние ошибки ([#909](https://github.com/core-ds/core-components/issues/909)) ([f81d7d8](https://github.com/core-ds/core-components/commit/f81d7d8ecade7418a2015d57f5cf3a9f31779174)) -- **checkbox-group:** add click theme ([967d585](https://github.com/core-ds/core-components/commit/967d58538c5537fc2b3ac583fb742ebaef86109e)) -- **circular-progress-bar:** new size S ([d34db5c](https://github.com/core-ds/core-components/commit/d34db5cca682bc63f948a0dad322604c8044a6b8)) -- **circular-progress-bar:** ReactNode as title or subtitle ([#1023](https://github.com/core-ds/core-components/issues/1023)) ([7ae6df9](https://github.com/core-ds/core-components/commit/7ae6df9d2e4253f9a94532d155e81032cd96c810)) -- **code-input:** add component ([#932](https://github.com/core-ds/core-components/issues/932)) ([dc40cb5](https://github.com/core-ds/core-components/commit/dc40cb5b28322b4a2dc5735b354a7d45cf34adb9)) -- **collapse:** reset height to auto ([#822](https://github.com/core-ds/core-components/issues/822)) ([f533e3b](https://github.com/core-ds/core-components/commit/f533e3ba1eab5f41539c39ca3b97f698e90ca687)) -- **confirmation:** compact code-input if slotsCount > 6 ([99be0e1](https://github.com/core-ds/core-components/commit/99be0e1744d9782824756c8992fd4b986a589dd7)) -- **confirmation:** большое обновление компонента ([#958](https://github.com/core-ds/core-components/issues/958)) ([3e61e7e](https://github.com/core-ds/core-components/commit/3e61e7e6529662d8fb96acb2898a29fd9c1917ab)) -- **confirmation:** компактный code-input когда символов > 6 ([633d1ff](https://github.com/core-ds/core-components/commit/633d1ffd66c7c9d949c3996f6d4d739a4fcb6b21)) -- **custom-button:** add custom-button component ([983bcd7](https://github.com/core-ds/core-components/commit/983bcd7119c6f674ed15ed5bfe069349449f84c8)) -- **date-input:** add some improvements ([#971](https://github.com/core-ds/core-components/issues/971)) ([47756ca](https://github.com/core-ds/core-components/commit/47756ca1d4eea89f78ed7234e95c02e51dd72e49)) -- **docs:** change readme ([6b11f40](https://github.com/core-ds/core-components/commit/6b11f40fde62d202a500e0bfca4a42b95497d041)) -- **file-upload-item:** обновлен внешний вид ([#902](https://github.com/core-ds/core-components/issues/902)) ([d0f7d1e](https://github.com/core-ds/core-components/commit/d0f7d1ebdf302711a01549e86d0d8a5129b66d82)) -- **filter-tag:** new component ([#1035](https://github.com/core-ds/core-components/issues/1035)) ([f97e9c5](https://github.com/core-ds/core-components/commit/f97e9c59062e56f3bafa855450a33b5f67497143)) -- **hatching-progress-bar:** add component ([#1012](https://github.com/core-ds/core-components/issues/1012)) ([a25a579](https://github.com/core-ds/core-components/commit/a25a5793df91c9e9cf213c7d1215c771c1851141)) -- **icon-view:** add draft component ([f0ab46f](https://github.com/core-ds/core-components/commit/f0ab46fc5241c3856962f19315213c3e45b6c05b)) -- **icon-view:** add tests, some refactoring ([4fee755](https://github.com/core-ds/core-components/commit/4fee755b826024a02f2dab9e9573088284185380)) -- **icon-view:** refactoring ([2579bb0](https://github.com/core-ds/core-components/commit/2579bb016cfdeef0ff0e177f231a1d1a4715b0af)) -- **icon-view:** updates ([7b17f5f](https://github.com/core-ds/core-components/commit/7b17f5ffca39243a13d57fdbd0da31041dc0ea98)) -- **list:** added list & typography presets ([#1047](https://github.com/core-ds/core-components/issues/1047)) ([67b6a77](https://github.com/core-ds/core-components/commit/67b6a77d1327b090b010eb061f83a2e6a0cb67b9)) -- **modal:** update styles ([#1024](https://github.com/core-ds/core-components/issues/1024)) ([fdf2cdc](https://github.com/core-ds/core-components/commit/fdf2cdca9f785b27cd5d3998245a34d42e1240d1)) -- **picker-button:** gap между picker-button и popover в 8px ([#935](https://github.com/core-ds/core-components/issues/935)) ([9b3aa2b](https://github.com/core-ds/core-components/commit/9b3aa2b70b534d8e571baa62b973e1f67667ac43)) -- **select:** add select mobile ([#1016](https://github.com/core-ds/core-components/issues/1016)) ([b3cfb0d](https://github.com/core-ds/core-components/commit/b3cfb0d0e9496ba2e4260e962eaf3f9cf85635c6)) -- add extra classes for radio and checkbox components ([#1039](https://github.com/core-ds/core-components/issues/1039)) ([c3ed089](https://github.com/core-ds/core-components/commit/c3ed089360b25d0f7712f2e7608c5a23f11a95df)) -- add extra content class name prop for radio and checkbox components ([#1048](https://github.com/core-ds/core-components/issues/1048)) ([3c076b9](https://github.com/core-ds/core-components/commit/3c076b939a64dff8f9c66bd65f474ccea76c8cad)) -- **modal:** mobile header ([#1018](https://github.com/core-ds/core-components/issues/1018)) ([54b879f](https://github.com/core-ds/core-components/commit/54b879f500d1124a6956d3d5a57349c856a09904)) -- **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e)) -- **picker-button:** add conditional righAddons prop for custom icon ([#975](https://github.com/core-ds/core-components/issues/975)) ([d2544b7](https://github.com/core-ds/core-components/commit/d2544b74e56deda9cae735e5b3ca6a2d97aef94d)) -- **picker-button:** added new view and updated dropdown options ([#1013](https://github.com/core-ds/core-components/issues/1013)) ([050fb3e](https://github.com/core-ds/core-components/commit/050fb3eb6fd6dde057bbfcad5dd807d354125b63)) -- **popover:** add availableHieght prop, update related snapshots ([43b4ebd](https://github.com/core-ds/core-components/commit/43b4ebd6ba092f22d0dfc845f3f0113b390317dc)), closes [#758](https://github.com/core-ds/core-components/issues/758) -- **progress-bar:** add size prop, additional views, new bg color ([#996](https://github.com/core-ds/core-components/issues/996)) ([63702f7](https://github.com/core-ds/core-components/commit/63702f7d9637e1fe3da502d7c91c4284453b3b48)) -- **select:** add OptionsListWithApply ([#948](https://github.com/core-ds/core-components/issues/948)) ([d8ef8dd](https://github.com/core-ds/core-components/commit/d8ef8dd257dfc100095c923c4f3e317787ed1877)) -- **select:** добавлено свойство z-index для поповера ([#871](https://github.com/core-ds/core-components/issues/871)) ([4a53483](https://github.com/core-ds/core-components/commit/4a534835a9e6c9ec7793733467194536cfd96a91)) -- **select:** чекбоксы в выпадашке множественного выбора [#903](https://github.com/core-ds/core-components/issues/903)) ([f5638ef](https://github.com/core-ds/core-components/commit/f5638ef589468de0dc0473d30871035d8c4efab5)) -- **table:** компоненты для построения таблиц ([#911](https://github.com/core-ds/core-components/issues/911)) ([4ac648a](https://github.com/core-ds/core-components/commit/4ac648abd4de08bf68babc2f122f432d5b14080e)) -- **themes:** introducing intranet theme ([#983](https://github.com/core-ds/core-components/issues/983)) ([85eb9cf](https://github.com/core-ds/core-components/commit/85eb9cfffeef31b886c5123d6333e177c261ac62)) -- **tooltip:** added anchor props ([#1034](https://github.com/core-ds/core-components/issues/1034)) ([822031b](https://github.com/core-ds/core-components/commit/822031b3941184689a2a7ed9938c4ec44debc444)) -- **typography:** новый компонент Typography.TitleMobile ([#1003](https://github.com/core-ds/core-components/issues/1003)) ([9b03cf9](https://github.com/core-ds/core-components/commit/9b03cf90422b05cc927ed98959708430812d1a50)) -- Исправить импорты в сторях. ([#1009](https://github.com/core-ds/core-components/issues/1009)) ([6f7e393](https://github.com/core-ds/core-components/commit/6f7e39350fd572dd3e74c4819829f85c4066b170)) -- Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7)) -- **status:** добавлено 10% прозрачности в цвет фона ([#896](https://github.com/core-ds/core-components/issues/896)) ([b55c62b](https://github.com/core-ds/core-components/commit/b55c62b49cc52a15ff7497b9ad329773fba15959)) -- **stepped-progress-bar:** add view prop, change bg color ([#1000](https://github.com/core-ds/core-components/issues/1000)) ([3e16926](https://github.com/core-ds/core-components/commit/3e1692673e694e3fef2913201e18e8a2e21fc980)) -- **tabs:** add xxs xs sizes to secondary view and fix heights ([#985](https://github.com/core-ds/core-components/issues/985)) ([dd20933](https://github.com/core-ds/core-components/commit/dd20933f7c9a8f08920f7ad21bacb25983d3e93e)) -- **tooltip:** add availableHeight and preventOverflow props ([b401524](https://github.com/core-ds/core-components/commit/b401524b0eb0b9e06593883a889b99198982c718)), closes [#758](https://github.com/core-ds/core-components/issues/758) -- **typography:** export types ([#940](https://github.com/core-ds/core-components/issues/940)) ([498227c](https://github.com/core-ds/core-components/commit/498227c272659a1ebf890eee61c6fecdd110faee)) -- **vars:** build color-mod ([#953](https://github.com/core-ds/core-components/issues/953)) ([aa64366](https://github.com/core-ds/core-components/commit/aa64366d970be46776d23c9d13ebec413b2ac4d9)) -- **vars:** updated typography ([#981](https://github.com/core-ds/core-components/issues/981)) ([95bcce8](https://github.com/core-ds/core-components/commit/95bcce8e07467c635e2a93c55edfb3550a533ba4)) -- обновлённая темизация иконок в инпутах ([ab90d60](https://github.com/core-ds/core-components/commit/ab90d602f239176d0771db38f9cc29dc02a35566)) -- **file-upload-item:** добавлен пропс download ([#844](https://github.com/core-ds/core-components/issues/844)) ([db2a4ca](https://github.com/core-ds/core-components/commit/db2a4ca27ee7a64721138c7c2e918b4657c75489)) -- проставлен role=alert для ошибок ([#850](https://github.com/core-ds/core-components/issues/850)) ([dc634a3](https://github.com/core-ds/core-components/commit/dc634a3d008accfab10192ce234c12ef0ecc7fa9)) -- **amount-input:** add integers only mode ([#766](https://github.com/core-ds/core-components/issues/766)) ([27a2535](https://github.com/core-ds/core-components/commit/27a2535f2de8d787e666c08a8fbfeb67d762f9a1)) -- **amount-input:** allow to use custom suffix ([#767](https://github.com/core-ds/core-components/issues/767)) ([27d9d02](https://github.com/core-ds/core-components/commit/27d9d02fb619fa5946fb3cb678d9b742d74a745b)) -- **attach:** add additional classNames props ([#783](https://github.com/core-ds/core-components/issues/783)) ([bc8e865](https://github.com/core-ds/core-components/commit/bc8e86512a95b8690d2115a71a299c19195fa58d)) -- **attach:** simulate controlled state ([#760](https://github.com/core-ds/core-components/issues/760)) ([5d312bf](https://github.com/core-ds/core-components/commit/5d312bf632cc716bfc7ecb7b487c4af812838aa9)), closes [#743](https://github.com/core-ds/core-components/issues/743) -- **calendar-input:** uses date-input ([#752](https://github.com/core-ds/core-components/issues/752)) ([509dba2](https://github.com/core-ds/core-components/commit/509dba26913ccf6df859a200aa476eeef1df2ddc)) -- **calendar-input:** переход к темизации цвета иконки ([adf1dfd](https://github.com/core-ds/core-components/commit/adf1dfd080c1986976a57fee448183e762892eb0)) -- **chart:** add component ([#835](https://github.com/core-ds/core-components/issues/835)) ([17d840b](https://github.com/core-ds/core-components/commit/17d840b9f9f64474491d3ec58d3cda53ad07f0ca)) -- **chart:** added chart component ([1119943](https://github.com/core-ds/core-components/commit/11199435e9ab53ae159707e94714a34952ad56c1)) -- **chart:** added description ([8275346](https://github.com/core-ds/core-components/commit/827534640af0c0b06c1105755e9435d43cae8acd)) -- **chart:** added props for legend icons height ([5c9b321](https://github.com/core-ds/core-components/commit/5c9b32154e6f39cddd3ac9668830959adba64648)) -- **chart:** bar radius ([e39251a](https://github.com/core-ds/core-components/commit/e39251a37a52b6f434932439da0b86a03a26d901)) -- **chart:** beautifyed ([67cc96e](https://github.com/core-ds/core-components/commit/67cc96e6afc020c3af5491d3d7ba0b89f50dbaf3)) -- **chart:** edited doc ([8728271](https://github.com/core-ds/core-components/commit/8728271dc7f733c9b14a27c83a7136c22ef39ed6)) -- **chart:** fix doc ([9d1e888](https://github.com/core-ds/core-components/commit/9d1e8889615f0701a43a9fbceca867557002ef31)) -- **chart:** fixed after pull master ) ([4c7d241](https://github.com/core-ds/core-components/commit/4c7d241da264cde81e50573f96a2f035c31306e1)) -- **chart:** fixed build error ([2efdd22](https://github.com/core-ds/core-components/commit/2efdd22f27e8229b2ad4cb7d355f61b218ea1bc1)) -- **chart:** fixed comments ([a611b9c](https://github.com/core-ds/core-components/commit/a611b9c1c9bab1d5a15c2021bff270e9bbf5a934)) -- **chart:** fixed comments ([7ad1caf](https://github.com/core-ds/core-components/commit/7ad1caf5be9f2da6a218b2c97cc7d96efb4d286d)) -- **chart:** fixed comments ([555acb6](https://github.com/core-ds/core-components/commit/555acb699549c52f85d0dd58009ab1692344eb44)) -- **chart:** fixed comments ([379e53d](https://github.com/core-ds/core-components/commit/379e53ddf8c857424600d5fc49b41c03f5ac11ea)) -- **chart:** fixed global styles css ([2f8f139](https://github.com/core-ds/core-components/commit/2f8f139137090f185b1c3c2333fe7ceee7a1fff8)) -- **chart:** more description ([9a4c076](https://github.com/core-ds/core-components/commit/9a4c0762782c2f8ccee0e0c7c660514a10119960)) -- **chart:** pulled master ([176f7ae](https://github.com/core-ds/core-components/commit/176f7ae6e7cdb2a3e18d2136523e5be6ecdbde3e)) -- **chart:** resolved conflicts ([7f734ba](https://github.com/core-ds/core-components/commit/7f734bab0347af6e5d56d717d8b5cc0cf192f9f3)) -- **chart:** добавлена возможность скруглять углы и возможность отображать подписи значений для графиков типа bar ([4d81ab5](https://github.com/core-ds/core-components/commit/4d81ab5601b2ed38bc6f0f1187cf7c80c79fe50a)) -- **confirmation:** add custom countdown content, change time format ([#804](https://github.com/core-ds/core-components/issues/804)) ([b87ace1](https://github.com/core-ds/core-components/commit/b87ace190013cc873133bd1fff23cb6ae0ae3800)) -- **confirmation:** design update, new type of error "overlimit" and blocking input ([#841](https://github.com/core-ds/core-components/issues/841)) ([1ea5d31](https://github.com/core-ds/core-components/commit/1ea5d3117552f7cc9fcd78092edf634d9020b693)) -- **date-input:** add component ([#751](https://github.com/core-ds/core-components/issues/751)) ([4b94bee](https://github.com/core-ds/core-components/commit/4b94beec36acc73ac6c62cf37f87061c0ada4b35)) -- **dropzone:** add block prop ([#813](https://github.com/core-ds/core-components/issues/813)) ([39bf4c3](https://github.com/core-ds/core-components/commit/39bf4c3158525d419c75aedec8be81e4a4bb90da)) -- **dropzone:** design improvements (PDS-282) ([#829](https://github.com/core-ds/core-components/issues/829)) ([437ec3c](https://github.com/core-ds/core-components/commit/437ec3c80c507a37c8a24106a6ee6514abd68d04)) -- **file-upload-item:** custom icon ([#849](https://github.com/core-ds/core-components/issues/849)) ([59b8925](https://github.com/core-ds/core-components/commit/59b8925fbb9c631534c49c8dbb68cf493678e9e5)) -- **gallery:** add `canDownload` image prop, some refactoring ([#837](https://github.com/core-ds/core-components/issues/837)) ([b0c6665](https://github.com/core-ds/core-components/commit/b0c6665bb6a3d4b1e9d5bc176149f63ca2bd8542)) -- **gallery:** add component ([#815](https://github.com/core-ds/core-components/issues/815)) ([7ffd20e](https://github.com/core-ds/core-components/commit/7ffd20e2d007f658223d29aa943639c13ad51342)), closes [#774](https://github.com/core-ds/core-components/issues/774) [#795](https://github.com/core-ds/core-components/issues/795) -- **icon-button:** added 'target' attribute, when IconButton is link ([#823](https://github.com/core-ds/core-components/issues/823)) ([b2aab6b](https://github.com/core-ds/core-components/commit/b2aab6be98e01d0e99863f016e08bde384a4ff3c)) -- **icon-button:** Rest props for IconButton from Button ([#805](https://github.com/core-ds/core-components/issues/805)) ([ee4e170](https://github.com/core-ds/core-components/commit/ee4e170b6b59800e283080d36bddfdcfe4b57561)) -- **intl-phone-input:** hide select for countries when one country ([#809](https://github.com/core-ds/core-components/issues/809)) ([bad50af](https://github.com/core-ds/core-components/commit/bad50aff46ab4af5416510944802451873cd08bc)) -- **password-input:** show right addons (PDS-283) ([#828](https://github.com/core-ds/core-components/issues/828)) ([b255acd](https://github.com/core-ds/core-components/commit/b255acdcdbe37b546c6c9100a1645609439af430)) -- **popover:** add useAnchorWidth prop ([#826](https://github.com/core-ds/core-components/issues/826)) ([8df55c4](https://github.com/core-ds/core-components/commit/8df55c4c496467c363c5c09c14d1bd08a9709ebf)), closes [#787](https://github.com/core-ds/core-components/issues/787) -- **select:** controlled open ([#839](https://github.com/core-ds/core-components/issues/839)) ([95d0470](https://github.com/core-ds/core-components/commit/95d0470a86e1a54f4cb4b789bb7e3281a1f0a401)) -- **select:** переход к темизации цвета иконки ([112cd95](https://github.com/core-ds/core-components/commit/112cd95242e27f5065eb2a8349d3afbddfdee638)) -- **themes:** обновлённые темы для calendar-input и select ([5ae76c3](https://github.com/core-ds/core-components/commit/5ae76c314bf33236767056b77969ca7003057532)) -- change error type to ReactNode ([#825](https://github.com/core-ds/core-components/issues/825)) ([c6d95c1](https://github.com/core-ds/core-components/commit/c6d95c1c6239f2b2a3bf2c1639554d8500e794f3)) -- dark themes ([#778](https://github.com/core-ds/core-components/issues/778)) ([d848d16](https://github.com/core-ds/core-components/commit/d848d165b59182e6521d28efc2aadeecebc00d93)) -- **tag:** add inverted colors ([#784](https://github.com/core-ds/core-components/issues/784)) ([d3681ae](https://github.com/core-ds/core-components/commit/d3681aeefe02e5f481d066013911a1877a165bb2)) -- **tooltip:** add TooltipResponsive, add `fallbackPlacements` prop ([#780](https://github.com/core-ds/core-components/issues/780)) ([61d780c](https://github.com/core-ds/core-components/commit/61d780c750bd9c0331d275f1b12b0512bb3d2049)) -- **tooltip:** update shadow and arrow size/position ([2d40988](https://github.com/core-ds/core-components/commit/2d40988f3c376c51907aa8a4845ba25c7c43a2f4)) -- **typography:** add ref ([#834](https://github.com/core-ds/core-components/issues/834)) ([976b16d](https://github.com/core-ds/core-components/commit/976b16dd9ae68c31999bffb3506623db05033ad4)) -- **vars:** updated colors and typography from latest alfa-ui-primitives ([#803](https://github.com/core-ds/core-components/issues/803)) ([0d5b2a3](https://github.com/core-ds/core-components/commit/0d5b2a30a78e70392dd505790a92bc3bc83f9386)) -- add inactive controls (PDS-266) ([#765](https://github.com/core-ds/core-components/issues/765)) ([ec02c89](https://github.com/core-ds/core-components/commit/ec02c89ab6bf038c026ca0a72b3185525334840a)) -- add mods colors ([#770](https://github.com/core-ds/core-components/issues/770)) ([fe985f4](https://github.com/core-ds/core-components/commit/fe985f467b4d47a5152e168d2ab3846872d1a574)) -- custom components for button and link ([#814](https://github.com/core-ds/core-components/issues/814)) ([a623dd0](https://github.com/core-ds/core-components/commit/a623dd021ef611f9994a6587ba6a0d0ee9d8929c)) -- **bottom-sheet:** fix marker gap, fix animation duration ([#750](https://github.com/core-ds/core-components/issues/750)) ([cb04ed8](https://github.com/core-ds/core-components/commit/cb04ed8cc214fac9dba32a0ab39a4399743d5bfc)) -- **confirmation:** fix timer, some loader refactoring ([#754](https://github.com/core-ds/core-components/issues/754)) ([187bb0e](https://github.com/core-ds/core-components/commit/187bb0e72a75c62b117a49917976903257d90bb7)) -- **input:** input mobile theme (PDS-241) ([#737](https://github.com/core-ds/core-components/issues/737)) ([88f6f7c](https://github.com/core-ds/core-components/commit/88f6f7c58968b9564970eaa3d759aa2bc275ca7e)) -- **stepped-progress-bar:** add component ([#747](https://github.com/core-ds/core-components/issues/747)) ([f82e9af](https://github.com/core-ds/core-components/commit/f82e9af075e12e5a34751efc5c7f427283e75c1b)) -- add mobile theme for tag, radio, checkbox (PDS-244/247/248) ([#717](https://github.com/core-ds/core-components/issues/717)) ([36e2d99](https://github.com/core-ds/core-components/commit/36e2d99c716a03e7f319439df9ca47ec43ad4b71)) -- checkbox/radio/switch design updates (PDS-252) ([#735](https://github.com/core-ds/core-components/issues/735)) ([62f3c63](https://github.com/core-ds/core-components/commit/62f3c63279872a80ffb1c018b08addf897597b26)) -- slider input mobile theme (PDS-242) ([#738](https://github.com/core-ds/core-components/issues/738)) ([6e924aa](https://github.com/core-ds/core-components/commit/6e924aa90b63b914b6f5690766e41cddabe18e19)) -- **backdrop:** add component ([948a6c2](https://github.com/core-ds/core-components/commit/948a6c2fb5ec58edb2d087691ce4713d75da6e35)) -- **backdrop:** add component ([2b87958](https://github.com/core-ds/core-components/commit/2b87958e51449645c58bbd02552ce7a908c6bab8)) -- **badge:** add icon color ([d9e9065](https://github.com/core-ds/core-components/commit/d9e906596d157a5e3d7844bbecfb96f64d9f44e1)) -- **badge:** add screenshots ([3bbc8d0](https://github.com/core-ds/core-components/commit/3bbc8d032b0a267e9e6e949af5db6c955e25fb50)) -- **bottom-sheet:** new component (PDS-228) ([#645](https://github.com/core-ds/core-components/issues/645)) ([1f7391d](https://github.com/core-ds/core-components/commit/1f7391df16a270d8a3a28b8ebaf98d0ed0928bc8)), closes [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) -- **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657) -- **button:** add loader minimal display interval ([#634](https://github.com/core-ds/core-components/issues/634)) ([d2f7edc](https://github.com/core-ds/core-components/commit/d2f7edc52c3e43ce3f5db8250446227b869ab731)) -- **button:** experimental active transform (site theme) ([a741e4f](https://github.com/core-ds/core-components/commit/a741e4fb73716902e6a72957e672921c21e7696b)) -- **button:** fix version ([#648](https://github.com/core-ds/core-components/issues/648)) ([ec51599](https://github.com/core-ds/core-components/commit/ec5159910a7fdc103d4f4e8d3d4198db3ffbdcc8)) -- **calendar-input:** toggle calendar on enter ([#618](https://github.com/core-ds/core-components/issues/618)) ([110e836](https://github.com/core-ds/core-components/commit/110e8369dffa9576ec07a517076a11d6ba2e80fa)) -- **calendar-range:** pass props to render calendar in popper ([#702](https://github.com/core-ds/core-components/issues/702)) ([4369e46](https://github.com/core-ds/core-components/commit/4369e462116dc1d240f95f811be67639b10dedb6)) -- **calendar-with-skeleton:** add component ([e940c88](https://github.com/core-ds/core-components/commit/e940c88703a7434e0db4ce0efc27a234455b449c)) -- **collapse:** add ability to change state using prop expanded ([#659](https://github.com/core-ds/core-components/issues/659)) ([809c835](https://github.com/core-ds/core-components/commit/809c8356f6dec0eeb9167bca8483f36bf5845455)) -- **confirmation:** add property for change retry button text ([#720](https://github.com/core-ds/core-components/issues/720)) ([c0f7688](https://github.com/core-ds/core-components/commit/c0f76888cffff8ad4169769bc4615429663352a5)) -- **confirmation:** set up signTitle prop as slot ([#672](https://github.com/core-ds/core-components/issues/672)) ([85e4786](https://github.com/core-ds/core-components/commit/85e47862689f373fd1904495ae7b86d998ad7cec)) -- **confirmation:** styles updates ([#636](https://github.com/core-ds/core-components/issues/636)) ([da00fc5](https://github.com/core-ds/core-components/commit/da00fc5bf80251f5104452ba326711788c2f7240)), closes [#1](https://github.com/core-ds/core-components/issues/1) -- **dark-theme-styles-injector:** add prop for selector ([#709](https://github.com/core-ds/core-components/issues/709)) ([f74cdc7](https://github.com/core-ds/core-components/commit/f74cdc7b312321fcb111f1c64f21714ee403e513)) -- **drawer:** update animtaion ([#643](https://github.com/core-ds/core-components/issues/643)) ([3a3cfc5](https://github.com/core-ds/core-components/commit/3a3cfc5be89908df476f77a35bcf6b9460ecb92a)) -- **dropzone:** add component ([#566](https://github.com/core-ds/core-components/issues/566)) ([693a720](https://github.com/core-ds/core-components/commit/693a720202d78d47e39954edff7b72335904d714)) -- **file-upload-item:** add component ([#571](https://github.com/core-ds/core-components/issues/571)) ([e627350](https://github.com/core-ds/core-components/commit/e627350b3eabfb36aaa67c17411a9b98b551867d)) -- **form-control:** add hidden label instead min-width ([a40ffcf](https://github.com/core-ds/core-components/commit/a40ffcf149282c83a834587a9486bc09b2929f90)) -- **icon-button:** add negative view ([#635](https://github.com/core-ds/core-components/issues/635)) ([7006116](https://github.com/core-ds/core-components/commit/70061167d1e00a786e28c53ebb26e4e174d03311)) -- **input:** pretty webkit autofill ([#660](https://github.com/core-ds/core-components/issues/660)) ([d50e83e](https://github.com/core-ds/core-components/commit/d50e83e627e1641c3634ace505b9abe163ef6530)) -- **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b)) -- **modal:** add layout to footer ([#644](https://github.com/core-ds/core-components/issues/644)) ([eb5a66e](https://github.com/core-ds/core-components/commit/eb5a66ef928df663f4ad0fe048b5d3097b4f4b72)) -- **modal:** fixed position ([#617](https://github.com/core-ds/core-components/issues/617)) ([77db054](https://github.com/core-ds/core-components/commit/77db054b18c1dba6713d9a9d99c95a1ef5c98e8e)) -- **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5)) -- **password-input:** add password input (PDS-233) ([#691](https://github.com/core-ds/core-components/issues/691)) ([d872e4d](https://github.com/core-ds/core-components/commit/d872e4dd18fd5db472864fbc2676749b812da00f)) -- **phone-input:** add 'clearableCountyCode' prop ([#749](https://github.com/core-ds/core-components/issues/749)) ([d110ae7](https://github.com/core-ds/core-components/commit/d110ae76594ccbf7f6d8a5764d3c2a72b1ae9a26)) -- **plate:** update vars ([#668](https://github.com/core-ds/core-components/issues/668)) ([cbecef5](https://github.com/core-ds/core-components/commit/cbecef55e4cfc7231dcaa16b9220cc920547ff18)) -- **select:** add scroll handler ([#756](https://github.com/core-ds/core-components/issues/756)) ([b25351b](https://github.com/core-ds/core-components/commit/b25351b74913244fb131d4aa1bc09900be362258)) -- **select:** add useSelectWithLoading preset ([#693](https://github.com/core-ds/core-components/issues/693)) ([12d542f](https://github.com/core-ds/core-components/commit/12d542f11dddcd022c1ba895e4105115be0b98b2)) -- **select:** dont highlight first option on open ([015a084](https://github.com/core-ds/core-components/commit/015a084be6e5d837b6368afe6ca63a0a4c325435)) -- **select:** label + placeholder ([#535](https://github.com/core-ds/core-components/issues/535)) ([e821c41](https://github.com/core-ds/core-components/commit/e821c41e65d01ad517dab983685506614df0db89)) -- **skeleton:** add display var, change default to block ([#718](https://github.com/core-ds/core-components/issues/718)) ([27aaa60](https://github.com/core-ds/core-components/commit/27aaa605a958d932a52904556ac2fe1dd59356af)) -- **skeleton:** bg animation ([3dac97d](https://github.com/core-ds/core-components/commit/3dac97d18b9c7b2f63f55e2139a1adfb84710b88)) -- **skeleton:** bg animation ([37a52ad](https://github.com/core-ds/core-components/commit/37a52ad3e49f2873aaff86a768599d947a17c754)) -- **slider:** click theme ([15c308a](https://github.com/core-ds/core-components/commit/15c308a50e9fbcd8e40a8681f32aefea5b3d5cf9)) -- **slider-input:** design updates ([#673](https://github.com/core-ds/core-components/issues/673)) ([794e3cc](https://github.com/core-ds/core-components/commit/794e3cc99a3b61ec4faa630469dae7e49a56ee0a)) -- **space:** fix dataTestId ([#625](https://github.com/core-ds/core-components/issues/625)) ([a33ca6b](https://github.com/core-ds/core-components/commit/a33ca6ba791a43252b09c5a6d81dbd206aaec2d7)) -- **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6)) -- **tag:** adjusted colors ([#667](https://github.com/core-ds/core-components/issues/667)) ([ded4ac4](https://github.com/core-ds/core-components/commit/ded4ac4a4e02ee8ec4efdc6d990455caa3ab94bb)) -- **textarea:** add value counter ([#695](https://github.com/core-ds/core-components/issues/695)) ([cbc6bd3](https://github.com/core-ds/core-components/commit/cbc6bd3eaa48e3df2791d23e156c7c664d67ff49)) -- **themes:** confirmation mobile theme ([a85233c](https://github.com/core-ds/core-components/commit/a85233c1e859e933e1c51997678c8a8c6134e353)) -- **tooltip:** add hint view ([#688](https://github.com/core-ds/core-components/issues/688)) ([9f03cd5](https://github.com/core-ds/core-components/commit/9f03cd5956dd8b17025ee9947a10bc059a339846)) -- **tooltip:** add target ref property ([#755](https://github.com/core-ds/core-components/issues/755)) ([9aa962d](https://github.com/core-ds/core-components/commit/9aa962d8b280e8d6af8ac4324a78b4bdebbfc536)) -- **typography:** add rest props ([#682](https://github.com/core-ds/core-components/issues/682)) ([51e1cf8](https://github.com/core-ds/core-components/commit/51e1cf89028c788bfcdbc21ea16acbbe190b5db9)) -- **typography:** monospaceNumbers prop (PDS-255) ([#697](https://github.com/core-ds/core-components/issues/697)) ([42d16a6](https://github.com/core-ds/core-components/commit/42d16a62f6d0781eba44dc1e0b76b28cae37d89a)) -- **vars:** add border-radius-xs ([a4bd8ff](https://github.com/core-ds/core-components/commit/a4bd8ff44d9ed7cf68ca2b0994ab61a80ed358e2)) -- upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696)) ([bf8350e](https://github.com/core-ds/core-components/commit/bf8350ebfd238b6c63ac30545ac32ca933f498d6)), closes [#708](https://github.com/core-ds/core-components/issues/708) [#707](https://github.com/core-ds/core-components/issues/707) [#714](https://github.com/core-ds/core-components/issues/714) [#716](https://github.com/core-ds/core-components/issues/716) [#690](https://github.com/core-ds/core-components/issues/690) [#701](https://github.com/core-ds/core-components/issues/701) [#699](https://github.com/core-ds/core-components/issues/699) [#698](https://github.com/core-ds/core-components/issues/698) [#693](https://github.com/core-ds/core-components/issues/693) [#699](https://github.com/core-ds/core-components/issues/699) [#698](https://github.com/core-ds/core-components/issues/698) [#693](https://github.com/core-ds/core-components/issues/693) [#705](https://github.com/core-ds/core-components/issues/705) [#705](https://github.com/core-ds/core-components/issues/705) [#709](https://github.com/core-ds/core-components/issues/709) [#703](https://github.com/core-ds/core-components/issues/703) [#695](https://github.com/core-ds/core-components/issues/695) [#673](https://github.com/core-ds/core-components/issues/673) [#703](https://github.com/core-ds/core-components/issues/703) [#709](https://github.com/core-ds/core-components/issues/709) [#673](https://github.com/core-ds/core-components/issues/673) [#695](https://github.com/core-ds/core-components/issues/695) [#645](https://github.com/core-ds/core-components/issues/645) [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) [#712](https://github.com/core-ds/core-components/issues/712) [#713](https://github.com/core-ds/core-components/issues/713) [#719](https://github.com/core-ds/core-components/issues/719) [#720](https://github.com/core-ds/core-components/issues/720) [#718](https://github.com/core-ds/core-components/issues/718) [#712](https://github.com/core-ds/core-components/issues/712) [#713](https://github.com/core-ds/core-components/issues/713) [#719](https://github.com/core-ds/core-components/issues/719) [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) [#720](https://github.com/core-ds/core-components/issues/720) [#718](https://github.com/core-ds/core-components/issues/718) [#691](https://github.com/core-ds/core-components/issues/691) [#691](https://github.com/core-ds/core-components/issues/691) [#723](https://github.com/core-ds/core-components/issues/723) [#702](https://github.com/core-ds/core-components/issues/702) [#723](https://github.com/core-ds/core-components/issues/723) [#702](https://github.com/core-ds/core-components/issues/702) [#708](https://github.com/core-ds/core-components/issues/708) [#707](https://github.com/core-ds/core-components/issues/707) [#714](https://github.com/core-ds/core-components/issues/714) [#722](https://github.com/core-ds/core-components/issues/722) -- **alert:** add component ([#548](https://github.com/core-ds/core-components/issues/548)) ([264cbf8](https://github.com/core-ds/core-components/commit/264cbf8f7465d2ecaf043bf0f67530e040fc83f6)) -- **amount-input:** changed size L (72 → 64), added size XL (72) ([a2c0b7c](https://github.com/core-ds/core-components/commit/a2c0b7ce6c208183897064cd6235d69445e3afe5)) -- **badge:** reinvented icon view, visibleIconOutline prop ([#499](https://github.com/core-ds/core-components/issues/499)) ([bad9140](https://github.com/core-ds/core-components/commit/bad91400cb72edcd0878f7a07188e928d4bf3281)) -- **button:** add rel='noopener noreferrer' if target='blank' ([#522](https://github.com/core-ds/core-components/issues/522)) ([a1da871](https://github.com/core-ds/core-components/commit/a1da87118a32195ba844c239f5a0f73e164faa6f)) -- **button:** changed size L (72 → 64), added size XL (72) ([051d964](https://github.com/core-ds/core-components/commit/051d964e83fd7af3703c82facf75345eca66915b)) -- **button:** updated button colors and themes ([#500](https://github.com/core-ds/core-components/issues/500)) ([b34f12d](https://github.com/core-ds/core-components/commit/b34f12db8cebc53641a642de9164075d0ed2dacf)) -- **button:** updated xs button font-weight ([#599](https://github.com/core-ds/core-components/issues/599)) ([b05a554](https://github.com/core-ds/core-components/commit/b05a5547c97afba0d66489eca83a7a04d6c24283)) -- **calendar-input:** remove input width ([#576](https://github.com/core-ds/core-components/issues/576)) ([f0954b0](https://github.com/core-ds/core-components/commit/f0954b0724ead52ea0a60ab8baebd5dfa3638a01)) -- **calendar-range:** allow to select one-day range ([#491](https://github.com/core-ds/core-components/issues/491)) ([7fe56eb](https://github.com/core-ds/core-components/commit/7fe56eb7128146127b9b0732a945f11ee08980f3)) -- **cdn-icon:** add component ([#494](https://github.com/core-ds/core-components/issues/494)) ([a6df885](https://github.com/core-ds/core-components/commit/a6df885077c1c4a5ae76d110f6f5f6e369236182)) -- **confirmation:** add noAttemptsLeftMessage prop ([7dc0e02](https://github.com/core-ds/core-components/commit/7dc0e02074443fd68c13aa0ac54bd966e8968ffc)) -- **confirmation:** always show sms come link ([0a14a54](https://github.com/core-ds/core-components/commit/0a14a54b177ee72ccf8cd8b057ea48db0168c1fb)) -- **confirmation:** confirmation design updates ([69f26e4](https://github.com/core-ds/core-components/commit/69f26e415a195d863686076941b6a3f15f3d1d15)) -- **confirmation:** fix text ([40d4d6b](https://github.com/core-ds/core-components/commit/40d4d6b2261b2e0db79bc160266cc207a1ca3858)) -- **drawer:** add component ([#497](https://github.com/core-ds/core-components/issues/497)) ([5943188](https://github.com/core-ds/core-components/commit/594318886d581e6afca99fcebe9088c222aa3d52)) -- **form-control:** changed size L (72 → 64), added size XL (72) ([4a129f3](https://github.com/core-ds/core-components/commit/4a129f3ca3c80e94489cbc485018e6eb6e542244)) -- **grid:** add component ([#486](https://github.com/core-ds/core-components/issues/486)) ([96bd0f3](https://github.com/core-ds/core-components/commit/96bd0f34047fa4c8a877c75a60cc39f839f20b84)) -- **icon-button:** add component ([#505](https://github.com/core-ds/core-components/issues/505)) ([da8ba6e](https://github.com/core-ds/core-components/commit/da8ba6e4473da87d8043713a592368d500cd284f)) -- **icon-button:** inverted theme ([#550](https://github.com/core-ds/core-components/issues/550)) ([98c3691](https://github.com/core-ds/core-components/commit/98c36919f682041278aa31753f1d18be95358df1)) -- **input:** changed size L (72 → 64), added size XL (72) ([79699e3](https://github.com/core-ds/core-components/commit/79699e34d28075809e537b73911875ff5fc2d406)) -- **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917)) -- **intl-phone-input:** add onCountryChange handler ([#539](https://github.com/core-ds/core-components/issues/539)) ([f8c0cd6](https://github.com/core-ds/core-components/commit/f8c0cd618ced23bbb49a81cfee07c1f45ee20427)) -- **intl-phone-input:** changed size L (72 → 64), added size XL (72) ([9077b7f](https://github.com/core-ds/core-components/commit/9077b7f454035cdc7be611d526a5f9642ae4d76d)) -- **link:** set rel='noopener noreferrer' if target='\_blank' ([#520](https://github.com/core-ds/core-components/issues/520)) ([08c556e](https://github.com/core-ds/core-components/commit/08c556ecc0944d121b23566ae54319a1a33899ba)), closes [#519](https://github.com/core-ds/core-components/issues/519) -- **modal:** reinvent modal ([#489](https://github.com/core-ds/core-components/issues/489)) ([06cb8ba](https://github.com/core-ds/core-components/commit/06cb8ba7f7a09445c04ab2a9871a86c1abf4a79c)) -- **mq:** change mobile-s to mobile-xs ([9abf5ba](https://github.com/core-ds/core-components/commit/9abf5bada45287a786610dd6cce7cc047d779012)) -- **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b)) -- **phone-input:** changed size L (72 → 64), added size XL (72) ([13257c5](https://github.com/core-ds/core-components/commit/13257c54543b2f1a870527093df11c532143dab9)) -- **popover:** change animation, add scale ([2e48a02](https://github.com/core-ds/core-components/commit/2e48a02a8f3f7ff9a6df48cf4e6337a8928f67c7)) -- **pure-input:** changed size L (72 → 64), added size XL (72) ([af4cfb5](https://github.com/core-ds/core-components/commit/af4cfb515a25c6dcae32a7e2a0730fe4f9e6e791)) -- **select:** add options-list width ([#578](https://github.com/core-ds/core-components/issues/578)) ([6f1c12b](https://github.com/core-ds/core-components/commit/6f1c12b9196d3ebf87e1ea3e0610f73b8832b771)) -- **select:** add optionsSize ([#577](https://github.com/core-ds/core-components/issues/577)) ([12f3b43](https://github.com/core-ds/core-components/commit/12f3b4342a3dada9db97eb80839a3d7adb9e3747)) -- **select:** add visible-options ([#506](https://github.com/core-ds/core-components/issues/506)) ([0154866](https://github.com/core-ds/core-components/commit/0154866bb8fc8308945d32f115b3ab1e46f98db6)) -- **select:** changed size L (72 → 64), added size XL (72) ([af5dc6a](https://github.com/core-ds/core-components/commit/af5dc6a4f5b52f45bc97f4cc16633aca499aa67a)) -- **select-with-tags:** added collapsed tag list ([#511](https://github.com/core-ds/core-components/issues/511)) ([fe1d551](https://github.com/core-ds/core-components/commit/fe1d551385e9122c205bbe7a679f02a6eb376569)) -- **select-with-tags:** changed size L (72 → 64), added size XL (72) ([523b96f](https://github.com/core-ds/core-components/commit/523b96fa79bc12972ec6ac748105ba20906ba236)) -- **select-with-tags:** design review fixes ([#472](https://github.com/core-ds/core-components/issues/472)) ([0ff989f](https://github.com/core-ds/core-components/commit/0ff989fa09e482a5e9bda1d64bf5eed9241fc451)) -- **skeleton:** updated default theme, click theme ([#549](https://github.com/core-ds/core-components/issues/549)) ([9bf9259](https://github.com/core-ds/core-components/commit/9bf9259d4d1efd73067ea548cdfaf3007b0f8839)) -- **slider-input:** changed size L (72 → 64), added size XL (72) ([f5fda56](https://github.com/core-ds/core-components/commit/f5fda569e0e73a06850914c1e494024a3aaab12c)) -- **status:** add component ([#546](https://github.com/core-ds/core-components/issues/546)) ([52a1f0b](https://github.com/core-ds/core-components/commit/52a1f0bd8578fe34d1c214b93a363e7b76621c17)) -- **tabs:** changed size L (72 → 64), added size XL (72) ([2043939](https://github.com/core-ds/core-components/commit/2043939c5ecdb03c9b84379a3cce21c6f6047530)) -- **tabs:** disabled view ([#513](https://github.com/core-ds/core-components/issues/513)) ([8bdb1a7](https://github.com/core-ds/core-components/commit/8bdb1a789f720c6ccd98ebed3f0ae3c84dbbf52e)) -- **tag:** changed size L (72 → 64), added size XL (72) ([ea43560](https://github.com/core-ds/core-components/commit/ea435601abb79b3bde9e34d60616239e2a0ef6bc)) -- **textarea:** changed size L (72 → 64), added size XL (72) ([175e360](https://github.com/core-ds/core-components/commit/175e360d5acb4eb146c81020fd65dc725588edee)) -- **themes:** list click theme ([#528](https://github.com/core-ds/core-components/issues/528)) ([e54ad60](https://github.com/core-ds/core-components/commit/e54ad605a9f873b06e0fe984bc87bcbb810a2541)) -- **themes:** updated click theme for tabs ([0a4c17e](https://github.com/core-ds/core-components/commit/0a4c17e5628f959d72e0ee6044ca56bd3c890d92)) -- **toast:** remove extra prop ([6a8167a](https://github.com/core-ds/core-components/commit/6a8167a6685a290efc30ac9fc285ddc4b62bd1fe)) -- **toast:** review fixes ([50fea1d](https://github.com/core-ds/core-components/commit/50fea1d764a2b99b66a1212fa56c98958e34f147)) -- **toast:** update popover ([9961bc8](https://github.com/core-ds/core-components/commit/9961bc8a15428c4417af9df9585d8fc55b6a154c)) -- **toast-plate:** add action button theming, fix addons align ([#514](https://github.com/core-ds/core-components/issues/514)) ([20a7c67](https://github.com/core-ds/core-components/commit/20a7c67e89e4b6d3d90a9f1da2eb1b428c8ebf73)) -- **tooltip:** add wrapper around children component ([#587](https://github.com/core-ds/core-components/issues/587)) ([a2ecbb6](https://github.com/core-ds/core-components/commit/a2ecbb67bd517b583284ec0b8365de9e58e753ed)) -- **vars:** 2px gap ([#544](https://github.com/core-ds/core-components/issues/544)) ([e401782](https://github.com/core-ds/core-components/commit/e40178290a02c45bd9ea23ab0deffabd74a69276)) -- **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe)) -- **vars:** fresh colors from alfa-ui-primitives ([2051a0c](https://github.com/core-ds/core-components/commit/2051a0ce3caee3c1a70f36e8c84e575bcd528bab)) -- **vars:** introducing border-radius vars ([1a6fb28](https://github.com/core-ds/core-components/commit/1a6fb287bcfab50048c3a9100645b4dee8cd3395)) -- improve read-only behaviour (PDS-200) ([#502](https://github.com/core-ds/core-components/issues/502)) ([3b3c5e6](https://github.com/core-ds/core-components/commit/3b3c5e664a829351f09f97d742311396dd0c98c6)) -- size vars (xs/s/m/l/xl → 32/48/56/64/72) ([d7254d2](https://github.com/core-ds/core-components/commit/d7254d2963106663e8f04b84bc747b38e4f57632)) -- **with-suffix:** xl size ([d2bb796](https://github.com/core-ds/core-components/commit/d2bb7967b6756f8b06b3484c7900ef7637b1c777)) -- updated design tokens ([#516](https://github.com/core-ds/core-components/issues/516)) ([ef66b65](https://github.com/core-ds/core-components/commit/ef66b65bb35b2ef06292b8da709ccc335eb44735)) -- yet another fixes ([6ecd273](https://github.com/core-ds/core-components/commit/6ecd273b8900e9559e1b8a54a95d1874b4c4a7a3)) -- **amount-input:** added integerLength prop ([881af44](https://github.com/core-ds/core-components/commit/881af44b1823560d522ac07a7359cc6c5739ba0e)) -- **amount-input:** delete zero minor part in passed amount ([#484](https://github.com/core-ds/core-components/issues/484)) ([b787cb1](https://github.com/core-ds/core-components/commit/b787cb1ea1a56bc022470a644e4029bba623b151)) -- **button:** add conditions ([5f034f3](https://github.com/core-ds/core-components/commit/5f034f382fcb1dc1304c9c0b9ccdcff765c5c7fd)) -- **button:** add css to button ([34b23ed](https://github.com/core-ds/core-components/commit/34b23ed2885a39f00928c3df0e485d1966fe6ec0)) -- **button:** design review fixes ([e8f5faf](https://github.com/core-ds/core-components/commit/e8f5faf42b2ea98eff7d5914076a1916008b13b9)) -- **button:** transparent view ([e395049](https://github.com/core-ds/core-components/commit/e39504987bf7c3afb01fc78151bff182199d08cb)) -- **button:** update snapshorts ([29c36ac](https://github.com/core-ds/core-components/commit/29c36ac278407a04be7726996bf50f54c150ba97)) -- **button:** updated addons margin, use gaps ([514fb86](https://github.com/core-ds/core-components/commit/514fb863e41956be7f4888e03a886ab7d35029b1)) -- **calendar:** add component ([#376](https://github.com/core-ds/core-components/issues/376)) ([2994d02](https://github.com/core-ds/core-components/commit/2994d02b49ad172d601f0fc63f89dea20896fd7d)), closes [#2](https://github.com/core-ds/core-components/issues/2) [#2](https://github.com/core-ds/core-components/issues/2) [#413](https://github.com/core-ds/core-components/issues/413) -- **calendar:** add scrolling to selected year when open year select ([#471](https://github.com/core-ds/core-components/issues/471)) ([bf295ab](https://github.com/core-ds/core-components/commit/bf295ab281c80df550cd38d04e86f934e822f3eb)) -- **calendar-range:** add component ([#426](https://github.com/core-ds/core-components/issues/426)) ([7bf76d9](https://github.com/core-ds/core-components/commit/7bf76d9528ffae9b69bf6fdebf8a27e198393eaa)) -- **checkbox:** improved theming ([cb1d196](https://github.com/core-ds/core-components/commit/cb1d196ade34622d5b92fc0ec5c20af5f5e27d3c)) -- **checkbox:** size m ([9fdbf2b](https://github.com/core-ds/core-components/commit/9fdbf2ba938a5ef336020c17041ceaa6c524f1b0)) -- **collapse:** add component ([eea2a52](https://github.com/core-ds/core-components/commit/eea2a52de14dbada541735b7684090aee17a2bcd)) -- **collapse:** codestyle fixes ([74b780a](https://github.com/core-ds/core-components/commit/74b780a51fc0fb80b810e2e621fc08a1e0ca2dc6)) -- **collapse:** codestyle fixes again ([1cd37b7](https://github.com/core-ds/core-components/commit/1cd37b7894cc3b71dc29359c297ba15b261dea08)) -- **collapse:** fix icon ([5f64a69](https://github.com/core-ds/core-components/commit/5f64a69838d2e6803e0d744ce5b3699eefb600f8)) -- **collapse:** fixes ([81d48d0](https://github.com/core-ds/core-components/commit/81d48d0674be40241f781487df47c5fff6ad9658)) -- **collapse:** forgotten ref ([3a256fb](https://github.com/core-ds/core-components/commit/3a256fb74380b70bca89c9f491836caf5078e9cb)) -- **core-components-amount:** add click theme ([b4b0699](https://github.com/core-ds/core-components/commit/b4b0699dcffd2f505935489d66fd0d48b633ecf7)) -- **core-components-amount:** export CurrencyCodes ([1a6155a](https://github.com/core-ds/core-components/commit/1a6155a63655084895831094127404cdbcb0ef54)) -- **core-components-amount-input:** add forward ref ([5471887](https://github.com/core-ds/core-components/commit/5471887361dcb1383ae695f69cc13c201d713607)) -- **core-components-attach:** add Attach component ([#235](https://github.com/core-ds/core-components/issues/235)) ([71aa41c](https://github.com/core-ds/core-components/commit/71aa41c9383c09ae227a1df84585f5f760de350e)), closes [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) -- **core-components-badge:** add component ([#330](https://github.com/core-ds/core-components/issues/330)) ([eb1c617](https://github.com/core-ds/core-components/commit/eb1c617ed03366060f7a60a9bd13396159cfce72)), closes [#327](https://github.com/core-ds/core-components/issues/327) -- **core-components-bank-card:** add component draft ([#208](https://github.com/core-ds/core-components/issues/208)) ([93943b7](https://github.com/core-ds/core-components/commit/93943b7861d8c95ca365bc7545a87d493a793f1e)) -- **core-components-bank-card:** change caret color ([1b69839](https://github.com/core-ds/core-components/commit/1b698399bbcb3afaea80e81f0cbfa9d3d13074ff)) -- **core-components-button:** added nowrap ([#365](https://github.com/core-ds/core-components/issues/365)) ([99a87eb](https://github.com/core-ds/core-components/commit/99a87ebd4c97e325b7724b70991b00ca121601da)) -- **core-components-button:** button themes (click, corp, mobile) ([cf658c3](https://github.com/core-ds/core-components/commit/cf658c388bb0cbf06517b04b4c24f8e5715d8cbe)) -- **core-components-card-image:** add cardImage component ([#326](https://github.com/core-ds/core-components/issues/326)) ([06901af](https://github.com/core-ds/core-components/commit/06901af839f48e5051fc6195446687b756420fc7)) -- **core-components-confirmation:** add confirmation ([#230](https://github.com/core-ds/core-components/issues/230)) ([7a494ba](https://github.com/core-ds/core-components/commit/7a494bafb18af572babb18e7a4fa9a15c2fe6a30)) -- **core-components-confirmation:** fixes ([#311](https://github.com/core-ds/core-components/issues/311)) ([e56a137](https://github.com/core-ds/core-components/commit/e56a137a62e78e56ac63f3d701660fc8a7c5658a)) -- **core-components-confirmation:** separate error and error text ([#329](https://github.com/core-ds/core-components/issues/329)) ([03fc4fb](https://github.com/core-ds/core-components/commit/03fc4fb85fd9f5636493fdf6d79440227c8a0be0)) -- **core-components-fade:** add fade ([459d2c0](https://github.com/core-ds/core-components/commit/459d2c0111f0ab9a3fd6a22c46ed27cbcd1df6e0)) -- **core-components-form-control:** add addons classname ([707cd54](https://github.com/core-ds/core-components/commit/707cd547b2b695cb7585c996efcb8c070b789038)) -- **core-components-form-control:** change l-size height ([c87f908](https://github.com/core-ds/core-components/commit/c87f908fe8174e9d0e976153daac1e46e3a252bd)) -- **core-components-form-control:** set opactiy in disabled state ([#342](https://github.com/core-ds/core-components/issues/342)) ([586a8d1](https://github.com/core-ds/core-components/commit/586a8d15f1be9fe6ceea62ac2231c7ecb1125b7e)) -- **core-components-input:** add addons classname ([9f40cdc](https://github.com/core-ds/core-components/commit/9f40cdc2a79feea9b5b3d5cdb411676f0ff05f35)) -- **core-components-input:** add clear button, some improvements ([4f9a453](https://github.com/core-ds/core-components/commit/4f9a4537db28404281415c4354408386bc4c4021)) -- **core-components-input:** add css-var for clear button icon ([637286c](https://github.com/core-ds/core-components/commit/637286ca68bf9b25653298b4315c97bb145a2089)) -- **core-components-input:** add filled and focused classNames ([ebaac73](https://github.com/core-ds/core-components/commit/ebaac73103caf4601e8df7302af14f79f8a096d1)) -- **core-components-input:** add input wrapper ref ([9c1fba0](https://github.com/core-ds/core-components/commit/9c1fba07c233206eab0defe6e4341fdb0c8b3664)) -- **core-components-input:** add labelClassName ([8494b21](https://github.com/core-ds/core-components/commit/8494b21f3f2027a1439823c4e1237cb9add5cab9)) -- **core-components-input:** add ref tests ([9ed193c](https://github.com/core-ds/core-components/commit/9ed193c1f5f0f4a22a276877893e6d5de4c4a2a0)) -- **core-components-input:** hide clear if input is readonly ([#328](https://github.com/core-ds/core-components/issues/328)) ([93f7ba4](https://github.com/core-ds/core-components/commit/93f7ba429fb8e8f430d3dfadefe8375d6ea2e642)) -- **core-components-input:** update type ([9ab3733](https://github.com/core-ds/core-components/commit/9ab373369c5b692bd3632d43ef1afda7d9ffc63e)) -- **core-components-input:** updated input click theme ([#315](https://github.com/core-ds/core-components/issues/315)) ([69e6f81](https://github.com/core-ds/core-components/commit/69e6f81cc85fac5f5c988e2e409b82ad25ef8a6f)) -- **core-components-intl-phone-input:** add component ([#333](https://github.com/core-ds/core-components/issues/333)) ([4d7c71d](https://github.com/core-ds/core-components/commit/4d7c71d3ace0d44ba1045ab4d2774575e1db65f9)), closes [#336](https://github.com/core-ds/core-components/issues/336) [#334](https://github.com/core-ds/core-components/issues/334) -- **core-components-keyboard-focusable:** add component and hook ([#215](https://github.com/core-ds/core-components/issues/215)) ([f777f72](https://github.com/core-ds/core-components/commit/f777f729e9c880d15b79f58ae9a8f1d5fa6662b1)) -- **core-components-link:** add slots ([#337](https://github.com/core-ds/core-components/issues/337)) ([86f0886](https://github.com/core-ds/core-components/commit/86f0886129f9119a74a5a054232726f871c1634e)) -- **core-components-link:** updated colors and click theme ([573c785](https://github.com/core-ds/core-components/commit/573c78516a41194c9c802eb3ecfdbe7653730311)) -- **core-components-list:** adds a new component ([#296](https://github.com/core-ds/core-components/issues/296)) ([7d5a93d](https://github.com/core-ds/core-components/commit/7d5a93d8318a71d61da91c0bf1a2f88896242fee)) -- **core-components-list-header:** add component ([#344](https://github.com/core-ds/core-components/issues/344)) ([cce69f3](https://github.com/core-ds/core-components/commit/cce69f30d1671d4344e0a85f62516e1f7a1f9266)) -- **core-components-modal:** add modal ([2a71f1b](https://github.com/core-ds/core-components/commit/2a71f1bb2296306df359c9f051fbef44ca0abe6b)) -- **core-components-mq:** add component and hook ([#350](https://github.com/core-ds/core-components/issues/350)) ([6dbd11f](https://github.com/core-ds/core-components/commit/6dbd11f4e3dc369dd645638f46f49b4e0e6c13e6)) -- **core-components-notification:** add component ([#357](https://github.com/core-ds/core-components/issues/357)) ([c6644a0](https://github.com/core-ds/core-components/commit/c6644a018b97dfc68e327bcbcff2edae802921be)), closes [#351](https://github.com/core-ds/core-components/issues/351) -- **core-components-phone-input:** add phone-input ([#192](https://github.com/core-ds/core-components/issues/192)) ([42cedbf](https://github.com/core-ds/core-components/commit/42cedbf9583f1c836cb0825789b0d4b47fbbdddd)) -- **core-components-phone-input:** remove optional chaining ([#222](https://github.com/core-ds/core-components/issues/222)) ([d8a9ca2](https://github.com/core-ds/core-components/commit/d8a9ca2f004bb8bd1df31a5499ead7d7c28e0d80)) -- **core-components-plate:** add component ([62e18bf](https://github.com/core-ds/core-components/commit/62e18bf581651bca66a74c0d02b945522b452b4a)), closes [#340](https://github.com/core-ds/core-components/issues/340) -- **core-components-popover:** add classname for tooltip popover ([c837199](https://github.com/core-ds/core-components/commit/c837199eda8890806388f87a32d61cc88a4165dd)) -- **core-components-progress-bar:** add progress bar component ([39ee713](https://github.com/core-ds/core-components/commit/39ee713522f67f2744fc2f6b4fcb2ac861a55f41)) -- **core-components-pure-input:** change l-size height ([5287559](https://github.com/core-ds/core-components/commit/5287559cbc7a3beac54047884174b26c21cdf453)) -- **core-components-radio:** add radio component ([#183](https://github.com/core-ds/core-components/issues/183)) ([858c81b](https://github.com/core-ds/core-components/commit/858c81b7b3e6bef27b39e719bbecfe1d32f92d19)) -- **core-components-select:** add dataTestId ([83c5dd5](https://github.com/core-ds/core-components/commit/83c5dd5cf8b551a6dcc6c319a6ae69d32113ab34)) -- **core-components-select:** add missing changes ([053b512](https://github.com/core-ds/core-components/commit/053b512382028863c1bb2aa7c6c1e8296cbc29c4)) -- **core-components-select:** inputs & types ([#323](https://github.com/core-ds/core-components/issues/323)) ([0f4d547](https://github.com/core-ds/core-components/commit/0f4d547c3a5792e095de2011db2c6c1e9dbfb386)) -- **core-components-select:** show error icon and arrow both ([#299](https://github.com/core-ds/core-components/issues/299)) ([b563989](https://github.com/core-ds/core-components/commit/b563989a57bf64a9450915d0d0d73687f5358d06)) -- **core-components-skeleton:** adds a new component ([11e6ce9](https://github.com/core-ds/core-components/commit/11e6ce94c8bca6f5b91a9c04c2f750ec232aea23)) -- **core-components-skeleton:** changes styles ([379a8d9](https://github.com/core-ds/core-components/commit/379a8d971ce074242de47972382a78697038864d)) -- **core-components-slider:** add component ([#285](https://github.com/core-ds/core-components/issues/285)) ([57a645e](https://github.com/core-ds/core-components/commit/57a645e735af3218b77c92ce8a66b7efc64f53ad)) -- **core-components-slider-input:** add component ([#288](https://github.com/core-ds/core-components/issues/288)) ([901df73](https://github.com/core-ds/core-components/commit/901df73692bf019a06db7d6d056f2cb6ee9e5f8d)), closes [#294](https://github.com/core-ds/core-components/issues/294) -- **core-components-slider-input:** update stories ([d6a2937](https://github.com/core-ds/core-components/commit/d6a29370739d15427c961b58c553d22c9df87799)) -- **core-components-spinner:** add spinner component ([#360](https://github.com/core-ds/core-components/issues/360)) ([8c6e453](https://github.com/core-ds/core-components/commit/8c6e45341b0ac6232e2fc89ed6860bb8ccbc371c)) -- **core-components-tabs:** add tabs ([#149](https://github.com/core-ds/core-components/issues/149)) ([b08b668](https://github.com/core-ds/core-components/commit/b08b66861fd7c068a1db7e32d3d697ad13acbd6f)), closes [#175](https://github.com/core-ds/core-components/issues/175) [#200](https://github.com/core-ds/core-components/issues/200) -- **core-components-tabs:** addons and container class name ([#361](https://github.com/core-ds/core-components/issues/361)) ([68f1322](https://github.com/core-ds/core-components/commit/68f1322436a5d083a3a98a4405b1d94540e0b8dc)) -- **core-components-tabs:** remove gaps, add sizes ([da7d435](https://github.com/core-ds/core-components/commit/da7d4350b9fb46e8765ec65cf483c7aadab134c3)) -- **core-components-tag:** add click theme ([eeb2400](https://github.com/core-ds/core-components/commit/eeb24000b0f75d48a4780fe069a4698867006b8b)) -- **core-components-tag:** min-width for tags ([fce5ce3](https://github.com/core-ds/core-components/commit/fce5ce382e9b25190504ff3de3a5479527024afa)) -- **core-components-textarea:** add Textarea component ([#221](https://github.com/core-ds/core-components/issues/221)) ([a23b731](https://github.com/core-ds/core-components/commit/a23b73192a7ad3601ea3745f8ac2fdbfaf34346b)), closes [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) -- **core-components-textarea:** change l-size height ([f314bf6](https://github.com/core-ds/core-components/commit/f314bf63b9d1f5d539c53e310ede11c2a8cdd8c7)) -- **core-components-themes:** add tabs click theme ([0ffbc3f](https://github.com/core-ds/core-components/commit/0ffbc3f9d1edbdb13549957a7174871e365e0f40)) -- **core-components-themes:** add tabs site theme, improve plugin ([da5d9ec](https://github.com/core-ds/core-components/commit/da5d9ec07f16b328c15ebebbb55498e25ff866b1)) -- **core-components-themes:** add theming example ([aba4c8a](https://github.com/core-ds/core-components/commit/aba4c8a98a3f577dd89b5e8cf3a2ccfc54b2f16e)) -- **core-components-tooltip:** updated font size and popover shadow ([e0d54b1](https://github.com/core-ds/core-components/commit/e0d54b18ffaa632e52750f30bc6b2b3d710011ca)) -- **core-components-trap-focus:** add trap-focus ([a5be636](https://github.com/core-ds/core-components/commit/a5be6367b5a1683dae00a13dea1ab5bc103083cc)) -- **core-components-typography:** add responsive title ([#362](https://github.com/core-ds/core-components/issues/362)) ([d3af0cd](https://github.com/core-ds/core-components/commit/d3af0cd52bcdbf92a1716e993104360acafcdc61)) -- **core-components-vars:** add breakpoints ([#358](https://github.com/core-ds/core-components/issues/358)) ([9cd5699](https://github.com/core-ds/core-components/commit/9cd569915b4af8c3d92045aea23b2faa054ba241)) -- **core-components-vars:** add new typography styles ([#211](https://github.com/core-ds/core-components/issues/211)) ([7df831f](https://github.com/core-ds/core-components/commit/7df831f396525bec0c57264606a44abd2417a78c)) -- **core-components-vars:** introducing shadows vars ([defc486](https://github.com/core-ds/core-components/commit/defc486204d46ed5b431555b1fe8226dee2046c4)) -- **core-components-vars:** introducing shadows vars ([8ff8aba](https://github.com/core-ds/core-components/commit/8ff8aba0301a20ac652078f9df3f85f79a121ef6)) -- **core-components-vars:** update primitives ([#291](https://github.com/core-ds/core-components/issues/291)) ([d995190](https://github.com/core-ds/core-components/commit/d9951902b1d9325e7e7a88e302d23eafd2705643)) -- **core-components-vars:** updated colors addons ([5206618](https://github.com/core-ds/core-components/commit/5206618ffa8ad9a441120b871e8950196ed6540f)) -- **core-components-with-suffix:** add hoc ([7055c98](https://github.com/core-ds/core-components/commit/7055c98ca5c1c6dda33323522c5168bc6657850b)) -- **core-components-with-suffix:** add hoc ([#301](https://github.com/core-ds/core-components/issues/301)) ([df9b797](https://github.com/core-ds/core-components/commit/df9b79781d3f831360a71dbc0816f795b95e288f)) -- **input-autocomplete:** dont close popover on input click ([#445](https://github.com/core-ds/core-components/issues/445)) ([5b49e54](https://github.com/core-ds/core-components/commit/5b49e542d3e4433024152ba6099d3992a4fc66e3)) -- **input-autocomplete:** revert arrow ([07f0ef4](https://github.com/core-ds/core-components/commit/07f0ef45a7cdd27132861932c7fa93ab0c00a024)) -- **link:** simplify link without addons, fixes [#406](https://github.com/core-ds/core-components/issues/406) ([37288e4](https://github.com/core-ds/core-components/commit/37288e45eb529fcabdf9dc79e0cd04ba015a7d4e)) -- **loader:** updated loader animation ([ec6b50c](https://github.com/core-ds/core-components/commit/ec6b50cf7942d93c89c4c5d0d8e98b3a96ab3509)) -- **modal:** hide ([9d02eba](https://github.com/core-ds/core-components/commit/9d02eba13214038b483dc43d696f38328a95c597)) -- **notification:** move inner content to toast ([8b7a4e9](https://github.com/core-ds/core-components/commit/8b7a4e932a7ac684edc62d2039263d0b9183ff0a)) -- **picker-button:** add compoonent PickerButton ([e14b73d](https://github.com/core-ds/core-components/commit/e14b73db302acd401010b9fd227e33de10eca9fc)) -- **picker-button:** simplify picker-button using colorless icons ([bd0bdba](https://github.com/core-ds/core-components/commit/bd0bdbaa8425bca05b209d7680c9ecadb65235e1)) -- **popover:** fix transition ([f8564bc](https://github.com/core-ds/core-components/commit/f8564bceace99104b521fc92d037f7ef9c635f91)) -- **popover:** prevent flip ([#398](https://github.com/core-ds/core-components/issues/398)) ([c0c1723](https://github.com/core-ds/core-components/commit/c0c1723f15af7b8f09330bc5ce3ea549ea30afa1)) -- **radio:** add addons ([7923354](https://github.com/core-ds/core-components/commit/7923354468ded0a2ea4602c7dae0eb722871c1f1)) -- **radio:** add align ([fe9faec](https://github.com/core-ds/core-components/commit/fe9faecb74b2528f5a2e18f1707dffa28ec29f7d)) -- **radio:** addons, align, block for Checkbox ([78c6f37](https://github.com/core-ds/core-components/commit/78c6f37ef7cb828ac4e8b54bd6edc9d9d4a151ab)) -- **radio:** addons, align, block for Switch ([df81ef9](https://github.com/core-ds/core-components/commit/df81ef9a6ad1c560c43d08741ba0e134a4658af3)) -- **radio:** fix reversed addons of switch ([30721a9](https://github.com/core-ds/core-components/commit/30721a9ee525aca73e9a73565755607b3abcfba3)) -- **radio:** fixes ([12128fb](https://github.com/core-ds/core-components/commit/12128fb8db85c27d0309ef806ef46673f4abbddc)) -- **radio:** fullWidth -> block ([97e0cf6](https://github.com/core-ds/core-components/commit/97e0cf65b0cc9a7dc60ec99ee16d4028a2c724cc)) -- **radio:** improved theming ([3dcb532](https://github.com/core-ds/core-components/commit/3dcb532b8b6d9a4e610a56b557a54f6c68e6ce46)) -- **radio:** lil fixy ([7e8103a](https://github.com/core-ds/core-components/commit/7e8103a863194f0c5115b586aaddd0ba89f75469)) -- **radio:** size m ([c8dfb66](https://github.com/core-ds/core-components/commit/c8dfb66f5a5b3ab5b904edc57ac88ec6003b02ba)) -- **select:** add empty list placeholder prop ([#438](https://github.com/core-ds/core-components/issues/438)) ([75b0c9c](https://github.com/core-ds/core-components/commit/75b0c9c7824b0fcb6d4ae3e238d2eb858d615808)) -- **select:** add exporting select utils ([#436](https://github.com/core-ds/core-components/issues/436)) ([0499ae9](https://github.com/core-ds/core-components/commit/0499ae9f36731d6b25a4f2501c1c760afdb8a687)) -- **select:** allow to use options as selected value ([#393](https://github.com/core-ds/core-components/issues/393)) ([a16f47a](https://github.com/core-ds/core-components/commit/a16f47ac6dd8f10c02a6ea38ec09963fab6f3942)) -- **select:** change arrow icon ([6335973](https://github.com/core-ds/core-components/commit/63359734754308eeca217526d2f4f652f78fc79d)) -- **select:** change optionslist shadow styles ([#397](https://github.com/core-ds/core-components/issues/397)) ([d13c1f8](https://github.com/core-ds/core-components/commit/d13c1f8eacd7a51152a065b5ed358515a3044c18)) -- **select:** popoverPosition, render to body, test issues ([#428](https://github.com/core-ds/core-components/issues/428)) ([7688ec7](https://github.com/core-ds/core-components/commit/7688ec74bce41dac4fff6fd36a61723f7ce1b9d3)), closes [#429](https://github.com/core-ds/core-components/issues/429) -- **select-with-tags:** add select with tags ([#435](https://github.com/core-ds/core-components/issues/435)) ([bc42165](https://github.com/core-ds/core-components/commit/bc42165b73e2c50455534c5c7f7aec4a5d155f75)) -- **slider-input:** use numeric mobile keyboard ([a866dab](https://github.com/core-ds/core-components/commit/a866dabf667f53e62733bd173f16b14c158e2368)) -- **space:** codestyle ([36994db](https://github.com/core-ds/core-components/commit/36994db62086c32f4f583454e880bff915721193)) -- **space:** codestyle ([fc6d760](https://github.com/core-ds/core-components/commit/fc6d7604be3803cf6499dc7d2f034922a7858524)) -- **space:** first Space tests ([9434b91](https://github.com/core-ds/core-components/commit/9434b910f20737b58194c006a4d4d47fb931767f)) -- **space:** just add Space component ([945a456](https://github.com/core-ds/core-components/commit/945a45635e6a90f295c27a61dac9ec08676669c3)) -- **space:** lil fixes ([b9c588a](https://github.com/core-ds/core-components/commit/b9c588ab97e95e01d9962296d453b9bb2f712126)) -- **space:** remove label and more knobs ([e2af148](https://github.com/core-ds/core-components/commit/e2af148d1dc603495e2d6eb559502c6f363aa7f0)) -- **space:** remove label and more knobs 2 ([b85b459](https://github.com/core-ds/core-components/commit/b85b4595303c2ac2e2516db17b562d08da833204)) -- **space:** version ([f262441](https://github.com/core-ds/core-components/commit/f26244139550d96cc2503c60173d0bae7e9dbea5)) -- **switch:** improved theming ([b4ecc39](https://github.com/core-ds/core-components/commit/b4ecc399c706e1de7086e255e57219e3907414e0)) -- **themes:** add button ghost inverted theme ([dd71bbf](https://github.com/core-ds/core-components/commit/dd71bbf94ba3f7cc3502f1ff4f60dad4b023ff9e)) -- **themes:** add dark theme mixins ([#420](https://github.com/core-ds/core-components/issues/420)) ([6cfd317](https://github.com/core-ds/core-components/commit/6cfd31795e937e33cd37262b85057f3e977a900c)) -- **themes:** arrow transform var with click theme ([35d4ef2](https://github.com/core-ds/core-components/commit/35d4ef2db379391c58919445e161c2234b1b16a9)) -- **themes:** fixed click theme for tag ([c0b4fad](https://github.com/core-ds/core-components/commit/c0b4fada71b1f44b5aead6e3a2b51dcccaacb0c4)) -- **themes:** updated button mobile theme ([ebdf5a1](https://github.com/core-ds/core-components/commit/ebdf5a14b912bffcefe087b95d62d4a35531e09f)) -- **themes:** updated tabs border colors ([5a41d86](https://github.com/core-ds/core-components/commit/5a41d86b23fd961e0e7b8a214906363551ae0e41)) -- **themes:** updates ([86bd76f](https://github.com/core-ds/core-components/commit/86bd76fa1cb204b274c0092a5fcc0d984d3f57a1)) -- **toast:** add draft component ([d04fbb3](https://github.com/core-ds/core-components/commit/d04fbb315adda99553f87f5d8e477ff60314a070)) -- **toast:** add new component ([09de8b0](https://github.com/core-ds/core-components/commit/09de8b0ad2684b047d129929506a83127b2ccf99)) -- **toast:** add portal ([439148d](https://github.com/core-ds/core-components/commit/439148d04d950f21b0d7186c1cbc4e681f305d63)) -- **toast:** add stop, start timers ([b28ea98](https://github.com/core-ds/core-components/commit/b28ea982cec94eb9c0a50250d51cf173d0bc0a02)) -- **toast:** fix linter error ([e994512](https://github.com/core-ds/core-components/commit/e9945125a90935e205aee8e4a6bb8b762e352d25)) -- **toast:** fix linter problems ([e8342e8](https://github.com/core-ds/core-components/commit/e8342e89353b6f1a3935473c46a1694b2186561e)) -- **toast:** some fixes ([fe95b5d](https://github.com/core-ds/core-components/commit/fe95b5d8930698ab6d37ab6dd15497af056ac4ee)) -- **toast:** updates ([896ac02](https://github.com/core-ds/core-components/commit/896ac02f251d6b45698bdb35c08eb6131141080a)) -- **toast:** updates ([24cc308](https://github.com/core-ds/core-components/commit/24cc3089a04e7f86ca929192405b71209ed3ebe7)) -- **toast-plate:** change close button position to absolute ([2f9161d](https://github.com/core-ds/core-components/commit/2f9161d8b23647485df7759c1f5a4bbf0c113925)) -- **toast-plate:** design review fixes ([55b58fd](https://github.com/core-ds/core-components/commit/55b58fd1713c89bed3da74ede15487021477545d)) -- **toast-plate:** fix ([4e378ec](https://github.com/core-ds/core-components/commit/4e378ec7cd9901807458ff1c1a09c0cbf3c41401)) -- **toast-plate:** updates ([2303335](https://github.com/core-ds/core-components/commit/230333560732c11cff2c850db41112c398e6ab76)) -- add fieldClassName ([#467](https://github.com/core-ds/core-components/issues/467)) ([8847c5a](https://github.com/core-ds/core-components/commit/8847c5a83187b97ab8f83b0149965a1d3825f89f)) -- add stylelint-core-vars ([#461](https://github.com/core-ds/core-components/issues/461)) ([c2f515e](https://github.com/core-ds/core-components/commit/c2f515e46a590815df66321ae8da011f5b2f24db)) -- **toast-plate:** fix styles ([b600f86](https://github.com/core-ds/core-components/commit/b600f860b37c039f8a4272a9f27aa5689643b614)) -- **toast-plate:** fix styles ([14af3b4](https://github.com/core-ds/core-components/commit/14af3b49fe8803cec870cd946e3835f3b92cd3e8)) -- change form-control styles ([#444](https://github.com/core-ds/core-components/issues/444)) ([2e464a8](https://github.com/core-ds/core-components/commit/2e464a87fba7ae6b60e0f58796f8663c3e456239)) -- read-only state ([#459](https://github.com/core-ds/core-components/issues/459)) ([ed087c7](https://github.com/core-ds/core-components/commit/ed087c7f0440cb7ebdeb2883a3c3998c3c48fa30)) -- **typography:** add default margins ([#446](https://github.com/core-ds/core-components/issues/446)) ([fb98d10](https://github.com/core-ds/core-components/commit/fb98d101651abfb7126dac3a7dee7226972f6a62)) -- **vars:** fresh tokens ([48f2591](https://github.com/core-ds/core-components/commit/48f2591d030e7852fbd239e7d91e4c4c2bed6468)) -- **vars:** new reverse shadows ([6c18699](https://github.com/core-ds/core-components/commit/6c18699b02044e1ba38561d0fcded98d89c67339)) -- add inverted theme for link & button ([#405](https://github.com/core-ds/core-components/issues/405)) ([a3ccf39](https://github.com/core-ds/core-components/commit/a3ccf394369af6d5b0f8c8dd5d64a4b18eeb2155)) -- add styrene font-face ([9dfc8da](https://github.com/core-ds/core-components/commit/9dfc8da61e322e4f7fe915bc63614270cf5f6dd4)) -- add update popover position prop ([#401](https://github.com/core-ds/core-components/issues/401)) ([5588870](https://github.com/core-ds/core-components/commit/5588870b663ba6547bf80853487da4620b2f74d6)) -- adds semantic-release ([1d419e0](https://github.com/core-ds/core-components/commit/1d419e05f1d37db4f7cb04a602e80a894023a23a)) -- icons & arrow ([#356](https://github.com/core-ds/core-components/issues/356)) ([e263356](https://github.com/core-ds/core-components/commit/e263356b7fd1537ae5c434ddc9c5cb074a2e7ab8)) -- improve theme switcher ([#386](https://github.com/core-ds/core-components/issues/386)) ([9c5c4ec](https://github.com/core-ds/core-components/commit/9c5c4ec79e0940f54a76c83bd7017649a0f17093)) -- remove extra vars, update docs ([#370](https://github.com/core-ds/core-components/issues/370)) ([af1b133](https://github.com/core-ds/core-components/commit/af1b1339e768e59a2377409bf164cc8c439bd3bf)) -- use disabled-cursor ([#399](https://github.com/core-ds/core-components/issues/399)) ([ba5ba74](https://github.com/core-ds/core-components/commit/ba5ba7492f2daf4974941130466dcffd3976662b)) -- **themes:** experimental click theme for checkbox/radio/switch ([f5b2263](https://github.com/core-ds/core-components/commit/f5b22636af4b68b12b42158737e11af59e714848)) -- **themes:** updated click theme for tabs size m ([56dd5b6](https://github.com/core-ds/core-components/commit/56dd5b6530085de0a1dc6fc7be6cb78825c438f4)) -- set system font by default in storybook ([c40ab25](https://github.com/core-ds/core-components/commit/c40ab256af022f4688d079c62e895cb4b8a6e69f)) -- update theming docs ([2ceba6d](https://github.com/core-ds/core-components/commit/2ceba6d577857ef0821ea01ee3dd0ec9ddd98fda)) -- add comments to bash ([6149931](https://github.com/core-ds/core-components/commit/61499310c0f928077b887e19621fc50989bac9dc)) -- add demo script ([b5d1c00](https://github.com/core-ds/core-components/commit/b5d1c000e049568768fb6dc018bb8c89a23a8b73)) -- add masked-input ([#76](https://github.com/core-ds/core-components/issues/76)) ([d5c4ba5](https://github.com/core-ds/core-components/commit/d5c4ba51e6ba1e255345a2b570ee54d3c3dfcf5f)) -- delete postInstall ([fd30ef9](https://github.com/core-ds/core-components/commit/fd30ef9eba4e06d81b52e3668d4d38ac2e2ed5ea)) -- fix eslint ([c4f5261](https://github.com/core-ds/core-components/commit/c4f5261ec4ed63f285e0cb7dc0bdbc17e94dc38d)) -- lint fix ([f64c8b9](https://github.com/core-ds/core-components/commit/f64c8b94c801b92b77ab321d3f5990d070e56ca4)) -- modify config for storybook ([c81ad6e](https://github.com/core-ds/core-components/commit/c81ad6e225324c38052fd8aae37001be0ef5c756)) -- post storybook url to PR after push ([#39](https://github.com/core-ds/core-components/issues/39)) ([9acc8ab](https://github.com/core-ds/core-components/commit/9acc8abaff1e48c6a62872b803340212b67ae237)) -- publishing ([bc584e2](https://github.com/core-ds/core-components/commit/bc584e224e17e29fd7178ea096a500264e286685)) -- setup tests ([3e722bd](https://github.com/core-ds/core-components/commit/3e722bda2da14460cbf14cadefafe52b84a2fb76)) -- update demo script ([46d600c](https://github.com/core-ds/core-components/commit/46d600cea9eea44b0372b95d73fca7c4e4d3d404)) -- update dependencies ([a27310a](https://github.com/core-ds/core-components/commit/a27310a23532fad6c719775d35a3032b13432f2c)) -- use custom css-modules naming ([7eacdab](https://github.com/core-ds/core-components/commit/7eacdab49c905486c00fafc19abe38d018765ce8)) -- **base-input:** add base-input ([55ecad6](https://github.com/core-ds/core-components/commit/55ecad6b33f44c6ea3fdd548138d8809f1cc97d8)) -- **button:** add types. add forwardRef ([bd86206](https://github.com/core-ds/core-components/commit/bd86206310cbf3cec2215ccdd81158aa036fadfc)) -- **button:** fixed story ([4811af8](https://github.com/core-ds/core-components/commit/4811af87c8ef9f8f37be6d1dad10621f6698d394)) -- **button:** href prop, updated types & styles ([8745e44](https://github.com/core-ds/core-components/commit/8745e4463deaad04f954bf3d4ae0eca66ddfa99a)) -- **button:** improved button theming ([0d2a255](https://github.com/core-ds/core-components/commit/0d2a2553aafbc34090dbc37edcb2291e0c8f09a6)) -- **button:** keyboard-only focus ([#102](https://github.com/core-ds/core-components/issues/102)) ([739d240](https://github.com/core-ds/core-components/commit/739d240ab3d06b5a232b8c863f54ea888f2f635a)), closes [#125](https://github.com/core-ds/core-components/issues/125) -- **button:** updated button styles ([643429d](https://github.com/core-ds/core-components/commit/643429df73fb0b5d96975de2b4b9020c42e99416)) -- **core-components-amount:** add boilerplate for amount ([5614885](https://github.com/core-ds/core-components/commit/5614885237a9a4843fb312c22c6b5810a3509e63)) -- **core-components-amount:** allow withZeroMinorPart formatting ([e86529d](https://github.com/core-ds/core-components/commit/e86529d72e28e8cde8bffbfd4b4d263129ec4d78)) -- **core-components-amount:** feat, change api, add PureAmount ([f946776](https://github.com/core-ds/core-components/commit/f94677645a8244dedf6f003f901290d5a2c6c16d)) -- **core-components-amount:** implemented amount, add demo ([1e78129](https://github.com/core-ds/core-components/commit/1e781295de03ff4aac5f5a7ec761f22b529716bd)) -- **core-components-button:** add loading state ([5c0a75a](https://github.com/core-ds/core-components/commit/5c0a75a3cae3232ce52be5cd800644c2030abb3b)) -- **core-components-button:** fix button types ([#138](https://github.com/core-ds/core-components/issues/138)) ([6af3a2c](https://github.com/core-ds/core-components/commit/6af3a2c099c52d94fbb91663facfb3d5c79a8492)) -- **core-components-form-control:** add FormControl component ([#127](https://github.com/core-ds/core-components/issues/127)) ([1ea79d1](https://github.com/core-ds/core-components/commit/1ea79d1fc565c2073483a7480893958efff25dff)) -- **core-components-form-control:** allow to hide error icon in theme ([c19a73c](https://github.com/core-ds/core-components/commit/c19a73c676e359f2ecba8b21a53f671b725ec032)) -- **core-components-form-control:** change errors logic ([#150](https://github.com/core-ds/core-components/issues/150)) ([1c0e494](https://github.com/core-ds/core-components/commit/1c0e49489fb59dce68504223744efd290c38d214)) -- **core-components-link:** add new component ([#142](https://github.com/core-ds/core-components/issues/142)) ([33e11eb](https://github.com/core-ds/core-components/commit/33e11eb403fb7d8231e00cf55adf116b914aef3b)) -- **core-components-loader:** add new component ([24f0c35](https://github.com/core-ds/core-components/commit/24f0c3538d79059ee64468ab6c7e372eb5647f76)) -- **core-components-money-input:** add money-input, story, base test ([aab595a](https://github.com/core-ds/core-components/commit/aab595a0e3d705335b7abe7539364206f20806fc)) -- **core-components-money-input:** added smart default placeholder ([dff6e63](https://github.com/core-ds/core-components/commit/dff6e63bd1ed72a1fab9c50a3f3d982da49e531b)) -- **core-components-money-input:** change minority color ([e35b06a](https://github.com/core-ds/core-components/commit/e35b06a74bb43663a8b44fe7d3486b7a7d81af2d)) -- **core-components-money-input:** fix demo according PR comments ([15f339d](https://github.com/core-ds/core-components/commit/15f339d83d8606c82b3a6cc4deeba350bab9f785)) -- **core-components-money-input:** fixes according review comments ([3ba9e0b](https://github.com/core-ds/core-components/commit/3ba9e0b5a653e58898e9f5a72b37a3eaea2fa2da)) -- **core-components-money-input:** fixes according review comments ([0b0c285](https://github.com/core-ds/core-components/commit/0b0c285b40df3e80cf28167c410ddc25b2f405c9)) -- **core-components-money-input:** remove composed props from MoneyInput ([3d3f5b8](https://github.com/core-ds/core-components/commit/3d3f5b83b25990ab56826c5c39e74aa346672f44)) -- **core-components-money-input:** tune to latest requirements ([62fcaf4](https://github.com/core-ds/core-components/commit/62fcaf4038d866271178289e6338e8bc1c01c50e)) -- **core-components-popover:** can render without Transition ([#130](https://github.com/core-ds/core-components/issues/130)) ([2569a32](https://github.com/core-ds/core-components/commit/2569a32994e8de57c4a4a5bce853f706183af749)) -- **core-components-vars:** update alfa-ui-primitives and build colors ([#153](https://github.com/core-ds/core-components/issues/153)) ([007e2d6](https://github.com/core-ds/core-components/commit/007e2d67d5e22e830ca353de3d7ea690b82af73f)) -- **divider:** add divider ([0e4199c](https://github.com/core-ds/core-components/commit/0e4199c6d5b23438442393ef9a8f05594bc39a70)) -- **input:** add new default input ([2314b3b](https://github.com/core-ds/core-components/commit/2314b3b6f47e7b4ebfb3718927ecd593d33b2e1b)) -- **inputs:** icons & addons improvements ([e0abeba](https://github.com/core-ds/core-components/commit/e0abeba1772f8f0c12d01ca9ef5482d80a4e59cc)) -- **inputs:** improve components, update styles & props ([98ff5dd](https://github.com/core-ds/core-components/commit/98ff5dda37e4b55ff5f4bd7c8c9bb80791625935)) -- **inputs:** some refactor. add events & props ([27f5bba](https://github.com/core-ds/core-components/commit/27f5bba60e65181ad848a0628b72711f08377653)) -- **lint:** add lint ([3bd5492](https://github.com/core-ds/core-components/commit/3bd5492bba179083cb26aa99c295a43f8e3be037)) -- **portal:** add new portal component ([#75](https://github.com/core-ds/core-components/issues/75)) ([80d5499](https://github.com/core-ds/core-components/commit/80d5499edfc75c6c382feb3fa638c844c54edd11)) -- **select:** add select component ([#118](https://github.com/core-ds/core-components/issues/118)) ([8892bd9](https://github.com/core-ds/core-components/commit/8892bd94a6be3ad8ba1e609545becadc8be54b47)) -- **stories:** move to mdx stories ([#104](https://github.com/core-ds/core-components/issues/104)) ([40d6aff](https://github.com/core-ds/core-components/commit/40d6aff309e93dd7072c325c6752f067670fb263)) -- **storybook:** add @storybook/addon-docs. update stories ([1e66461](https://github.com/core-ds/core-components/commit/1e66461164ac48252a305477a78ab49356a12343)) -- **storybook:** add theme switcher to storybook ([#199](https://github.com/core-ds/core-components/issues/199)) ([7794f80](https://github.com/core-ds/core-components/commit/7794f80dc83cba171ffe7282e54d5ce0f4bd8245)) -- **switch:** add new component ([4e23acd](https://github.com/core-ds/core-components/commit/4e23acd4d05db21930d137de72e55fc9732332d3)) -- **tag:** add new component Tag ([1101b57](https://github.com/core-ds/core-components/commit/1101b5792eda538b2c508ff6ace7294c0544d1f0)) -- **tag:** remove pointer-events none style ([#224](https://github.com/core-ds/core-components/issues/224)) ([dcaec57](https://github.com/core-ds/core-components/commit/dcaec5712f31cc094f4cacda0a3146e0564d86b3)) -- **themes:** add themes structure ([#108](https://github.com/core-ds/core-components/issues/108)) ([eb05b6d](https://github.com/core-ds/core-components/commit/eb05b6df0d56c76f39ebdcf6a1a6de079c3aa63b)) -- **typography:** add tools for mixin building ([e995924](https://github.com/core-ds/core-components/commit/e99592428c15573e9097a6457dd33361f5a75e85)) -- **typography:** update tokens & scripts. rebuild ([91c7c76](https://github.com/core-ds/core-components/commit/91c7c769d9623cc38f9b44a38d3a027f9fed7136)) -- **vars:** add index.css ([#90](https://github.com/core-ds/core-components/issues/90)) ([d9f3af1](https://github.com/core-ds/core-components/commit/d9f3af1521187d406271fed448dc4af498beb39e)) -- **vars:** add negative gaps ([#99](https://github.com/core-ds/core-components/issues/99)) ([5dc2cf4](https://github.com/core-ds/core-components/commit/5dc2cf404558d705411f248b353aa4841a508799)) - -### Bug Fixes - -- lock and docs ([#6](https://github.com/core-ds/core-components/issues/6)) ([54baf93](https://github.com/core-ds/core-components/commit/54baf93a7263a64a011d2be09bdc64762eae50b6)) -- fix ui-primitives ([#1](https://github.com/core-ds/core-components/issues/1)) ([4af3400](https://github.com/core-ds/core-components/commit/4af34004a28a8098e9d1348e313a8a5612a489c2)) -- **amount-input:** позволяем использовать строки, не рисуем 0 если передана пустая строка ([#941](https://github.com/core-ds/core-components/issues/941)) ([51c954f](https://github.com/core-ds/core-components/commit/51c954f238e7dbdbdbbd517e81e0e944f880ded6)) -- **attach:** always clear input ([#1038](https://github.com/core-ds/core-components/issues/1038)) ([f3e85f2](https://github.com/core-ds/core-components/commit/f3e85f299c4e42253d0354cdd61e005d9fe927f0)) -- **bottom-sheet:** fix bottom-sheet swipeable marker ([#1044](https://github.com/core-ds/core-components/issues/1044)) ([0734e55](https://github.com/core-ds/core-components/commit/0734e55cc0e394fb33452f875ffcf47819277aee)) -- **bottom-sheet:** fix double calling onClose fn ([#962](https://github.com/core-ds/core-components/issues/962)) ([feda2a4](https://github.com/core-ds/core-components/commit/feda2a4c8d3a4f40a1ab9c40eb21f5359e4fa538)) -- **bottom-sheet:** fix prop headerClassName ([#1057](https://github.com/core-ds/core-components/issues/1057)) ([2fb3290](https://github.com/core-ds/core-components/commit/2fb329047fd1ef997082d127d9f26195dbfe57ad)) -- **button:** решение проблемы с тултипом и заблокированной кнопкой ([#920](https://github.com/core-ds/core-components/issues/920)) ([d04f311](https://github.com/core-ds/core-components/commit/d04f31109baf340a4dc7264d3b8ab13109a5a68c)), closes [#799](https://github.com/core-ds/core-components/issues/799) -- **button:** убраны лишние отступы для вида ghost ([#933](https://github.com/core-ds/core-components/issues/933)) ([f43cdf6](https://github.com/core-ds/core-components/commit/f43cdf6afe349d2c7cb0d8436123e63aed347b54)) -- **button:** удален вызов console.warn, если process.env.NODE_ENV !== 'development' ([d3e14ce](https://github.com/core-ds/core-components/commit/d3e14cef7835b5512e4848c5a1048475a8990018)) -- **calendar-range:** correct highlights ([#1002](https://github.com/core-ds/core-components/issues/1002)) ([5c12da2](https://github.com/core-ds/core-components/commit/5c12da2eb72b146b0a5f58447312f96f4b424c48)) -- **cdn-icon:** add className prop ([#957](https://github.com/core-ds/core-components/issues/957)) ([86f2139](https://github.com/core-ds/core-components/commit/86f2139fc56fe1cd2669d05d7953075aa8982e22)) -- **checkbox:** increased checkbox's hint line-height from 18px to 20px ([#1007](https://github.com/core-ds/core-components/issues/1007)) ([c7ee918](https://github.com/core-ds/core-components/commit/c7ee918de443339ac06f82196636dbb48ef8c737)), closes [#969](https://github.com/core-ds/core-components/issues/969) -- **code-input:** code-input-request-animation-frame-fix ([#1014](https://github.com/core-ds/core-components/issues/1014)) ([ad1478e](https://github.com/core-ds/core-components/commit/ad1478ebfd17679e8a2792462c619f525e5b7bb9)) -- **docs:** upd readme ([1b83933](https://github.com/core-ds/core-components/commit/1b839330a9356b2aa2da92b6ba1376bc27c9eee9)) -- **dropzone:** корректный сброс dragCounter ([#944](https://github.com/core-ds/core-components/issues/944)) ([091b4a4](https://github.com/core-ds/core-components/commit/091b4a4b2f42fb0b84581c875a18c14c735eb92b)) -- **file-upload-item:** корректная обрезка контента ([#942](https://github.com/core-ds/core-components/issues/942)) ([5a285f2](https://github.com/core-ds/core-components/commit/5a285f2c1259dab270f52b438203fe7d40c07b29)) -- **filter-tag:** move onClick from btn to div ([#1049](https://github.com/core-ds/core-components/issues/1049)) ([616a90a](https://github.com/core-ds/core-components/commit/616a90af9b0b95de324d3475572d5ac85d3e7a2a)) -- **gallery:** update header button's tooltip position ([#979](https://github.com/core-ds/core-components/issues/979)) ([8e2acfc](https://github.com/core-ds/core-components/commit/8e2acfcb772cf4d8051c185a3f1caaaf507b5bc9)) -- **icon-view:** fix bg-color ([#980](https://github.com/core-ds/core-components/issues/980)) ([2fbad56](https://github.com/core-ds/core-components/commit/2fbad5671d64056a4af81c4fe281a82c415ffeb5)) -- **icon-view:** fix types ([#961](https://github.com/core-ds/core-components/issues/961)) ([74152f3](https://github.com/core-ds/core-components/commit/74152f3bd6d776bebeabea65d5971b57cc486b2e)) -- **input:** компонент иконки для кнопки очистки ([#930](https://github.com/core-ds/core-components/issues/930)) ([37049af](https://github.com/core-ds/core-components/commit/37049af84ed475e1932c91f1907fb604893be7d7)) -- **input-autocomplete:** open list on backspace ([#964](https://github.com/core-ds/core-components/issues/964)) ([4d4f126](https://github.com/core-ds/core-components/commit/4d4f1267a98f05c184267564cd0a2517803bd08b)) -- **loader:** fix animation in IE ([#970](https://github.com/core-ds/core-components/issues/970)) ([03df943](https://github.com/core-ds/core-components/commit/03df9438f00bda639aae78aadb940161112a2672)) -- **picker-button:** fixed type of picker-button size prop ([#1006](https://github.com/core-ds/core-components/issues/1006)) ([38b56c1](https://github.com/core-ds/core-components/commit/38b56c11d45410a258e18d411aa0ce12b8a6c7e4)), closes [#986](https://github.com/core-ds/core-components/issues/986) -- **select:** change corp shadow ([#1004](https://github.com/core-ds/core-components/issues/1004)) ([ea664f6](https://github.com/core-ds/core-components/commit/ea664f67ce81b66b31aab348cc0c68085711de8a)) -- **skeleton:** added dataTestId ([18e4af8](https://github.com/core-ds/core-components/commit/18e4af805bd4e49a1a3c303cb3b4d9a3a9dd5751)) -- **themes:** fix build themes mobile & intranet ([#1055](https://github.com/core-ds/core-components/issues/1055)) ([f95f035](https://github.com/core-ds/core-components/commit/f95f035bdeee3071e2f2ebfaa35c0cc10585044b)) -- **themes:** Добавил пропущенные [@imports](https://github.com/imports) из themes/src/default.css ([#1053](https://github.com/core-ds/core-components/issues/1053)) ([06f0427](https://github.com/core-ds/core-components/commit/06f0427e4089db902bb269ab3b31f935921cff9f)), closes [#1052](https://github.com/core-ds/core-components/issues/1052) -- add missing dependency ([#1041](https://github.com/core-ds/core-components/issues/1041)) ([3b06d3a](https://github.com/core-ds/core-components/commit/3b06d3a25f76e401a0146e163f8a61585f3eebf1)) -- fix modal and bottom-sheet dark mode ([#1043](https://github.com/core-ds/core-components/issues/1043)) ([cad36a2](https://github.com/core-ds/core-components/commit/cad36a25b28bfa71296c3dd9dc325eec28b5c241)) -- **intl-phone-input:** design fixes ([#1030](https://github.com/core-ds/core-components/issues/1030)) ([27cfb9b](https://github.com/core-ds/core-components/commit/27cfb9be1cac9f0aac151ae2121c426fb123fb3f)) -- **radio-group:** add missing 'value' attribute to 'input' tag ([#1033](https://github.com/core-ds/core-components/issues/1033)) ([0f9cf0e](https://github.com/core-ds/core-components/commit/0f9cf0ecd74f4764ccd0b2839ba0cdf1b96e75cb)), closes [#1031](https://github.com/core-ds/core-components/issues/1031) -- **select-with-tags:** update tag size to xxs ([#960](https://github.com/core-ds/core-components/issues/960)) ([4234826](https://github.com/core-ds/core-components/commit/4234826e5dedebc1e6555dfba181981eea4db69f)) -- **table:** update styles ([#1036](https://github.com/core-ds/core-components/issues/1036)) ([3fe236d](https://github.com/core-ds/core-components/commit/3fe236dfb584c3e96fc7fb8c499aee3e9e12e64e)) -- changed dropdown component's box shadow styles ([#1010](https://github.com/core-ds/core-components/issues/1010)) ([2f997f5](https://github.com/core-ds/core-components/commit/2f997f5722c89b38a8064924b73c0a8046025aea)) -- imports for glyph icons ([#994](https://github.com/core-ds/core-components/issues/994)) ([8e807f2](https://github.com/core-ds/core-components/commit/8e807f26abf0f942fe8eadbd201caecb297b35dc)) -- move icon from select to picker-button ([#1020](https://github.com/core-ds/core-components/issues/1020)) ([0d23257](https://github.com/core-ds/core-components/commit/0d23257b561329092be551d237389cc06c3d5607)) -- update glyph deps ([#1019](https://github.com/core-ds/core-components/issues/1019)) ([3e910d0](https://github.com/core-ds/core-components/commit/3e910d0801c4c46bcd399163200c1f7bfaba375e)) -- **table:** fix th paddings ([#951](https://github.com/core-ds/core-components/issues/951)) ([2d916c1](https://github.com/core-ds/core-components/commit/2d916c16a388b0949db2d0ae00c852c0acac6d28)) -- **table:** фикс высоты раскрывающейся ячейки ([#946](https://github.com/core-ds/core-components/issues/946)) ([643f9a5](https://github.com/core-ds/core-components/commit/643f9a556748bafc46a5c6f8c458c07770b11b17)) -- **themes:** fix font weight mobile button ([#972](https://github.com/core-ds/core-components/issues/972)) ([447a89d](https://github.com/core-ds/core-components/commit/447a89dde25aa7659d771ae1c722086354323706)) -- **typography:** changed styrene font styles for title responsive ([#1017](https://github.com/core-ds/core-components/issues/1017)) ([540b0b5](https://github.com/core-ds/core-components/commit/540b0b59cf99a4cee0798f50b94e6449be4aa3c6)) -- **vars:** remove unused colors ([#945](https://github.com/core-ds/core-components/issues/945)) ([310a70a](https://github.com/core-ds/core-components/commit/310a70a8be6bff687861d3d643ebc347ecf6cd6d)) -- add missing vars imports ([#931](https://github.com/core-ds/core-components/issues/931)) ([35ba847](https://github.com/core-ds/core-components/commit/35ba847d39924e713166d79ae6d64444131794a1)) -- **picker-button:** wrap field with div ([b51bce8](https://github.com/core-ds/core-components/commit/b51bce85b39583e7bb1107f56c6e64a6f2b96d5c)), closes [#914](https://github.com/core-ds/core-components/issues/914) -- revert 0e8124552206f96149d104f65cff1667e857bf01 ([#916](https://github.com/core-ds/core-components/issues/916)) ([953fbcf](https://github.com/core-ds/core-components/commit/953fbcfec46a40089a5cfde670597315269b05f5)) -- новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([0e81245](https://github.com/core-ds/core-components/commit/0e8124552206f96149d104f65cff1667e857bf01)) -- новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([#917](https://github.com/core-ds/core-components/issues/917)) ([224831f](https://github.com/core-ds/core-components/commit/224831f41ed2de49dc1a228dc081b0629cf274b1)) -- актуализируем @alfalab/utils ([#897](https://github.com/core-ds/core-components/issues/897)) ([30fb88e](https://github.com/core-ds/core-components/commit/30fb88eee36f68cabf80069e5125d911fabde4a5)) -- **bank-card:** improve docs, fix focus bg ([#830](https://github.com/core-ds/core-components/issues/830)) ([1d8171c](https://github.com/core-ds/core-components/commit/1d8171ce5c76831c350fcf636dd48bad2c3db118)) -- **bank-card:** фикс цвета иконки ([#898](https://github.com/core-ds/core-components/issues/898)) ([66c2659](https://github.com/core-ds/core-components/commit/66c265919e7452af324ceabd26813a8be19b4839)) -- **base-modal:** modal scroll ([#820](https://github.com/core-ds/core-components/issues/820)) ([1b2d94a](https://github.com/core-ds/core-components/commit/1b2d94ad45e04145bf1292d749ae2028702dc622)) -- **base-select:** lazy loading ([#831](https://github.com/core-ds/core-components/issues/831)) ([78f2b86](https://github.com/core-ds/core-components/commit/78f2b86221d8af7bf5019104aba743546fc31b45)) -- **calendar-input:** remove popover border in click theme ([7a76759](https://github.com/core-ds/core-components/commit/7a76759ccc5741a03a4c90f97cce6f67255b1c4b)) -- **calendar-input:** update border-radius ([0d06aca](https://github.com/core-ds/core-components/commit/0d06aca7162c85f987c1172ea037b5b3bc66f8c5)) -- **calendar-input:** обновлён в теме click ([da5d960](https://github.com/core-ds/core-components/commit/da5d9607ce80742bd6780a5bad11b07b3617b44c)) -- **calendar-input:** рендер rightAddons, фикс затертых пропсов ([#895](https://github.com/core-ds/core-components/issues/895)) ([1eabd29](https://github.com/core-ds/core-components/commit/1eabd2902cd1bd62517284313f79cf31189cf525)) -- **calendar-range:** fix default month to ([#868](https://github.com/core-ds/core-components/issues/868)) ([1f9fb97](https://github.com/core-ds/core-components/commit/1f9fb9709292d28300c3fc4386ffd858b2efd852)) -- **chart:** fix deps, export types ([b46450a](https://github.com/core-ds/core-components/commit/b46450ae954b10f0138c393482fe1271b001f085)) -- **collapse:** dynamic content height ([#864](https://github.com/core-ds/core-components/issues/864)) ([e96c86b](https://github.com/core-ds/core-components/commit/e96c86bde70d58e4311a2c6bcd6d7407be0f4c44)) -- **custom-button:** fix color variable & component description ([5b9df4d](https://github.com/core-ds/core-components/commit/5b9df4dffa070b8339f0e208c0d14c72ecdb2012)) -- **custom-button:** fix props type ([a1bf943](https://github.com/core-ds/core-components/commit/a1bf94319b8844cbb3fc7d4626d2232357d72f63)) -- **dropzone:** изменение темы клика ([#893](https://github.com/core-ds/core-components/issues/893)) ([cadc6da](https://github.com/core-ds/core-components/commit/cadc6da29896e6a033bac8e91723b20beb404b32)) -- **file-upload-item:** fix description prop ([#836](https://github.com/core-ds/core-components/issues/836)) ([e15cf1d](https://github.com/core-ds/core-components/commit/e15cf1dad438e22ac31984bfcf8531981b88c6de)) -- **input:** clear icon ([51debd4](https://github.com/core-ds/core-components/commit/51debd46ea2176486cfc1945d74e8d56a4b9387b)) -- **intl-phone-input:** fix carret position on backspace ([#840](https://github.com/core-ds/core-components/issues/840)) ([c786ac1](https://github.com/core-ds/core-components/commit/c786ac17bd086833f3200570e812028ec4580554)), closes [#806](https://github.com/core-ds/core-components/issues/806) -- **modal:** add spreading backdrop props ([#870](https://github.com/core-ds/core-components/issues/870)) ([b523426](https://github.com/core-ds/core-components/commit/b52342616adf1f4b227f603264b70474e53c16f8)) -- **notification:** set word-break: break-word in notif ([8f7615d](https://github.com/core-ds/core-components/commit/8f7615d2f497d97c0811868e14bf4ccd51710f31)) -- **notification:** убрал word-break: break-all ([db0d2b2](https://github.com/core-ds/core-components/commit/db0d2b28d12101f1a7bae395cbf17d570b88cc83)) -- **plate:** check is click inside component, popover issue ([bea8a7d](https://github.com/core-ds/core-components/commit/bea8a7dc199d7aced3ec8b5e9ab76568f0cba839)) -- **plate:** активный курсор только для foldable плашек ([#912](https://github.com/core-ds/core-components/issues/912)) ([06a38bd](https://github.com/core-ds/core-components/commit/06a38bd6bd07d016d670e600b373791aabe3d3ea)) -- **radio:** условный рендер подсказки и лейбла ([#892](https://github.com/core-ds/core-components/issues/892)) ([b744c15](https://github.com/core-ds/core-components/commit/b744c159f3779c5bf555041e7762f9653efb7b0e)), closes [#869](https://github.com/core-ds/core-components/issues/869) -- **skeleton:** prevent component unmount ([#887](https://github.com/core-ds/core-components/issues/887)) ([1bd4dc3](https://github.com/core-ds/core-components/commit/1bd4dc3147622f75802dd8e574175dbbf02cca54)) -- **slider-input:** classnames overriding ([#891](https://github.com/core-ds/core-components/issues/891)) ([d63d676](https://github.com/core-ds/core-components/commit/d63d67628c88e54b38244b1f57969844379d311f)) -- bump react-popper ([#847](https://github.com/core-ds/core-components/issues/847)) ([e8d284b](https://github.com/core-ds/core-components/commit/e8d284bfdfb4aa1fa0ea9e11f6e59c117b309782)) -- confirmation & input ([#833](https://github.com/core-ds/core-components/issues/833)) ([f3c0d62](https://github.com/core-ds/core-components/commit/f3c0d62c15b3812205b71685c2d37c0a986677ee)) -- cssm build ([bbc0a47](https://github.com/core-ds/core-components/commit/bbc0a472a0f68a5b239c4734bdce452f1a107ea6)) -- fix classNames hash ([#884](https://github.com/core-ds/core-components/issues/884)) ([60f58f2](https://github.com/core-ds/core-components/commit/60f58f223106869b15f6b19f466a70b0936a5a1d)) -- **tabs:** height styles ([#810](https://github.com/core-ds/core-components/issues/810)) ([b3b96e7](https://github.com/core-ds/core-components/commit/b3b96e7efb4771c0009c29e851ce1d69f4c61ff4)) -- **tabs:** hide native scrollbar on scrollable tabs properly ([0134956](https://github.com/core-ds/core-components/commit/0134956f2af01720500f7ad06caeeb4569e74d50)), closes [#879](https://github.com/core-ds/core-components/issues/879) -- **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7)) -- input & textarea disabled color on safari ([39ea4ef](https://github.com/core-ds/core-components/commit/39ea4ef7e948016a4ffa17c563cfdd13169a3c2b)) -- wrong mobile colors ([#832](https://github.com/core-ds/core-components/issues/832)) ([d9e275b](https://github.com/core-ds/core-components/commit/d9e275b6ac60e635dec4b655bfc859f079cb9840)) -- понижена версия react-hooks, чтобы не дропать 10ую ноду. Пакет перенесен devDeps ([#852](https://github.com/core-ds/core-components/issues/852)) ([662754a](https://github.com/core-ds/core-components/commit/662754a354b2286114fdff16fa0f7a9ccb5b769d)) -- фикс цвета disabled в Safari для Input и Textarea ([efaa693](https://github.com/core-ds/core-components/commit/efaa693c8e34569df05c951c09c89895d4d949dc)) -- **amount-input:** fix float in amount input ([a9e1802](https://github.com/core-ds/core-components/commit/a9e180285073e29a05703a991c946e2c1247177a)) -- **amount-input:** remove caret-color override ([#773](https://github.com/core-ds/core-components/issues/773)) ([93311d0](https://github.com/core-ds/core-components/commit/93311d0a8e170c14c6cbfa28414d2538f78ddd3f)) -- **attach:** fix drag counter & styles ([#786](https://github.com/core-ds/core-components/issues/786)) ([b075725](https://github.com/core-ds/core-components/commit/b0757250ea57a6e5db64a5026315f8837e8a3303)) -- **backdrop:** styles ([82bdfa7](https://github.com/core-ds/core-components/commit/82bdfa7759240755f74bf12906c395d633f464e4)) -- **badge:** fix name ([207d3d3](https://github.com/core-ds/core-components/commit/207d3d30171a84ff4021cd119c0da1316a92d14c)) -- **base-modal:** correct cb ([256a142](https://github.com/core-ds/core-components/commit/256a142398a9ada34386e92d012185763cedef5a)) -- **base-modal:** fix has scroll bug ([#712](https://github.com/core-ds/core-components/issues/712)) ([a6749a1](https://github.com/core-ds/core-components/commit/a6749a149d511b28cc59aaec188d59c380c64243)) -- **base-modal:** restore body styles on unmount ([#671](https://github.com/core-ds/core-components/issues/671)) ([963a6b1](https://github.com/core-ds/core-components/commit/963a6b18b13924a09cda672a662d0b402d00e75b)) -- **base-modal:** resubscribe observer when content node changed ([2fef06e](https://github.com/core-ds/core-components/commit/2fef06eea01354f58663a5f4470606123d31f9d4)) -- **button:** fixed alignment of several buttons in a row ([#561](https://github.com/core-ds/core-components/issues/561)) ([8d9e1e2](https://github.com/core-ds/core-components/commit/8d9e1e2f7a4ba8c5c986bb833f7424b38601d463)) -- **button:** loader position in ie ([#661](https://github.com/core-ds/core-components/issues/661)) ([6f0ddab](https://github.com/core-ds/core-components/commit/6f0ddab3a3e59672f20b0f2239a4de6ba548edb1)) -- **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e)) -- **calendar:** fix min\max ([6bd4944](https://github.com/core-ds/core-components/commit/6bd49447492b10583973cdfc43350cf8f96c1ecb)) -- **calendar:** fix select-button disabled+selected state ([4f54c01](https://github.com/core-ds/core-components/commit/4f54c01451a2532fd377d3590869dfa52c968dcf)) -- **calendar:** ie fixes ([#628](https://github.com/core-ds/core-components/issues/628)) ([983509c](https://github.com/core-ds/core-components/commit/983509cd1cfe5be64a8627fed44ec55d989eb8a2)) -- **calendar:** limit defaultMonth ([636fa5b](https://github.com/core-ds/core-components/commit/636fa5b1363fbdea8516b95ac758aee65b8cffba)) -- **calendar-input:** allow to pass all props via calendarProps ([#653](https://github.com/core-ds/core-components/issues/653)) ([82c4675](https://github.com/core-ds/core-components/commit/82c4675e2f64b282f9d9772825874a6e1854704b)) -- **calendar-input:** call onchange with empty value ([3fbc73a](https://github.com/core-ds/core-components/commit/3fbc73a1d32586161b6fe527f76ca27cd54abebb)) -- **calendar-input:** extends calendarProps type ([8bf4f58](https://github.com/core-ds/core-components/commit/8bf4f587c1a36471318f7cc02968d1de2a125e11)) -- **calendar-input:** z-index increased ([8e0df44](https://github.com/core-ds/core-components/commit/8e0df445a1be317291f2d35e2f4d4afb9d24609c)) -- **calendar-with-skeleton:** ref & six weeks height issues ([#705](https://github.com/core-ds/core-components/issues/705)) ([907ebe1](https://github.com/core-ds/core-components/commit/907ebe18641ee2e7e91fc4622527404c20867a54)) -- **checkbox:** fix layout ([#790](https://github.com/core-ds/core-components/issues/790)) ([8aa18b4](https://github.com/core-ds/core-components/commit/8aa18b48167eeb5df225ff854d3ca337cd43d4f2)) -- **confirmation:** add font feature settings ([#540](https://github.com/core-ds/core-components/issues/540)) ([08057f6](https://github.com/core-ds/core-components/commit/08057f6930e9cd19c0213442a4915e366d26e607)) -- **confirmation:** fix bug with timers ([2bdb105](https://github.com/core-ds/core-components/commit/2bdb10505ebb91713bca0b56e4d10af08cbcd4ed)) -- **dark-theme-styles-injector:** fix rendering passed styles ([#723](https://github.com/core-ds/core-components/issues/723)) ([882841c](https://github.com/core-ds/core-components/commit/882841c1c43d5570652ab3fcc199958060b92c57)) -- **drawer:** backdrop styles ([04da4fa](https://github.com/core-ds/core-components/commit/04da4fac310dbe2634ea4130ead480a88d47ee8e)) -- **drawer:** lost vars ([#632](https://github.com/core-ds/core-components/issues/632)) ([82a8e46](https://github.com/core-ds/core-components/commit/82a8e461fc16d4ae8b6d3d268c92f7dc969e81f8)) -- **dropzone:** add pointer-events none to overlay ([#677](https://github.com/core-ds/core-components/issues/677)) ([5f9077a](https://github.com/core-ds/core-components/commit/5f9077a7c6c88272c7e9e67ec243488249cc5ded)) -- **form-control:** l size offset between value and label (PDS-270) ([#781](https://github.com/core-ds/core-components/issues/781)) ([311f8a0](https://github.com/core-ds/core-components/commit/311f8a0eaa97cf7d0c89d4a3cdfc443aef2d763c)) -- **gaps:** add description ([#562](https://github.com/core-ds/core-components/issues/562)) ([0e0b2d3](https://github.com/core-ds/core-components/commit/0e0b2d3ffa5fe83f3282acf6b3db80c1ddd09b1f)) -- **icon-button:** fix typo in css variable ([#675](https://github.com/core-ds/core-components/issues/675)) ([b227d07](https://github.com/core-ds/core-components/commit/b227d073797f995baf2474a52f4f6df7c6555e91)) -- **input:** autofocus ([#761](https://github.com/core-ds/core-components/issues/761)) ([e2880de](https://github.com/core-ds/core-components/commit/e2880de6cff33b156bea58286bb46e0803e254a5)) -- **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782) -- **input-autocomplete:** popover height with dynamic height options ([da24758](https://github.com/core-ds/core-components/commit/da247589a35ba33742f95fc96ed63b0ba65cdf11)) -- **intl-phone-input:** remove changing unclearable country code ([#730](https://github.com/core-ds/core-components/issues/730)) ([6d219d6](https://github.com/core-ds/core-components/commit/6d219d622e4da60aada0e10d3c442510f597b1b9)) -- **intl-phone-input:** revert fix carret position on backspace ([772dcf5](https://github.com/core-ds/core-components/commit/772dcf588ba2d28ab9b02f81d0bf538bf016cae0)) -- **masked-input:** inline module types ([#692](https://github.com/core-ds/core-components/issues/692)) ([004e60a](https://github.com/core-ds/core-components/commit/004e60ab61f51251b9d65d4d04fd9562eda5e766)) -- **modal:** click theme sticky footer bg ([#641](https://github.com/core-ds/core-components/issues/641)) ([215a155](https://github.com/core-ds/core-components/commit/215a155030d9966508afa1b8ee8059cc422a2765)) -- **modal:** fix styles ([#665](https://github.com/core-ds/core-components/issues/665)) ([06f3615](https://github.com/core-ds/core-components/commit/06f3615c532f8ec2932d8a4d1fcbb1f5ee6b6a30)) -- **modal:** fullscreen & header title styles ([#580](https://github.com/core-ds/core-components/issues/580)) ([39fa494](https://github.com/core-ds/core-components/commit/39fa4940223b6187a391ff6c0b6706ae8a333dc0)) -- **modal:** max-width 100% ([#794](https://github.com/core-ds/core-components/issues/794)) ([793a765](https://github.com/core-ds/core-components/commit/793a765e7d5dc251eee810acde4605e139565906)) -- **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552)) -- **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e)) -- **plate:** alert in plate cascade issue ([#793](https://github.com/core-ds/core-components/issues/793)) ([dbc20e5](https://github.com/core-ds/core-components/commit/dbc20e558f2b6452e70052b5abc3faf8533709d4)) -- **select:** add aria-disabled when disabled ([#662](https://github.com/core-ds/core-components/issues/662)) ([bd93614](https://github.com/core-ds/core-components/commit/bd93614530567515af8e9bee3a7e0e08c8528b4c)) -- **select:** fix hidden label ([#652](https://github.com/core-ds/core-components/issues/652)) ([a5fecfc](https://github.com/core-ds/core-components/commit/a5fecfc16db2a7bad73282706c2c588b235acf8a)) -- **select:** lazy loading select ([#797](https://github.com/core-ds/core-components/issues/797)) ([68b5602](https://github.com/core-ds/core-components/commit/68b560208ff288657aa1698387c617c7c1449a8d)) -- **select:** options list width calc ([5294af7](https://github.com/core-ds/core-components/commit/5294af78ef61b50edde42ed255e66e6ea004c0fd)) -- **select:** recalc height on options changed ([#536](https://github.com/core-ds/core-components/issues/536)) ([4c27c19](https://github.com/core-ds/core-components/commit/4c27c197882256e507ec83678da4811f6285c2fe)) -- **select:** recalc options-list width when open ([#640](https://github.com/core-ds/core-components/issues/640)) ([1a7a3c2](https://github.com/core-ds/core-components/commit/1a7a3c2f596e438686a59999411ef7a437dc00fe)) -- **select:** remove wron prop passed into renderOption method ([#791](https://github.com/core-ds/core-components/issues/791)) ([5231813](https://github.com/core-ds/core-components/commit/523181355ebde537aa802f86c27e867d9261095a)) -- add missing deps ([4f4a540](https://github.com/core-ds/core-components/commit/4f4a54059f141e41e430199b1a2c30fedf62b081)) -- extend hint type to ReactNode ([#792](https://github.com/core-ds/core-components/issues/792)) ([d02784e](https://github.com/core-ds/core-components/commit/d02784e392f5ca3a30ae009109fbb6351967f746)) -- move icon from date input to calendar input ([#768](https://github.com/core-ds/core-components/issues/768)) ([040bd42](https://github.com/core-ds/core-components/commit/040bd423279eb535f1ea924599ee16c296453e3f)) -- select & calendar-input use glyph icons ([#742](https://github.com/core-ds/core-components/issues/742)) ([6b04ae4](https://github.com/core-ds/core-components/commit/6b04ae49fc4f3805ef362dcb68939b72fc99814b)) -- **intl-phone-input:** format input value ([#703](https://github.com/core-ds/core-components/issues/703)) ([b5e91ed](https://github.com/core-ds/core-components/commit/b5e91edf03867f5dc93fab78425f7c1a128afd9b)) -- **modal:** header height & paddings ([#676](https://github.com/core-ds/core-components/issues/676)) ([d8945c6](https://github.com/core-ds/core-components/commit/d8945c6839b059325ad2a90ca4fc6eda2da3b4c2)) -- **modal:** restore styles after exited ([#663](https://github.com/core-ds/core-components/issues/663)) ([48a8d69](https://github.com/core-ds/core-components/commit/48a8d6986dcde6c191d8411d51f28e6f399e26e6)) -- **phone-input:** value prop ([#757](https://github.com/core-ds/core-components/issues/757)) ([3ba0168](https://github.com/core-ds/core-components/commit/3ba01686ffa950bd74d9ab28bfa961c6cf74a5d8)) -- **select:** calc height in effect ([#689](https://github.com/core-ds/core-components/issues/689)) ([83f8745](https://github.com/core-ds/core-components/commit/83f87454bcacfbb3473c688e222af3185daef5a9)) -- **select:** fix checkmark ([#681](https://github.com/core-ds/core-components/issues/681)) ([71a51dc](https://github.com/core-ds/core-components/commit/71a51dc0204165827724fd444d3279f8cc6ccfcd)) -- **select:** fix checkmark position on click theme ([#699](https://github.com/core-ds/core-components/issues/699)) ([0a3bab5](https://github.com/core-ds/core-components/commit/0a3bab52278b4db8f327a8bf5da97cfb5acecc6a)) -- **select:** fix top bottom paddings ([#683](https://github.com/core-ds/core-components/issues/683)) ([866bc3b](https://github.com/core-ds/core-components/commit/866bc3bee9428f0f67f443b3be0ae23342213b0d)) -- **select:** optionsListWidth prop ([#685](https://github.com/core-ds/core-components/issues/685)) ([3b87e73](https://github.com/core-ds/core-components/commit/3b87e73fdba18c0d41883e47fe4c13976988f2e6)) -- **select:** update optgroup styles ([#679](https://github.com/core-ds/core-components/issues/679)) ([63a06ce](https://github.com/core-ds/core-components/commit/63a06ce4776e22f9374fe689b62e949772443fda)) -- **select-with-tags:** changed includes method for IE11 support ([#651](https://github.com/core-ds/core-components/issues/651)) ([254bca3](https://github.com/core-ds/core-components/commit/254bca3df02107dfffc5175f74e35162453c20d0)) -- **skeleton:** remove vars that purge kills ([886d1b2](https://github.com/core-ds/core-components/commit/886d1b24b144d9d277821d3264f71a93c7a1b146)) -- **space:** remove last element margin ([#713](https://github.com/core-ds/core-components/issues/713)) ([bc36cf7](https://github.com/core-ds/core-components/commit/bc36cf7db35cbd7c5d36c178a50bbd27d2f11b0c)) -- **tooltip:** fix bug with controlled state ([#759](https://github.com/core-ds/core-components/issues/759)) ([dd0144e](https://github.com/core-ds/core-components/commit/dd0144e880e0dac6bac1ab9d15832341761993e9)) -- **typography:** add missing weight styles ([#719](https://github.com/core-ds/core-components/issues/719)) ([6b855aa](https://github.com/core-ds/core-components/commit/6b855aa97eff918e0e16f957c4c05bb7f2d8f4fe)) -- update popover versions ([#646](https://github.com/core-ds/core-components/issues/646)) ([199cf80](https://github.com/core-ds/core-components/commit/199cf80cd60e6edf0ac5d41c7eb258ab05d3b534)) -- **select-with-tags:** tag box-sizing issue ([#589](https://github.com/core-ds/core-components/issues/589)) ([9bc9a44](https://github.com/core-ds/core-components/commit/9bc9a4484b1e46372bce5fc16663f3ac05378310)) -- **skeleton:** remove extra bottom margin ([#619](https://github.com/core-ds/core-components/issues/619)) ([8f83022](https://github.com/core-ds/core-components/commit/8f83022c5a89e2f0b63449970437d0ca00129e5d)) -- **toast-plate:** fix children margin ([#583](https://github.com/core-ds/core-components/issues/583)) ([3b2a964](https://github.com/core-ds/core-components/commit/3b2a96408c56a08eb8796c83a344df20bd4ae032)) -- **toast-plate:** fix cross color ([#642](https://github.com/core-ds/core-components/issues/642)) ([96a17fd](https://github.com/core-ds/core-components/commit/96a17fdcd28a37519845d5a0c40809f107e3031f)) -- border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073)) -- fix types importing in root package ([#569](https://github.com/core-ds/core-components/issues/569)) ([bdb362a](https://github.com/core-ds/core-components/commit/bdb362ad7e23b6ffee8a0299ff91a49cad1f66c2)) -- one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc)) -- update plugin ([#627](https://github.com/core-ds/core-components/issues/627)) ([5bb78f2](https://github.com/core-ds/core-components/commit/5bb78f231e525d0f86ec7fb8ccd8af65121c5169)) -- **select:** virtual list wrong height ([8708228](https://github.com/core-ds/core-components/commit/8708228749acdeed0d1dfe4b9538dc22683e7f28)) -- **select-with-tags:** fixed styles ([#543](https://github.com/core-ds/core-components/issues/543)) ([206db51](https://github.com/core-ds/core-components/commit/206db5138c8ba2869c5ac458609928c4753cc83b)) -- **select-with-tags:** missed dot ([c3c98d0](https://github.com/core-ds/core-components/commit/c3c98d0106072a431a616e8420edb01d83ad5fce)) -- **select-with-tags:** remove pointer events from placeholder ([#545](https://github.com/core-ds/core-components/issues/545)) ([41b860b](https://github.com/core-ds/core-components/commit/41b860bd550b71d2025081d76d7c1240258ecaf9)) -- **slider-input:** label + info + error issue ([147bb71](https://github.com/core-ds/core-components/commit/147bb716ab6dc500aaf0923d5442560c743e6b66)) -- **tabs:** fix ssr rendering ([#621](https://github.com/core-ds/core-components/issues/621)) ([e45efe7](https://github.com/core-ds/core-components/commit/e45efe78ff2583b92393e9c271f07fe3718b9d40)) -- **tabs:** fix tabs hidden ([#816](https://github.com/core-ds/core-components/issues/816)) ([68468dd](https://github.com/core-ds/core-components/commit/68468dd6e74a465f2d4bcde87d7852bcaf934783)) -- **tabs:** фикс бага при скрытии табов ([#851](https://github.com/core-ds/core-components/issues/851)) ([5d5dcd9](https://github.com/core-ds/core-components/commit/5d5dcd966fface279921bea5610e9b3af3f2117b)) -- **textarea:** missing vars ([#817](https://github.com/core-ds/core-components/issues/817)) ([d03231f](https://github.com/core-ds/core-components/commit/d03231f24c826f540ecc8c6ddeb2b3e3fec38b6a)) -- radio/checkbox ([#594](https://github.com/core-ds/core-components/issues/594)) ([4c9c13f](https://github.com/core-ds/core-components/commit/4c9c13fdf4ab3db9a6b176aeaba529c9b23f971b)) -- **amount:** fix story ([#463](https://github.com/core-ds/core-components/issues/463)) ([3e1d6c1](https://github.com/core-ds/core-components/commit/3e1d6c178cc7b0305b0f82e79588bf4d1fa40f91)) -- **calendar:** fix years-table position ([#474](https://github.com/core-ds/core-components/issues/474)) ([0f8cfe2](https://github.com/core-ds/core-components/commit/0f8cfe2b7405989f69d4df964bc2df7858c20ac6)) -- **calendar:** fixes ([#498](https://github.com/core-ds/core-components/issues/498)) ([410630e](https://github.com/core-ds/core-components/commit/410630e3cdd093027444207f16a0f942a62b86de)) -- **calendar:** set max date to years calculation ([#441](https://github.com/core-ds/core-components/issues/441)) ([ec9fd36](https://github.com/core-ds/core-components/commit/ec9fd36c278bcb8cca209eb5a15690c5ac0dd3d8)) -- **calendar:** snapshots timezone issue ([#448](https://github.com/core-ds/core-components/issues/448)) ([18f8080](https://github.com/core-ds/core-components/commit/18f80805499a78cec06377472cdf8d0e81b2378d)) -- **calendar:** vars import ([b8cabec](https://github.com/core-ds/core-components/commit/b8cabec5811e2ac0839d05335edee568dc360f54)) -- **calendar-input:** vars import, fix pattern ([f1f9336](https://github.com/core-ds/core-components/commit/f1f9336d7ae5ed62b4ee5123636fe1950bc25f34)) -- **calendar-range:** fix snapshot ([a135dde](https://github.com/core-ds/core-components/commit/a135ddee4ae99c576df85133984a247231fbb786)) -- **divider:** missed vars ([afeb14e](https://github.com/core-ds/core-components/commit/afeb14ea21281d49fdd24a456f4f18aaa6452cc9)) -- **form-control:** ff blink ([490ff25](https://github.com/core-ds/core-components/commit/490ff257eacb61c5d0d7f8861d12e43af9df3a55)) -- **input:** prevent autocomplete to change bgcolor ([#468](https://github.com/core-ds/core-components/issues/468)) ([d00abe3](https://github.com/core-ds/core-components/commit/d00abe396fad28d6e22887cf5878367d9a6997f8)) -- **input:** set aria-label attr when label passed ([#462](https://github.com/core-ds/core-components/issues/462)) ([c8e4489](https://github.com/core-ds/core-components/commit/c8e448929e9f1a63e9391dda4db2b0d3a7d94902)) -- **input-autocomplete:** fix mousedown issue ([#473](https://github.com/core-ds/core-components/issues/473)) ([889d5ff](https://github.com/core-ds/core-components/commit/889d5ffa35a6f2163107b646165dc2ecd2401887)) -- **loader:** fixed animation start ([4df4712](https://github.com/core-ds/core-components/commit/4df47121429793652f9c838ec306072136f75931)) -- **modal:** fix comments issues ([3c5c9e2](https://github.com/core-ds/core-components/commit/3c5c9e2704070a41cc466fd3ea7881ff13ea1edd)) -- **modal:** fix comments issues ([dd8370f](https://github.com/core-ds/core-components/commit/dd8370f79264d29c5de5b5fa558339cf98384486)) -- **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1)) -- **phone-input:** fix caret ([#493](https://github.com/core-ds/core-components/issues/493)) ([b510257](https://github.com/core-ds/core-components/commit/b510257a7793041766a1d7f4f0a8eae61ee69a8d)) -- **picker-button:** fix test ([639fbe6](https://github.com/core-ds/core-components/commit/639fbe69f5771e5ffbff5fe65a5e46d009a6bd7c)) -- **picker-button:** remove global style ([281ed10](https://github.com/core-ds/core-components/commit/281ed10010756c8337cfa1965da2a58e8a1dfe42)) -- **plate:** fixed --arrow-transform var, tuned transition ([#509](https://github.com/core-ds/core-components/issues/509)) ([dd51018](https://github.com/core-ds/core-components/commit/dd510185db28fefb102b287ae5022cf42e8072dc)) -- **portal:** revert "portal related issues" ([407489a](https://github.com/core-ds/core-components/commit/407489a4278f16806900e97fd2af3655e5b8b071)) -- **portal:** revert "update portal" ([d93aeb1](https://github.com/core-ds/core-components/commit/d93aeb1afdbef0c590d1586c7cd0c6d66f89da9b)) -- **select:** fix safari overflow bug ([#492](https://github.com/core-ds/core-components/issues/492)) ([a273dc1](https://github.com/core-ds/core-components/commit/a273dc1372d171b0a36ad7acfa6e50e65b10a889)) -- **select:** min width bug ([#524](https://github.com/core-ds/core-components/issues/524)) ([cdd686b](https://github.com/core-ds/core-components/commit/cdd686ba0780fdde982fff6629afd2fa798f9479)) -- **space:** removed excess div ([776e093](https://github.com/core-ds/core-components/commit/776e09393cc74eb31e4e56d3fba29a797f813a7f)) -- **switch:** box-sizing issue ([#490](https://github.com/core-ds/core-components/issues/490)) ([73c9eb0](https://github.com/core-ds/core-components/commit/73c9eb0b682a7d8168ae97b9a524d56c65fbd5a5)) -- **tag:** fix formatting ([#480](https://github.com/core-ds/core-components/issues/480)) ([111bf08](https://github.com/core-ds/core-components/commit/111bf08c068f4efe400ce6a25a60280a50fda7b4)) -- **themes:** corp theme ([#512](https://github.com/core-ds/core-components/issues/512)) ([6226238](https://github.com/core-ds/core-components/commit/6226238be1104550622eba1b842dac5ed9828d83)) -- **themes:** fixed button corp theme ([4dec71c](https://github.com/core-ds/core-components/commit/4dec71ccc9bd321a9d7a50dba221b13267b092f9)) -- **themes:** fixed click theme for tabs size S ([#510](https://github.com/core-ds/core-components/issues/510)) ([1ce93e5](https://github.com/core-ds/core-components/commit/1ce93e55d0622951e8db652f16b883a151a75e79)) -- **themes:** lost core vars ([#534](https://github.com/core-ds/core-components/issues/534)) ([54a23c9](https://github.com/core-ds/core-components/commit/54a23c90997c4aa90944d0391f2aab27f799353d)) -- **toast-plate:** polish toast-plate themes ([#527](https://github.com/core-ds/core-components/issues/527)) ([57d73d4](https://github.com/core-ds/core-components/commit/57d73d47b089997b2cc0d85e37b70f068c945e50)) -- add fallback for IE for width: max-content ([22a88bb](https://github.com/core-ds/core-components/commit/22a88bb40b40e8ea6d8a7d618c2957ed33751a86)) -- adds semantic release configs again ([01231a3](https://github.com/core-ds/core-components/commit/01231a3e0de52beb226d5f4bb350db54478307d3)) -- change icons imports paths ([#437](https://github.com/core-ds/core-components/issues/437)) ([e3d4e25](https://github.com/core-ds/core-components/commit/e3d4e2504b282810973eab14201844cd084c4237)) -- fix style for form-control and base-select ([51f9800](https://github.com/core-ds/core-components/commit/51f9800f13a3c4d682be310fe155c2aaddcc7191)) -- form-control colors ([#503](https://github.com/core-ds/core-components/issues/503)) ([784e05e](https://github.com/core-ds/core-components/commit/784e05ecebf2cf9991447bf2dbac4b1dd36b9792)) -- snapshots ([6d387a8](https://github.com/core-ds/core-components/commit/6d387a802a5eb1a5b150cb47ec35b5cbe3f086d7)) -- subComponentName ([8064ac6](https://github.com/core-ds/core-components/commit/8064ac67af83750673ac2dde4794b2ec8fc04f2e)) -- update data and utils dependencies ([#496](https://github.com/core-ds/core-components/issues/496)) ([76eba5d](https://github.com/core-ds/core-components/commit/76eba5dec90fc8f7616018171ddbf97ddfe091ce)) -- update versions ([1d83612](https://github.com/core-ds/core-components/commit/1d8361241fecb6be83e3ce8b546f19def1efc592)) -- update versions ([d1b69a3](https://github.com/core-ds/core-components/commit/d1b69a3f0f488bdef5bea2b3aafc0e275058f321)) -- update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70)) -- delete extra cn ([#415](https://github.com/core-ds/core-components/issues/415)) ([d08966f](https://github.com/core-ds/core-components/commit/d08966fd00459d497640d27a27afa5d0d0fddab9)) -- **button:** design review fixes ([4eca9d1](https://github.com/core-ds/core-components/commit/4eca9d10185f6ffc42644086e679ba7f361cc4f1)) -- **button:** show loader when href is set ([#374](https://github.com/core-ds/core-components/issues/374)) ([79d6750](https://github.com/core-ds/core-components/commit/79d675007a86fe1e36e77376ba7a3afa3b8045e8)) -- **calendar-input:** fix focus issue ([60af1b9](https://github.com/core-ds/core-components/commit/60af1b92d076ce393ac308b64b93af182a68c933)) -- **calendar-input:** fix story ([ff2732d](https://github.com/core-ds/core-components/commit/ff2732da4c7dc35819aebdfdc224472d932a42a2)) -- **circular-progress-bar:** change max-height ([b587c87](https://github.com/core-ds/core-components/commit/b587c8747fe242b32ea11ebad38ef960cf5669b6)) -- **circular-progress-bar:** fix label width ([#395](https://github.com/core-ds/core-components/issues/395)) ([1d3cb6b](https://github.com/core-ds/core-components/commit/1d3cb6b134bc85febd89ad8183f537abbda18482)), closes [#394](https://github.com/core-ds/core-components/issues/394) -- **confirmation:** fix symbols deleting ([#392](https://github.com/core-ds/core-components/issues/392)) ([fee41f1](https://github.com/core-ds/core-components/commit/fee41f17dfb84f9af2ad40e6150e1026ff07ada9)) -- **core-components-\*:** fix undefined refs ([ea5dac0](https://github.com/core-ds/core-components/commit/ea5dac0c5e4371a7224c0a2eddbd80a257675961)) -- **core-components-\*:** portal related issues ([a5735fb](https://github.com/core-ds/core-components/commit/a5735fbc17110372464fdc7fa0c59bd072c1b525)) -- **core-components-amount-input:** missing handlers ([be512d5](https://github.com/core-ds/core-components/commit/be512d51fae847f2dd7a4e939adbbd93aadcff67)) -- **core-components-bank-card:** deleting issue, add useCallback ([#309](https://github.com/core-ds/core-components/issues/309)) ([5f768bd](https://github.com/core-ds/core-components/commit/5f768bd3b0242d4f0adae25c33b8c38575bfedef)) -- **core-components-bank-card:** label styles ([#316](https://github.com/core-ds/core-components/issues/316)) ([31ea1ce](https://github.com/core-ds/core-components/commit/31ea1cec588cacd425b35b3e71d4a18925b71a5a)) -- **core-components-button:** add text align ([#306](https://github.com/core-ds/core-components/issues/306)) ([a60a4dc](https://github.com/core-ds/core-components/commit/a60a4dcb7f7280c6c4e4628deb48456fde3c6171)) -- **core-components-button:** fixed primary button background color ([874e203](https://github.com/core-ds/core-components/commit/874e20336bea6500c75b207bf2cc14262bb878ff)) -- **core-components-confirmation:** fix showed keyboard on old devices ([#341](https://github.com/core-ds/core-components/issues/341)) ([7165ed1](https://github.com/core-ds/core-components/commit/7165ed1846910ffcef685cb35f8ec9afd802116f)) -- **core-components-form-control:** fix hover state ([#317](https://github.com/core-ds/core-components/issues/317)) ([41b2d51](https://github.com/core-ds/core-components/commit/41b2d51fdbf2fc729a1180d6a515ee56b521c555)) -- **core-components-portal:** update portal ([5638163](https://github.com/core-ds/core-components/commit/5638163e98e6c0c4a9ea3254761fe1fdb739c78e)) -- **core-components-tabs:** fix styles build ([#310](https://github.com/core-ds/core-components/issues/310)) ([d05a0ef](https://github.com/core-ds/core-components/commit/d05a0ef86880903e3e33703ef245655cf11e66e7)), closes [#314](https://github.com/core-ds/core-components/issues/314) -- **core-components-themes:** add all vars import ([6d50c3e](https://github.com/core-ds/core-components/commit/6d50c3e089f0e31721adaaf0b56b741b8dec6a7a)) -- **core-components-themes:** process color-mod, fix vars ([5d77f9b](https://github.com/core-ds/core-components/commit/5d77f9be7766f13ac100130a2ff95f6735fe05d9)) -- **core-components-vars:** import colors-transparent in index ([2109973](https://github.com/core-ds/core-components/commit/2109973ecfd4549f0cb2d711ee19ddd07faa415d)) -- **core-components-with-suffix:** add text styles ([b4dbabe](https://github.com/core-ds/core-components/commit/b4dbabe06b4af072b9cb8e05d54861a587c3f41a)) -- **core-components-with-suffix:** fix stories ([6226300](https://github.com/core-ds/core-components/commit/6226300716354fef9f01d2fa40dbf294d47aa5ba)) -- **form-control:** fix height ([#380](https://github.com/core-ds/core-components/issues/380)) ([afc3722](https://github.com/core-ds/core-components/commit/afc3722dc08eb3f742eaec53be5b0233afad02c3)) -- **mq:** use addListener and removeListener ([#402](https://github.com/core-ds/core-components/issues/402)) ([9918383](https://github.com/core-ds/core-components/commit/9918383c31b07ea2aad253765f2f17a88d00b943)) -- **plate:** remove redunadant className ([#373](https://github.com/core-ds/core-components/issues/373)) ([fdd6b3d](https://github.com/core-ds/core-components/commit/fdd6b3dabb0b5b607d6c84471640c73e65128d0e)), closes [#366](https://github.com/core-ds/core-components/issues/366) -- **select:** fix wrong options height ([18f26d9](https://github.com/core-ds/core-components/commit/18f26d9e6c0d9b99c4396f0b6d86b352014fac0a)) -- **themes:** add missing variables import ([#449](https://github.com/core-ds/core-components/issues/449)) ([456c045](https://github.com/core-ds/core-components/commit/456c0450b484863287c24088eefc51d6d7396570)), closes [#442](https://github.com/core-ds/core-components/issues/442) -- **themes:** fix corp button themes ([#425](https://github.com/core-ds/core-components/issues/425)) ([2e49682](https://github.com/core-ds/core-components/commit/2e4968281a01c197bf98c37b791022fd8182d3a5)) -- **themes:** fixed click select theme ([68dd29e](https://github.com/core-ds/core-components/commit/68dd29e6e0dcbdf4378687e9550d02c875d11b20)) -- **tooltip:** execute tooltip's target missing callbacks ([#443](https://github.com/core-ds/core-components/issues/443)) ([237cef1](https://github.com/core-ds/core-components/commit/237cef12805284bc036ddc59789771a3ad9c9210)) -- snapshots ([03a70ef](https://github.com/core-ds/core-components/commit/03a70ef8c30e901347e718784a107d23bad127d6)) -- **core-components-\*:** fix class properties transform ([f407938](https://github.com/core-ds/core-components/commit/f4079384388728251fd90154758fc4aa100f50d6)) -- **core-components-\*:** remove optional chaining to fix build issues ([75b0e7a](https://github.com/core-ds/core-components/commit/75b0e7a701c1f2891533d1242e7c83a83854f414)) -- **core-components-modal:** fix lint issues ([5fc1eb4](https://github.com/core-ds/core-components/commit/5fc1eb4c4a42dde687e2255e6a544b7a0e1b193f)) -- **list:** apply --list-marker-color only to marker ([5479f47](https://github.com/core-ds/core-components/commit/5479f47dd44fc8d9cfedb84f7787e5af84c1f41d)) -- **modal:** fix class properties transform ([f6a1de5](https://github.com/core-ds/core-components/commit/f6a1de5b769bcf7605cc992a7e9ebf63445d1169)) -- **picker-button:** fix icon color ([f8d97b4](https://github.com/core-ds/core-components/commit/f8d97b44680fa2ace1539b11b5d0a318d45094aa)) -- **themes:** remove imports from mixins ([4d878b5](https://github.com/core-ds/core-components/commit/4d878b59e46c1cfc1799182367421402af6462db)) -- changed secrets variables ([4afa0b7](https://github.com/core-ds/core-components/commit/4afa0b72d1ee93b0faa816a202ec24ed49bd2096)) -- fix ie bundle ([#385](https://github.com/core-ds/core-components/issues/385)) ([9ca6024](https://github.com/core-ds/core-components/commit/9ca60245991903600c0308c9cd30955f39bd914f)) -- fix version ([0c3cff0](https://github.com/core-ds/core-components/commit/0c3cff0adaf276bcc9e1f57f5da56e44ebd64b3c)) -- slightly better and safer ie fixes ([0e34b4f](https://github.com/core-ds/core-components/commit/0e34b4fb9800a435c05dc8f83146ce5617cf99a5)) -- theme-switcher select value ([845de5d](https://github.com/core-ds/core-components/commit/845de5d5124a2459cad2cf40dd015d6580e68700)) -- **radio:** fix input width ([#378](https://github.com/core-ds/core-components/issues/378)) ([369684e](https://github.com/core-ds/core-components/commit/369684ed2ce7aae07a00941e663accf82f8f2763)) -- storybook build with assets ([0d2e819](https://github.com/core-ds/core-components/commit/0d2e819ae27900e9022bae53dac5a381336871a0)) -- typings issue ([dd17a7b](https://github.com/core-ds/core-components/commit/dd17a7b0c04413dce337c2eecd8bc197e580e067)) -- **checkbox-group:** fix css classnames ([1ec07fa](https://github.com/core-ds/core-components/commit/1ec07faa276bfa20917b1ff4decfde2c81c66ffe)) -- **core-components-amount-input:** fix console error ([461d435](https://github.com/core-ds/core-components/commit/461d435643d6b5908344fadfe66927dd48ed014c)) -- **core-components-amount-input:** resolve [#281](https://github.com/core-ds/core-components/issues/281) ([7e91e9e](https://github.com/core-ds/core-components/commit/7e91e9ed5c4902be979e7dde8818698d71017e68)) -- **core-components-bank-card:** fix test ([77c72db](https://github.com/core-ds/core-components/commit/77c72db21f3bef02f07295015331d55da9c27621)) -- **core-components-button:** background in loading state ([2064e59](https://github.com/core-ds/core-components/commit/2064e593914354258cd47a4da9ca65cf26585542)) -- **core-components-button:** disabled styles are back ([bf81264](https://github.com/core-ds/core-components/commit/bf81264bb922ea98752adb9b2a6b09c946d48ed9)) -- **core-components-button:** fix block button width ([4abf5d9](https://github.com/core-ds/core-components/commit/4abf5d9d915909c4b5b4beddad7d287df812beb4)) -- **core-components-button:** fix button loading state ([eac3c3c](https://github.com/core-ds/core-components/commit/eac3c3ca888ee0092a1693b9a39843c1dd9a75f1)) -- **core-components-button:** fix loader position ([#236](https://github.com/core-ds/core-components/issues/236)) ([697c44a](https://github.com/core-ds/core-components/commit/697c44a0559515f593541909fabc7145a66ee7e1)) -- **core-components-checkbox-group:** fix classnames to camelcase ([522af20](https://github.com/core-ds/core-components/commit/522af2088bbc7ef9343b4f6c3de5bb7ee51c6202)) -- **core-components-input:** fix clear button, fix focus issues ([24fc3c6](https://github.com/core-ds/core-components/commit/24fc3c603e92418e8589c09bed2ca5d8bdf57f5a)) -- **core-components-money-input:** add todo ([612c88c](https://github.com/core-ds/core-components/commit/612c88c87197e3c42332291f81dd1a918599f637)) -- **core-components-money-input:** fix bold ([4625eee](https://github.com/core-ds/core-components/commit/4625eee240f1024e3934e205b4a20845f8da1542)) -- **core-components-money-input:** fix build ([c68fa08](https://github.com/core-ds/core-components/commit/c68fa0890965a5415b1acc7fab144eaaabbb9676)) -- **core-components-money-input:** fix default placeholder ([2efbcbd](https://github.com/core-ds/core-components/commit/2efbcbd49fbc2c02a6644867bfa25c96b3943223)) -- **core-components-money-input:** fix demo ([2b22f2d](https://github.com/core-ds/core-components/commit/2b22f2db919ff0e9bd1c393234154234b3675582)) -- **core-components-money-input:** fix dependency ([1ea92b7](https://github.com/core-ds/core-components/commit/1ea92b78aacaf5421ddaa867c795ecf4ed4d9318)) -- **core-components-money-input:** fix zindex ([0688bd9](https://github.com/core-ds/core-components/commit/0688bd925a52a3b0d1ce28779b75e626a961627d)) -- **core-components-money-input:** remove temp wrapper ([fc6e904](https://github.com/core-ds/core-components/commit/fc6e904aeb2df1b05b172c59d4897418e67c7993)) -- **core-components-money-input:** type for currency according comments ([078069d](https://github.com/core-ds/core-components/commit/078069d523c545b8d7b3d7edb2f8676a2aa4a522)) -- **core-components-phone-input:** fix controlled value bug ([#248](https://github.com/core-ds/core-components/issues/248)) ([62c3cd2](https://github.com/core-ds/core-components/commit/62c3cd25ccf3657e70fb5ebafa5e0ac2e9a8c1da)), closes [#253](https://github.com/core-ds/core-components/issues/253) -- **core-components-popover:** add missing styles ([578f1cb](https://github.com/core-ds/core-components/commit/578f1cb20cad08fec606b6da11c961552ca990d1)) -- **core-components-progress-bar:** refactor, snapshot tests fix ([7b0b553](https://github.com/core-ds/core-components/commit/7b0b553eafce92307bec53d0d35f847969bf8904)) -- **core-components-progress-bar:** use theme ([#201](https://github.com/core-ds/core-components/issues/201)) ([a9ab773](https://github.com/core-ds/core-components/commit/a9ab773d75f4fcbc68ad648b378cfb3c2b9c0c19)) -- **core-components-select:** fix typings, add id ([341d79d](https://github.com/core-ds/core-components/commit/341d79dad610fce77b28cff31382e38152b02d3b)) -- **core-components-select:** fix typings, unused css ([c223dbb](https://github.com/core-ds/core-components/commit/c223dbb9245f7cc6113a76077f458c4bdcd75462)) -- **core-components-select:** remove default autocomplete ([a223433](https://github.com/core-ds/core-components/commit/a2234334eaf145582a39bc045b84d61a97a7660c)) -- **core-components-skeleton:** fix styles ([0aac24f](https://github.com/core-ds/core-components/commit/0aac24f3e7ed536fef560abec9627daf42a688df)) -- **core-components-tabs:** fix css-modules build ([#239](https://github.com/core-ds/core-components/issues/239)) ([0e9d8d0](https://github.com/core-ds/core-components/commit/0e9d8d073dc000484816c8d10beddff12e0c463e)) -- **core-components-tabs:** recalc line styles on render ([#250](https://github.com/core-ds/core-components/issues/250)) ([b9fd710](https://github.com/core-ds/core-components/commit/b9fd7105c19809fc682f60fca275bd645e082c85)) -- **core-components-themes:** fix site theme ([97f5caa](https://github.com/core-ds/core-components/commit/97f5caab5f3ce546d382a711c726bed5b54724ab)) -- **core-components-themes:** temp fix for color-mod ([94a79a0](https://github.com/core-ds/core-components/commit/94a79a08d53266963d3d96bf3c5c41321629d360)) -- 🐛 use mixinsDir to import mixins ([#182](https://github.com/core-ds/core-components/issues/182)) ([06a6f2d](https://github.com/core-ds/core-components/commit/06a6f2dde49db07681d09a5afb94e91ab1c9da04)), closes [#181](https://github.com/core-ds/core-components/issues/181) -- add missing deps ([231402b](https://github.com/core-ds/core-components/commit/231402b2f054defddea4afd4eaf94f5d1791ccb4)) -- add new colors, fix typography ([e50365e](https://github.com/core-ds/core-components/commit/e50365e7e7c6d17422aff61c266b3a1b55a0ecf3)) -- build issues ([cdacf43](https://github.com/core-ds/core-components/commit/cdacf43a0b8f24a4b2b6ca97d0c008b30692c841)) -- fix import example ([#237](https://github.com/core-ds/core-components/issues/237)) ([0ea47b5](https://github.com/core-ds/core-components/commit/0ea47b59138690cb294314883da7298e7b5d0195)) -- fix import replacement ([5354d06](https://github.com/core-ds/core-components/commit/5354d0604125d9d21c2939987cecd10d428a509f)), closes [#170](https://github.com/core-ds/core-components/issues/170) -- fix radio & checkbox colors ([56a0a16](https://github.com/core-ds/core-components/commit/56a0a16d1259f05b51b06ba81035003eadc1f2b3)) -- fixed themes and default font-family ([6bab367](https://github.com/core-ds/core-components/commit/6bab367eb0df53c7d42e31c5e404859638d8d6c9)) -- use correct vars ([171c45d](https://github.com/core-ds/core-components/commit/171c45da81d6e8df6b76a8333068d7ccbe68466c)) -- fix 4 spaces ([049cfa9](https://github.com/core-ds/core-components/commit/049cfa919cfd96315f716d724c0ea670c667aae2)) -- fix issues accodring to PR [#36](https://github.com/core-ds/core-components/issues/36) ([9c57325](https://github.com/core-ds/core-components/commit/9c5732519063c89fa5a544ae87611cc1244ee78b)) -- fix lint errors ([86fa366](https://github.com/core-ds/core-components/commit/86fa36694323671bd3e4bbb28980134d4e7e2ce2)) -- fixed linter errors ([0c9f9c6](https://github.com/core-ds/core-components/commit/0c9f9c69127ba979a03e66dd80f4be083d2760ce)) -- prepare inputs. move @types/jest to devDeps ([5f30dbb](https://github.com/core-ds/core-components/commit/5f30dbb064b468e54159914604426c8ec3310522)) -- restore babel config ([50eaa68](https://github.com/core-ds/core-components/commit/50eaa682c93733a4d5f1dc0fbcd32a4214b643f3)) -- update scripts & snapshots ([ce35a02](https://github.com/core-ds/core-components/commit/ce35a026850700af09953e47006bce0885c920aa)) -- **build-root-package:** several hyphens in dir name ([aeb5dfb](https://github.com/core-ds/core-components/commit/aeb5dfba8a88153762602a9c20c8db478ae2943f)) -- **button:** add missing href ([756d84b](https://github.com/core-ds/core-components/commit/756d84b775298045cdb205bc2f5155d04c6d4f35)) -- **button:** remove unused deps ([f287d48](https://github.com/core-ds/core-components/commit/f287d48dadab80b2f98e43c5a9d74029d4286303)) -- **button:** transition duration fix ([cd49653](https://github.com/core-ds/core-components/commit/cd49653db2670f9c846fb9d839f3c75d8e1c1f54)) -- **core-components-button:** iconOnly button min-width fix ([ecdf518](https://github.com/core-ds/core-components/commit/ecdf518c89a931b649a6c917caa45b9f4dc2dc7b)) -- **core-components-popover:** change box-sizing to border-box ([#121](https://github.com/core-ds/core-components/issues/121)) ([2a6883d](https://github.com/core-ds/core-components/commit/2a6883d6832713d197447e23ada822ea07bed5f4)) -- **core-components-popover:** make transition props optional ([#119](https://github.com/core-ds/core-components/issues/119)) ([dce9249](https://github.com/core-ds/core-components/commit/dce924922b67dff1c4ea6b173bd2b70874b56270)) -- **core-components-select:** fix onOpen description ([b28f75a](https://github.com/core-ds/core-components/commit/b28f75afe180dd252900139147f2c7c8df92aeb8)) -- **core-components-select:** move select vars to separate file ([8e09aba](https://github.com/core-ds/core-components/commit/8e09abaa90d8a91298be69ef136770588630d824)) -- **core-components-tag:** fix tag background ([#151](https://github.com/core-ds/core-components/issues/151)) ([03b465b](https://github.com/core-ds/core-components/commit/03b465b9f6c231375da8803382ed3539b2e7743a)) -- **core-components-tooltip:** change tooltip timer to ref ([#207](https://github.com/core-ds/core-components/issues/207)) ([139f0a7](https://github.com/core-ds/core-components/commit/139f0a74d414f3c1dde11b46ecf96a984b599359)) -- **core-components-tooltip:** pass target original classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([d253f8a](https://github.com/core-ds/core-components/commit/d253f8a363a0b4c605ee897a9b3172fdf977a073)) -- **deploy:** fix demo-build for master branch ([fc46861](https://github.com/core-ds/core-components/commit/fc46861e0c8b9664abda0efaba42a175504ab02f)) -- **deps:** fix wrong dependencies ([#92](https://github.com/core-ds/core-components/issues/92)) ([085e2ce](https://github.com/core-ds/core-components/commit/085e2cef73841178322c89ef90e90747e6971adf)) -- **divider:** delete default margin ([c514bf3](https://github.com/core-ds/core-components/commit/c514bf386755b7e29f36ae148deea7a08c7984da)) -- **divider:** remarks from PR ([5df2c6f](https://github.com/core-ds/core-components/commit/5df2c6fae1d7eab7aaa77604e4f0f09c3304e1ab)) -- **divider:** style ([d718a69](https://github.com/core-ds/core-components/commit/d718a6922f38ec0e60eea23ebe1803a8798de8fa)) -- **input:** fix l bottom margin ([c41a840](https://github.com/core-ds/core-components/commit/c41a8408e1c8f338be4a787bb06d51be7f1e66da)) -- **input:** fix render fn ([4cf8ef1](https://github.com/core-ds/core-components/commit/4cf8ef18dc8fc703f50ebf70877762b8bcac7a71)) -- **input:** fix wrong filled state ([#109](https://github.com/core-ds/core-components/issues/109)) ([576495a](https://github.com/core-ds/core-components/commit/576495ac639278bf5e873535173736a8082d1b44)) -- **input:** pass sub as BaseInput child ([b60d64c](https://github.com/core-ds/core-components/commit/b60d64ca432ccf94b7472116f04010327b7c9c72)) -- **inputs:** border-box fix ([81752e1](https://github.com/core-ds/core-components/commit/81752e189382e7c2dc3982b50291b9be5827cea1)) -- **inputs:** fix css vars ([1e233a2](https://github.com/core-ds/core-components/commit/1e233a26423c544ead925851a2e7925402710951)) -- **inputs:** fix input width ([9ed950f](https://github.com/core-ds/core-components/commit/9ed950f103057c74cf02ff4a95a7a6ba868aced8)) -- **inputs:** fix placeholders styles ([e404483](https://github.com/core-ds/core-components/commit/e4044838c96b527228a78a33ee24104c4899c80f)) -- **inputs:** fix styles and types ([cb6b189](https://github.com/core-ds/core-components/commit/cb6b18957d86410deddfae2d41fea0ed201e4073)) -- **inputs:** l size side paddings ([b9688a2](https://github.com/core-ds/core-components/commit/b9688a246aec4c5e442e6ee7a84a77c87d95371b)) -- **inputs:** remove from state, detect by value prop ([208c07e](https://github.com/core-ds/core-components/commit/208c07e9a73640f43950779615d4ec3f39e61c66)) -- **inputs:** remove file type. fix styles. withIcon -> rightAddons ([f149aa8](https://github.com/core-ds/core-components/commit/f149aa88de2f94329e5c905846034d619589a7bf)) -- **inputs:** styles fixes ([9a3199e](https://github.com/core-ds/core-components/commit/9a3199ef03d8e6a97d48c376b79938c2f1bf1372)) -- **masked-input,switch:** fix wrong main field ([76d0e4e](https://github.com/core-ds/core-components/commit/76d0e4e6b05973977f49ef5edeb56790daffa566)) -- **switch:** fix global tag styling ([66ce011](https://github.com/core-ds/core-components/commit/66ce0111b0e4c47e957f94afbf66f1ff50cab607)) -- **switch:** replace div with span ([69624f9](https://github.com/core-ds/core-components/commit/69624f9c2a2e07aa91829a8940245e83e7576d05)) -- **tabs:** optional children ([#572](https://github.com/core-ds/core-components/issues/572)) ([b03ee8c](https://github.com/core-ds/core-components/commit/b03ee8ca7f37e9c5b8a46d4a04123792cdc1bfa6)) -- **tag:** add height in ie (fix bug with flex and align-items) ([9fd2abd](https://github.com/core-ds/core-components/commit/9fd2abd401d92e01e853ce5a3f497645d74b8e04)) -- **tag:** fix disabled state ([#110](https://github.com/core-ds/core-components/issues/110)) ([a622101](https://github.com/core-ds/core-components/commit/a622101cb448e623e95ae9bfecc310548ac52dbe)) -- **tag:** fix styles ([#80](https://github.com/core-ds/core-components/issues/80)) ([bc80ba4](https://github.com/core-ds/core-components/commit/bc80ba47366a91d998d764675e17aeaed3c31666)) -- **tests:** rewrite tests titles ([d0f16ad](https://github.com/core-ds/core-components/commit/d0f16ad812cb098ba9cbf612bde245784dfb6227)) -- **themes:** fixes border-radius ([9d152d9](https://github.com/core-ds/core-components/commit/9d152d9ae0e70736cf78f3a014b6710dc8aa2331)) -- **toast:** remove extra timer clearing ([#559](https://github.com/core-ds/core-components/issues/559)) ([ae5d811](https://github.com/core-ds/core-components/commit/ae5d81169d4db0427ae5baf0bffd784adee184ee)) -- **tsconfig:** fix local module resolution ([f8faadf](https://github.com/core-ds/core-components/commit/f8faadfdfea9e8b570c77e1c8b3bf462ea6d26e6)) -- **typography:** add prettier-ignore to fix mixin breaking. rebuild ([6909df6](https://github.com/core-ds/core-components/commit/6909df62bbc9b0dd67143cdb950dd8e50bf54067)) -- **update-colors.js:** fix it ([c9b8c68](https://github.com/core-ds/core-components/commit/c9b8c68b8ac07e2bff33399cc1a99405bb71132d)) -- **vars:** fix build for vars. add typography to index ([cc00344](https://github.com/core-ds/core-components/commit/cc00344d6db8e60b0b230829d8bed4ef5f20c9d1)) - -- refactor/calendar-range (#984) ([714f615](https://github.com/core-ds/core-components/commit/714f61590586bafe1060e652943e95c133ed002a)), closes [#984](https://github.com/core-ds/core-components/issues/984) -- Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521) +* refactor(core-components-form-control): rename component + +* refactor(core-components-form-control): component improvements + +### Features + +* change repository name ([85dc9c5](https://github.com/core-ds/core-components/commit/85dc9c59ad778afeb1cf9716c2e6adea69641d57)) +* update all screenshots ([8b09f60](https://github.com/core-ds/core-components/commit/8b09f608203b0561652cab030ddc8471b8c952d7)) +* **amount:** add rightAddons, add showPlus, make currency optional ([#955](https://github.com/core-ds/core-components/issues/955)) ([ac35b9a](https://github.com/core-ds/core-components/commit/ac35b9aaf842d88fd28caeb4f888cdf74facf644)) +* **badge:** add screenshots ([4b5d31c](https://github.com/core-ds/core-components/commit/4b5d31c8113c1da084ea0f15976edfea517f6db6)) +* **base-modal:** add component ref for base modal ([#1008](https://github.com/core-ds/core-components/issues/1008)) ([fb13dbd](https://github.com/core-ds/core-components/commit/fb13dbdf6352b10b80a74fa87edfcb1f54b76d5a)) +* **base-modal:** extract modal store to global ([#943](https://github.com/core-ds/core-components/issues/943)) ([9587f17](https://github.com/core-ds/core-components/commit/9587f1773bb690ac6696077509d4a519aa109198)) +* **bottom-sheet:** update-bottom-sheet ([#1025](https://github.com/core-ds/core-components/issues/1025)) ([26fa9aa](https://github.com/core-ds/core-components/commit/26fa9aab68bebf0f7093a38bc0f18a9b596ccf37)), closes [#1032](https://github.com/core-ds/core-components/issues/1032) +* **button:** добавлена кнопка размера 40px, изменены скругления ([#886](https://github.com/core-ds/core-components/issues/886)) ([88e657a](https://github.com/core-ds/core-components/commit/88e657a9f0f68b8b58f6e9437053954ee984f83c)), closes [#890](https://github.com/core-ds/core-components/issues/890) +* **calendar:** add intranet theme ([#1026](https://github.com/core-ds/core-components/issues/1026)) ([292b76c](https://github.com/core-ds/core-components/commit/292b76c100bb12ebb1011d2a9981ba2b2899dd7a)) +* **calendar:** design & logic updates ([#991](https://github.com/core-ds/core-components/issues/991)) ([358142c](https://github.com/core-ds/core-components/commit/358142c6d259e1463954139cc648787cdf461f76)), closes [#993](https://github.com/core-ds/core-components/issues/993) [#990](https://github.com/core-ds/core-components/issues/990) +* **calendar:** split header to header & period-slider ([#939](https://github.com/core-ds/core-components/issues/939)) ([107cee0](https://github.com/core-ds/core-components/commit/107cee0f2b5d609a02b61023b324dcc8c98c5220)) +* **calendar:** мобильные стили ([#867](https://github.com/core-ds/core-components/issues/867)) ([febf545](https://github.com/core-ds/core-components/commit/febf54551f8179a1ba03fe65ed47aa3b20b01472)) +* **calendar:** показываем будущий год ([#900](https://github.com/core-ds/core-components/issues/900)) ([3cd3c63](https://github.com/core-ds/core-components/commit/3cd3c63e5ff88066599d0944a2d3183e63150664)) +* **calendar-input:** add popover z-index ([#924](https://github.com/core-ds/core-components/issues/924)) ([378286d](https://github.com/core-ds/core-components/commit/378286d746ca33aeb755617270f66310712d1c61)) +* **chart:** added border radius to bar charts ([cfd0ad2](https://github.com/core-ds/core-components/commit/cfd0ad2c23a2b80de0bc5dfae7b65a14263e37e9)) +* **checkbox:** состояние ошибки ([#909](https://github.com/core-ds/core-components/issues/909)) ([f81d7d8](https://github.com/core-ds/core-components/commit/f81d7d8ecade7418a2015d57f5cf3a9f31779174)) +* **checkbox-group:** add click theme ([967d585](https://github.com/core-ds/core-components/commit/967d58538c5537fc2b3ac583fb742ebaef86109e)) +* **circular-progress-bar:** new size S ([d34db5c](https://github.com/core-ds/core-components/commit/d34db5cca682bc63f948a0dad322604c8044a6b8)) +* **circular-progress-bar:** ReactNode as title or subtitle ([#1023](https://github.com/core-ds/core-components/issues/1023)) ([7ae6df9](https://github.com/core-ds/core-components/commit/7ae6df9d2e4253f9a94532d155e81032cd96c810)) +* **code-input:** add component ([#932](https://github.com/core-ds/core-components/issues/932)) ([dc40cb5](https://github.com/core-ds/core-components/commit/dc40cb5b28322b4a2dc5735b354a7d45cf34adb9)) +* **collapse:** reset height to auto ([#822](https://github.com/core-ds/core-components/issues/822)) ([f533e3b](https://github.com/core-ds/core-components/commit/f533e3ba1eab5f41539c39ca3b97f698e90ca687)) +* **confirmation:** compact code-input if slotsCount > 6 ([99be0e1](https://github.com/core-ds/core-components/commit/99be0e1744d9782824756c8992fd4b986a589dd7)) +* **confirmation:** большое обновление компонента ([#958](https://github.com/core-ds/core-components/issues/958)) ([3e61e7e](https://github.com/core-ds/core-components/commit/3e61e7e6529662d8fb96acb2898a29fd9c1917ab)) +* **confirmation:** компактный code-input когда символов > 6 ([633d1ff](https://github.com/core-ds/core-components/commit/633d1ffd66c7c9d949c3996f6d4d739a4fcb6b21)) +* **custom-button:** add custom-button component ([983bcd7](https://github.com/core-ds/core-components/commit/983bcd7119c6f674ed15ed5bfe069349449f84c8)) +* **date-input:** add some improvements ([#971](https://github.com/core-ds/core-components/issues/971)) ([47756ca](https://github.com/core-ds/core-components/commit/47756ca1d4eea89f78ed7234e95c02e51dd72e49)) +* **docs:** change readme ([6b11f40](https://github.com/core-ds/core-components/commit/6b11f40fde62d202a500e0bfca4a42b95497d041)) +* **file-upload-item:** обновлен внешний вид ([#902](https://github.com/core-ds/core-components/issues/902)) ([d0f7d1e](https://github.com/core-ds/core-components/commit/d0f7d1ebdf302711a01549e86d0d8a5129b66d82)) +* **filter-tag:** new component ([#1035](https://github.com/core-ds/core-components/issues/1035)) ([f97e9c5](https://github.com/core-ds/core-components/commit/f97e9c59062e56f3bafa855450a33b5f67497143)) +* **hatching-progress-bar:** add component ([#1012](https://github.com/core-ds/core-components/issues/1012)) ([a25a579](https://github.com/core-ds/core-components/commit/a25a5793df91c9e9cf213c7d1215c771c1851141)) +* **icon-view:** add draft component ([f0ab46f](https://github.com/core-ds/core-components/commit/f0ab46fc5241c3856962f19315213c3e45b6c05b)) +* **icon-view:** add tests, some refactoring ([4fee755](https://github.com/core-ds/core-components/commit/4fee755b826024a02f2dab9e9573088284185380)) +* **icon-view:** refactoring ([2579bb0](https://github.com/core-ds/core-components/commit/2579bb016cfdeef0ff0e177f231a1d1a4715b0af)) +* **icon-view:** updates ([7b17f5f](https://github.com/core-ds/core-components/commit/7b17f5ffca39243a13d57fdbd0da31041dc0ea98)) +* **list:** added list & typography presets ([#1047](https://github.com/core-ds/core-components/issues/1047)) ([67b6a77](https://github.com/core-ds/core-components/commit/67b6a77d1327b090b010eb061f83a2e6a0cb67b9)) +* **modal:** update styles ([#1024](https://github.com/core-ds/core-components/issues/1024)) ([fdf2cdc](https://github.com/core-ds/core-components/commit/fdf2cdca9f785b27cd5d3998245a34d42e1240d1)) +* **picker-button:** gap между picker-button и popover в 8px ([#935](https://github.com/core-ds/core-components/issues/935)) ([9b3aa2b](https://github.com/core-ds/core-components/commit/9b3aa2b70b534d8e571baa62b973e1f67667ac43)) +* **select:** add select mobile ([#1016](https://github.com/core-ds/core-components/issues/1016)) ([b3cfb0d](https://github.com/core-ds/core-components/commit/b3cfb0d0e9496ba2e4260e962eaf3f9cf85635c6)) +* add extra classes for radio and checkbox components ([#1039](https://github.com/core-ds/core-components/issues/1039)) ([c3ed089](https://github.com/core-ds/core-components/commit/c3ed089360b25d0f7712f2e7608c5a23f11a95df)) +* add extra content class name prop for radio and checkbox components ([#1048](https://github.com/core-ds/core-components/issues/1048)) ([3c076b9](https://github.com/core-ds/core-components/commit/3c076b939a64dff8f9c66bd65f474ccea76c8cad)) +* **modal:** mobile header ([#1018](https://github.com/core-ds/core-components/issues/1018)) ([54b879f](https://github.com/core-ds/core-components/commit/54b879f500d1124a6956d3d5a57349c856a09904)) +* **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e)) +* **picker-button:** add conditional righAddons prop for custom icon ([#975](https://github.com/core-ds/core-components/issues/975)) ([d2544b7](https://github.com/core-ds/core-components/commit/d2544b74e56deda9cae735e5b3ca6a2d97aef94d)) +* **picker-button:** added new view and updated dropdown options ([#1013](https://github.com/core-ds/core-components/issues/1013)) ([050fb3e](https://github.com/core-ds/core-components/commit/050fb3eb6fd6dde057bbfcad5dd807d354125b63)) +* **popover:** add availableHieght prop, update related snapshots ([43b4ebd](https://github.com/core-ds/core-components/commit/43b4ebd6ba092f22d0dfc845f3f0113b390317dc)), closes [#758](https://github.com/core-ds/core-components/issues/758) +* **progress-bar:** add size prop, additional views, new bg color ([#996](https://github.com/core-ds/core-components/issues/996)) ([63702f7](https://github.com/core-ds/core-components/commit/63702f7d9637e1fe3da502d7c91c4284453b3b48)) +* **select:** add OptionsListWithApply ([#948](https://github.com/core-ds/core-components/issues/948)) ([d8ef8dd](https://github.com/core-ds/core-components/commit/d8ef8dd257dfc100095c923c4f3e317787ed1877)) +* **select:** добавлено свойство z-index для поповера ([#871](https://github.com/core-ds/core-components/issues/871)) ([4a53483](https://github.com/core-ds/core-components/commit/4a534835a9e6c9ec7793733467194536cfd96a91)) +* **select:** чекбоксы в выпадашке множественного выбора [#903](https://github.com/core-ds/core-components/issues/903)) ([f5638ef](https://github.com/core-ds/core-components/commit/f5638ef589468de0dc0473d30871035d8c4efab5)) +* **table:** компоненты для построения таблиц ([#911](https://github.com/core-ds/core-components/issues/911)) ([4ac648a](https://github.com/core-ds/core-components/commit/4ac648abd4de08bf68babc2f122f432d5b14080e)) +* **themes:** introducing intranet theme ([#983](https://github.com/core-ds/core-components/issues/983)) ([85eb9cf](https://github.com/core-ds/core-components/commit/85eb9cfffeef31b886c5123d6333e177c261ac62)) +* **tooltip:** added anchor props ([#1034](https://github.com/core-ds/core-components/issues/1034)) ([822031b](https://github.com/core-ds/core-components/commit/822031b3941184689a2a7ed9938c4ec44debc444)) +* **typography:** новый компонент Typography.TitleMobile ([#1003](https://github.com/core-ds/core-components/issues/1003)) ([9b03cf9](https://github.com/core-ds/core-components/commit/9b03cf90422b05cc927ed98959708430812d1a50)) +* Исправить импорты в сторях. ([#1009](https://github.com/core-ds/core-components/issues/1009)) ([6f7e393](https://github.com/core-ds/core-components/commit/6f7e39350fd572dd3e74c4819829f85c4066b170)) +* Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7)) +* **status:** добавлено 10% прозрачности в цвет фона ([#896](https://github.com/core-ds/core-components/issues/896)) ([b55c62b](https://github.com/core-ds/core-components/commit/b55c62b49cc52a15ff7497b9ad329773fba15959)) +* **stepped-progress-bar:** add view prop, change bg color ([#1000](https://github.com/core-ds/core-components/issues/1000)) ([3e16926](https://github.com/core-ds/core-components/commit/3e1692673e694e3fef2913201e18e8a2e21fc980)) +* **tabs:** add xxs xs sizes to secondary view and fix heights ([#985](https://github.com/core-ds/core-components/issues/985)) ([dd20933](https://github.com/core-ds/core-components/commit/dd20933f7c9a8f08920f7ad21bacb25983d3e93e)) +* **tooltip:** add availableHeight and preventOverflow props ([b401524](https://github.com/core-ds/core-components/commit/b401524b0eb0b9e06593883a889b99198982c718)), closes [#758](https://github.com/core-ds/core-components/issues/758) +* **typography:** export types ([#940](https://github.com/core-ds/core-components/issues/940)) ([498227c](https://github.com/core-ds/core-components/commit/498227c272659a1ebf890eee61c6fecdd110faee)) +* **vars:** build color-mod ([#953](https://github.com/core-ds/core-components/issues/953)) ([aa64366](https://github.com/core-ds/core-components/commit/aa64366d970be46776d23c9d13ebec413b2ac4d9)) +* **vars:** updated typography ([#981](https://github.com/core-ds/core-components/issues/981)) ([95bcce8](https://github.com/core-ds/core-components/commit/95bcce8e07467c635e2a93c55edfb3550a533ba4)) +* обновлённая темизация иконок в инпутах ([ab90d60](https://github.com/core-ds/core-components/commit/ab90d602f239176d0771db38f9cc29dc02a35566)) +* **file-upload-item:** добавлен пропс download ([#844](https://github.com/core-ds/core-components/issues/844)) ([db2a4ca](https://github.com/core-ds/core-components/commit/db2a4ca27ee7a64721138c7c2e918b4657c75489)) +* проставлен role=alert для ошибок ([#850](https://github.com/core-ds/core-components/issues/850)) ([dc634a3](https://github.com/core-ds/core-components/commit/dc634a3d008accfab10192ce234c12ef0ecc7fa9)) +* **amount-input:** add integers only mode ([#766](https://github.com/core-ds/core-components/issues/766)) ([27a2535](https://github.com/core-ds/core-components/commit/27a2535f2de8d787e666c08a8fbfeb67d762f9a1)) +* **amount-input:** allow to use custom suffix ([#767](https://github.com/core-ds/core-components/issues/767)) ([27d9d02](https://github.com/core-ds/core-components/commit/27d9d02fb619fa5946fb3cb678d9b742d74a745b)) +* **attach:** add additional classNames props ([#783](https://github.com/core-ds/core-components/issues/783)) ([bc8e865](https://github.com/core-ds/core-components/commit/bc8e86512a95b8690d2115a71a299c19195fa58d)) +* **attach:** simulate controlled state ([#760](https://github.com/core-ds/core-components/issues/760)) ([5d312bf](https://github.com/core-ds/core-components/commit/5d312bf632cc716bfc7ecb7b487c4af812838aa9)), closes [#743](https://github.com/core-ds/core-components/issues/743) +* **calendar-input:** uses date-input ([#752](https://github.com/core-ds/core-components/issues/752)) ([509dba2](https://github.com/core-ds/core-components/commit/509dba26913ccf6df859a200aa476eeef1df2ddc)) +* **calendar-input:** переход к темизации цвета иконки ([adf1dfd](https://github.com/core-ds/core-components/commit/adf1dfd080c1986976a57fee448183e762892eb0)) +* **chart:** add component ([#835](https://github.com/core-ds/core-components/issues/835)) ([17d840b](https://github.com/core-ds/core-components/commit/17d840b9f9f64474491d3ec58d3cda53ad07f0ca)) +* **chart:** added chart component ([1119943](https://github.com/core-ds/core-components/commit/11199435e9ab53ae159707e94714a34952ad56c1)) +* **chart:** added description ([8275346](https://github.com/core-ds/core-components/commit/827534640af0c0b06c1105755e9435d43cae8acd)) +* **chart:** added props for legend icons height ([5c9b321](https://github.com/core-ds/core-components/commit/5c9b32154e6f39cddd3ac9668830959adba64648)) +* **chart:** bar radius ([e39251a](https://github.com/core-ds/core-components/commit/e39251a37a52b6f434932439da0b86a03a26d901)) +* **chart:** beautifyed ([67cc96e](https://github.com/core-ds/core-components/commit/67cc96e6afc020c3af5491d3d7ba0b89f50dbaf3)) +* **chart:** edited doc ([8728271](https://github.com/core-ds/core-components/commit/8728271dc7f733c9b14a27c83a7136c22ef39ed6)) +* **chart:** fix doc ([9d1e888](https://github.com/core-ds/core-components/commit/9d1e8889615f0701a43a9fbceca867557002ef31)) +* **chart:** fixed after pull master ) ([4c7d241](https://github.com/core-ds/core-components/commit/4c7d241da264cde81e50573f96a2f035c31306e1)) +* **chart:** fixed build error ([2efdd22](https://github.com/core-ds/core-components/commit/2efdd22f27e8229b2ad4cb7d355f61b218ea1bc1)) +* **chart:** fixed comments ([a611b9c](https://github.com/core-ds/core-components/commit/a611b9c1c9bab1d5a15c2021bff270e9bbf5a934)) +* **chart:** fixed comments ([7ad1caf](https://github.com/core-ds/core-components/commit/7ad1caf5be9f2da6a218b2c97cc7d96efb4d286d)) +* **chart:** fixed comments ([555acb6](https://github.com/core-ds/core-components/commit/555acb699549c52f85d0dd58009ab1692344eb44)) +* **chart:** fixed comments ([379e53d](https://github.com/core-ds/core-components/commit/379e53ddf8c857424600d5fc49b41c03f5ac11ea)) +* **chart:** fixed global styles css ([2f8f139](https://github.com/core-ds/core-components/commit/2f8f139137090f185b1c3c2333fe7ceee7a1fff8)) +* **chart:** more description ([9a4c076](https://github.com/core-ds/core-components/commit/9a4c0762782c2f8ccee0e0c7c660514a10119960)) +* **chart:** pulled master ([176f7ae](https://github.com/core-ds/core-components/commit/176f7ae6e7cdb2a3e18d2136523e5be6ecdbde3e)) +* **chart:** resolved conflicts ([7f734ba](https://github.com/core-ds/core-components/commit/7f734bab0347af6e5d56d717d8b5cc0cf192f9f3)) +* **chart:** добавлена возможность скруглять углы и возможность отображать подписи значений для графиков типа bar ([4d81ab5](https://github.com/core-ds/core-components/commit/4d81ab5601b2ed38bc6f0f1187cf7c80c79fe50a)) +* **confirmation:** add custom countdown content, change time format ([#804](https://github.com/core-ds/core-components/issues/804)) ([b87ace1](https://github.com/core-ds/core-components/commit/b87ace190013cc873133bd1fff23cb6ae0ae3800)) +* **confirmation:** design update, new type of error "overlimit" and blocking input ([#841](https://github.com/core-ds/core-components/issues/841)) ([1ea5d31](https://github.com/core-ds/core-components/commit/1ea5d3117552f7cc9fcd78092edf634d9020b693)) +* **date-input:** add component ([#751](https://github.com/core-ds/core-components/issues/751)) ([4b94bee](https://github.com/core-ds/core-components/commit/4b94beec36acc73ac6c62cf37f87061c0ada4b35)) +* **dropzone:** add block prop ([#813](https://github.com/core-ds/core-components/issues/813)) ([39bf4c3](https://github.com/core-ds/core-components/commit/39bf4c3158525d419c75aedec8be81e4a4bb90da)) +* **dropzone:** design improvements (PDS-282) ([#829](https://github.com/core-ds/core-components/issues/829)) ([437ec3c](https://github.com/core-ds/core-components/commit/437ec3c80c507a37c8a24106a6ee6514abd68d04)) +* **file-upload-item:** custom icon ([#849](https://github.com/core-ds/core-components/issues/849)) ([59b8925](https://github.com/core-ds/core-components/commit/59b8925fbb9c631534c49c8dbb68cf493678e9e5)) +* **gallery:** add `canDownload` image prop, some refactoring ([#837](https://github.com/core-ds/core-components/issues/837)) ([b0c6665](https://github.com/core-ds/core-components/commit/b0c6665bb6a3d4b1e9d5bc176149f63ca2bd8542)) +* **gallery:** add component ([#815](https://github.com/core-ds/core-components/issues/815)) ([7ffd20e](https://github.com/core-ds/core-components/commit/7ffd20e2d007f658223d29aa943639c13ad51342)), closes [#774](https://github.com/core-ds/core-components/issues/774) [#795](https://github.com/core-ds/core-components/issues/795) +* **icon-button:** added 'target' attribute, when IconButton is link ([#823](https://github.com/core-ds/core-components/issues/823)) ([b2aab6b](https://github.com/core-ds/core-components/commit/b2aab6be98e01d0e99863f016e08bde384a4ff3c)) +* **icon-button:** Rest props for IconButton from Button ([#805](https://github.com/core-ds/core-components/issues/805)) ([ee4e170](https://github.com/core-ds/core-components/commit/ee4e170b6b59800e283080d36bddfdcfe4b57561)) +* **intl-phone-input:** hide select for countries when one country ([#809](https://github.com/core-ds/core-components/issues/809)) ([bad50af](https://github.com/core-ds/core-components/commit/bad50aff46ab4af5416510944802451873cd08bc)) +* **password-input:** show right addons (PDS-283) ([#828](https://github.com/core-ds/core-components/issues/828)) ([b255acd](https://github.com/core-ds/core-components/commit/b255acdcdbe37b546c6c9100a1645609439af430)) +* **popover:** add useAnchorWidth prop ([#826](https://github.com/core-ds/core-components/issues/826)) ([8df55c4](https://github.com/core-ds/core-components/commit/8df55c4c496467c363c5c09c14d1bd08a9709ebf)), closes [#787](https://github.com/core-ds/core-components/issues/787) +* **select:** controlled open ([#839](https://github.com/core-ds/core-components/issues/839)) ([95d0470](https://github.com/core-ds/core-components/commit/95d0470a86e1a54f4cb4b789bb7e3281a1f0a401)) +* **select:** переход к темизации цвета иконки ([112cd95](https://github.com/core-ds/core-components/commit/112cd95242e27f5065eb2a8349d3afbddfdee638)) +* **themes:** обновлённые темы для calendar-input и select ([5ae76c3](https://github.com/core-ds/core-components/commit/5ae76c314bf33236767056b77969ca7003057532)) +* change error type to ReactNode ([#825](https://github.com/core-ds/core-components/issues/825)) ([c6d95c1](https://github.com/core-ds/core-components/commit/c6d95c1c6239f2b2a3bf2c1639554d8500e794f3)) +* dark themes ([#778](https://github.com/core-ds/core-components/issues/778)) ([d848d16](https://github.com/core-ds/core-components/commit/d848d165b59182e6521d28efc2aadeecebc00d93)) +* **tag:** add inverted colors ([#784](https://github.com/core-ds/core-components/issues/784)) ([d3681ae](https://github.com/core-ds/core-components/commit/d3681aeefe02e5f481d066013911a1877a165bb2)) +* **tooltip:** add TooltipResponsive, add `fallbackPlacements` prop ([#780](https://github.com/core-ds/core-components/issues/780)) ([61d780c](https://github.com/core-ds/core-components/commit/61d780c750bd9c0331d275f1b12b0512bb3d2049)) +* **tooltip:** update shadow and arrow size/position ([2d40988](https://github.com/core-ds/core-components/commit/2d40988f3c376c51907aa8a4845ba25c7c43a2f4)) +* **typography:** add ref ([#834](https://github.com/core-ds/core-components/issues/834)) ([976b16d](https://github.com/core-ds/core-components/commit/976b16dd9ae68c31999bffb3506623db05033ad4)) +* **vars:** updated colors and typography from latest alfa-ui-primitives ([#803](https://github.com/core-ds/core-components/issues/803)) ([0d5b2a3](https://github.com/core-ds/core-components/commit/0d5b2a30a78e70392dd505790a92bc3bc83f9386)) +* add inactive controls (PDS-266) ([#765](https://github.com/core-ds/core-components/issues/765)) ([ec02c89](https://github.com/core-ds/core-components/commit/ec02c89ab6bf038c026ca0a72b3185525334840a)) +* add mods colors ([#770](https://github.com/core-ds/core-components/issues/770)) ([fe985f4](https://github.com/core-ds/core-components/commit/fe985f467b4d47a5152e168d2ab3846872d1a574)) +* custom components for button and link ([#814](https://github.com/core-ds/core-components/issues/814)) ([a623dd0](https://github.com/core-ds/core-components/commit/a623dd021ef611f9994a6587ba6a0d0ee9d8929c)) +* **bottom-sheet:** fix marker gap, fix animation duration ([#750](https://github.com/core-ds/core-components/issues/750)) ([cb04ed8](https://github.com/core-ds/core-components/commit/cb04ed8cc214fac9dba32a0ab39a4399743d5bfc)) +* **confirmation:** fix timer, some loader refactoring ([#754](https://github.com/core-ds/core-components/issues/754)) ([187bb0e](https://github.com/core-ds/core-components/commit/187bb0e72a75c62b117a49917976903257d90bb7)) +* **input:** input mobile theme (PDS-241) ([#737](https://github.com/core-ds/core-components/issues/737)) ([88f6f7c](https://github.com/core-ds/core-components/commit/88f6f7c58968b9564970eaa3d759aa2bc275ca7e)) +* **stepped-progress-bar:** add component ([#747](https://github.com/core-ds/core-components/issues/747)) ([f82e9af](https://github.com/core-ds/core-components/commit/f82e9af075e12e5a34751efc5c7f427283e75c1b)) +* add mobile theme for tag, radio, checkbox (PDS-244/247/248) ([#717](https://github.com/core-ds/core-components/issues/717)) ([36e2d99](https://github.com/core-ds/core-components/commit/36e2d99c716a03e7f319439df9ca47ec43ad4b71)) +* checkbox/radio/switch design updates (PDS-252) ([#735](https://github.com/core-ds/core-components/issues/735)) ([62f3c63](https://github.com/core-ds/core-components/commit/62f3c63279872a80ffb1c018b08addf897597b26)) +* slider input mobile theme (PDS-242) ([#738](https://github.com/core-ds/core-components/issues/738)) ([6e924aa](https://github.com/core-ds/core-components/commit/6e924aa90b63b914b6f5690766e41cddabe18e19)) +* **backdrop:** add component ([948a6c2](https://github.com/core-ds/core-components/commit/948a6c2fb5ec58edb2d087691ce4713d75da6e35)) +* **backdrop:** add component ([2b87958](https://github.com/core-ds/core-components/commit/2b87958e51449645c58bbd02552ce7a908c6bab8)) +* **badge:** add icon color ([d9e9065](https://github.com/core-ds/core-components/commit/d9e906596d157a5e3d7844bbecfb96f64d9f44e1)) +* **badge:** add screenshots ([3bbc8d0](https://github.com/core-ds/core-components/commit/3bbc8d032b0a267e9e6e949af5db6c955e25fb50)) +* **bottom-sheet:** new component (PDS-228) ([#645](https://github.com/core-ds/core-components/issues/645)) ([1f7391d](https://github.com/core-ds/core-components/commit/1f7391df16a270d8a3a28b8ebaf98d0ed0928bc8)), closes [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) +* **button:** add inverted ([#649](https://github.com/core-ds/core-components/issues/649)) ([be321b0](https://github.com/core-ds/core-components/commit/be321b07e99d20824138ad65141f3fbed1b6e315)), closes [#658](https://github.com/core-ds/core-components/issues/658) [#657](https://github.com/core-ds/core-components/issues/657) +* **button:** add loader minimal display interval ([#634](https://github.com/core-ds/core-components/issues/634)) ([d2f7edc](https://github.com/core-ds/core-components/commit/d2f7edc52c3e43ce3f5db8250446227b869ab731)) +* **button:** experimental active transform (site theme) ([a741e4f](https://github.com/core-ds/core-components/commit/a741e4fb73716902e6a72957e672921c21e7696b)) +* **button:** fix version ([#648](https://github.com/core-ds/core-components/issues/648)) ([ec51599](https://github.com/core-ds/core-components/commit/ec5159910a7fdc103d4f4e8d3d4198db3ffbdcc8)) +* **calendar-input:** toggle calendar on enter ([#618](https://github.com/core-ds/core-components/issues/618)) ([110e836](https://github.com/core-ds/core-components/commit/110e8369dffa9576ec07a517076a11d6ba2e80fa)) +* **calendar-range:** pass props to render calendar in popper ([#702](https://github.com/core-ds/core-components/issues/702)) ([4369e46](https://github.com/core-ds/core-components/commit/4369e462116dc1d240f95f811be67639b10dedb6)) +* **calendar-with-skeleton:** add component ([e940c88](https://github.com/core-ds/core-components/commit/e940c88703a7434e0db4ce0efc27a234455b449c)) +* **collapse:** add ability to change state using prop expanded ([#659](https://github.com/core-ds/core-components/issues/659)) ([809c835](https://github.com/core-ds/core-components/commit/809c8356f6dec0eeb9167bca8483f36bf5845455)) +* **confirmation:** add property for change retry button text ([#720](https://github.com/core-ds/core-components/issues/720)) ([c0f7688](https://github.com/core-ds/core-components/commit/c0f76888cffff8ad4169769bc4615429663352a5)) +* **confirmation:** set up signTitle prop as slot ([#672](https://github.com/core-ds/core-components/issues/672)) ([85e4786](https://github.com/core-ds/core-components/commit/85e47862689f373fd1904495ae7b86d998ad7cec)) +* **confirmation:** styles updates ([#636](https://github.com/core-ds/core-components/issues/636)) ([da00fc5](https://github.com/core-ds/core-components/commit/da00fc5bf80251f5104452ba326711788c2f7240)), closes [#1](https://github.com/core-ds/core-components/issues/1) +* **dark-theme-styles-injector:** add prop for selector ([#709](https://github.com/core-ds/core-components/issues/709)) ([f74cdc7](https://github.com/core-ds/core-components/commit/f74cdc7b312321fcb111f1c64f21714ee403e513)) +* **drawer:** update animtaion ([#643](https://github.com/core-ds/core-components/issues/643)) ([3a3cfc5](https://github.com/core-ds/core-components/commit/3a3cfc5be89908df476f77a35bcf6b9460ecb92a)) +* **dropzone:** add component ([#566](https://github.com/core-ds/core-components/issues/566)) ([693a720](https://github.com/core-ds/core-components/commit/693a720202d78d47e39954edff7b72335904d714)) +* **file-upload-item:** add component ([#571](https://github.com/core-ds/core-components/issues/571)) ([e627350](https://github.com/core-ds/core-components/commit/e627350b3eabfb36aaa67c17411a9b98b551867d)) +* **form-control:** add hidden label instead min-width ([a40ffcf](https://github.com/core-ds/core-components/commit/a40ffcf149282c83a834587a9486bc09b2929f90)) +* **icon-button:** add negative view ([#635](https://github.com/core-ds/core-components/issues/635)) ([7006116](https://github.com/core-ds/core-components/commit/70061167d1e00a786e28c53ebb26e4e174d03311)) +* **input:** pretty webkit autofill ([#660](https://github.com/core-ds/core-components/issues/660)) ([d50e83e](https://github.com/core-ds/core-components/commit/d50e83e627e1641c3634ace505b9abe163ef6530)) +* **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b)) +* **modal:** add layout to footer ([#644](https://github.com/core-ds/core-components/issues/644)) ([eb5a66e](https://github.com/core-ds/core-components/commit/eb5a66ef928df663f4ad0fe048b5d3097b4f4b72)) +* **modal:** fixed position ([#617](https://github.com/core-ds/core-components/issues/617)) ([77db054](https://github.com/core-ds/core-components/commit/77db054b18c1dba6713d9a9d99c95a1ef5c98e8e)) +* **notification:** add null autoCloseDelay ([#698](https://github.com/core-ds/core-components/issues/698)) ([6c2f0e0](https://github.com/core-ds/core-components/commit/6c2f0e083ec94797e8193b19d8bbafd042a5c2a5)) +* **password-input:** add password input (PDS-233) ([#691](https://github.com/core-ds/core-components/issues/691)) ([d872e4d](https://github.com/core-ds/core-components/commit/d872e4dd18fd5db472864fbc2676749b812da00f)) +* **phone-input:** add 'clearableCountyCode' prop ([#749](https://github.com/core-ds/core-components/issues/749)) ([d110ae7](https://github.com/core-ds/core-components/commit/d110ae76594ccbf7f6d8a5764d3c2a72b1ae9a26)) +* **plate:** update vars ([#668](https://github.com/core-ds/core-components/issues/668)) ([cbecef5](https://github.com/core-ds/core-components/commit/cbecef55e4cfc7231dcaa16b9220cc920547ff18)) +* **select:** add scroll handler ([#756](https://github.com/core-ds/core-components/issues/756)) ([b25351b](https://github.com/core-ds/core-components/commit/b25351b74913244fb131d4aa1bc09900be362258)) +* **select:** add useSelectWithLoading preset ([#693](https://github.com/core-ds/core-components/issues/693)) ([12d542f](https://github.com/core-ds/core-components/commit/12d542f11dddcd022c1ba895e4105115be0b98b2)) +* **select:** dont highlight first option on open ([015a084](https://github.com/core-ds/core-components/commit/015a084be6e5d837b6368afe6ca63a0a4c325435)) +* **select:** label + placeholder ([#535](https://github.com/core-ds/core-components/issues/535)) ([e821c41](https://github.com/core-ds/core-components/commit/e821c41e65d01ad517dab983685506614df0db89)) +* **skeleton:** add display var, change default to block ([#718](https://github.com/core-ds/core-components/issues/718)) ([27aaa60](https://github.com/core-ds/core-components/commit/27aaa605a958d932a52904556ac2fe1dd59356af)) +* **skeleton:** bg animation ([3dac97d](https://github.com/core-ds/core-components/commit/3dac97d18b9c7b2f63f55e2139a1adfb84710b88)) +* **skeleton:** bg animation ([37a52ad](https://github.com/core-ds/core-components/commit/37a52ad3e49f2873aaff86a768599d947a17c754)) +* **slider:** click theme ([15c308a](https://github.com/core-ds/core-components/commit/15c308a50e9fbcd8e40a8681f32aefea5b3d5cf9)) +* **slider-input:** design updates ([#673](https://github.com/core-ds/core-components/issues/673)) ([794e3cc](https://github.com/core-ds/core-components/commit/794e3cc99a3b61ec4faa630469dae7e49a56ee0a)) +* **space:** fix dataTestId ([#625](https://github.com/core-ds/core-components/issues/625)) ([a33ca6b](https://github.com/core-ds/core-components/commit/a33ca6ba791a43252b09c5a6d81dbd206aaec2d7)) +* **stack:** add new component ([#612](https://github.com/core-ds/core-components/issues/612)) ([c520f91](https://github.com/core-ds/core-components/commit/c520f91cd22bb9e23fd2f428719865b4c7d5a2a6)) +* **tag:** adjusted colors ([#667](https://github.com/core-ds/core-components/issues/667)) ([ded4ac4](https://github.com/core-ds/core-components/commit/ded4ac4a4e02ee8ec4efdc6d990455caa3ab94bb)) +* **textarea:** add value counter ([#695](https://github.com/core-ds/core-components/issues/695)) ([cbc6bd3](https://github.com/core-ds/core-components/commit/cbc6bd3eaa48e3df2791d23e156c7c664d67ff49)) +* **themes:** confirmation mobile theme ([a85233c](https://github.com/core-ds/core-components/commit/a85233c1e859e933e1c51997678c8a8c6134e353)) +* **tooltip:** add hint view ([#688](https://github.com/core-ds/core-components/issues/688)) ([9f03cd5](https://github.com/core-ds/core-components/commit/9f03cd5956dd8b17025ee9947a10bc059a339846)) +* **tooltip:** add target ref property ([#755](https://github.com/core-ds/core-components/issues/755)) ([9aa962d](https://github.com/core-ds/core-components/commit/9aa962d8b280e8d6af8ac4324a78b4bdebbfc536)) +* **typography:** add rest props ([#682](https://github.com/core-ds/core-components/issues/682)) ([51e1cf8](https://github.com/core-ds/core-components/commit/51e1cf89028c788bfcdbc21ea16acbbe190b5db9)) +* **typography:** monospaceNumbers prop (PDS-255) ([#697](https://github.com/core-ds/core-components/issues/697)) ([42d16a6](https://github.com/core-ds/core-components/commit/42d16a62f6d0781eba44dc1e0b76b28cae37d89a)) +* **vars:** add border-radius-xs ([a4bd8ff](https://github.com/core-ds/core-components/commit/a4bd8ff44d9ed7cf68ca2b0994ab61a80ed358e2)) +* upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696)) ([bf8350e](https://github.com/core-ds/core-components/commit/bf8350ebfd238b6c63ac30545ac32ca933f498d6)), closes [#708](https://github.com/core-ds/core-components/issues/708) [#707](https://github.com/core-ds/core-components/issues/707) [#714](https://github.com/core-ds/core-components/issues/714) [#716](https://github.com/core-ds/core-components/issues/716) [#690](https://github.com/core-ds/core-components/issues/690) [#701](https://github.com/core-ds/core-components/issues/701) [#699](https://github.com/core-ds/core-components/issues/699) [#698](https://github.com/core-ds/core-components/issues/698) [#693](https://github.com/core-ds/core-components/issues/693) [#699](https://github.com/core-ds/core-components/issues/699) [#698](https://github.com/core-ds/core-components/issues/698) [#693](https://github.com/core-ds/core-components/issues/693) [#705](https://github.com/core-ds/core-components/issues/705) [#705](https://github.com/core-ds/core-components/issues/705) [#709](https://github.com/core-ds/core-components/issues/709) [#703](https://github.com/core-ds/core-components/issues/703) [#695](https://github.com/core-ds/core-components/issues/695) [#673](https://github.com/core-ds/core-components/issues/673) [#703](https://github.com/core-ds/core-components/issues/703) [#709](https://github.com/core-ds/core-components/issues/709) [#673](https://github.com/core-ds/core-components/issues/673) [#695](https://github.com/core-ds/core-components/issues/695) [#645](https://github.com/core-ds/core-components/issues/645) [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) [#712](https://github.com/core-ds/core-components/issues/712) [#713](https://github.com/core-ds/core-components/issues/713) [#719](https://github.com/core-ds/core-components/issues/719) [#720](https://github.com/core-ds/core-components/issues/720) [#718](https://github.com/core-ds/core-components/issues/718) [#712](https://github.com/core-ds/core-components/issues/712) [#713](https://github.com/core-ds/core-components/issues/713) [#719](https://github.com/core-ds/core-components/issues/719) [#642](https://github.com/core-ds/core-components/issues/642) [#642](https://github.com/core-ds/core-components/issues/642) [#646](https://github.com/core-ds/core-components/issues/646) [#646](https://github.com/core-ds/core-components/issues/646) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#634](https://github.com/core-ds/core-components/issues/634) [#635](https://github.com/core-ds/core-components/issues/635) [#648](https://github.com/core-ds/core-components/issues/648) [#647](https://github.com/core-ds/core-components/issues/647) [#630](https://github.com/core-ds/core-components/issues/630) [#648](https://github.com/core-ds/core-components/issues/648) [#630](https://github.com/core-ds/core-components/issues/630) [#669](https://github.com/core-ds/core-components/issues/669) [#720](https://github.com/core-ds/core-components/issues/720) [#718](https://github.com/core-ds/core-components/issues/718) [#691](https://github.com/core-ds/core-components/issues/691) [#691](https://github.com/core-ds/core-components/issues/691) [#723](https://github.com/core-ds/core-components/issues/723) [#702](https://github.com/core-ds/core-components/issues/702) [#723](https://github.com/core-ds/core-components/issues/723) [#702](https://github.com/core-ds/core-components/issues/702) [#708](https://github.com/core-ds/core-components/issues/708) [#707](https://github.com/core-ds/core-components/issues/707) [#714](https://github.com/core-ds/core-components/issues/714) [#722](https://github.com/core-ds/core-components/issues/722) +* **alert:** add component ([#548](https://github.com/core-ds/core-components/issues/548)) ([264cbf8](https://github.com/core-ds/core-components/commit/264cbf8f7465d2ecaf043bf0f67530e040fc83f6)) +* **amount-input:** changed size L (72 → 64), added size XL (72) ([a2c0b7c](https://github.com/core-ds/core-components/commit/a2c0b7ce6c208183897064cd6235d69445e3afe5)) +* **badge:** reinvented icon view, visibleIconOutline prop ([#499](https://github.com/core-ds/core-components/issues/499)) ([bad9140](https://github.com/core-ds/core-components/commit/bad91400cb72edcd0878f7a07188e928d4bf3281)) +* **button:** add rel='noopener noreferrer' if target='blank' ([#522](https://github.com/core-ds/core-components/issues/522)) ([a1da871](https://github.com/core-ds/core-components/commit/a1da87118a32195ba844c239f5a0f73e164faa6f)) +* **button:** changed size L (72 → 64), added size XL (72) ([051d964](https://github.com/core-ds/core-components/commit/051d964e83fd7af3703c82facf75345eca66915b)) +* **button:** updated button colors and themes ([#500](https://github.com/core-ds/core-components/issues/500)) ([b34f12d](https://github.com/core-ds/core-components/commit/b34f12db8cebc53641a642de9164075d0ed2dacf)) +* **button:** updated xs button font-weight ([#599](https://github.com/core-ds/core-components/issues/599)) ([b05a554](https://github.com/core-ds/core-components/commit/b05a5547c97afba0d66489eca83a7a04d6c24283)) +* **calendar-input:** remove input width ([#576](https://github.com/core-ds/core-components/issues/576)) ([f0954b0](https://github.com/core-ds/core-components/commit/f0954b0724ead52ea0a60ab8baebd5dfa3638a01)) +* **calendar-range:** allow to select one-day range ([#491](https://github.com/core-ds/core-components/issues/491)) ([7fe56eb](https://github.com/core-ds/core-components/commit/7fe56eb7128146127b9b0732a945f11ee08980f3)) +* **cdn-icon:** add component ([#494](https://github.com/core-ds/core-components/issues/494)) ([a6df885](https://github.com/core-ds/core-components/commit/a6df885077c1c4a5ae76d110f6f5f6e369236182)) +* **confirmation:** add noAttemptsLeftMessage prop ([7dc0e02](https://github.com/core-ds/core-components/commit/7dc0e02074443fd68c13aa0ac54bd966e8968ffc)) +* **confirmation:** always show sms come link ([0a14a54](https://github.com/core-ds/core-components/commit/0a14a54b177ee72ccf8cd8b057ea48db0168c1fb)) +* **confirmation:** confirmation design updates ([69f26e4](https://github.com/core-ds/core-components/commit/69f26e415a195d863686076941b6a3f15f3d1d15)) +* **confirmation:** fix text ([40d4d6b](https://github.com/core-ds/core-components/commit/40d4d6b2261b2e0db79bc160266cc207a1ca3858)) +* **drawer:** add component ([#497](https://github.com/core-ds/core-components/issues/497)) ([5943188](https://github.com/core-ds/core-components/commit/594318886d581e6afca99fcebe9088c222aa3d52)) +* **form-control:** changed size L (72 → 64), added size XL (72) ([4a129f3](https://github.com/core-ds/core-components/commit/4a129f3ca3c80e94489cbc485018e6eb6e542244)) +* **grid:** add component ([#486](https://github.com/core-ds/core-components/issues/486)) ([96bd0f3](https://github.com/core-ds/core-components/commit/96bd0f34047fa4c8a877c75a60cc39f839f20b84)) +* **icon-button:** add component ([#505](https://github.com/core-ds/core-components/issues/505)) ([da8ba6e](https://github.com/core-ds/core-components/commit/da8ba6e4473da87d8043713a592368d500cd284f)) +* **icon-button:** inverted theme ([#550](https://github.com/core-ds/core-components/issues/550)) ([98c3691](https://github.com/core-ds/core-components/commit/98c36919f682041278aa31753f1d18be95358df1)) +* **input:** changed size L (72 → 64), added size XL (72) ([79699e3](https://github.com/core-ds/core-components/commit/79699e34d28075809e537b73911875ff5fc2d406)) +* **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917)) +* **intl-phone-input:** add onCountryChange handler ([#539](https://github.com/core-ds/core-components/issues/539)) ([f8c0cd6](https://github.com/core-ds/core-components/commit/f8c0cd618ced23bbb49a81cfee07c1f45ee20427)) +* **intl-phone-input:** changed size L (72 → 64), added size XL (72) ([9077b7f](https://github.com/core-ds/core-components/commit/9077b7f454035cdc7be611d526a5f9642ae4d76d)) +* **link:** set rel='noopener noreferrer' if target='_blank' ([#520](https://github.com/core-ds/core-components/issues/520)) ([08c556e](https://github.com/core-ds/core-components/commit/08c556ecc0944d121b23566ae54319a1a33899ba)), closes [#519](https://github.com/core-ds/core-components/issues/519) +* **modal:** reinvent modal ([#489](https://github.com/core-ds/core-components/issues/489)) ([06cb8ba](https://github.com/core-ds/core-components/commit/06cb8ba7f7a09445c04ab2a9871a86c1abf4a79c)) +* **mq:** change mobile-s to mobile-xs ([9abf5ba](https://github.com/core-ds/core-components/commit/9abf5bada45287a786610dd6cce7cc047d779012)) +* **notification-manager:** add component ([#565](https://github.com/core-ds/core-components/issues/565)) ([ad6ffab](https://github.com/core-ds/core-components/commit/ad6ffabb0f9665cd453b862279e96b7a1a6f359b)) +* **phone-input:** changed size L (72 → 64), added size XL (72) ([13257c5](https://github.com/core-ds/core-components/commit/13257c54543b2f1a870527093df11c532143dab9)) +* **popover:** change animation, add scale ([2e48a02](https://github.com/core-ds/core-components/commit/2e48a02a8f3f7ff9a6df48cf4e6337a8928f67c7)) +* **pure-input:** changed size L (72 → 64), added size XL (72) ([af4cfb5](https://github.com/core-ds/core-components/commit/af4cfb515a25c6dcae32a7e2a0730fe4f9e6e791)) +* **select:** add options-list width ([#578](https://github.com/core-ds/core-components/issues/578)) ([6f1c12b](https://github.com/core-ds/core-components/commit/6f1c12b9196d3ebf87e1ea3e0610f73b8832b771)) +* **select:** add optionsSize ([#577](https://github.com/core-ds/core-components/issues/577)) ([12f3b43](https://github.com/core-ds/core-components/commit/12f3b4342a3dada9db97eb80839a3d7adb9e3747)) +* **select:** add visible-options ([#506](https://github.com/core-ds/core-components/issues/506)) ([0154866](https://github.com/core-ds/core-components/commit/0154866bb8fc8308945d32f115b3ab1e46f98db6)) +* **select:** changed size L (72 → 64), added size XL (72) ([af5dc6a](https://github.com/core-ds/core-components/commit/af5dc6a4f5b52f45bc97f4cc16633aca499aa67a)) +* **select-with-tags:** added collapsed tag list ([#511](https://github.com/core-ds/core-components/issues/511)) ([fe1d551](https://github.com/core-ds/core-components/commit/fe1d551385e9122c205bbe7a679f02a6eb376569)) +* **select-with-tags:** changed size L (72 → 64), added size XL (72) ([523b96f](https://github.com/core-ds/core-components/commit/523b96fa79bc12972ec6ac748105ba20906ba236)) +* **select-with-tags:** design review fixes ([#472](https://github.com/core-ds/core-components/issues/472)) ([0ff989f](https://github.com/core-ds/core-components/commit/0ff989fa09e482a5e9bda1d64bf5eed9241fc451)) +* **skeleton:** updated default theme, click theme ([#549](https://github.com/core-ds/core-components/issues/549)) ([9bf9259](https://github.com/core-ds/core-components/commit/9bf9259d4d1efd73067ea548cdfaf3007b0f8839)) +* **slider-input:** changed size L (72 → 64), added size XL (72) ([f5fda56](https://github.com/core-ds/core-components/commit/f5fda569e0e73a06850914c1e494024a3aaab12c)) +* **status:** add component ([#546](https://github.com/core-ds/core-components/issues/546)) ([52a1f0b](https://github.com/core-ds/core-components/commit/52a1f0bd8578fe34d1c214b93a363e7b76621c17)) +* **tabs:** changed size L (72 → 64), added size XL (72) ([2043939](https://github.com/core-ds/core-components/commit/2043939c5ecdb03c9b84379a3cce21c6f6047530)) +* **tabs:** disabled view ([#513](https://github.com/core-ds/core-components/issues/513)) ([8bdb1a7](https://github.com/core-ds/core-components/commit/8bdb1a789f720c6ccd98ebed3f0ae3c84dbbf52e)) +* **tag:** changed size L (72 → 64), added size XL (72) ([ea43560](https://github.com/core-ds/core-components/commit/ea435601abb79b3bde9e34d60616239e2a0ef6bc)) +* **textarea:** changed size L (72 → 64), added size XL (72) ([175e360](https://github.com/core-ds/core-components/commit/175e360d5acb4eb146c81020fd65dc725588edee)) +* **themes:** list click theme ([#528](https://github.com/core-ds/core-components/issues/528)) ([e54ad60](https://github.com/core-ds/core-components/commit/e54ad605a9f873b06e0fe984bc87bcbb810a2541)) +* **themes:** updated click theme for tabs ([0a4c17e](https://github.com/core-ds/core-components/commit/0a4c17e5628f959d72e0ee6044ca56bd3c890d92)) +* **toast:** remove extra prop ([6a8167a](https://github.com/core-ds/core-components/commit/6a8167a6685a290efc30ac9fc285ddc4b62bd1fe)) +* **toast:** review fixes ([50fea1d](https://github.com/core-ds/core-components/commit/50fea1d764a2b99b66a1212fa56c98958e34f147)) +* **toast:** update popover ([9961bc8](https://github.com/core-ds/core-components/commit/9961bc8a15428c4417af9df9585d8fc55b6a154c)) +* **toast-plate:** add action button theming, fix addons align ([#514](https://github.com/core-ds/core-components/issues/514)) ([20a7c67](https://github.com/core-ds/core-components/commit/20a7c67e89e4b6d3d90a9f1da2eb1b428c8ebf73)) +* **tooltip:** add wrapper around children component ([#587](https://github.com/core-ds/core-components/issues/587)) ([a2ecbb6](https://github.com/core-ds/core-components/commit/a2ecbb67bd517b583284ec0b8365de9e58e753ed)) +* **vars:** 2px gap ([#544](https://github.com/core-ds/core-components/issues/544)) ([e401782](https://github.com/core-ds/core-components/commit/e40178290a02c45bd9ea23ab0deffabd74a69276)) +* **vars:** fresh colors ([10907ec](https://github.com/core-ds/core-components/commit/10907eca0f5556795529a90b41d2bc663ea01dfe)) +* **vars:** fresh colors from alfa-ui-primitives ([2051a0c](https://github.com/core-ds/core-components/commit/2051a0ce3caee3c1a70f36e8c84e575bcd528bab)) +* **vars:** introducing border-radius vars ([1a6fb28](https://github.com/core-ds/core-components/commit/1a6fb287bcfab50048c3a9100645b4dee8cd3395)) +* improve read-only behaviour (PDS-200) ([#502](https://github.com/core-ds/core-components/issues/502)) ([3b3c5e6](https://github.com/core-ds/core-components/commit/3b3c5e664a829351f09f97d742311396dd0c98c6)) +* size vars (xs/s/m/l/xl → 32/48/56/64/72) ([d7254d2](https://github.com/core-ds/core-components/commit/d7254d2963106663e8f04b84bc747b38e4f57632)) +* **with-suffix:** xl size ([d2bb796](https://github.com/core-ds/core-components/commit/d2bb7967b6756f8b06b3484c7900ef7637b1c777)) +* updated design tokens ([#516](https://github.com/core-ds/core-components/issues/516)) ([ef66b65](https://github.com/core-ds/core-components/commit/ef66b65bb35b2ef06292b8da709ccc335eb44735)) +* yet another fixes ([6ecd273](https://github.com/core-ds/core-components/commit/6ecd273b8900e9559e1b8a54a95d1874b4c4a7a3)) +* **amount-input:** added integerLength prop ([881af44](https://github.com/core-ds/core-components/commit/881af44b1823560d522ac07a7359cc6c5739ba0e)) +* **amount-input:** delete zero minor part in passed amount ([#484](https://github.com/core-ds/core-components/issues/484)) ([b787cb1](https://github.com/core-ds/core-components/commit/b787cb1ea1a56bc022470a644e4029bba623b151)) +* **button:** add conditions ([5f034f3](https://github.com/core-ds/core-components/commit/5f034f382fcb1dc1304c9c0b9ccdcff765c5c7fd)) +* **button:** add css to button ([34b23ed](https://github.com/core-ds/core-components/commit/34b23ed2885a39f00928c3df0e485d1966fe6ec0)) +* **button:** design review fixes ([e8f5faf](https://github.com/core-ds/core-components/commit/e8f5faf42b2ea98eff7d5914076a1916008b13b9)) +* **button:** transparent view ([e395049](https://github.com/core-ds/core-components/commit/e39504987bf7c3afb01fc78151bff182199d08cb)) +* **button:** update snapshorts ([29c36ac](https://github.com/core-ds/core-components/commit/29c36ac278407a04be7726996bf50f54c150ba97)) +* **button:** updated addons margin, use gaps ([514fb86](https://github.com/core-ds/core-components/commit/514fb863e41956be7f4888e03a886ab7d35029b1)) +* **calendar:** add component ([#376](https://github.com/core-ds/core-components/issues/376)) ([2994d02](https://github.com/core-ds/core-components/commit/2994d02b49ad172d601f0fc63f89dea20896fd7d)), closes [#2](https://github.com/core-ds/core-components/issues/2) [#2](https://github.com/core-ds/core-components/issues/2) [#413](https://github.com/core-ds/core-components/issues/413) +* **calendar:** add scrolling to selected year when open year select ([#471](https://github.com/core-ds/core-components/issues/471)) ([bf295ab](https://github.com/core-ds/core-components/commit/bf295ab281c80df550cd38d04e86f934e822f3eb)) +* **calendar-range:** add component ([#426](https://github.com/core-ds/core-components/issues/426)) ([7bf76d9](https://github.com/core-ds/core-components/commit/7bf76d9528ffae9b69bf6fdebf8a27e198393eaa)) +* **checkbox:** improved theming ([cb1d196](https://github.com/core-ds/core-components/commit/cb1d196ade34622d5b92fc0ec5c20af5f5e27d3c)) +* **checkbox:** size m ([9fdbf2b](https://github.com/core-ds/core-components/commit/9fdbf2ba938a5ef336020c17041ceaa6c524f1b0)) +* **collapse:** add component ([eea2a52](https://github.com/core-ds/core-components/commit/eea2a52de14dbada541735b7684090aee17a2bcd)) +* **collapse:** codestyle fixes ([74b780a](https://github.com/core-ds/core-components/commit/74b780a51fc0fb80b810e2e621fc08a1e0ca2dc6)) +* **collapse:** codestyle fixes again ([1cd37b7](https://github.com/core-ds/core-components/commit/1cd37b7894cc3b71dc29359c297ba15b261dea08)) +* **collapse:** fix icon ([5f64a69](https://github.com/core-ds/core-components/commit/5f64a69838d2e6803e0d744ce5b3699eefb600f8)) +* **collapse:** fixes ([81d48d0](https://github.com/core-ds/core-components/commit/81d48d0674be40241f781487df47c5fff6ad9658)) +* **collapse:** forgotten ref ([3a256fb](https://github.com/core-ds/core-components/commit/3a256fb74380b70bca89c9f491836caf5078e9cb)) +* **core-components-amount:** add click theme ([b4b0699](https://github.com/core-ds/core-components/commit/b4b0699dcffd2f505935489d66fd0d48b633ecf7)) +* **core-components-amount:** export CurrencyCodes ([1a6155a](https://github.com/core-ds/core-components/commit/1a6155a63655084895831094127404cdbcb0ef54)) +* **core-components-amount-input:** add forward ref ([5471887](https://github.com/core-ds/core-components/commit/5471887361dcb1383ae695f69cc13c201d713607)) +* **core-components-attach:** add Attach component ([#235](https://github.com/core-ds/core-components/issues/235)) ([71aa41c](https://github.com/core-ds/core-components/commit/71aa41c9383c09ae227a1df84585f5f760de350e)), closes [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) [#227](https://github.com/core-ds/core-components/issues/227) +* **core-components-badge:** add component ([#330](https://github.com/core-ds/core-components/issues/330)) ([eb1c617](https://github.com/core-ds/core-components/commit/eb1c617ed03366060f7a60a9bd13396159cfce72)), closes [#327](https://github.com/core-ds/core-components/issues/327) +* **core-components-bank-card:** add component draft ([#208](https://github.com/core-ds/core-components/issues/208)) ([93943b7](https://github.com/core-ds/core-components/commit/93943b7861d8c95ca365bc7545a87d493a793f1e)) +* **core-components-bank-card:** change caret color ([1b69839](https://github.com/core-ds/core-components/commit/1b698399bbcb3afaea80e81f0cbfa9d3d13074ff)) +* **core-components-button:** added nowrap ([#365](https://github.com/core-ds/core-components/issues/365)) ([99a87eb](https://github.com/core-ds/core-components/commit/99a87ebd4c97e325b7724b70991b00ca121601da)) +* **core-components-button:** button themes (click, corp, mobile) ([cf658c3](https://github.com/core-ds/core-components/commit/cf658c388bb0cbf06517b04b4c24f8e5715d8cbe)) +* **core-components-card-image:** add cardImage component ([#326](https://github.com/core-ds/core-components/issues/326)) ([06901af](https://github.com/core-ds/core-components/commit/06901af839f48e5051fc6195446687b756420fc7)) +* **core-components-confirmation:** add confirmation ([#230](https://github.com/core-ds/core-components/issues/230)) ([7a494ba](https://github.com/core-ds/core-components/commit/7a494bafb18af572babb18e7a4fa9a15c2fe6a30)) +* **core-components-confirmation:** fixes ([#311](https://github.com/core-ds/core-components/issues/311)) ([e56a137](https://github.com/core-ds/core-components/commit/e56a137a62e78e56ac63f3d701660fc8a7c5658a)) +* **core-components-confirmation:** separate error and error text ([#329](https://github.com/core-ds/core-components/issues/329)) ([03fc4fb](https://github.com/core-ds/core-components/commit/03fc4fb85fd9f5636493fdf6d79440227c8a0be0)) +* **core-components-fade:** add fade ([459d2c0](https://github.com/core-ds/core-components/commit/459d2c0111f0ab9a3fd6a22c46ed27cbcd1df6e0)) +* **core-components-form-control:** add addons classname ([707cd54](https://github.com/core-ds/core-components/commit/707cd547b2b695cb7585c996efcb8c070b789038)) +* **core-components-form-control:** change l-size height ([c87f908](https://github.com/core-ds/core-components/commit/c87f908fe8174e9d0e976153daac1e46e3a252bd)) +* **core-components-form-control:** set opactiy in disabled state ([#342](https://github.com/core-ds/core-components/issues/342)) ([586a8d1](https://github.com/core-ds/core-components/commit/586a8d15f1be9fe6ceea62ac2231c7ecb1125b7e)) +* **core-components-input:** add addons classname ([9f40cdc](https://github.com/core-ds/core-components/commit/9f40cdc2a79feea9b5b3d5cdb411676f0ff05f35)) +* **core-components-input:** add clear button, some improvements ([4f9a453](https://github.com/core-ds/core-components/commit/4f9a4537db28404281415c4354408386bc4c4021)) +* **core-components-input:** add css-var for clear button icon ([637286c](https://github.com/core-ds/core-components/commit/637286ca68bf9b25653298b4315c97bb145a2089)) +* **core-components-input:** add filled and focused classNames ([ebaac73](https://github.com/core-ds/core-components/commit/ebaac73103caf4601e8df7302af14f79f8a096d1)) +* **core-components-input:** add input wrapper ref ([9c1fba0](https://github.com/core-ds/core-components/commit/9c1fba07c233206eab0defe6e4341fdb0c8b3664)) +* **core-components-input:** add labelClassName ([8494b21](https://github.com/core-ds/core-components/commit/8494b21f3f2027a1439823c4e1237cb9add5cab9)) +* **core-components-input:** add ref tests ([9ed193c](https://github.com/core-ds/core-components/commit/9ed193c1f5f0f4a22a276877893e6d5de4c4a2a0)) +* **core-components-input:** hide clear if input is readonly ([#328](https://github.com/core-ds/core-components/issues/328)) ([93f7ba4](https://github.com/core-ds/core-components/commit/93f7ba429fb8e8f430d3dfadefe8375d6ea2e642)) +* **core-components-input:** update type ([9ab3733](https://github.com/core-ds/core-components/commit/9ab373369c5b692bd3632d43ef1afda7d9ffc63e)) +* **core-components-input:** updated input click theme ([#315](https://github.com/core-ds/core-components/issues/315)) ([69e6f81](https://github.com/core-ds/core-components/commit/69e6f81cc85fac5f5c988e2e409b82ad25ef8a6f)) +* **core-components-intl-phone-input:** add component ([#333](https://github.com/core-ds/core-components/issues/333)) ([4d7c71d](https://github.com/core-ds/core-components/commit/4d7c71d3ace0d44ba1045ab4d2774575e1db65f9)), closes [#336](https://github.com/core-ds/core-components/issues/336) [#334](https://github.com/core-ds/core-components/issues/334) +* **core-components-keyboard-focusable:** add component and hook ([#215](https://github.com/core-ds/core-components/issues/215)) ([f777f72](https://github.com/core-ds/core-components/commit/f777f729e9c880d15b79f58ae9a8f1d5fa6662b1)) +* **core-components-link:** add slots ([#337](https://github.com/core-ds/core-components/issues/337)) ([86f0886](https://github.com/core-ds/core-components/commit/86f0886129f9119a74a5a054232726f871c1634e)) +* **core-components-link:** updated colors and click theme ([573c785](https://github.com/core-ds/core-components/commit/573c78516a41194c9c802eb3ecfdbe7653730311)) +* **core-components-list:** adds a new component ([#296](https://github.com/core-ds/core-components/issues/296)) ([7d5a93d](https://github.com/core-ds/core-components/commit/7d5a93d8318a71d61da91c0bf1a2f88896242fee)) +* **core-components-list-header:** add component ([#344](https://github.com/core-ds/core-components/issues/344)) ([cce69f3](https://github.com/core-ds/core-components/commit/cce69f30d1671d4344e0a85f62516e1f7a1f9266)) +* **core-components-modal:** add modal ([2a71f1b](https://github.com/core-ds/core-components/commit/2a71f1bb2296306df359c9f051fbef44ca0abe6b)) +* **core-components-mq:** add component and hook ([#350](https://github.com/core-ds/core-components/issues/350)) ([6dbd11f](https://github.com/core-ds/core-components/commit/6dbd11f4e3dc369dd645638f46f49b4e0e6c13e6)) +* **core-components-notification:** add component ([#357](https://github.com/core-ds/core-components/issues/357)) ([c6644a0](https://github.com/core-ds/core-components/commit/c6644a018b97dfc68e327bcbcff2edae802921be)), closes [#351](https://github.com/core-ds/core-components/issues/351) +* **core-components-phone-input:** add phone-input ([#192](https://github.com/core-ds/core-components/issues/192)) ([42cedbf](https://github.com/core-ds/core-components/commit/42cedbf9583f1c836cb0825789b0d4b47fbbdddd)) +* **core-components-phone-input:** remove optional chaining ([#222](https://github.com/core-ds/core-components/issues/222)) ([d8a9ca2](https://github.com/core-ds/core-components/commit/d8a9ca2f004bb8bd1df31a5499ead7d7c28e0d80)) +* **core-components-plate:** add component ([62e18bf](https://github.com/core-ds/core-components/commit/62e18bf581651bca66a74c0d02b945522b452b4a)), closes [#340](https://github.com/core-ds/core-components/issues/340) +* **core-components-popover:** add classname for tooltip popover ([c837199](https://github.com/core-ds/core-components/commit/c837199eda8890806388f87a32d61cc88a4165dd)) +* **core-components-progress-bar:** add progress bar component ([39ee713](https://github.com/core-ds/core-components/commit/39ee713522f67f2744fc2f6b4fcb2ac861a55f41)) +* **core-components-pure-input:** change l-size height ([5287559](https://github.com/core-ds/core-components/commit/5287559cbc7a3beac54047884174b26c21cdf453)) +* **core-components-radio:** add radio component ([#183](https://github.com/core-ds/core-components/issues/183)) ([858c81b](https://github.com/core-ds/core-components/commit/858c81b7b3e6bef27b39e719bbecfe1d32f92d19)) +* **core-components-select:** add dataTestId ([83c5dd5](https://github.com/core-ds/core-components/commit/83c5dd5cf8b551a6dcc6c319a6ae69d32113ab34)) +* **core-components-select:** add missing changes ([053b512](https://github.com/core-ds/core-components/commit/053b512382028863c1bb2aa7c6c1e8296cbc29c4)) +* **core-components-select:** inputs & types ([#323](https://github.com/core-ds/core-components/issues/323)) ([0f4d547](https://github.com/core-ds/core-components/commit/0f4d547c3a5792e095de2011db2c6c1e9dbfb386)) +* **core-components-select:** show error icon and arrow both ([#299](https://github.com/core-ds/core-components/issues/299)) ([b563989](https://github.com/core-ds/core-components/commit/b563989a57bf64a9450915d0d0d73687f5358d06)) +* **core-components-skeleton:** adds a new component ([11e6ce9](https://github.com/core-ds/core-components/commit/11e6ce94c8bca6f5b91a9c04c2f750ec232aea23)) +* **core-components-skeleton:** changes styles ([379a8d9](https://github.com/core-ds/core-components/commit/379a8d971ce074242de47972382a78697038864d)) +* **core-components-slider:** add component ([#285](https://github.com/core-ds/core-components/issues/285)) ([57a645e](https://github.com/core-ds/core-components/commit/57a645e735af3218b77c92ce8a66b7efc64f53ad)) +* **core-components-slider-input:** add component ([#288](https://github.com/core-ds/core-components/issues/288)) ([901df73](https://github.com/core-ds/core-components/commit/901df73692bf019a06db7d6d056f2cb6ee9e5f8d)), closes [#294](https://github.com/core-ds/core-components/issues/294) +* **core-components-slider-input:** update stories ([d6a2937](https://github.com/core-ds/core-components/commit/d6a29370739d15427c961b58c553d22c9df87799)) +* **core-components-spinner:** add spinner component ([#360](https://github.com/core-ds/core-components/issues/360)) ([8c6e453](https://github.com/core-ds/core-components/commit/8c6e45341b0ac6232e2fc89ed6860bb8ccbc371c)) +* **core-components-tabs:** add tabs ([#149](https://github.com/core-ds/core-components/issues/149)) ([b08b668](https://github.com/core-ds/core-components/commit/b08b66861fd7c068a1db7e32d3d697ad13acbd6f)), closes [#175](https://github.com/core-ds/core-components/issues/175) [#200](https://github.com/core-ds/core-components/issues/200) +* **core-components-tabs:** addons and container class name ([#361](https://github.com/core-ds/core-components/issues/361)) ([68f1322](https://github.com/core-ds/core-components/commit/68f1322436a5d083a3a98a4405b1d94540e0b8dc)) +* **core-components-tabs:** remove gaps, add sizes ([da7d435](https://github.com/core-ds/core-components/commit/da7d4350b9fb46e8765ec65cf483c7aadab134c3)) +* **core-components-tag:** add click theme ([eeb2400](https://github.com/core-ds/core-components/commit/eeb24000b0f75d48a4780fe069a4698867006b8b)) +* **core-components-tag:** min-width for tags ([fce5ce3](https://github.com/core-ds/core-components/commit/fce5ce382e9b25190504ff3de3a5479527024afa)) +* **core-components-textarea:** add Textarea component ([#221](https://github.com/core-ds/core-components/issues/221)) ([a23b731](https://github.com/core-ds/core-components/commit/a23b73192a7ad3601ea3745f8ac2fdbfaf34346b)), closes [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) [#217](https://github.com/core-ds/core-components/issues/217) +* **core-components-textarea:** change l-size height ([f314bf6](https://github.com/core-ds/core-components/commit/f314bf63b9d1f5d539c53e310ede11c2a8cdd8c7)) +* **core-components-themes:** add tabs click theme ([0ffbc3f](https://github.com/core-ds/core-components/commit/0ffbc3f9d1edbdb13549957a7174871e365e0f40)) +* **core-components-themes:** add tabs site theme, improve plugin ([da5d9ec](https://github.com/core-ds/core-components/commit/da5d9ec07f16b328c15ebebbb55498e25ff866b1)) +* **core-components-themes:** add theming example ([aba4c8a](https://github.com/core-ds/core-components/commit/aba4c8a98a3f577dd89b5e8cf3a2ccfc54b2f16e)) +* **core-components-tooltip:** updated font size and popover shadow ([e0d54b1](https://github.com/core-ds/core-components/commit/e0d54b18ffaa632e52750f30bc6b2b3d710011ca)) +* **core-components-trap-focus:** add trap-focus ([a5be636](https://github.com/core-ds/core-components/commit/a5be6367b5a1683dae00a13dea1ab5bc103083cc)) +* **core-components-typography:** add responsive title ([#362](https://github.com/core-ds/core-components/issues/362)) ([d3af0cd](https://github.com/core-ds/core-components/commit/d3af0cd52bcdbf92a1716e993104360acafcdc61)) +* **core-components-vars:** add breakpoints ([#358](https://github.com/core-ds/core-components/issues/358)) ([9cd5699](https://github.com/core-ds/core-components/commit/9cd569915b4af8c3d92045aea23b2faa054ba241)) +* **core-components-vars:** add new typography styles ([#211](https://github.com/core-ds/core-components/issues/211)) ([7df831f](https://github.com/core-ds/core-components/commit/7df831f396525bec0c57264606a44abd2417a78c)) +* **core-components-vars:** introducing shadows vars ([defc486](https://github.com/core-ds/core-components/commit/defc486204d46ed5b431555b1fe8226dee2046c4)) +* **core-components-vars:** introducing shadows vars ([8ff8aba](https://github.com/core-ds/core-components/commit/8ff8aba0301a20ac652078f9df3f85f79a121ef6)) +* **core-components-vars:** update primitives ([#291](https://github.com/core-ds/core-components/issues/291)) ([d995190](https://github.com/core-ds/core-components/commit/d9951902b1d9325e7e7a88e302d23eafd2705643)) +* **core-components-vars:** updated colors addons ([5206618](https://github.com/core-ds/core-components/commit/5206618ffa8ad9a441120b871e8950196ed6540f)) +* **core-components-with-suffix:** add hoc ([7055c98](https://github.com/core-ds/core-components/commit/7055c98ca5c1c6dda33323522c5168bc6657850b)) +* **core-components-with-suffix:** add hoc ([#301](https://github.com/core-ds/core-components/issues/301)) ([df9b797](https://github.com/core-ds/core-components/commit/df9b79781d3f831360a71dbc0816f795b95e288f)) +* **input-autocomplete:** dont close popover on input click ([#445](https://github.com/core-ds/core-components/issues/445)) ([5b49e54](https://github.com/core-ds/core-components/commit/5b49e542d3e4433024152ba6099d3992a4fc66e3)) +* **input-autocomplete:** revert arrow ([07f0ef4](https://github.com/core-ds/core-components/commit/07f0ef45a7cdd27132861932c7fa93ab0c00a024)) +* **link:** simplify link without addons, fixes [#406](https://github.com/core-ds/core-components/issues/406) ([37288e4](https://github.com/core-ds/core-components/commit/37288e45eb529fcabdf9dc79e0cd04ba015a7d4e)) +* **loader:** updated loader animation ([ec6b50c](https://github.com/core-ds/core-components/commit/ec6b50cf7942d93c89c4c5d0d8e98b3a96ab3509)) +* **modal:** hide ([9d02eba](https://github.com/core-ds/core-components/commit/9d02eba13214038b483dc43d696f38328a95c597)) +* **notification:** move inner content to toast ([8b7a4e9](https://github.com/core-ds/core-components/commit/8b7a4e932a7ac684edc62d2039263d0b9183ff0a)) +* **picker-button:** add compoonent PickerButton ([e14b73d](https://github.com/core-ds/core-components/commit/e14b73db302acd401010b9fd227e33de10eca9fc)) +* **picker-button:** simplify picker-button using colorless icons ([bd0bdba](https://github.com/core-ds/core-components/commit/bd0bdbaa8425bca05b209d7680c9ecadb65235e1)) +* **popover:** fix transition ([f8564bc](https://github.com/core-ds/core-components/commit/f8564bceace99104b521fc92d037f7ef9c635f91)) +* **popover:** prevent flip ([#398](https://github.com/core-ds/core-components/issues/398)) ([c0c1723](https://github.com/core-ds/core-components/commit/c0c1723f15af7b8f09330bc5ce3ea549ea30afa1)) +* **radio:** add addons ([7923354](https://github.com/core-ds/core-components/commit/7923354468ded0a2ea4602c7dae0eb722871c1f1)) +* **radio:** add align ([fe9faec](https://github.com/core-ds/core-components/commit/fe9faecb74b2528f5a2e18f1707dffa28ec29f7d)) +* **radio:** addons, align, block for Checkbox ([78c6f37](https://github.com/core-ds/core-components/commit/78c6f37ef7cb828ac4e8b54bd6edc9d9d4a151ab)) +* **radio:** addons, align, block for Switch ([df81ef9](https://github.com/core-ds/core-components/commit/df81ef9a6ad1c560c43d08741ba0e134a4658af3)) +* **radio:** fix reversed addons of switch ([30721a9](https://github.com/core-ds/core-components/commit/30721a9ee525aca73e9a73565755607b3abcfba3)) +* **radio:** fixes ([12128fb](https://github.com/core-ds/core-components/commit/12128fb8db85c27d0309ef806ef46673f4abbddc)) +* **radio:** fullWidth -> block ([97e0cf6](https://github.com/core-ds/core-components/commit/97e0cf65b0cc9a7dc60ec99ee16d4028a2c724cc)) +* **radio:** improved theming ([3dcb532](https://github.com/core-ds/core-components/commit/3dcb532b8b6d9a4e610a56b557a54f6c68e6ce46)) +* **radio:** lil fixy ([7e8103a](https://github.com/core-ds/core-components/commit/7e8103a863194f0c5115b586aaddd0ba89f75469)) +* **radio:** size m ([c8dfb66](https://github.com/core-ds/core-components/commit/c8dfb66f5a5b3ab5b904edc57ac88ec6003b02ba)) +* **select:** add empty list placeholder prop ([#438](https://github.com/core-ds/core-components/issues/438)) ([75b0c9c](https://github.com/core-ds/core-components/commit/75b0c9c7824b0fcb6d4ae3e238d2eb858d615808)) +* **select:** add exporting select utils ([#436](https://github.com/core-ds/core-components/issues/436)) ([0499ae9](https://github.com/core-ds/core-components/commit/0499ae9f36731d6b25a4f2501c1c760afdb8a687)) +* **select:** allow to use options as selected value ([#393](https://github.com/core-ds/core-components/issues/393)) ([a16f47a](https://github.com/core-ds/core-components/commit/a16f47ac6dd8f10c02a6ea38ec09963fab6f3942)) +* **select:** change arrow icon ([6335973](https://github.com/core-ds/core-components/commit/63359734754308eeca217526d2f4f652f78fc79d)) +* **select:** change optionslist shadow styles ([#397](https://github.com/core-ds/core-components/issues/397)) ([d13c1f8](https://github.com/core-ds/core-components/commit/d13c1f8eacd7a51152a065b5ed358515a3044c18)) +* **select:** popoverPosition, render to body, test issues ([#428](https://github.com/core-ds/core-components/issues/428)) ([7688ec7](https://github.com/core-ds/core-components/commit/7688ec74bce41dac4fff6fd36a61723f7ce1b9d3)), closes [#429](https://github.com/core-ds/core-components/issues/429) +* **select-with-tags:** add select with tags ([#435](https://github.com/core-ds/core-components/issues/435)) ([bc42165](https://github.com/core-ds/core-components/commit/bc42165b73e2c50455534c5c7f7aec4a5d155f75)) +* **slider-input:** use numeric mobile keyboard ([a866dab](https://github.com/core-ds/core-components/commit/a866dabf667f53e62733bd173f16b14c158e2368)) +* **space:** codestyle ([36994db](https://github.com/core-ds/core-components/commit/36994db62086c32f4f583454e880bff915721193)) +* **space:** codestyle ([fc6d760](https://github.com/core-ds/core-components/commit/fc6d7604be3803cf6499dc7d2f034922a7858524)) +* **space:** first Space tests ([9434b91](https://github.com/core-ds/core-components/commit/9434b910f20737b58194c006a4d4d47fb931767f)) +* **space:** just add Space component ([945a456](https://github.com/core-ds/core-components/commit/945a45635e6a90f295c27a61dac9ec08676669c3)) +* **space:** lil fixes ([b9c588a](https://github.com/core-ds/core-components/commit/b9c588ab97e95e01d9962296d453b9bb2f712126)) +* **space:** remove label and more knobs ([e2af148](https://github.com/core-ds/core-components/commit/e2af148d1dc603495e2d6eb559502c6f363aa7f0)) +* **space:** remove label and more knobs 2 ([b85b459](https://github.com/core-ds/core-components/commit/b85b4595303c2ac2e2516db17b562d08da833204)) +* **space:** version ([f262441](https://github.com/core-ds/core-components/commit/f26244139550d96cc2503c60173d0bae7e9dbea5)) +* **switch:** improved theming ([b4ecc39](https://github.com/core-ds/core-components/commit/b4ecc399c706e1de7086e255e57219e3907414e0)) +* **themes:** add button ghost inverted theme ([dd71bbf](https://github.com/core-ds/core-components/commit/dd71bbf94ba3f7cc3502f1ff4f60dad4b023ff9e)) +* **themes:** add dark theme mixins ([#420](https://github.com/core-ds/core-components/issues/420)) ([6cfd317](https://github.com/core-ds/core-components/commit/6cfd31795e937e33cd37262b85057f3e977a900c)) +* **themes:** arrow transform var with click theme ([35d4ef2](https://github.com/core-ds/core-components/commit/35d4ef2db379391c58919445e161c2234b1b16a9)) +* **themes:** fixed click theme for tag ([c0b4fad](https://github.com/core-ds/core-components/commit/c0b4fada71b1f44b5aead6e3a2b51dcccaacb0c4)) +* **themes:** updated button mobile theme ([ebdf5a1](https://github.com/core-ds/core-components/commit/ebdf5a14b912bffcefe087b95d62d4a35531e09f)) +* **themes:** updated tabs border colors ([5a41d86](https://github.com/core-ds/core-components/commit/5a41d86b23fd961e0e7b8a214906363551ae0e41)) +* **themes:** updates ([86bd76f](https://github.com/core-ds/core-components/commit/86bd76fa1cb204b274c0092a5fcc0d984d3f57a1)) +* **toast:** add draft component ([d04fbb3](https://github.com/core-ds/core-components/commit/d04fbb315adda99553f87f5d8e477ff60314a070)) +* **toast:** add new component ([09de8b0](https://github.com/core-ds/core-components/commit/09de8b0ad2684b047d129929506a83127b2ccf99)) +* **toast:** add portal ([439148d](https://github.com/core-ds/core-components/commit/439148d04d950f21b0d7186c1cbc4e681f305d63)) +* **toast:** add stop, start timers ([b28ea98](https://github.com/core-ds/core-components/commit/b28ea982cec94eb9c0a50250d51cf173d0bc0a02)) +* **toast:** fix linter error ([e994512](https://github.com/core-ds/core-components/commit/e9945125a90935e205aee8e4a6bb8b762e352d25)) +* **toast:** fix linter problems ([e8342e8](https://github.com/core-ds/core-components/commit/e8342e89353b6f1a3935473c46a1694b2186561e)) +* **toast:** some fixes ([fe95b5d](https://github.com/core-ds/core-components/commit/fe95b5d8930698ab6d37ab6dd15497af056ac4ee)) +* **toast:** updates ([896ac02](https://github.com/core-ds/core-components/commit/896ac02f251d6b45698bdb35c08eb6131141080a)) +* **toast:** updates ([24cc308](https://github.com/core-ds/core-components/commit/24cc3089a04e7f86ca929192405b71209ed3ebe7)) +* **toast-plate:** change close button position to absolute ([2f9161d](https://github.com/core-ds/core-components/commit/2f9161d8b23647485df7759c1f5a4bbf0c113925)) +* **toast-plate:** design review fixes ([55b58fd](https://github.com/core-ds/core-components/commit/55b58fd1713c89bed3da74ede15487021477545d)) +* **toast-plate:** fix ([4e378ec](https://github.com/core-ds/core-components/commit/4e378ec7cd9901807458ff1c1a09c0cbf3c41401)) +* **toast-plate:** updates ([2303335](https://github.com/core-ds/core-components/commit/230333560732c11cff2c850db41112c398e6ab76)) +* add fieldClassName ([#467](https://github.com/core-ds/core-components/issues/467)) ([8847c5a](https://github.com/core-ds/core-components/commit/8847c5a83187b97ab8f83b0149965a1d3825f89f)) +* add stylelint-core-vars ([#461](https://github.com/core-ds/core-components/issues/461)) ([c2f515e](https://github.com/core-ds/core-components/commit/c2f515e46a590815df66321ae8da011f5b2f24db)) +* **toast-plate:** fix styles ([b600f86](https://github.com/core-ds/core-components/commit/b600f860b37c039f8a4272a9f27aa5689643b614)) +* **toast-plate:** fix styles ([14af3b4](https://github.com/core-ds/core-components/commit/14af3b49fe8803cec870cd946e3835f3b92cd3e8)) +* change form-control styles ([#444](https://github.com/core-ds/core-components/issues/444)) ([2e464a8](https://github.com/core-ds/core-components/commit/2e464a87fba7ae6b60e0f58796f8663c3e456239)) +* read-only state ([#459](https://github.com/core-ds/core-components/issues/459)) ([ed087c7](https://github.com/core-ds/core-components/commit/ed087c7f0440cb7ebdeb2883a3c3998c3c48fa30)) +* **typography:** add default margins ([#446](https://github.com/core-ds/core-components/issues/446)) ([fb98d10](https://github.com/core-ds/core-components/commit/fb98d101651abfb7126dac3a7dee7226972f6a62)) +* **vars:** fresh tokens ([48f2591](https://github.com/core-ds/core-components/commit/48f2591d030e7852fbd239e7d91e4c4c2bed6468)) +* **vars:** new reverse shadows ([6c18699](https://github.com/core-ds/core-components/commit/6c18699b02044e1ba38561d0fcded98d89c67339)) +* add inverted theme for link & button ([#405](https://github.com/core-ds/core-components/issues/405)) ([a3ccf39](https://github.com/core-ds/core-components/commit/a3ccf394369af6d5b0f8c8dd5d64a4b18eeb2155)) +* add styrene font-face ([9dfc8da](https://github.com/core-ds/core-components/commit/9dfc8da61e322e4f7fe915bc63614270cf5f6dd4)) +* add update popover position prop ([#401](https://github.com/core-ds/core-components/issues/401)) ([5588870](https://github.com/core-ds/core-components/commit/5588870b663ba6547bf80853487da4620b2f74d6)) +* adds semantic-release ([1d419e0](https://github.com/core-ds/core-components/commit/1d419e05f1d37db4f7cb04a602e80a894023a23a)) +* icons & arrow ([#356](https://github.com/core-ds/core-components/issues/356)) ([e263356](https://github.com/core-ds/core-components/commit/e263356b7fd1537ae5c434ddc9c5cb074a2e7ab8)) +* improve theme switcher ([#386](https://github.com/core-ds/core-components/issues/386)) ([9c5c4ec](https://github.com/core-ds/core-components/commit/9c5c4ec79e0940f54a76c83bd7017649a0f17093)) +* remove extra vars, update docs ([#370](https://github.com/core-ds/core-components/issues/370)) ([af1b133](https://github.com/core-ds/core-components/commit/af1b1339e768e59a2377409bf164cc8c439bd3bf)) +* use disabled-cursor ([#399](https://github.com/core-ds/core-components/issues/399)) ([ba5ba74](https://github.com/core-ds/core-components/commit/ba5ba7492f2daf4974941130466dcffd3976662b)) +* **themes:** experimental click theme for checkbox/radio/switch ([f5b2263](https://github.com/core-ds/core-components/commit/f5b22636af4b68b12b42158737e11af59e714848)) +* **themes:** updated click theme for tabs size m ([56dd5b6](https://github.com/core-ds/core-components/commit/56dd5b6530085de0a1dc6fc7be6cb78825c438f4)) +* set system font by default in storybook ([c40ab25](https://github.com/core-ds/core-components/commit/c40ab256af022f4688d079c62e895cb4b8a6e69f)) +* update theming docs ([2ceba6d](https://github.com/core-ds/core-components/commit/2ceba6d577857ef0821ea01ee3dd0ec9ddd98fda)) +* add comments to bash ([6149931](https://github.com/core-ds/core-components/commit/61499310c0f928077b887e19621fc50989bac9dc)) +* add demo script ([b5d1c00](https://github.com/core-ds/core-components/commit/b5d1c000e049568768fb6dc018bb8c89a23a8b73)) +* add masked-input ([#76](https://github.com/core-ds/core-components/issues/76)) ([d5c4ba5](https://github.com/core-ds/core-components/commit/d5c4ba51e6ba1e255345a2b570ee54d3c3dfcf5f)) +* delete postInstall ([fd30ef9](https://github.com/core-ds/core-components/commit/fd30ef9eba4e06d81b52e3668d4d38ac2e2ed5ea)) +* fix eslint ([c4f5261](https://github.com/core-ds/core-components/commit/c4f5261ec4ed63f285e0cb7dc0bdbc17e94dc38d)) +* lint fix ([f64c8b9](https://github.com/core-ds/core-components/commit/f64c8b94c801b92b77ab321d3f5990d070e56ca4)) +* modify config for storybook ([c81ad6e](https://github.com/core-ds/core-components/commit/c81ad6e225324c38052fd8aae37001be0ef5c756)) +* post storybook url to PR after push ([#39](https://github.com/core-ds/core-components/issues/39)) ([9acc8ab](https://github.com/core-ds/core-components/commit/9acc8abaff1e48c6a62872b803340212b67ae237)) +* publishing ([bc584e2](https://github.com/core-ds/core-components/commit/bc584e224e17e29fd7178ea096a500264e286685)) +* setup tests ([3e722bd](https://github.com/core-ds/core-components/commit/3e722bda2da14460cbf14cadefafe52b84a2fb76)) +* update demo script ([46d600c](https://github.com/core-ds/core-components/commit/46d600cea9eea44b0372b95d73fca7c4e4d3d404)) +* update dependencies ([a27310a](https://github.com/core-ds/core-components/commit/a27310a23532fad6c719775d35a3032b13432f2c)) +* use custom css-modules naming ([7eacdab](https://github.com/core-ds/core-components/commit/7eacdab49c905486c00fafc19abe38d018765ce8)) +* **base-input:** add base-input ([55ecad6](https://github.com/core-ds/core-components/commit/55ecad6b33f44c6ea3fdd548138d8809f1cc97d8)) +* **button:** add types. add forwardRef ([bd86206](https://github.com/core-ds/core-components/commit/bd86206310cbf3cec2215ccdd81158aa036fadfc)) +* **button:** fixed story ([4811af8](https://github.com/core-ds/core-components/commit/4811af87c8ef9f8f37be6d1dad10621f6698d394)) +* **button:** href prop, updated types & styles ([8745e44](https://github.com/core-ds/core-components/commit/8745e4463deaad04f954bf3d4ae0eca66ddfa99a)) +* **button:** improved button theming ([0d2a255](https://github.com/core-ds/core-components/commit/0d2a2553aafbc34090dbc37edcb2291e0c8f09a6)) +* **button:** keyboard-only focus ([#102](https://github.com/core-ds/core-components/issues/102)) ([739d240](https://github.com/core-ds/core-components/commit/739d240ab3d06b5a232b8c863f54ea888f2f635a)), closes [#125](https://github.com/core-ds/core-components/issues/125) +* **button:** updated button styles ([643429d](https://github.com/core-ds/core-components/commit/643429df73fb0b5d96975de2b4b9020c42e99416)) +* **core-components-amount:** add boilerplate for amount ([5614885](https://github.com/core-ds/core-components/commit/5614885237a9a4843fb312c22c6b5810a3509e63)) +* **core-components-amount:** allow withZeroMinorPart formatting ([e86529d](https://github.com/core-ds/core-components/commit/e86529d72e28e8cde8bffbfd4b4d263129ec4d78)) +* **core-components-amount:** feat, change api, add PureAmount ([f946776](https://github.com/core-ds/core-components/commit/f94677645a8244dedf6f003f901290d5a2c6c16d)) +* **core-components-amount:** implemented amount, add demo ([1e78129](https://github.com/core-ds/core-components/commit/1e781295de03ff4aac5f5a7ec761f22b529716bd)) +* **core-components-button:** add loading state ([5c0a75a](https://github.com/core-ds/core-components/commit/5c0a75a3cae3232ce52be5cd800644c2030abb3b)) +* **core-components-button:** fix button types ([#138](https://github.com/core-ds/core-components/issues/138)) ([6af3a2c](https://github.com/core-ds/core-components/commit/6af3a2c099c52d94fbb91663facfb3d5c79a8492)) +* **core-components-form-control:** add FormControl component ([#127](https://github.com/core-ds/core-components/issues/127)) ([1ea79d1](https://github.com/core-ds/core-components/commit/1ea79d1fc565c2073483a7480893958efff25dff)) +* **core-components-form-control:** allow to hide error icon in theme ([c19a73c](https://github.com/core-ds/core-components/commit/c19a73c676e359f2ecba8b21a53f671b725ec032)) +* **core-components-form-control:** change errors logic ([#150](https://github.com/core-ds/core-components/issues/150)) ([1c0e494](https://github.com/core-ds/core-components/commit/1c0e49489fb59dce68504223744efd290c38d214)) +* **core-components-link:** add new component ([#142](https://github.com/core-ds/core-components/issues/142)) ([33e11eb](https://github.com/core-ds/core-components/commit/33e11eb403fb7d8231e00cf55adf116b914aef3b)) +* **core-components-loader:** add new component ([24f0c35](https://github.com/core-ds/core-components/commit/24f0c3538d79059ee64468ab6c7e372eb5647f76)) +* **core-components-money-input:** add money-input, story, base test ([aab595a](https://github.com/core-ds/core-components/commit/aab595a0e3d705335b7abe7539364206f20806fc)) +* **core-components-money-input:** added smart default placeholder ([dff6e63](https://github.com/core-ds/core-components/commit/dff6e63bd1ed72a1fab9c50a3f3d982da49e531b)) +* **core-components-money-input:** change minority color ([e35b06a](https://github.com/core-ds/core-components/commit/e35b06a74bb43663a8b44fe7d3486b7a7d81af2d)) +* **core-components-money-input:** fix demo according PR comments ([15f339d](https://github.com/core-ds/core-components/commit/15f339d83d8606c82b3a6cc4deeba350bab9f785)) +* **core-components-money-input:** fixes according review comments ([3ba9e0b](https://github.com/core-ds/core-components/commit/3ba9e0b5a653e58898e9f5a72b37a3eaea2fa2da)) +* **core-components-money-input:** fixes according review comments ([0b0c285](https://github.com/core-ds/core-components/commit/0b0c285b40df3e80cf28167c410ddc25b2f405c9)) +* **core-components-money-input:** remove composed props from MoneyInput ([3d3f5b8](https://github.com/core-ds/core-components/commit/3d3f5b83b25990ab56826c5c39e74aa346672f44)) +* **core-components-money-input:** tune to latest requirements ([62fcaf4](https://github.com/core-ds/core-components/commit/62fcaf4038d866271178289e6338e8bc1c01c50e)) +* **core-components-popover:** can render without Transition ([#130](https://github.com/core-ds/core-components/issues/130)) ([2569a32](https://github.com/core-ds/core-components/commit/2569a32994e8de57c4a4a5bce853f706183af749)) +* **core-components-vars:** update alfa-ui-primitives and build colors ([#153](https://github.com/core-ds/core-components/issues/153)) ([007e2d6](https://github.com/core-ds/core-components/commit/007e2d67d5e22e830ca353de3d7ea690b82af73f)) +* **divider:** add divider ([0e4199c](https://github.com/core-ds/core-components/commit/0e4199c6d5b23438442393ef9a8f05594bc39a70)) +* **input:** add new default input ([2314b3b](https://github.com/core-ds/core-components/commit/2314b3b6f47e7b4ebfb3718927ecd593d33b2e1b)) +* **inputs:** icons & addons improvements ([e0abeba](https://github.com/core-ds/core-components/commit/e0abeba1772f8f0c12d01ca9ef5482d80a4e59cc)) +* **inputs:** improve components, update styles & props ([98ff5dd](https://github.com/core-ds/core-components/commit/98ff5dda37e4b55ff5f4bd7c8c9bb80791625935)) +* **inputs:** some refactor. add events & props ([27f5bba](https://github.com/core-ds/core-components/commit/27f5bba60e65181ad848a0628b72711f08377653)) +* **lint:** add lint ([3bd5492](https://github.com/core-ds/core-components/commit/3bd5492bba179083cb26aa99c295a43f8e3be037)) +* **portal:** add new portal component ([#75](https://github.com/core-ds/core-components/issues/75)) ([80d5499](https://github.com/core-ds/core-components/commit/80d5499edfc75c6c382feb3fa638c844c54edd11)) +* **select:** add select component ([#118](https://github.com/core-ds/core-components/issues/118)) ([8892bd9](https://github.com/core-ds/core-components/commit/8892bd94a6be3ad8ba1e609545becadc8be54b47)) +* **stories:** move to mdx stories ([#104](https://github.com/core-ds/core-components/issues/104)) ([40d6aff](https://github.com/core-ds/core-components/commit/40d6aff309e93dd7072c325c6752f067670fb263)) +* **storybook:** add @storybook/addon-docs. update stories ([1e66461](https://github.com/core-ds/core-components/commit/1e66461164ac48252a305477a78ab49356a12343)) +* **storybook:** add theme switcher to storybook ([#199](https://github.com/core-ds/core-components/issues/199)) ([7794f80](https://github.com/core-ds/core-components/commit/7794f80dc83cba171ffe7282e54d5ce0f4bd8245)) +* **switch:** add new component ([4e23acd](https://github.com/core-ds/core-components/commit/4e23acd4d05db21930d137de72e55fc9732332d3)) +* **tag:** add new component Tag ([1101b57](https://github.com/core-ds/core-components/commit/1101b5792eda538b2c508ff6ace7294c0544d1f0)) +* **tag:** remove pointer-events none style ([#224](https://github.com/core-ds/core-components/issues/224)) ([dcaec57](https://github.com/core-ds/core-components/commit/dcaec5712f31cc094f4cacda0a3146e0564d86b3)) +* **themes:** add themes structure ([#108](https://github.com/core-ds/core-components/issues/108)) ([eb05b6d](https://github.com/core-ds/core-components/commit/eb05b6df0d56c76f39ebdcf6a1a6de079c3aa63b)) +* **typography:** add tools for mixin building ([e995924](https://github.com/core-ds/core-components/commit/e99592428c15573e9097a6457dd33361f5a75e85)) +* **typography:** update tokens & scripts. rebuild ([91c7c76](https://github.com/core-ds/core-components/commit/91c7c769d9623cc38f9b44a38d3a027f9fed7136)) +* **vars:** add index.css ([#90](https://github.com/core-ds/core-components/issues/90)) ([d9f3af1](https://github.com/core-ds/core-components/commit/d9f3af1521187d406271fed448dc4af498beb39e)) +* **vars:** add negative gaps ([#99](https://github.com/core-ds/core-components/issues/99)) ([5dc2cf4](https://github.com/core-ds/core-components/commit/5dc2cf404558d705411f248b353aa4841a508799)) + + +### Bug Fixes + +* lock and docs ([#6](https://github.com/core-ds/core-components/issues/6)) ([54baf93](https://github.com/core-ds/core-components/commit/54baf93a7263a64a011d2be09bdc64762eae50b6)) +* fix ui-primitives ([#1](https://github.com/core-ds/core-components/issues/1)) ([4af3400](https://github.com/core-ds/core-components/commit/4af34004a28a8098e9d1348e313a8a5612a489c2)) +* **amount-input:** позволяем использовать строки, не рисуем 0 если передана пустая строка ([#941](https://github.com/core-ds/core-components/issues/941)) ([51c954f](https://github.com/core-ds/core-components/commit/51c954f238e7dbdbdbbd517e81e0e944f880ded6)) +* **attach:** always clear input ([#1038](https://github.com/core-ds/core-components/issues/1038)) ([f3e85f2](https://github.com/core-ds/core-components/commit/f3e85f299c4e42253d0354cdd61e005d9fe927f0)) +* **bottom-sheet:** fix bottom-sheet swipeable marker ([#1044](https://github.com/core-ds/core-components/issues/1044)) ([0734e55](https://github.com/core-ds/core-components/commit/0734e55cc0e394fb33452f875ffcf47819277aee)) +* **bottom-sheet:** fix double calling onClose fn ([#962](https://github.com/core-ds/core-components/issues/962)) ([feda2a4](https://github.com/core-ds/core-components/commit/feda2a4c8d3a4f40a1ab9c40eb21f5359e4fa538)) +* **bottom-sheet:** fix prop headerClassName ([#1057](https://github.com/core-ds/core-components/issues/1057)) ([2fb3290](https://github.com/core-ds/core-components/commit/2fb329047fd1ef997082d127d9f26195dbfe57ad)) +* **button:** решение проблемы с тултипом и заблокированной кнопкой ([#920](https://github.com/core-ds/core-components/issues/920)) ([d04f311](https://github.com/core-ds/core-components/commit/d04f31109baf340a4dc7264d3b8ab13109a5a68c)), closes [#799](https://github.com/core-ds/core-components/issues/799) +* **button:** убраны лишние отступы для вида ghost ([#933](https://github.com/core-ds/core-components/issues/933)) ([f43cdf6](https://github.com/core-ds/core-components/commit/f43cdf6afe349d2c7cb0d8436123e63aed347b54)) +* **button:** удален вызов console.warn, если process.env.NODE_ENV !== 'development' ([d3e14ce](https://github.com/core-ds/core-components/commit/d3e14cef7835b5512e4848c5a1048475a8990018)) +* **calendar-range:** correct highlights ([#1002](https://github.com/core-ds/core-components/issues/1002)) ([5c12da2](https://github.com/core-ds/core-components/commit/5c12da2eb72b146b0a5f58447312f96f4b424c48)) +* **cdn-icon:** add className prop ([#957](https://github.com/core-ds/core-components/issues/957)) ([86f2139](https://github.com/core-ds/core-components/commit/86f2139fc56fe1cd2669d05d7953075aa8982e22)) +* **checkbox:** increased checkbox's hint line-height from 18px to 20px ([#1007](https://github.com/core-ds/core-components/issues/1007)) ([c7ee918](https://github.com/core-ds/core-components/commit/c7ee918de443339ac06f82196636dbb48ef8c737)), closes [#969](https://github.com/core-ds/core-components/issues/969) +* **code-input:** code-input-request-animation-frame-fix ([#1014](https://github.com/core-ds/core-components/issues/1014)) ([ad1478e](https://github.com/core-ds/core-components/commit/ad1478ebfd17679e8a2792462c619f525e5b7bb9)) +* **docs:** upd readme ([1b83933](https://github.com/core-ds/core-components/commit/1b839330a9356b2aa2da92b6ba1376bc27c9eee9)) +* **dropzone:** корректный сброс dragCounter ([#944](https://github.com/core-ds/core-components/issues/944)) ([091b4a4](https://github.com/core-ds/core-components/commit/091b4a4b2f42fb0b84581c875a18c14c735eb92b)) +* **file-upload-item:** корректная обрезка контента ([#942](https://github.com/core-ds/core-components/issues/942)) ([5a285f2](https://github.com/core-ds/core-components/commit/5a285f2c1259dab270f52b438203fe7d40c07b29)) +* **filter-tag:** move onClick from btn to div ([#1049](https://github.com/core-ds/core-components/issues/1049)) ([616a90a](https://github.com/core-ds/core-components/commit/616a90af9b0b95de324d3475572d5ac85d3e7a2a)) +* **gallery:** update header button's tooltip position ([#979](https://github.com/core-ds/core-components/issues/979)) ([8e2acfc](https://github.com/core-ds/core-components/commit/8e2acfcb772cf4d8051c185a3f1caaaf507b5bc9)) +* **icon-view:** fix bg-color ([#980](https://github.com/core-ds/core-components/issues/980)) ([2fbad56](https://github.com/core-ds/core-components/commit/2fbad5671d64056a4af81c4fe281a82c415ffeb5)) +* **icon-view:** fix types ([#961](https://github.com/core-ds/core-components/issues/961)) ([74152f3](https://github.com/core-ds/core-components/commit/74152f3bd6d776bebeabea65d5971b57cc486b2e)) +* **input:** компонент иконки для кнопки очистки ([#930](https://github.com/core-ds/core-components/issues/930)) ([37049af](https://github.com/core-ds/core-components/commit/37049af84ed475e1932c91f1907fb604893be7d7)) +* **input-autocomplete:** open list on backspace ([#964](https://github.com/core-ds/core-components/issues/964)) ([4d4f126](https://github.com/core-ds/core-components/commit/4d4f1267a98f05c184267564cd0a2517803bd08b)) +* **loader:** fix animation in IE ([#970](https://github.com/core-ds/core-components/issues/970)) ([03df943](https://github.com/core-ds/core-components/commit/03df9438f00bda639aae78aadb940161112a2672)) +* **picker-button:** fixed type of picker-button size prop ([#1006](https://github.com/core-ds/core-components/issues/1006)) ([38b56c1](https://github.com/core-ds/core-components/commit/38b56c11d45410a258e18d411aa0ce12b8a6c7e4)), closes [#986](https://github.com/core-ds/core-components/issues/986) +* **select:** change corp shadow ([#1004](https://github.com/core-ds/core-components/issues/1004)) ([ea664f6](https://github.com/core-ds/core-components/commit/ea664f67ce81b66b31aab348cc0c68085711de8a)) +* **skeleton:** added dataTestId ([18e4af8](https://github.com/core-ds/core-components/commit/18e4af805bd4e49a1a3c303cb3b4d9a3a9dd5751)) +* **themes:** fix build themes mobile & intranet ([#1055](https://github.com/core-ds/core-components/issues/1055)) ([f95f035](https://github.com/core-ds/core-components/commit/f95f035bdeee3071e2f2ebfaa35c0cc10585044b)) +* **themes:** Добавил пропущенные [@imports](https://github.com/imports) из themes/src/default.css ([#1053](https://github.com/core-ds/core-components/issues/1053)) ([06f0427](https://github.com/core-ds/core-components/commit/06f0427e4089db902bb269ab3b31f935921cff9f)), closes [#1052](https://github.com/core-ds/core-components/issues/1052) +* add missing dependency ([#1041](https://github.com/core-ds/core-components/issues/1041)) ([3b06d3a](https://github.com/core-ds/core-components/commit/3b06d3a25f76e401a0146e163f8a61585f3eebf1)) +* fix modal and bottom-sheet dark mode ([#1043](https://github.com/core-ds/core-components/issues/1043)) ([cad36a2](https://github.com/core-ds/core-components/commit/cad36a25b28bfa71296c3dd9dc325eec28b5c241)) +* **intl-phone-input:** design fixes ([#1030](https://github.com/core-ds/core-components/issues/1030)) ([27cfb9b](https://github.com/core-ds/core-components/commit/27cfb9be1cac9f0aac151ae2121c426fb123fb3f)) +* **radio-group:** add missing 'value' attribute to 'input' tag ([#1033](https://github.com/core-ds/core-components/issues/1033)) ([0f9cf0e](https://github.com/core-ds/core-components/commit/0f9cf0ecd74f4764ccd0b2839ba0cdf1b96e75cb)), closes [#1031](https://github.com/core-ds/core-components/issues/1031) +* **select-with-tags:** update tag size to xxs ([#960](https://github.com/core-ds/core-components/issues/960)) ([4234826](https://github.com/core-ds/core-components/commit/4234826e5dedebc1e6555dfba181981eea4db69f)) +* **table:** update styles ([#1036](https://github.com/core-ds/core-components/issues/1036)) ([3fe236d](https://github.com/core-ds/core-components/commit/3fe236dfb584c3e96fc7fb8c499aee3e9e12e64e)) +* changed dropdown component's box shadow styles ([#1010](https://github.com/core-ds/core-components/issues/1010)) ([2f997f5](https://github.com/core-ds/core-components/commit/2f997f5722c89b38a8064924b73c0a8046025aea)) +* imports for glyph icons ([#994](https://github.com/core-ds/core-components/issues/994)) ([8e807f2](https://github.com/core-ds/core-components/commit/8e807f26abf0f942fe8eadbd201caecb297b35dc)) +* move icon from select to picker-button ([#1020](https://github.com/core-ds/core-components/issues/1020)) ([0d23257](https://github.com/core-ds/core-components/commit/0d23257b561329092be551d237389cc06c3d5607)) +* update glyph deps ([#1019](https://github.com/core-ds/core-components/issues/1019)) ([3e910d0](https://github.com/core-ds/core-components/commit/3e910d0801c4c46bcd399163200c1f7bfaba375e)) +* **table:** fix th paddings ([#951](https://github.com/core-ds/core-components/issues/951)) ([2d916c1](https://github.com/core-ds/core-components/commit/2d916c16a388b0949db2d0ae00c852c0acac6d28)) +* **table:** фикс высоты раскрывающейся ячейки ([#946](https://github.com/core-ds/core-components/issues/946)) ([643f9a5](https://github.com/core-ds/core-components/commit/643f9a556748bafc46a5c6f8c458c07770b11b17)) +* **themes:** fix font weight mobile button ([#972](https://github.com/core-ds/core-components/issues/972)) ([447a89d](https://github.com/core-ds/core-components/commit/447a89dde25aa7659d771ae1c722086354323706)) +* **typography:** changed styrene font styles for title responsive ([#1017](https://github.com/core-ds/core-components/issues/1017)) ([540b0b5](https://github.com/core-ds/core-components/commit/540b0b59cf99a4cee0798f50b94e6449be4aa3c6)) +* **vars:** remove unused colors ([#945](https://github.com/core-ds/core-components/issues/945)) ([310a70a](https://github.com/core-ds/core-components/commit/310a70a8be6bff687861d3d643ebc347ecf6cd6d)) +* add missing vars imports ([#931](https://github.com/core-ds/core-components/issues/931)) ([35ba847](https://github.com/core-ds/core-components/commit/35ba847d39924e713166d79ae6d64444131794a1)) +* **picker-button:** wrap field with div ([b51bce8](https://github.com/core-ds/core-components/commit/b51bce85b39583e7bb1107f56c6e64a6f2b96d5c)), closes [#914](https://github.com/core-ds/core-components/issues/914) +* revert 0e8124552206f96149d104f65cff1667e857bf01 ([#916](https://github.com/core-ds/core-components/issues/916)) ([953fbcf](https://github.com/core-ds/core-components/commit/953fbcfec46a40089a5cfde670597315269b05f5)) +* новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([0e81245](https://github.com/core-ds/core-components/commit/0e8124552206f96149d104f65cff1667e857bf01)) +* новый cdn иконок ([#913](https://github.com/core-ds/core-components/issues/913)) ([#917](https://github.com/core-ds/core-components/issues/917)) ([224831f](https://github.com/core-ds/core-components/commit/224831f41ed2de49dc1a228dc081b0629cf274b1)) +* актуализируем @alfalab/utils ([#897](https://github.com/core-ds/core-components/issues/897)) ([30fb88e](https://github.com/core-ds/core-components/commit/30fb88eee36f68cabf80069e5125d911fabde4a5)) +* **bank-card:** improve docs, fix focus bg ([#830](https://github.com/core-ds/core-components/issues/830)) ([1d8171c](https://github.com/core-ds/core-components/commit/1d8171ce5c76831c350fcf636dd48bad2c3db118)) +* **bank-card:** фикс цвета иконки ([#898](https://github.com/core-ds/core-components/issues/898)) ([66c2659](https://github.com/core-ds/core-components/commit/66c265919e7452af324ceabd26813a8be19b4839)) +* **base-modal:** modal scroll ([#820](https://github.com/core-ds/core-components/issues/820)) ([1b2d94a](https://github.com/core-ds/core-components/commit/1b2d94ad45e04145bf1292d749ae2028702dc622)) +* **base-select:** lazy loading ([#831](https://github.com/core-ds/core-components/issues/831)) ([78f2b86](https://github.com/core-ds/core-components/commit/78f2b86221d8af7bf5019104aba743546fc31b45)) +* **calendar-input:** remove popover border in click theme ([7a76759](https://github.com/core-ds/core-components/commit/7a76759ccc5741a03a4c90f97cce6f67255b1c4b)) +* **calendar-input:** update border-radius ([0d06aca](https://github.com/core-ds/core-components/commit/0d06aca7162c85f987c1172ea037b5b3bc66f8c5)) +* **calendar-input:** обновлён в теме click ([da5d960](https://github.com/core-ds/core-components/commit/da5d9607ce80742bd6780a5bad11b07b3617b44c)) +* **calendar-input:** рендер rightAddons, фикс затертых пропсов ([#895](https://github.com/core-ds/core-components/issues/895)) ([1eabd29](https://github.com/core-ds/core-components/commit/1eabd2902cd1bd62517284313f79cf31189cf525)) +* **calendar-range:** fix default month to ([#868](https://github.com/core-ds/core-components/issues/868)) ([1f9fb97](https://github.com/core-ds/core-components/commit/1f9fb9709292d28300c3fc4386ffd858b2efd852)) +* **chart:** fix deps, export types ([b46450a](https://github.com/core-ds/core-components/commit/b46450ae954b10f0138c393482fe1271b001f085)) +* **collapse:** dynamic content height ([#864](https://github.com/core-ds/core-components/issues/864)) ([e96c86b](https://github.com/core-ds/core-components/commit/e96c86bde70d58e4311a2c6bcd6d7407be0f4c44)) +* **custom-button:** fix color variable & component description ([5b9df4d](https://github.com/core-ds/core-components/commit/5b9df4dffa070b8339f0e208c0d14c72ecdb2012)) +* **custom-button:** fix props type ([a1bf943](https://github.com/core-ds/core-components/commit/a1bf94319b8844cbb3fc7d4626d2232357d72f63)) +* **dropzone:** изменение темы клика ([#893](https://github.com/core-ds/core-components/issues/893)) ([cadc6da](https://github.com/core-ds/core-components/commit/cadc6da29896e6a033bac8e91723b20beb404b32)) +* **file-upload-item:** fix description prop ([#836](https://github.com/core-ds/core-components/issues/836)) ([e15cf1d](https://github.com/core-ds/core-components/commit/e15cf1dad438e22ac31984bfcf8531981b88c6de)) +* **input:** clear icon ([51debd4](https://github.com/core-ds/core-components/commit/51debd46ea2176486cfc1945d74e8d56a4b9387b)) +* **intl-phone-input:** fix carret position on backspace ([#840](https://github.com/core-ds/core-components/issues/840)) ([c786ac1](https://github.com/core-ds/core-components/commit/c786ac17bd086833f3200570e812028ec4580554)), closes [#806](https://github.com/core-ds/core-components/issues/806) +* **modal:** add spreading backdrop props ([#870](https://github.com/core-ds/core-components/issues/870)) ([b523426](https://github.com/core-ds/core-components/commit/b52342616adf1f4b227f603264b70474e53c16f8)) +* **notification:** set word-break: break-word in notif ([8f7615d](https://github.com/core-ds/core-components/commit/8f7615d2f497d97c0811868e14bf4ccd51710f31)) +* **notification:** убрал word-break: break-all ([db0d2b2](https://github.com/core-ds/core-components/commit/db0d2b28d12101f1a7bae395cbf17d570b88cc83)) +* **plate:** check is click inside component, popover issue ([bea8a7d](https://github.com/core-ds/core-components/commit/bea8a7dc199d7aced3ec8b5e9ab76568f0cba839)) +* **plate:** активный курсор только для foldable плашек ([#912](https://github.com/core-ds/core-components/issues/912)) ([06a38bd](https://github.com/core-ds/core-components/commit/06a38bd6bd07d016d670e600b373791aabe3d3ea)) +* **radio:** условный рендер подсказки и лейбла ([#892](https://github.com/core-ds/core-components/issues/892)) ([b744c15](https://github.com/core-ds/core-components/commit/b744c159f3779c5bf555041e7762f9653efb7b0e)), closes [#869](https://github.com/core-ds/core-components/issues/869) +* **skeleton:** prevent component unmount ([#887](https://github.com/core-ds/core-components/issues/887)) ([1bd4dc3](https://github.com/core-ds/core-components/commit/1bd4dc3147622f75802dd8e574175dbbf02cca54)) +* **slider-input:** classnames overriding ([#891](https://github.com/core-ds/core-components/issues/891)) ([d63d676](https://github.com/core-ds/core-components/commit/d63d67628c88e54b38244b1f57969844379d311f)) +* bump react-popper ([#847](https://github.com/core-ds/core-components/issues/847)) ([e8d284b](https://github.com/core-ds/core-components/commit/e8d284bfdfb4aa1fa0ea9e11f6e59c117b309782)) +* confirmation & input ([#833](https://github.com/core-ds/core-components/issues/833)) ([f3c0d62](https://github.com/core-ds/core-components/commit/f3c0d62c15b3812205b71685c2d37c0a986677ee)) +* cssm build ([bbc0a47](https://github.com/core-ds/core-components/commit/bbc0a472a0f68a5b239c4734bdce452f1a107ea6)) +* fix classNames hash ([#884](https://github.com/core-ds/core-components/issues/884)) ([60f58f2](https://github.com/core-ds/core-components/commit/60f58f223106869b15f6b19f466a70b0936a5a1d)) +* **tabs:** height styles ([#810](https://github.com/core-ds/core-components/issues/810)) ([b3b96e7](https://github.com/core-ds/core-components/commit/b3b96e7efb4771c0009c29e851ce1d69f4c61ff4)) +* **tabs:** hide native scrollbar on scrollable tabs properly ([0134956](https://github.com/core-ds/core-components/commit/0134956f2af01720500f7ad06caeeb4569e74d50)), closes [#879](https://github.com/core-ds/core-components/issues/879) +* **textarea:** поправлен отступ в размере xl ([#859](https://github.com/core-ds/core-components/issues/859)) ([fcd586b](https://github.com/core-ds/core-components/commit/fcd586b03761bda053c7c3fd9381bb94227711d7)) +* input & textarea disabled color on safari ([39ea4ef](https://github.com/core-ds/core-components/commit/39ea4ef7e948016a4ffa17c563cfdd13169a3c2b)) +* wrong mobile colors ([#832](https://github.com/core-ds/core-components/issues/832)) ([d9e275b](https://github.com/core-ds/core-components/commit/d9e275b6ac60e635dec4b655bfc859f079cb9840)) +* понижена версия react-hooks, чтобы не дропать 10ую ноду. Пакет перенесен devDeps ([#852](https://github.com/core-ds/core-components/issues/852)) ([662754a](https://github.com/core-ds/core-components/commit/662754a354b2286114fdff16fa0f7a9ccb5b769d)) +* фикс цвета disabled в Safari для Input и Textarea ([efaa693](https://github.com/core-ds/core-components/commit/efaa693c8e34569df05c951c09c89895d4d949dc)) +* **amount-input:** fix float in amount input ([a9e1802](https://github.com/core-ds/core-components/commit/a9e180285073e29a05703a991c946e2c1247177a)) +* **amount-input:** remove caret-color override ([#773](https://github.com/core-ds/core-components/issues/773)) ([93311d0](https://github.com/core-ds/core-components/commit/93311d0a8e170c14c6cbfa28414d2538f78ddd3f)) +* **attach:** fix drag counter & styles ([#786](https://github.com/core-ds/core-components/issues/786)) ([b075725](https://github.com/core-ds/core-components/commit/b0757250ea57a6e5db64a5026315f8837e8a3303)) +* **backdrop:** styles ([82bdfa7](https://github.com/core-ds/core-components/commit/82bdfa7759240755f74bf12906c395d633f464e4)) +* **badge:** fix name ([207d3d3](https://github.com/core-ds/core-components/commit/207d3d30171a84ff4021cd119c0da1316a92d14c)) +* **base-modal:** correct cb ([256a142](https://github.com/core-ds/core-components/commit/256a142398a9ada34386e92d012185763cedef5a)) +* **base-modal:** fix has scroll bug ([#712](https://github.com/core-ds/core-components/issues/712)) ([a6749a1](https://github.com/core-ds/core-components/commit/a6749a149d511b28cc59aaec188d59c380c64243)) +* **base-modal:** restore body styles on unmount ([#671](https://github.com/core-ds/core-components/issues/671)) ([963a6b1](https://github.com/core-ds/core-components/commit/963a6b18b13924a09cda672a662d0b402d00e75b)) +* **base-modal:** resubscribe observer when content node changed ([2fef06e](https://github.com/core-ds/core-components/commit/2fef06eea01354f58663a5f4470606123d31f9d4)) +* **button:** fixed alignment of several buttons in a row ([#561](https://github.com/core-ds/core-components/issues/561)) ([8d9e1e2](https://github.com/core-ds/core-components/commit/8d9e1e2f7a4ba8c5c986bb833f7424b38601d463)) +* **button:** loader position in ie ([#661](https://github.com/core-ds/core-components/issues/661)) ([6f0ddab](https://github.com/core-ds/core-components/commit/6f0ddab3a3e59672f20b0f2239a4de6ba548edb1)) +* **button:** set type button by default ([#564](https://github.com/core-ds/core-components/issues/564)) ([59fdefd](https://github.com/core-ds/core-components/commit/59fdefd4f37fbe589840aa8944d88bde5b8cda6e)) +* **calendar:** fix min\max ([6bd4944](https://github.com/core-ds/core-components/commit/6bd49447492b10583973cdfc43350cf8f96c1ecb)) +* **calendar:** fix select-button disabled+selected state ([4f54c01](https://github.com/core-ds/core-components/commit/4f54c01451a2532fd377d3590869dfa52c968dcf)) +* **calendar:** ie fixes ([#628](https://github.com/core-ds/core-components/issues/628)) ([983509c](https://github.com/core-ds/core-components/commit/983509cd1cfe5be64a8627fed44ec55d989eb8a2)) +* **calendar:** limit defaultMonth ([636fa5b](https://github.com/core-ds/core-components/commit/636fa5b1363fbdea8516b95ac758aee65b8cffba)) +* **calendar-input:** allow to pass all props via calendarProps ([#653](https://github.com/core-ds/core-components/issues/653)) ([82c4675](https://github.com/core-ds/core-components/commit/82c4675e2f64b282f9d9772825874a6e1854704b)) +* **calendar-input:** call onchange with empty value ([3fbc73a](https://github.com/core-ds/core-components/commit/3fbc73a1d32586161b6fe527f76ca27cd54abebb)) +* **calendar-input:** extends calendarProps type ([8bf4f58](https://github.com/core-ds/core-components/commit/8bf4f587c1a36471318f7cc02968d1de2a125e11)) +* **calendar-input:** z-index increased ([8e0df44](https://github.com/core-ds/core-components/commit/8e0df445a1be317291f2d35e2f4d4afb9d24609c)) +* **calendar-with-skeleton:** ref & six weeks height issues ([#705](https://github.com/core-ds/core-components/issues/705)) ([907ebe1](https://github.com/core-ds/core-components/commit/907ebe18641ee2e7e91fc4622527404c20867a54)) +* **checkbox:** fix layout ([#790](https://github.com/core-ds/core-components/issues/790)) ([8aa18b4](https://github.com/core-ds/core-components/commit/8aa18b48167eeb5df225ff854d3ca337cd43d4f2)) +* **confirmation:** add font feature settings ([#540](https://github.com/core-ds/core-components/issues/540)) ([08057f6](https://github.com/core-ds/core-components/commit/08057f6930e9cd19c0213442a4915e366d26e607)) +* **confirmation:** fix bug with timers ([2bdb105](https://github.com/core-ds/core-components/commit/2bdb10505ebb91713bca0b56e4d10af08cbcd4ed)) +* **dark-theme-styles-injector:** fix rendering passed styles ([#723](https://github.com/core-ds/core-components/issues/723)) ([882841c](https://github.com/core-ds/core-components/commit/882841c1c43d5570652ab3fcc199958060b92c57)) +* **drawer:** backdrop styles ([04da4fa](https://github.com/core-ds/core-components/commit/04da4fac310dbe2634ea4130ead480a88d47ee8e)) +* **drawer:** lost vars ([#632](https://github.com/core-ds/core-components/issues/632)) ([82a8e46](https://github.com/core-ds/core-components/commit/82a8e461fc16d4ae8b6d3d268c92f7dc969e81f8)) +* **dropzone:** add pointer-events none to overlay ([#677](https://github.com/core-ds/core-components/issues/677)) ([5f9077a](https://github.com/core-ds/core-components/commit/5f9077a7c6c88272c7e9e67ec243488249cc5ded)) +* **form-control:** l size offset between value and label (PDS-270) ([#781](https://github.com/core-ds/core-components/issues/781)) ([311f8a0](https://github.com/core-ds/core-components/commit/311f8a0eaa97cf7d0c89d4a3cdfc443aef2d763c)) +* **gaps:** add description ([#562](https://github.com/core-ds/core-components/issues/562)) ([0e0b2d3](https://github.com/core-ds/core-components/commit/0e0b2d3ffa5fe83f3282acf6b3db80c1ddd09b1f)) +* **icon-button:** fix typo in css variable ([#675](https://github.com/core-ds/core-components/issues/675)) ([b227d07](https://github.com/core-ds/core-components/commit/b227d073797f995baf2474a52f4f6df7c6555e91)) +* **input:** autofocus ([#761](https://github.com/core-ds/core-components/issues/761)) ([e2880de](https://github.com/core-ds/core-components/commit/e2880de6cff33b156bea58286bb46e0803e254a5)) +* **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782) +* **input-autocomplete:** popover height with dynamic height options ([da24758](https://github.com/core-ds/core-components/commit/da247589a35ba33742f95fc96ed63b0ba65cdf11)) +* **intl-phone-input:** remove changing unclearable country code ([#730](https://github.com/core-ds/core-components/issues/730)) ([6d219d6](https://github.com/core-ds/core-components/commit/6d219d622e4da60aada0e10d3c442510f597b1b9)) +* **intl-phone-input:** revert fix carret position on backspace ([772dcf5](https://github.com/core-ds/core-components/commit/772dcf588ba2d28ab9b02f81d0bf538bf016cae0)) +* **masked-input:** inline module types ([#692](https://github.com/core-ds/core-components/issues/692)) ([004e60a](https://github.com/core-ds/core-components/commit/004e60ab61f51251b9d65d4d04fd9562eda5e766)) +* **modal:** click theme sticky footer bg ([#641](https://github.com/core-ds/core-components/issues/641)) ([215a155](https://github.com/core-ds/core-components/commit/215a155030d9966508afa1b8ee8059cc422a2765)) +* **modal:** fix styles ([#665](https://github.com/core-ds/core-components/issues/665)) ([06f3615](https://github.com/core-ds/core-components/commit/06f3615c532f8ec2932d8a4d1fcbb1f5ee6b6a30)) +* **modal:** fullscreen & header title styles ([#580](https://github.com/core-ds/core-components/issues/580)) ([39fa494](https://github.com/core-ds/core-components/commit/39fa4940223b6187a391ff6c0b6706ae8a333dc0)) +* **modal:** max-width 100% ([#794](https://github.com/core-ds/core-components/issues/794)) ([793a765](https://github.com/core-ds/core-components/commit/793a765e7d5dc251eee810acde4605e139565906)) +* **notification:** ie fixes ([#633](https://github.com/core-ds/core-components/issues/633)) ([decbf8f](https://github.com/core-ds/core-components/commit/decbf8f4d55cb48a5f3a6430e30e750104907552)) +* **notification:** move closest polyfill to mount ([#639](https://github.com/core-ds/core-components/issues/639)) ([364a9f6](https://github.com/core-ds/core-components/commit/364a9f69b632428394ce8571333d8f0e6dc11f1e)) +* **plate:** alert in plate cascade issue ([#793](https://github.com/core-ds/core-components/issues/793)) ([dbc20e5](https://github.com/core-ds/core-components/commit/dbc20e558f2b6452e70052b5abc3faf8533709d4)) +* **select:** add aria-disabled when disabled ([#662](https://github.com/core-ds/core-components/issues/662)) ([bd93614](https://github.com/core-ds/core-components/commit/bd93614530567515af8e9bee3a7e0e08c8528b4c)) +* **select:** fix hidden label ([#652](https://github.com/core-ds/core-components/issues/652)) ([a5fecfc](https://github.com/core-ds/core-components/commit/a5fecfc16db2a7bad73282706c2c588b235acf8a)) +* **select:** lazy loading select ([#797](https://github.com/core-ds/core-components/issues/797)) ([68b5602](https://github.com/core-ds/core-components/commit/68b560208ff288657aa1698387c617c7c1449a8d)) +* **select:** options list width calc ([5294af7](https://github.com/core-ds/core-components/commit/5294af78ef61b50edde42ed255e66e6ea004c0fd)) +* **select:** recalc height on options changed ([#536](https://github.com/core-ds/core-components/issues/536)) ([4c27c19](https://github.com/core-ds/core-components/commit/4c27c197882256e507ec83678da4811f6285c2fe)) +* **select:** recalc options-list width when open ([#640](https://github.com/core-ds/core-components/issues/640)) ([1a7a3c2](https://github.com/core-ds/core-components/commit/1a7a3c2f596e438686a59999411ef7a437dc00fe)) +* **select:** remove wron prop passed into renderOption method ([#791](https://github.com/core-ds/core-components/issues/791)) ([5231813](https://github.com/core-ds/core-components/commit/523181355ebde537aa802f86c27e867d9261095a)) +* add missing deps ([4f4a540](https://github.com/core-ds/core-components/commit/4f4a54059f141e41e430199b1a2c30fedf62b081)) +* extend hint type to ReactNode ([#792](https://github.com/core-ds/core-components/issues/792)) ([d02784e](https://github.com/core-ds/core-components/commit/d02784e392f5ca3a30ae009109fbb6351967f746)) +* move icon from date input to calendar input ([#768](https://github.com/core-ds/core-components/issues/768)) ([040bd42](https://github.com/core-ds/core-components/commit/040bd423279eb535f1ea924599ee16c296453e3f)) +* select & calendar-input use glyph icons ([#742](https://github.com/core-ds/core-components/issues/742)) ([6b04ae4](https://github.com/core-ds/core-components/commit/6b04ae49fc4f3805ef362dcb68939b72fc99814b)) +* **intl-phone-input:** format input value ([#703](https://github.com/core-ds/core-components/issues/703)) ([b5e91ed](https://github.com/core-ds/core-components/commit/b5e91edf03867f5dc93fab78425f7c1a128afd9b)) +* **modal:** header height & paddings ([#676](https://github.com/core-ds/core-components/issues/676)) ([d8945c6](https://github.com/core-ds/core-components/commit/d8945c6839b059325ad2a90ca4fc6eda2da3b4c2)) +* **modal:** restore styles after exited ([#663](https://github.com/core-ds/core-components/issues/663)) ([48a8d69](https://github.com/core-ds/core-components/commit/48a8d6986dcde6c191d8411d51f28e6f399e26e6)) +* **phone-input:** value prop ([#757](https://github.com/core-ds/core-components/issues/757)) ([3ba0168](https://github.com/core-ds/core-components/commit/3ba01686ffa950bd74d9ab28bfa961c6cf74a5d8)) +* **select:** calc height in effect ([#689](https://github.com/core-ds/core-components/issues/689)) ([83f8745](https://github.com/core-ds/core-components/commit/83f87454bcacfbb3473c688e222af3185daef5a9)) +* **select:** fix checkmark ([#681](https://github.com/core-ds/core-components/issues/681)) ([71a51dc](https://github.com/core-ds/core-components/commit/71a51dc0204165827724fd444d3279f8cc6ccfcd)) +* **select:** fix checkmark position on click theme ([#699](https://github.com/core-ds/core-components/issues/699)) ([0a3bab5](https://github.com/core-ds/core-components/commit/0a3bab52278b4db8f327a8bf5da97cfb5acecc6a)) +* **select:** fix top bottom paddings ([#683](https://github.com/core-ds/core-components/issues/683)) ([866bc3b](https://github.com/core-ds/core-components/commit/866bc3bee9428f0f67f443b3be0ae23342213b0d)) +* **select:** optionsListWidth prop ([#685](https://github.com/core-ds/core-components/issues/685)) ([3b87e73](https://github.com/core-ds/core-components/commit/3b87e73fdba18c0d41883e47fe4c13976988f2e6)) +* **select:** update optgroup styles ([#679](https://github.com/core-ds/core-components/issues/679)) ([63a06ce](https://github.com/core-ds/core-components/commit/63a06ce4776e22f9374fe689b62e949772443fda)) +* **select-with-tags:** changed includes method for IE11 support ([#651](https://github.com/core-ds/core-components/issues/651)) ([254bca3](https://github.com/core-ds/core-components/commit/254bca3df02107dfffc5175f74e35162453c20d0)) +* **skeleton:** remove vars that purge kills ([886d1b2](https://github.com/core-ds/core-components/commit/886d1b24b144d9d277821d3264f71a93c7a1b146)) +* **space:** remove last element margin ([#713](https://github.com/core-ds/core-components/issues/713)) ([bc36cf7](https://github.com/core-ds/core-components/commit/bc36cf7db35cbd7c5d36c178a50bbd27d2f11b0c)) +* **tooltip:** fix bug with controlled state ([#759](https://github.com/core-ds/core-components/issues/759)) ([dd0144e](https://github.com/core-ds/core-components/commit/dd0144e880e0dac6bac1ab9d15832341761993e9)) +* **typography:** add missing weight styles ([#719](https://github.com/core-ds/core-components/issues/719)) ([6b855aa](https://github.com/core-ds/core-components/commit/6b855aa97eff918e0e16f957c4c05bb7f2d8f4fe)) +* update popover versions ([#646](https://github.com/core-ds/core-components/issues/646)) ([199cf80](https://github.com/core-ds/core-components/commit/199cf80cd60e6edf0ac5d41c7eb258ab05d3b534)) +* **select-with-tags:** tag box-sizing issue ([#589](https://github.com/core-ds/core-components/issues/589)) ([9bc9a44](https://github.com/core-ds/core-components/commit/9bc9a4484b1e46372bce5fc16663f3ac05378310)) +* **skeleton:** remove extra bottom margin ([#619](https://github.com/core-ds/core-components/issues/619)) ([8f83022](https://github.com/core-ds/core-components/commit/8f83022c5a89e2f0b63449970437d0ca00129e5d)) +* **toast-plate:** fix children margin ([#583](https://github.com/core-ds/core-components/issues/583)) ([3b2a964](https://github.com/core-ds/core-components/commit/3b2a96408c56a08eb8796c83a344df20bd4ae032)) +* **toast-plate:** fix cross color ([#642](https://github.com/core-ds/core-components/issues/642)) ([96a17fd](https://github.com/core-ds/core-components/commit/96a17fdcd28a37519845d5a0c40809f107e3031f)) +* border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073)) +* fix types importing in root package ([#569](https://github.com/core-ds/core-components/issues/569)) ([bdb362a](https://github.com/core-ds/core-components/commit/bdb362ad7e23b6ffee8a0299ff91a49cad1f66c2)) +* one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc)) +* update plugin ([#627](https://github.com/core-ds/core-components/issues/627)) ([5bb78f2](https://github.com/core-ds/core-components/commit/5bb78f231e525d0f86ec7fb8ccd8af65121c5169)) +* **select:** virtual list wrong height ([8708228](https://github.com/core-ds/core-components/commit/8708228749acdeed0d1dfe4b9538dc22683e7f28)) +* **select-with-tags:** fixed styles ([#543](https://github.com/core-ds/core-components/issues/543)) ([206db51](https://github.com/core-ds/core-components/commit/206db5138c8ba2869c5ac458609928c4753cc83b)) +* **select-with-tags:** missed dot ([c3c98d0](https://github.com/core-ds/core-components/commit/c3c98d0106072a431a616e8420edb01d83ad5fce)) +* **select-with-tags:** remove pointer events from placeholder ([#545](https://github.com/core-ds/core-components/issues/545)) ([41b860b](https://github.com/core-ds/core-components/commit/41b860bd550b71d2025081d76d7c1240258ecaf9)) +* **slider-input:** label + info + error issue ([147bb71](https://github.com/core-ds/core-components/commit/147bb716ab6dc500aaf0923d5442560c743e6b66)) +* **tabs:** fix ssr rendering ([#621](https://github.com/core-ds/core-components/issues/621)) ([e45efe7](https://github.com/core-ds/core-components/commit/e45efe78ff2583b92393e9c271f07fe3718b9d40)) +* **tabs:** fix tabs hidden ([#816](https://github.com/core-ds/core-components/issues/816)) ([68468dd](https://github.com/core-ds/core-components/commit/68468dd6e74a465f2d4bcde87d7852bcaf934783)) +* **tabs:** фикс бага при скрытии табов ([#851](https://github.com/core-ds/core-components/issues/851)) ([5d5dcd9](https://github.com/core-ds/core-components/commit/5d5dcd966fface279921bea5610e9b3af3f2117b)) +* **textarea:** missing vars ([#817](https://github.com/core-ds/core-components/issues/817)) ([d03231f](https://github.com/core-ds/core-components/commit/d03231f24c826f540ecc8c6ddeb2b3e3fec38b6a)) +* radio/checkbox ([#594](https://github.com/core-ds/core-components/issues/594)) ([4c9c13f](https://github.com/core-ds/core-components/commit/4c9c13fdf4ab3db9a6b176aeaba529c9b23f971b)) +* **amount:** fix story ([#463](https://github.com/core-ds/core-components/issues/463)) ([3e1d6c1](https://github.com/core-ds/core-components/commit/3e1d6c178cc7b0305b0f82e79588bf4d1fa40f91)) +* **calendar:** fix years-table position ([#474](https://github.com/core-ds/core-components/issues/474)) ([0f8cfe2](https://github.com/core-ds/core-components/commit/0f8cfe2b7405989f69d4df964bc2df7858c20ac6)) +* **calendar:** fixes ([#498](https://github.com/core-ds/core-components/issues/498)) ([410630e](https://github.com/core-ds/core-components/commit/410630e3cdd093027444207f16a0f942a62b86de)) +* **calendar:** set max date to years calculation ([#441](https://github.com/core-ds/core-components/issues/441)) ([ec9fd36](https://github.com/core-ds/core-components/commit/ec9fd36c278bcb8cca209eb5a15690c5ac0dd3d8)) +* **calendar:** snapshots timezone issue ([#448](https://github.com/core-ds/core-components/issues/448)) ([18f8080](https://github.com/core-ds/core-components/commit/18f80805499a78cec06377472cdf8d0e81b2378d)) +* **calendar:** vars import ([b8cabec](https://github.com/core-ds/core-components/commit/b8cabec5811e2ac0839d05335edee568dc360f54)) +* **calendar-input:** vars import, fix pattern ([f1f9336](https://github.com/core-ds/core-components/commit/f1f9336d7ae5ed62b4ee5123636fe1950bc25f34)) +* **calendar-range:** fix snapshot ([a135dde](https://github.com/core-ds/core-components/commit/a135ddee4ae99c576df85133984a247231fbb786)) +* **divider:** missed vars ([afeb14e](https://github.com/core-ds/core-components/commit/afeb14ea21281d49fdd24a456f4f18aaa6452cc9)) +* **form-control:** ff blink ([490ff25](https://github.com/core-ds/core-components/commit/490ff257eacb61c5d0d7f8861d12e43af9df3a55)) +* **input:** prevent autocomplete to change bgcolor ([#468](https://github.com/core-ds/core-components/issues/468)) ([d00abe3](https://github.com/core-ds/core-components/commit/d00abe396fad28d6e22887cf5878367d9a6997f8)) +* **input:** set aria-label attr when label passed ([#462](https://github.com/core-ds/core-components/issues/462)) ([c8e4489](https://github.com/core-ds/core-components/commit/c8e448929e9f1a63e9391dda4db2b0d3a7d94902)) +* **input-autocomplete:** fix mousedown issue ([#473](https://github.com/core-ds/core-components/issues/473)) ([889d5ff](https://github.com/core-ds/core-components/commit/889d5ffa35a6f2163107b646165dc2ecd2401887)) +* **loader:** fixed animation start ([4df4712](https://github.com/core-ds/core-components/commit/4df47121429793652f9c838ec306072136f75931)) +* **modal:** fix comments issues ([3c5c9e2](https://github.com/core-ds/core-components/commit/3c5c9e2704070a41cc466fd3ea7881ff13ea1edd)) +* **modal:** fix comments issues ([dd8370f](https://github.com/core-ds/core-components/commit/dd8370f79264d29c5de5b5fa558339cf98384486)) +* **notification:** fix css var name ([#526](https://github.com/core-ds/core-components/issues/526)) ([6bbc851](https://github.com/core-ds/core-components/commit/6bbc851fba023309292a89f0152fbe0603a955a1)) +* **phone-input:** fix caret ([#493](https://github.com/core-ds/core-components/issues/493)) ([b510257](https://github.com/core-ds/core-components/commit/b510257a7793041766a1d7f4f0a8eae61ee69a8d)) +* **picker-button:** fix test ([639fbe6](https://github.com/core-ds/core-components/commit/639fbe69f5771e5ffbff5fe65a5e46d009a6bd7c)) +* **picker-button:** remove global style ([281ed10](https://github.com/core-ds/core-components/commit/281ed10010756c8337cfa1965da2a58e8a1dfe42)) +* **plate:** fixed --arrow-transform var, tuned transition ([#509](https://github.com/core-ds/core-components/issues/509)) ([dd51018](https://github.com/core-ds/core-components/commit/dd510185db28fefb102b287ae5022cf42e8072dc)) +* **portal:** revert "portal related issues" ([407489a](https://github.com/core-ds/core-components/commit/407489a4278f16806900e97fd2af3655e5b8b071)) +* **portal:** revert "update portal" ([d93aeb1](https://github.com/core-ds/core-components/commit/d93aeb1afdbef0c590d1586c7cd0c6d66f89da9b)) +* **select:** fix safari overflow bug ([#492](https://github.com/core-ds/core-components/issues/492)) ([a273dc1](https://github.com/core-ds/core-components/commit/a273dc1372d171b0a36ad7acfa6e50e65b10a889)) +* **select:** min width bug ([#524](https://github.com/core-ds/core-components/issues/524)) ([cdd686b](https://github.com/core-ds/core-components/commit/cdd686ba0780fdde982fff6629afd2fa798f9479)) +* **space:** removed excess div ([776e093](https://github.com/core-ds/core-components/commit/776e09393cc74eb31e4e56d3fba29a797f813a7f)) +* **switch:** box-sizing issue ([#490](https://github.com/core-ds/core-components/issues/490)) ([73c9eb0](https://github.com/core-ds/core-components/commit/73c9eb0b682a7d8168ae97b9a524d56c65fbd5a5)) +* **tag:** fix formatting ([#480](https://github.com/core-ds/core-components/issues/480)) ([111bf08](https://github.com/core-ds/core-components/commit/111bf08c068f4efe400ce6a25a60280a50fda7b4)) +* **themes:** corp theme ([#512](https://github.com/core-ds/core-components/issues/512)) ([6226238](https://github.com/core-ds/core-components/commit/6226238be1104550622eba1b842dac5ed9828d83)) +* **themes:** fixed button corp theme ([4dec71c](https://github.com/core-ds/core-components/commit/4dec71ccc9bd321a9d7a50dba221b13267b092f9)) +* **themes:** fixed click theme for tabs size S ([#510](https://github.com/core-ds/core-components/issues/510)) ([1ce93e5](https://github.com/core-ds/core-components/commit/1ce93e55d0622951e8db652f16b883a151a75e79)) +* **themes:** lost core vars ([#534](https://github.com/core-ds/core-components/issues/534)) ([54a23c9](https://github.com/core-ds/core-components/commit/54a23c90997c4aa90944d0391f2aab27f799353d)) +* **toast-plate:** polish toast-plate themes ([#527](https://github.com/core-ds/core-components/issues/527)) ([57d73d4](https://github.com/core-ds/core-components/commit/57d73d47b089997b2cc0d85e37b70f068c945e50)) +* add fallback for IE for width: max-content ([22a88bb](https://github.com/core-ds/core-components/commit/22a88bb40b40e8ea6d8a7d618c2957ed33751a86)) +* adds semantic release configs again ([01231a3](https://github.com/core-ds/core-components/commit/01231a3e0de52beb226d5f4bb350db54478307d3)) +* change icons imports paths ([#437](https://github.com/core-ds/core-components/issues/437)) ([e3d4e25](https://github.com/core-ds/core-components/commit/e3d4e2504b282810973eab14201844cd084c4237)) +* fix style for form-control and base-select ([51f9800](https://github.com/core-ds/core-components/commit/51f9800f13a3c4d682be310fe155c2aaddcc7191)) +* form-control colors ([#503](https://github.com/core-ds/core-components/issues/503)) ([784e05e](https://github.com/core-ds/core-components/commit/784e05ecebf2cf9991447bf2dbac4b1dd36b9792)) +* snapshots ([6d387a8](https://github.com/core-ds/core-components/commit/6d387a802a5eb1a5b150cb47ec35b5cbe3f086d7)) +* subComponentName ([8064ac6](https://github.com/core-ds/core-components/commit/8064ac67af83750673ac2dde4794b2ec8fc04f2e)) +* update data and utils dependencies ([#496](https://github.com/core-ds/core-components/issues/496)) ([76eba5d](https://github.com/core-ds/core-components/commit/76eba5dec90fc8f7616018171ddbf97ddfe091ce)) +* update versions ([1d83612](https://github.com/core-ds/core-components/commit/1d8361241fecb6be83e3ce8b546f19def1efc592)) +* update versions ([d1b69a3](https://github.com/core-ds/core-components/commit/d1b69a3f0f488bdef5bea2b3aafc0e275058f321)) +* update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70)) +* delete extra cn ([#415](https://github.com/core-ds/core-components/issues/415)) ([d08966f](https://github.com/core-ds/core-components/commit/d08966fd00459d497640d27a27afa5d0d0fddab9)) +* **button:** design review fixes ([4eca9d1](https://github.com/core-ds/core-components/commit/4eca9d10185f6ffc42644086e679ba7f361cc4f1)) +* **button:** show loader when href is set ([#374](https://github.com/core-ds/core-components/issues/374)) ([79d6750](https://github.com/core-ds/core-components/commit/79d675007a86fe1e36e77376ba7a3afa3b8045e8)) +* **calendar-input:** fix focus issue ([60af1b9](https://github.com/core-ds/core-components/commit/60af1b92d076ce393ac308b64b93af182a68c933)) +* **calendar-input:** fix story ([ff2732d](https://github.com/core-ds/core-components/commit/ff2732da4c7dc35819aebdfdc224472d932a42a2)) +* **circular-progress-bar:** change max-height ([b587c87](https://github.com/core-ds/core-components/commit/b587c8747fe242b32ea11ebad38ef960cf5669b6)) +* **circular-progress-bar:** fix label width ([#395](https://github.com/core-ds/core-components/issues/395)) ([1d3cb6b](https://github.com/core-ds/core-components/commit/1d3cb6b134bc85febd89ad8183f537abbda18482)), closes [#394](https://github.com/core-ds/core-components/issues/394) +* **confirmation:** fix symbols deleting ([#392](https://github.com/core-ds/core-components/issues/392)) ([fee41f1](https://github.com/core-ds/core-components/commit/fee41f17dfb84f9af2ad40e6150e1026ff07ada9)) +* **core-components-*:** fix undefined refs ([ea5dac0](https://github.com/core-ds/core-components/commit/ea5dac0c5e4371a7224c0a2eddbd80a257675961)) +* **core-components-*:** portal related issues ([a5735fb](https://github.com/core-ds/core-components/commit/a5735fbc17110372464fdc7fa0c59bd072c1b525)) +* **core-components-amount-input:** missing handlers ([be512d5](https://github.com/core-ds/core-components/commit/be512d51fae847f2dd7a4e939adbbd93aadcff67)) +* **core-components-bank-card:** deleting issue, add useCallback ([#309](https://github.com/core-ds/core-components/issues/309)) ([5f768bd](https://github.com/core-ds/core-components/commit/5f768bd3b0242d4f0adae25c33b8c38575bfedef)) +* **core-components-bank-card:** label styles ([#316](https://github.com/core-ds/core-components/issues/316)) ([31ea1ce](https://github.com/core-ds/core-components/commit/31ea1cec588cacd425b35b3e71d4a18925b71a5a)) +* **core-components-button:** add text align ([#306](https://github.com/core-ds/core-components/issues/306)) ([a60a4dc](https://github.com/core-ds/core-components/commit/a60a4dcb7f7280c6c4e4628deb48456fde3c6171)) +* **core-components-button:** fixed primary button background color ([874e203](https://github.com/core-ds/core-components/commit/874e20336bea6500c75b207bf2cc14262bb878ff)) +* **core-components-confirmation:** fix showed keyboard on old devices ([#341](https://github.com/core-ds/core-components/issues/341)) ([7165ed1](https://github.com/core-ds/core-components/commit/7165ed1846910ffcef685cb35f8ec9afd802116f)) +* **core-components-form-control:** fix hover state ([#317](https://github.com/core-ds/core-components/issues/317)) ([41b2d51](https://github.com/core-ds/core-components/commit/41b2d51fdbf2fc729a1180d6a515ee56b521c555)) +* **core-components-portal:** update portal ([5638163](https://github.com/core-ds/core-components/commit/5638163e98e6c0c4a9ea3254761fe1fdb739c78e)) +* **core-components-tabs:** fix styles build ([#310](https://github.com/core-ds/core-components/issues/310)) ([d05a0ef](https://github.com/core-ds/core-components/commit/d05a0ef86880903e3e33703ef245655cf11e66e7)), closes [#314](https://github.com/core-ds/core-components/issues/314) +* **core-components-themes:** add all vars import ([6d50c3e](https://github.com/core-ds/core-components/commit/6d50c3e089f0e31721adaaf0b56b741b8dec6a7a)) +* **core-components-themes:** process color-mod, fix vars ([5d77f9b](https://github.com/core-ds/core-components/commit/5d77f9be7766f13ac100130a2ff95f6735fe05d9)) +* **core-components-vars:** import colors-transparent in index ([2109973](https://github.com/core-ds/core-components/commit/2109973ecfd4549f0cb2d711ee19ddd07faa415d)) +* **core-components-with-suffix:** add text styles ([b4dbabe](https://github.com/core-ds/core-components/commit/b4dbabe06b4af072b9cb8e05d54861a587c3f41a)) +* **core-components-with-suffix:** fix stories ([6226300](https://github.com/core-ds/core-components/commit/6226300716354fef9f01d2fa40dbf294d47aa5ba)) +* **form-control:** fix height ([#380](https://github.com/core-ds/core-components/issues/380)) ([afc3722](https://github.com/core-ds/core-components/commit/afc3722dc08eb3f742eaec53be5b0233afad02c3)) +* **mq:** use addListener and removeListener ([#402](https://github.com/core-ds/core-components/issues/402)) ([9918383](https://github.com/core-ds/core-components/commit/9918383c31b07ea2aad253765f2f17a88d00b943)) +* **plate:** remove redunadant className ([#373](https://github.com/core-ds/core-components/issues/373)) ([fdd6b3d](https://github.com/core-ds/core-components/commit/fdd6b3dabb0b5b607d6c84471640c73e65128d0e)), closes [#366](https://github.com/core-ds/core-components/issues/366) +* **select:** fix wrong options height ([18f26d9](https://github.com/core-ds/core-components/commit/18f26d9e6c0d9b99c4396f0b6d86b352014fac0a)) +* **themes:** add missing variables import ([#449](https://github.com/core-ds/core-components/issues/449)) ([456c045](https://github.com/core-ds/core-components/commit/456c0450b484863287c24088eefc51d6d7396570)), closes [#442](https://github.com/core-ds/core-components/issues/442) +* **themes:** fix corp button themes ([#425](https://github.com/core-ds/core-components/issues/425)) ([2e49682](https://github.com/core-ds/core-components/commit/2e4968281a01c197bf98c37b791022fd8182d3a5)) +* **themes:** fixed click select theme ([68dd29e](https://github.com/core-ds/core-components/commit/68dd29e6e0dcbdf4378687e9550d02c875d11b20)) +* **tooltip:** execute tooltip's target missing callbacks ([#443](https://github.com/core-ds/core-components/issues/443)) ([237cef1](https://github.com/core-ds/core-components/commit/237cef12805284bc036ddc59789771a3ad9c9210)) +* snapshots ([03a70ef](https://github.com/core-ds/core-components/commit/03a70ef8c30e901347e718784a107d23bad127d6)) +* **core-components-*:** fix class properties transform ([f407938](https://github.com/core-ds/core-components/commit/f4079384388728251fd90154758fc4aa100f50d6)) +* **core-components-*:** remove optional chaining to fix build issues ([75b0e7a](https://github.com/core-ds/core-components/commit/75b0e7a701c1f2891533d1242e7c83a83854f414)) +* **core-components-modal:** fix lint issues ([5fc1eb4](https://github.com/core-ds/core-components/commit/5fc1eb4c4a42dde687e2255e6a544b7a0e1b193f)) +* **list:** apply --list-marker-color only to marker ([5479f47](https://github.com/core-ds/core-components/commit/5479f47dd44fc8d9cfedb84f7787e5af84c1f41d)) +* **modal:** fix class properties transform ([f6a1de5](https://github.com/core-ds/core-components/commit/f6a1de5b769bcf7605cc992a7e9ebf63445d1169)) +* **picker-button:** fix icon color ([f8d97b4](https://github.com/core-ds/core-components/commit/f8d97b44680fa2ace1539b11b5d0a318d45094aa)) +* **themes:** remove imports from mixins ([4d878b5](https://github.com/core-ds/core-components/commit/4d878b59e46c1cfc1799182367421402af6462db)) +* changed secrets variables ([4afa0b7](https://github.com/core-ds/core-components/commit/4afa0b72d1ee93b0faa816a202ec24ed49bd2096)) +* fix ie bundle ([#385](https://github.com/core-ds/core-components/issues/385)) ([9ca6024](https://github.com/core-ds/core-components/commit/9ca60245991903600c0308c9cd30955f39bd914f)) +* fix version ([0c3cff0](https://github.com/core-ds/core-components/commit/0c3cff0adaf276bcc9e1f57f5da56e44ebd64b3c)) +* slightly better and safer ie fixes ([0e34b4f](https://github.com/core-ds/core-components/commit/0e34b4fb9800a435c05dc8f83146ce5617cf99a5)) +* theme-switcher select value ([845de5d](https://github.com/core-ds/core-components/commit/845de5d5124a2459cad2cf40dd015d6580e68700)) +* **radio:** fix input width ([#378](https://github.com/core-ds/core-components/issues/378)) ([369684e](https://github.com/core-ds/core-components/commit/369684ed2ce7aae07a00941e663accf82f8f2763)) +* storybook build with assets ([0d2e819](https://github.com/core-ds/core-components/commit/0d2e819ae27900e9022bae53dac5a381336871a0)) +* typings issue ([dd17a7b](https://github.com/core-ds/core-components/commit/dd17a7b0c04413dce337c2eecd8bc197e580e067)) +* **checkbox-group:** fix css classnames ([1ec07fa](https://github.com/core-ds/core-components/commit/1ec07faa276bfa20917b1ff4decfde2c81c66ffe)) +* **core-components-amount-input:** fix console error ([461d435](https://github.com/core-ds/core-components/commit/461d435643d6b5908344fadfe66927dd48ed014c)) +* **core-components-amount-input:** resolve [#281](https://github.com/core-ds/core-components/issues/281) ([7e91e9e](https://github.com/core-ds/core-components/commit/7e91e9ed5c4902be979e7dde8818698d71017e68)) +* **core-components-bank-card:** fix test ([77c72db](https://github.com/core-ds/core-components/commit/77c72db21f3bef02f07295015331d55da9c27621)) +* **core-components-button:** background in loading state ([2064e59](https://github.com/core-ds/core-components/commit/2064e593914354258cd47a4da9ca65cf26585542)) +* **core-components-button:** disabled styles are back ([bf81264](https://github.com/core-ds/core-components/commit/bf81264bb922ea98752adb9b2a6b09c946d48ed9)) +* **core-components-button:** fix block button width ([4abf5d9](https://github.com/core-ds/core-components/commit/4abf5d9d915909c4b5b4beddad7d287df812beb4)) +* **core-components-button:** fix button loading state ([eac3c3c](https://github.com/core-ds/core-components/commit/eac3c3ca888ee0092a1693b9a39843c1dd9a75f1)) +* **core-components-button:** fix loader position ([#236](https://github.com/core-ds/core-components/issues/236)) ([697c44a](https://github.com/core-ds/core-components/commit/697c44a0559515f593541909fabc7145a66ee7e1)) +* **core-components-checkbox-group:** fix classnames to camelcase ([522af20](https://github.com/core-ds/core-components/commit/522af2088bbc7ef9343b4f6c3de5bb7ee51c6202)) +* **core-components-input:** fix clear button, fix focus issues ([24fc3c6](https://github.com/core-ds/core-components/commit/24fc3c603e92418e8589c09bed2ca5d8bdf57f5a)) +* **core-components-money-input:** add todo ([612c88c](https://github.com/core-ds/core-components/commit/612c88c87197e3c42332291f81dd1a918599f637)) +* **core-components-money-input:** fix bold ([4625eee](https://github.com/core-ds/core-components/commit/4625eee240f1024e3934e205b4a20845f8da1542)) +* **core-components-money-input:** fix build ([c68fa08](https://github.com/core-ds/core-components/commit/c68fa0890965a5415b1acc7fab144eaaabbb9676)) +* **core-components-money-input:** fix default placeholder ([2efbcbd](https://github.com/core-ds/core-components/commit/2efbcbd49fbc2c02a6644867bfa25c96b3943223)) +* **core-components-money-input:** fix demo ([2b22f2d](https://github.com/core-ds/core-components/commit/2b22f2db919ff0e9bd1c393234154234b3675582)) +* **core-components-money-input:** fix dependency ([1ea92b7](https://github.com/core-ds/core-components/commit/1ea92b78aacaf5421ddaa867c795ecf4ed4d9318)) +* **core-components-money-input:** fix zindex ([0688bd9](https://github.com/core-ds/core-components/commit/0688bd925a52a3b0d1ce28779b75e626a961627d)) +* **core-components-money-input:** remove temp wrapper ([fc6e904](https://github.com/core-ds/core-components/commit/fc6e904aeb2df1b05b172c59d4897418e67c7993)) +* **core-components-money-input:** type for currency according comments ([078069d](https://github.com/core-ds/core-components/commit/078069d523c545b8d7b3d7edb2f8676a2aa4a522)) +* **core-components-phone-input:** fix controlled value bug ([#248](https://github.com/core-ds/core-components/issues/248)) ([62c3cd2](https://github.com/core-ds/core-components/commit/62c3cd25ccf3657e70fb5ebafa5e0ac2e9a8c1da)), closes [#253](https://github.com/core-ds/core-components/issues/253) +* **core-components-popover:** add missing styles ([578f1cb](https://github.com/core-ds/core-components/commit/578f1cb20cad08fec606b6da11c961552ca990d1)) +* **core-components-progress-bar:** refactor, snapshot tests fix ([7b0b553](https://github.com/core-ds/core-components/commit/7b0b553eafce92307bec53d0d35f847969bf8904)) +* **core-components-progress-bar:** use theme ([#201](https://github.com/core-ds/core-components/issues/201)) ([a9ab773](https://github.com/core-ds/core-components/commit/a9ab773d75f4fcbc68ad648b378cfb3c2b9c0c19)) +* **core-components-select:** fix typings, add id ([341d79d](https://github.com/core-ds/core-components/commit/341d79dad610fce77b28cff31382e38152b02d3b)) +* **core-components-select:** fix typings, unused css ([c223dbb](https://github.com/core-ds/core-components/commit/c223dbb9245f7cc6113a76077f458c4bdcd75462)) +* **core-components-select:** remove default autocomplete ([a223433](https://github.com/core-ds/core-components/commit/a2234334eaf145582a39bc045b84d61a97a7660c)) +* **core-components-skeleton:** fix styles ([0aac24f](https://github.com/core-ds/core-components/commit/0aac24f3e7ed536fef560abec9627daf42a688df)) +* **core-components-tabs:** fix css-modules build ([#239](https://github.com/core-ds/core-components/issues/239)) ([0e9d8d0](https://github.com/core-ds/core-components/commit/0e9d8d073dc000484816c8d10beddff12e0c463e)) +* **core-components-tabs:** recalc line styles on render ([#250](https://github.com/core-ds/core-components/issues/250)) ([b9fd710](https://github.com/core-ds/core-components/commit/b9fd7105c19809fc682f60fca275bd645e082c85)) +* **core-components-themes:** fix site theme ([97f5caa](https://github.com/core-ds/core-components/commit/97f5caab5f3ce546d382a711c726bed5b54724ab)) +* **core-components-themes:** temp fix for color-mod ([94a79a0](https://github.com/core-ds/core-components/commit/94a79a08d53266963d3d96bf3c5c41321629d360)) +* 🐛 use mixinsDir to import mixins ([#182](https://github.com/core-ds/core-components/issues/182)) ([06a6f2d](https://github.com/core-ds/core-components/commit/06a6f2dde49db07681d09a5afb94e91ab1c9da04)), closes [#181](https://github.com/core-ds/core-components/issues/181) +* add missing deps ([231402b](https://github.com/core-ds/core-components/commit/231402b2f054defddea4afd4eaf94f5d1791ccb4)) +* add new colors, fix typography ([e50365e](https://github.com/core-ds/core-components/commit/e50365e7e7c6d17422aff61c266b3a1b55a0ecf3)) +* build issues ([cdacf43](https://github.com/core-ds/core-components/commit/cdacf43a0b8f24a4b2b6ca97d0c008b30692c841)) +* fix import example ([#237](https://github.com/core-ds/core-components/issues/237)) ([0ea47b5](https://github.com/core-ds/core-components/commit/0ea47b59138690cb294314883da7298e7b5d0195)) +* fix import replacement ([5354d06](https://github.com/core-ds/core-components/commit/5354d0604125d9d21c2939987cecd10d428a509f)), closes [#170](https://github.com/core-ds/core-components/issues/170) +* fix radio & checkbox colors ([56a0a16](https://github.com/core-ds/core-components/commit/56a0a16d1259f05b51b06ba81035003eadc1f2b3)) +* fixed themes and default font-family ([6bab367](https://github.com/core-ds/core-components/commit/6bab367eb0df53c7d42e31c5e404859638d8d6c9)) +* use correct vars ([171c45d](https://github.com/core-ds/core-components/commit/171c45da81d6e8df6b76a8333068d7ccbe68466c)) +* fix 4 spaces ([049cfa9](https://github.com/core-ds/core-components/commit/049cfa919cfd96315f716d724c0ea670c667aae2)) +* fix issues accodring to PR [#36](https://github.com/core-ds/core-components/issues/36) ([9c57325](https://github.com/core-ds/core-components/commit/9c5732519063c89fa5a544ae87611cc1244ee78b)) +* fix lint errors ([86fa366](https://github.com/core-ds/core-components/commit/86fa36694323671bd3e4bbb28980134d4e7e2ce2)) +* fixed linter errors ([0c9f9c6](https://github.com/core-ds/core-components/commit/0c9f9c69127ba979a03e66dd80f4be083d2760ce)) +* prepare inputs. move @types/jest to devDeps ([5f30dbb](https://github.com/core-ds/core-components/commit/5f30dbb064b468e54159914604426c8ec3310522)) +* restore babel config ([50eaa68](https://github.com/core-ds/core-components/commit/50eaa682c93733a4d5f1dc0fbcd32a4214b643f3)) +* update scripts & snapshots ([ce35a02](https://github.com/core-ds/core-components/commit/ce35a026850700af09953e47006bce0885c920aa)) +* **build-root-package:** several hyphens in dir name ([aeb5dfb](https://github.com/core-ds/core-components/commit/aeb5dfba8a88153762602a9c20c8db478ae2943f)) +* **button:** add missing href ([756d84b](https://github.com/core-ds/core-components/commit/756d84b775298045cdb205bc2f5155d04c6d4f35)) +* **button:** remove unused deps ([f287d48](https://github.com/core-ds/core-components/commit/f287d48dadab80b2f98e43c5a9d74029d4286303)) +* **button:** transition duration fix ([cd49653](https://github.com/core-ds/core-components/commit/cd49653db2670f9c846fb9d839f3c75d8e1c1f54)) +* **core-components-button:** iconOnly button min-width fix ([ecdf518](https://github.com/core-ds/core-components/commit/ecdf518c89a931b649a6c917caa45b9f4dc2dc7b)) +* **core-components-popover:** change box-sizing to border-box ([#121](https://github.com/core-ds/core-components/issues/121)) ([2a6883d](https://github.com/core-ds/core-components/commit/2a6883d6832713d197447e23ada822ea07bed5f4)) +* **core-components-popover:** make transition props optional ([#119](https://github.com/core-ds/core-components/issues/119)) ([dce9249](https://github.com/core-ds/core-components/commit/dce924922b67dff1c4ea6b173bd2b70874b56270)) +* **core-components-select:** fix onOpen description ([b28f75a](https://github.com/core-ds/core-components/commit/b28f75afe180dd252900139147f2c7c8df92aeb8)) +* **core-components-select:** move select vars to separate file ([8e09aba](https://github.com/core-ds/core-components/commit/8e09abaa90d8a91298be69ef136770588630d824)) +* **core-components-tag:** fix tag background ([#151](https://github.com/core-ds/core-components/issues/151)) ([03b465b](https://github.com/core-ds/core-components/commit/03b465b9f6c231375da8803382ed3539b2e7743a)) +* **core-components-tooltip:** change tooltip timer to ref ([#207](https://github.com/core-ds/core-components/issues/207)) ([139f0a7](https://github.com/core-ds/core-components/commit/139f0a74d414f3c1dde11b46ecf96a984b599359)) +* **core-components-tooltip:** pass target original classname ([#147](https://github.com/core-ds/core-components/issues/147)) ([d253f8a](https://github.com/core-ds/core-components/commit/d253f8a363a0b4c605ee897a9b3172fdf977a073)) +* **deploy:** fix demo-build for master branch ([fc46861](https://github.com/core-ds/core-components/commit/fc46861e0c8b9664abda0efaba42a175504ab02f)) +* **deps:** fix wrong dependencies ([#92](https://github.com/core-ds/core-components/issues/92)) ([085e2ce](https://github.com/core-ds/core-components/commit/085e2cef73841178322c89ef90e90747e6971adf)) +* **divider:** delete default margin ([c514bf3](https://github.com/core-ds/core-components/commit/c514bf386755b7e29f36ae148deea7a08c7984da)) +* **divider:** remarks from PR ([5df2c6f](https://github.com/core-ds/core-components/commit/5df2c6fae1d7eab7aaa77604e4f0f09c3304e1ab)) +* **divider:** style ([d718a69](https://github.com/core-ds/core-components/commit/d718a6922f38ec0e60eea23ebe1803a8798de8fa)) +* **input:** fix l bottom margin ([c41a840](https://github.com/core-ds/core-components/commit/c41a8408e1c8f338be4a787bb06d51be7f1e66da)) +* **input:** fix render fn ([4cf8ef1](https://github.com/core-ds/core-components/commit/4cf8ef18dc8fc703f50ebf70877762b8bcac7a71)) +* **input:** fix wrong filled state ([#109](https://github.com/core-ds/core-components/issues/109)) ([576495a](https://github.com/core-ds/core-components/commit/576495ac639278bf5e873535173736a8082d1b44)) +* **input:** pass sub as BaseInput child ([b60d64c](https://github.com/core-ds/core-components/commit/b60d64ca432ccf94b7472116f04010327b7c9c72)) +* **inputs:** border-box fix ([81752e1](https://github.com/core-ds/core-components/commit/81752e189382e7c2dc3982b50291b9be5827cea1)) +* **inputs:** fix css vars ([1e233a2](https://github.com/core-ds/core-components/commit/1e233a26423c544ead925851a2e7925402710951)) +* **inputs:** fix input width ([9ed950f](https://github.com/core-ds/core-components/commit/9ed950f103057c74cf02ff4a95a7a6ba868aced8)) +* **inputs:** fix placeholders styles ([e404483](https://github.com/core-ds/core-components/commit/e4044838c96b527228a78a33ee24104c4899c80f)) +* **inputs:** fix styles and types ([cb6b189](https://github.com/core-ds/core-components/commit/cb6b18957d86410deddfae2d41fea0ed201e4073)) +* **inputs:** l size side paddings ([b9688a2](https://github.com/core-ds/core-components/commit/b9688a246aec4c5e442e6ee7a84a77c87d95371b)) +* **inputs:** remove from state, detect by value prop ([208c07e](https://github.com/core-ds/core-components/commit/208c07e9a73640f43950779615d4ec3f39e61c66)) +* **inputs:** remove file type. fix styles. withIcon -> rightAddons ([f149aa8](https://github.com/core-ds/core-components/commit/f149aa88de2f94329e5c905846034d619589a7bf)) +* **inputs:** styles fixes ([9a3199e](https://github.com/core-ds/core-components/commit/9a3199ef03d8e6a97d48c376b79938c2f1bf1372)) +* **masked-input,switch:** fix wrong main field ([76d0e4e](https://github.com/core-ds/core-components/commit/76d0e4e6b05973977f49ef5edeb56790daffa566)) +* **switch:** fix global tag styling ([66ce011](https://github.com/core-ds/core-components/commit/66ce0111b0e4c47e957f94afbf66f1ff50cab607)) +* **switch:** replace div with span ([69624f9](https://github.com/core-ds/core-components/commit/69624f9c2a2e07aa91829a8940245e83e7576d05)) +* **tabs:** optional children ([#572](https://github.com/core-ds/core-components/issues/572)) ([b03ee8c](https://github.com/core-ds/core-components/commit/b03ee8ca7f37e9c5b8a46d4a04123792cdc1bfa6)) +* **tag:** add height in ie (fix bug with flex and align-items) ([9fd2abd](https://github.com/core-ds/core-components/commit/9fd2abd401d92e01e853ce5a3f497645d74b8e04)) +* **tag:** fix disabled state ([#110](https://github.com/core-ds/core-components/issues/110)) ([a622101](https://github.com/core-ds/core-components/commit/a622101cb448e623e95ae9bfecc310548ac52dbe)) +* **tag:** fix styles ([#80](https://github.com/core-ds/core-components/issues/80)) ([bc80ba4](https://github.com/core-ds/core-components/commit/bc80ba47366a91d998d764675e17aeaed3c31666)) +* **tests:** rewrite tests titles ([d0f16ad](https://github.com/core-ds/core-components/commit/d0f16ad812cb098ba9cbf612bde245784dfb6227)) +* **themes:** fixes border-radius ([9d152d9](https://github.com/core-ds/core-components/commit/9d152d9ae0e70736cf78f3a014b6710dc8aa2331)) +* **toast:** remove extra timer clearing ([#559](https://github.com/core-ds/core-components/issues/559)) ([ae5d811](https://github.com/core-ds/core-components/commit/ae5d81169d4db0427ae5baf0bffd784adee184ee)) +* **tsconfig:** fix local module resolution ([f8faadf](https://github.com/core-ds/core-components/commit/f8faadfdfea9e8b570c77e1c8b3bf462ea6d26e6)) +* **typography:** add prettier-ignore to fix mixin breaking. rebuild ([6909df6](https://github.com/core-ds/core-components/commit/6909df62bbc9b0dd67143cdb950dd8e50bf54067)) +* **update-colors.js:** fix it ([c9b8c68](https://github.com/core-ds/core-components/commit/c9b8c68b8ac07e2bff33399cc1a99405bb71132d)) +* **vars:** fix build for vars. add typography to index ([cc00344](https://github.com/core-ds/core-components/commit/cc00344d6db8e60b0b230829d8bed4ef5f20c9d1)) + + +* refactor/calendar-range (#984) ([714f615](https://github.com/core-ds/core-components/commit/714f61590586bafe1060e652943e95c133ed002a)), closes [#984](https://github.com/core-ds/core-components/issues/984) +* Betters toasts (#521) ([628b032](https://github.com/core-ds/core-components/commit/628b032f00dc36a71563f62238bd3f559968f320)), closes [#521](https://github.com/core-ds/core-components/issues/521) ## [26.4.0](https://github.com/core-ds/core-components/compare/v26.3.0...v26.4.0) (2022-04-13) + ### Features -- **select:** add select mobile ([#1016](https://github.com/core-ds/core-components/issues/1016)) ([b3cfb0d](https://github.com/core-ds/core-components/commit/b3cfb0d0e9496ba2e4260e962eaf3f9cf85635c6)) +* **select:** add select mobile ([#1016](https://github.com/core-ds/core-components/issues/1016)) ([b3cfb0d](https://github.com/core-ds/core-components/commit/b3cfb0d0e9496ba2e4260e962eaf3f9cf85635c6)) + ### Bug Fixes -- **bottom-sheet:** fix prop headerClassName ([#1057](https://github.com/core-ds/core-components/issues/1057)) ([2fb3290](https://github.com/core-ds/core-components/commit/2fb329047fd1ef997082d127d9f26195dbfe57ad)) -- **themes:** fix build themes mobile & intranet ([#1055](https://github.com/core-ds/core-components/issues/1055)) ([f95f035](https://github.com/core-ds/core-components/commit/f95f035bdeee3071e2f2ebfaa35c0cc10585044b)) -- **themes:** Добавил пропущенные [@imports](https://github.com/imports) из themes/src/default.css ([#1053](https://github.com/core-ds/core-components/issues/1053)) ([06f0427](https://github.com/core-ds/core-components/commit/06f0427e4089db902bb269ab3b31f935921cff9f)), closes [#1052](https://github.com/core-ds/core-components/issues/1052) +* **bottom-sheet:** fix prop headerClassName ([#1057](https://github.com/core-ds/core-components/issues/1057)) ([2fb3290](https://github.com/core-ds/core-components/commit/2fb329047fd1ef997082d127d9f26195dbfe57ad)) +* **themes:** fix build themes mobile & intranet ([#1055](https://github.com/core-ds/core-components/issues/1055)) ([f95f035](https://github.com/core-ds/core-components/commit/f95f035bdeee3071e2f2ebfaa35c0cc10585044b)) +* **themes:** Добавил пропущенные [@imports](https://github.com/imports) из themes/src/default.css ([#1053](https://github.com/core-ds/core-components/issues/1053)) ([06f0427](https://github.com/core-ds/core-components/commit/06f0427e4089db902bb269ab3b31f935921cff9f)), closes [#1052](https://github.com/core-ds/core-components/issues/1052) # [26.3.0](https://github.com/core-ds/core-components/compare/v26.2.0...v26.3.0) (2022-03-30) + ### Bug Fixes -- **filter-tag:** move onClick from btn to div ([#1049](https://github.com/core-ds/core-components/issues/1049)) ([616a90a](https://github.com/core-ds/core-components/commit/616a90af9b0b95de324d3475572d5ac85d3e7a2a)) +* **filter-tag:** move onClick from btn to div ([#1049](https://github.com/core-ds/core-components/issues/1049)) ([616a90a](https://github.com/core-ds/core-components/commit/616a90af9b0b95de324d3475572d5ac85d3e7a2a)) + ### Features -- **list:** added list & typography presets ([#1047](https://github.com/core-ds/core-components/issues/1047)) ([67b6a77](https://github.com/core-ds/core-components/commit/67b6a77d1327b090b010eb061f83a2e6a0cb67b9)) +* **list:** added list & typography presets ([#1047](https://github.com/core-ds/core-components/issues/1047)) ([67b6a77](https://github.com/core-ds/core-components/commit/67b6a77d1327b090b010eb061f83a2e6a0cb67b9)) # [26.2.0](https://github.com/core-ds/core-components/compare/v26.1.0...v26.2.0) (2022-03-29) + ### Features -- add extra content class name prop for radio and checkbox components ([#1048](https://github.com/core-ds/core-components/issues/1048)) ([3c076b9](https://github.com/core-ds/core-components/commit/3c076b939a64dff8f9c66bd65f474ccea76c8cad)) +* add extra content class name prop for radio and checkbox components ([#1048](https://github.com/core-ds/core-components/issues/1048)) ([3c076b9](https://github.com/core-ds/core-components/commit/3c076b939a64dff8f9c66bd65f474ccea76c8cad)) # [26.1.0](https://github.com/core-ds/core-components/compare/v26.0.1...v26.1.0) (2022-03-28) + ### Features -- **filter-tag:** new component ([#1035](https://github.com/core-ds/core-components/issues/1035)) ([f97e9c5](https://github.com/core-ds/core-components/commit/f97e9c59062e56f3bafa855450a33b5f67497143)) +* **filter-tag:** new component ([#1035](https://github.com/core-ds/core-components/issues/1035)) ([f97e9c5](https://github.com/core-ds/core-components/commit/f97e9c59062e56f3bafa855450a33b5f67497143)) ## [26.0.1](https://github.com/core-ds/core-components/compare/v26.0.0...v26.0.1) (2022-03-28) + ### Bug Fixes -- add missing dependency ([#1041](https://github.com/core-ds/core-components/issues/1041)) ([3b06d3a](https://github.com/core-ds/core-components/commit/3b06d3a25f76e401a0146e163f8a61585f3eebf1)) -- fix modal and bottom-sheet dark mode ([#1043](https://github.com/core-ds/core-components/issues/1043)) ([cad36a2](https://github.com/core-ds/core-components/commit/cad36a25b28bfa71296c3dd9dc325eec28b5c241)) -- **bottom-sheet:** fix bottom-sheet swipeable marker ([#1044](https://github.com/core-ds/core-components/issues/1044)) ([0734e55](https://github.com/core-ds/core-components/commit/0734e55cc0e394fb33452f875ffcf47819277aee)) +* add missing dependency ([#1041](https://github.com/core-ds/core-components/issues/1041)) ([3b06d3a](https://github.com/core-ds/core-components/commit/3b06d3a25f76e401a0146e163f8a61585f3eebf1)) +* fix modal and bottom-sheet dark mode ([#1043](https://github.com/core-ds/core-components/issues/1043)) ([cad36a2](https://github.com/core-ds/core-components/commit/cad36a25b28bfa71296c3dd9dc325eec28b5c241)) +* **bottom-sheet:** fix bottom-sheet swipeable marker ([#1044](https://github.com/core-ds/core-components/issues/1044)) ([0734e55](https://github.com/core-ds/core-components/commit/0734e55cc0e394fb33452f875ffcf47819277aee)) # [26.0.0](https://github.com/core-ds/core-components/compare/v25.8.0...v26.0.0) (2022-03-24) + ### Features -- **bottom-sheet:** update-bottom-sheet ([#1025](https://github.com/core-ds/core-components/issues/1025)) ([26fa9aa](https://github.com/core-ds/core-components/commit/26fa9aab68bebf0f7093a38bc0f18a9b596ccf37)), closes [#1032](https://github.com/core-ds/core-components/issues/1032) -- **modal:** update styles ([#1024](https://github.com/core-ds/core-components/issues/1024)) ([fdf2cdc](https://github.com/core-ds/core-components/commit/fdf2cdca9f785b27cd5d3998245a34d42e1240d1)) +* **bottom-sheet:** update-bottom-sheet ([#1025](https://github.com/core-ds/core-components/issues/1025)) ([26fa9aa](https://github.com/core-ds/core-components/commit/26fa9aab68bebf0f7093a38bc0f18a9b596ccf37)), closes [#1032](https://github.com/core-ds/core-components/issues/1032) +* **modal:** update styles ([#1024](https://github.com/core-ds/core-components/issues/1024)) ([fdf2cdc](https://github.com/core-ds/core-components/commit/fdf2cdca9f785b27cd5d3998245a34d42e1240d1)) + ### BREAKING CHANGES -- **modal:** Большое обновление стилей и темизации +* **modal:** Большое обновление стилей и темизации -- fix(modal): remove unused align -- **bottom-sheet:** Большое обновление стилей, множество дополнительных настроек +* fix(modal): remove unused align +* **bottom-sheet:** Большое обновление стилей, множество дополнительных настроек # [25.8.0](https://github.com/core-ds/core-components/compare/v25.7.0...v25.8.0) (2022-03-24) + ### Bug Fixes -- **attach:** always clear input ([#1038](https://github.com/core-ds/core-components/issues/1038)) ([f3e85f2](https://github.com/core-ds/core-components/commit/f3e85f299c4e42253d0354cdd61e005d9fe927f0)) -- **table:** update styles ([#1036](https://github.com/core-ds/core-components/issues/1036)) ([3fe236d](https://github.com/core-ds/core-components/commit/3fe236dfb584c3e96fc7fb8c499aee3e9e12e64e)) +* **attach:** always clear input ([#1038](https://github.com/core-ds/core-components/issues/1038)) ([f3e85f2](https://github.com/core-ds/core-components/commit/f3e85f299c4e42253d0354cdd61e005d9fe927f0)) +* **table:** update styles ([#1036](https://github.com/core-ds/core-components/issues/1036)) ([3fe236d](https://github.com/core-ds/core-components/commit/3fe236dfb584c3e96fc7fb8c499aee3e9e12e64e)) + ### Features -- add extra classes for radio and checkbox components ([#1039](https://github.com/core-ds/core-components/issues/1039)) ([c3ed089](https://github.com/core-ds/core-components/commit/c3ed089360b25d0f7712f2e7608c5a23f11a95df)) +* add extra classes for radio and checkbox components ([#1039](https://github.com/core-ds/core-components/issues/1039)) ([c3ed089](https://github.com/core-ds/core-components/commit/c3ed089360b25d0f7712f2e7608c5a23f11a95df)) # [25.7.0](https://github.com/core-ds/core-components/compare/v25.6.0...v25.7.0) (2022-03-22) + ### Bug Fixes -- **radio-group:** add missing 'value' attribute to 'input' tag ([#1033](https://github.com/core-ds/core-components/issues/1033)) ([0f9cf0e](https://github.com/core-ds/core-components/commit/0f9cf0ecd74f4764ccd0b2839ba0cdf1b96e75cb)), closes [#1031](https://github.com/core-ds/core-components/issues/1031) +* **radio-group:** add missing 'value' attribute to 'input' tag ([#1033](https://github.com/core-ds/core-components/issues/1033)) ([0f9cf0e](https://github.com/core-ds/core-components/commit/0f9cf0ecd74f4764ccd0b2839ba0cdf1b96e75cb)), closes [#1031](https://github.com/core-ds/core-components/issues/1031) + ### Features -- **tooltip:** added anchor props ([#1034](https://github.com/core-ds/core-components/issues/1034)) ([822031b](https://github.com/core-ds/core-components/commit/822031b3941184689a2a7ed9938c4ec44debc444)) +* **tooltip:** added anchor props ([#1034](https://github.com/core-ds/core-components/issues/1034)) ([822031b](https://github.com/core-ds/core-components/commit/822031b3941184689a2a7ed9938c4ec44debc444)) # [25.6.0](https://github.com/core-ds/core-components/compare/v25.5.0...v25.6.0) (2022-03-18) + ### Bug Fixes -- **intl-phone-input:** design fixes ([#1030](https://github.com/core-ds/core-components/issues/1030)) ([27cfb9b](https://github.com/core-ds/core-components/commit/27cfb9be1cac9f0aac151ae2121c426fb123fb3f)) +* **intl-phone-input:** design fixes ([#1030](https://github.com/core-ds/core-components/issues/1030)) ([27cfb9b](https://github.com/core-ds/core-components/commit/27cfb9be1cac9f0aac151ae2121c426fb123fb3f)) + ### Features -- **calendar:** add intranet theme ([#1026](https://github.com/core-ds/core-components/issues/1026)) ([292b76c](https://github.com/core-ds/core-components/commit/292b76c100bb12ebb1011d2a9981ba2b2899dd7a)) +* **calendar:** add intranet theme ([#1026](https://github.com/core-ds/core-components/issues/1026)) ([292b76c](https://github.com/core-ds/core-components/commit/292b76c100bb12ebb1011d2a9981ba2b2899dd7a)) # [25.5.0](https://github.com/core-ds/core-components/compare/v25.4.1...v25.5.0) (2022-03-05) + ### Features -- **circular-progress-bar:** ReactNode as title or subtitle ([#1023](https://github.com/core-ds/core-components/issues/1023)) ([7ae6df9](https://github.com/core-ds/core-components/commit/7ae6df9d2e4253f9a94532d155e81032cd96c810)) +* **circular-progress-bar:** ReactNode as title or subtitle ([#1023](https://github.com/core-ds/core-components/issues/1023)) ([7ae6df9](https://github.com/core-ds/core-components/commit/7ae6df9d2e4253f9a94532d155e81032cd96c810)) ## [25.4.1](https://github.com/core-ds/core-components/compare/v25.4.0...v25.4.1) (2022-03-04) + ### Bug Fixes -- **skeleton:** added dataTestId ([18e4af8](https://github.com/core-ds/core-components/commit/18e4af805bd4e49a1a3c303cb3b4d9a3a9dd5751)) +* **skeleton:** added dataTestId ([18e4af8](https://github.com/core-ds/core-components/commit/18e4af805bd4e49a1a3c303cb3b4d9a3a9dd5751)) # [25.4.0](https://github.com/core-ds/core-components/compare/v25.3.0...v25.4.0) (2022-03-04) + ### Bug Fixes -- move icon from select to picker-button ([#1020](https://github.com/core-ds/core-components/issues/1020)) ([0d23257](https://github.com/core-ds/core-components/commit/0d23257b561329092be551d237389cc06c3d5607)) -- update glyph deps ([#1019](https://github.com/core-ds/core-components/issues/1019)) ([3e910d0](https://github.com/core-ds/core-components/commit/3e910d0801c4c46bcd399163200c1f7bfaba375e)) +* move icon from select to picker-button ([#1020](https://github.com/core-ds/core-components/issues/1020)) ([0d23257](https://github.com/core-ds/core-components/commit/0d23257b561329092be551d237389cc06c3d5607)) +* update glyph deps ([#1019](https://github.com/core-ds/core-components/issues/1019)) ([3e910d0](https://github.com/core-ds/core-components/commit/3e910d0801c4c46bcd399163200c1f7bfaba375e)) + ### Features -- **modal:** mobile header ([#1018](https://github.com/core-ds/core-components/issues/1018)) ([54b879f](https://github.com/core-ds/core-components/commit/54b879f500d1124a6956d3d5a57349c856a09904)) +* **modal:** mobile header ([#1018](https://github.com/core-ds/core-components/issues/1018)) ([54b879f](https://github.com/core-ds/core-components/commit/54b879f500d1124a6956d3d5a57349c856a09904)) # [25.3.0](https://github.com/core-ds/core-components/compare/v25.2.0...v25.3.0) (2022-03-03) + ### Bug Fixes -- **code-input:** code-input-request-animation-frame-fix ([#1014](https://github.com/core-ds/core-components/issues/1014)) ([ad1478e](https://github.com/core-ds/core-components/commit/ad1478ebfd17679e8a2792462c619f525e5b7bb9)) -- **typography:** changed styrene font styles for title responsive ([#1017](https://github.com/core-ds/core-components/issues/1017)) ([540b0b5](https://github.com/core-ds/core-components/commit/540b0b59cf99a4cee0798f50b94e6449be4aa3c6)) +* **code-input:** code-input-request-animation-frame-fix ([#1014](https://github.com/core-ds/core-components/issues/1014)) ([ad1478e](https://github.com/core-ds/core-components/commit/ad1478ebfd17679e8a2792462c619f525e5b7bb9)) +* **typography:** changed styrene font styles for title responsive ([#1017](https://github.com/core-ds/core-components/issues/1017)) ([540b0b5](https://github.com/core-ds/core-components/commit/540b0b59cf99a4cee0798f50b94e6449be4aa3c6)) + ### Features -- **hatching-progress-bar:** add component ([#1012](https://github.com/core-ds/core-components/issues/1012)) ([a25a579](https://github.com/core-ds/core-components/commit/a25a5793df91c9e9cf213c7d1215c771c1851141)) -- **picker-button:** added new view and updated dropdown options ([#1013](https://github.com/core-ds/core-components/issues/1013)) ([050fb3e](https://github.com/core-ds/core-components/commit/050fb3eb6fd6dde057bbfcad5dd807d354125b63)) +* **hatching-progress-bar:** add component ([#1012](https://github.com/core-ds/core-components/issues/1012)) ([a25a579](https://github.com/core-ds/core-components/commit/a25a5793df91c9e9cf213c7d1215c771c1851141)) +* **picker-button:** added new view and updated dropdown options ([#1013](https://github.com/core-ds/core-components/issues/1013)) ([050fb3e](https://github.com/core-ds/core-components/commit/050fb3eb6fd6dde057bbfcad5dd807d354125b63)) # [25.2.0](https://github.com/core-ds/core-components/compare/v25.1.0...v25.2.0) (2022-03-01) + ### Bug Fixes -- **checkbox:** increased checkbox's hint line-height from 18px to 20px ([#1007](https://github.com/core-ds/core-components/issues/1007)) ([c7ee918](https://github.com/core-ds/core-components/commit/c7ee918de443339ac06f82196636dbb48ef8c737)), closes [#969](https://github.com/core-ds/core-components/issues/969) -- **picker-button:** fixed type of picker-button size prop ([#1006](https://github.com/core-ds/core-components/issues/1006)) ([38b56c1](https://github.com/core-ds/core-components/commit/38b56c11d45410a258e18d411aa0ce12b8a6c7e4)), closes [#986](https://github.com/core-ds/core-components/issues/986) -- changed dropdown component's box shadow styles ([#1010](https://github.com/core-ds/core-components/issues/1010)) ([2f997f5](https://github.com/core-ds/core-components/commit/2f997f5722c89b38a8064924b73c0a8046025aea)) +* **checkbox:** increased checkbox's hint line-height from 18px to 20px ([#1007](https://github.com/core-ds/core-components/issues/1007)) ([c7ee918](https://github.com/core-ds/core-components/commit/c7ee918de443339ac06f82196636dbb48ef8c737)), closes [#969](https://github.com/core-ds/core-components/issues/969) +* **picker-button:** fixed type of picker-button size prop ([#1006](https://github.com/core-ds/core-components/issues/1006)) ([38b56c1](https://github.com/core-ds/core-components/commit/38b56c11d45410a258e18d411aa0ce12b8a6c7e4)), closes [#986](https://github.com/core-ds/core-components/issues/986) +* changed dropdown component's box shadow styles ([#1010](https://github.com/core-ds/core-components/issues/1010)) ([2f997f5](https://github.com/core-ds/core-components/commit/2f997f5722c89b38a8064924b73c0a8046025aea)) + ### Features -- **base-modal:** add component ref for base modal ([#1008](https://github.com/core-ds/core-components/issues/1008)) ([fb13dbd](https://github.com/core-ds/core-components/commit/fb13dbdf6352b10b80a74fa87edfcb1f54b76d5a)) -- **typography:** новый компонент Typography.TitleMobile ([#1003](https://github.com/core-ds/core-components/issues/1003)) ([9b03cf9](https://github.com/core-ds/core-components/commit/9b03cf90422b05cc927ed98959708430812d1a50)) -- Исправить импорты в сторях. ([#1009](https://github.com/core-ds/core-components/issues/1009)) ([6f7e393](https://github.com/core-ds/core-components/commit/6f7e39350fd572dd3e74c4819829f85c4066b170)) +* **base-modal:** add component ref for base modal ([#1008](https://github.com/core-ds/core-components/issues/1008)) ([fb13dbd](https://github.com/core-ds/core-components/commit/fb13dbdf6352b10b80a74fa87edfcb1f54b76d5a)) +* **typography:** новый компонент Typography.TitleMobile ([#1003](https://github.com/core-ds/core-components/issues/1003)) ([9b03cf9](https://github.com/core-ds/core-components/commit/9b03cf90422b05cc927ed98959708430812d1a50)) +* Исправить импорты в сторях. ([#1009](https://github.com/core-ds/core-components/issues/1009)) ([6f7e393](https://github.com/core-ds/core-components/commit/6f7e39350fd572dd3e74c4819829f85c4066b170)) # [25.1.0](https://github.com/core-ds/core-components/compare/v25.0.0...v25.1.0) (2022-02-21) + ### Bug Fixes -- **calendar-range:** correct highlights ([#1002](https://github.com/core-ds/core-components/issues/1002)) ([5c12da2](https://github.com/core-ds/core-components/commit/5c12da2eb72b146b0a5f58447312f96f4b424c48)) -- **select:** change corp shadow ([#1004](https://github.com/core-ds/core-components/issues/1004)) ([ea664f6](https://github.com/core-ds/core-components/commit/ea664f67ce81b66b31aab348cc0c68085711de8a)) +* **calendar-range:** correct highlights ([#1002](https://github.com/core-ds/core-components/issues/1002)) ([5c12da2](https://github.com/core-ds/core-components/commit/5c12da2eb72b146b0a5f58447312f96f4b424c48)) +* **select:** change corp shadow ([#1004](https://github.com/core-ds/core-components/issues/1004)) ([ea664f6](https://github.com/core-ds/core-components/commit/ea664f67ce81b66b31aab348cc0c68085711de8a)) + ### Features -- Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7)) -- **progress-bar:** add size prop, additional views, new bg color ([#996](https://github.com/core-ds/core-components/issues/996)) ([63702f7](https://github.com/core-ds/core-components/commit/63702f7d9637e1fe3da502d7c91c4284453b3b48)) -- **stepped-progress-bar:** add view prop, change bg color ([#1000](https://github.com/core-ds/core-components/issues/1000)) ([3e16926](https://github.com/core-ds/core-components/commit/3e1692673e694e3fef2913201e18e8a2e21fc980)) +* Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7)) +* **progress-bar:** add size prop, additional views, new bg color ([#996](https://github.com/core-ds/core-components/issues/996)) ([63702f7](https://github.com/core-ds/core-components/commit/63702f7d9637e1fe3da502d7c91c4284453b3b48)) +* **stepped-progress-bar:** add view prop, change bg color ([#1000](https://github.com/core-ds/core-components/issues/1000)) ([3e16926](https://github.com/core-ds/core-components/commit/3e1692673e694e3fef2913201e18e8a2e21fc980)) # [25.0.0](https://github.com/core-ds/core-components/compare/v24.1.0...v25.0.0) (2022-02-17) -- refactor/calendar-range (#984) ([714f615](https://github.com/core-ds/core-components/commit/714f61590586bafe1060e652943e95c133ed002a)), closes [#984](https://github.com/core-ds/core-components/issues/984) + +* refactor/calendar-range (#984) ([714f615](https://github.com/core-ds/core-components/commit/714f61590586bafe1060e652943e95c133ed002a)), closes [#984](https://github.com/core-ds/core-components/issues/984) + ### BREAKING CHANGES -- Большое обновление CalendarRange +* Большое обновление CalendarRange -- feat(date-input): add some improvements +* feat(date-input): add some improvements -- feat(date-input): some updates +* feat(date-input): some updates -- feat(date-input): validation +* feat(date-input): validation -- feat(calendar): change period selection logic +* feat(calendar): change period selection logic -- fix(calendar): range styles +* fix(calendar): range styles -- fix(calendar): fix styles, add rangeComplete flag +* fix(calendar): fix styles, add rangeComplete flag -- refactor(calendar-range): temporary +* refactor(calendar-range): temporary -- fix(calendar-range): fix hook +* fix(calendar-range): fix hook -- fix(calendar-range): fix period +* fix(calendar-range): fix period -- fix(calendar-range): fix tests, fix max date +* fix(calendar-range): fix tests, fix max date -- fix: update exports +* fix: update exports -- feat(calendar): allow empty values for PeriodSlider, update today +* feat(calendar): allow empty values for PeriodSlider, update today -- fix(calendar-range): hide error icon +* fix(calendar-range): hide error icon -- chore(calendar-range): demo +* chore(calendar-range): demo -- feat(calendar): use IconButton +* feat(calendar): use IconButton -- feat(calendar-range): add onChange, update demo +* feat(calendar-range): add onChange, update demo -- fix(calendar-range): update width +* fix(calendar-range): update width -- test(calendar-range): update snapshot +* test(calendar-range): update snapshot -- fix: import date-fns separately +* fix: import date-fns separately -- fix(calendar-range): fix rest props +* fix(calendar-range): fix rest props Co-authored-by: dmitrsavk # [24.1.0](https://github.com/core-ds/core-components/compare/v24.0.0...v24.1.0) (2022-02-17) + ### Bug Fixes -- imports for glyph icons ([#994](https://github.com/core-ds/core-components/issues/994)) ([8e807f2](https://github.com/core-ds/core-components/commit/8e807f26abf0f942fe8eadbd201caecb297b35dc)) -- **icon-view:** fix bg-color ([#980](https://github.com/core-ds/core-components/issues/980)) ([2fbad56](https://github.com/core-ds/core-components/commit/2fbad5671d64056a4af81c4fe281a82c415ffeb5)) +* imports for glyph icons ([#994](https://github.com/core-ds/core-components/issues/994)) ([8e807f2](https://github.com/core-ds/core-components/commit/8e807f26abf0f942fe8eadbd201caecb297b35dc)) +* **icon-view:** fix bg-color ([#980](https://github.com/core-ds/core-components/issues/980)) ([2fbad56](https://github.com/core-ds/core-components/commit/2fbad5671d64056a4af81c4fe281a82c415ffeb5)) + ### Features -- **calendar:** design & logic updates ([#991](https://github.com/core-ds/core-components/issues/991)) ([358142c](https://github.com/core-ds/core-components/commit/358142c6d259e1463954139cc648787cdf461f76)), closes [#993](https://github.com/core-ds/core-components/issues/993) [#990](https://github.com/core-ds/core-components/issues/990) -- **date-input:** add some improvements ([#971](https://github.com/core-ds/core-components/issues/971)) ([47756ca](https://github.com/core-ds/core-components/commit/47756ca1d4eea89f78ed7234e95c02e51dd72e49)) +* **calendar:** design & logic updates ([#991](https://github.com/core-ds/core-components/issues/991)) ([358142c](https://github.com/core-ds/core-components/commit/358142c6d259e1463954139cc648787cdf461f76)), closes [#993](https://github.com/core-ds/core-components/issues/993) [#990](https://github.com/core-ds/core-components/issues/990) +* **date-input:** add some improvements ([#971](https://github.com/core-ds/core-components/issues/971)) ([47756ca](https://github.com/core-ds/core-components/commit/47756ca1d4eea89f78ed7234e95c02e51dd72e49)) # [24.0.0](https://github.com/core-ds/core-components/compare/v23.13.0...v24.0.0) (2022-02-16) + ### Features -- **code-input:** add component ([#932](https://github.com/core-ds/core-components/issues/932)) ([dc40cb5](https://github.com/core-ds/core-components/commit/dc40cb5b28322b4a2dc5735b354a7d45cf34adb9)) -- **confirmation:** большое обновление компонента ([#958](https://github.com/core-ds/core-components/issues/958)) ([3e61e7e](https://github.com/core-ds/core-components/commit/3e61e7e6529662d8fb96acb2898a29fd9c1917ab)) +* **code-input:** add component ([#932](https://github.com/core-ds/core-components/issues/932)) ([dc40cb5](https://github.com/core-ds/core-components/commit/dc40cb5b28322b4a2dc5735b354a7d45cf34adb9)) +* **confirmation:** большое обновление компонента ([#958](https://github.com/core-ds/core-components/issues/958)) ([3e61e7e](https://github.com/core-ds/core-components/commit/3e61e7e6529662d8fb96acb2898a29fd9c1917ab)) + ### BREAKING CHANGES -- **confirmation:** Удалена пропса code +* **confirmation:** Удалена пропса code -- feat(code-input): ref updates +* feat(code-input): ref updates -- feat(confirmation): updates, fix tests +* feat(confirmation): updates, fix tests -- feat(confirmation): initial +* feat(confirmation): initial -- feat(confirmation): updates +* feat(confirmation): updates -- feat(confirmation): update tests +* feat(confirmation): update tests -- feat(confirmation): updates +* feat(confirmation): updates -- feat(confirmation): dont reset code, if error +* feat(confirmation): dont reset code, if error -- test(confirmation): update snapshot -- **confirmation:** Удалена пропса code +* test(confirmation): update snapshot +* **confirmation:** Удалена пропса code # [23.13.0](https://github.com/core-ds/core-components/compare/v23.12.0...v23.13.0) (2022-02-15) + ### Bug Fixes -- **gallery:** update header button's tooltip position ([#979](https://github.com/core-ds/core-components/issues/979)) ([8e2acfc](https://github.com/core-ds/core-components/commit/8e2acfcb772cf4d8051c185a3f1caaaf507b5bc9)) +* **gallery:** update header button's tooltip position ([#979](https://github.com/core-ds/core-components/issues/979)) ([8e2acfc](https://github.com/core-ds/core-components/commit/8e2acfcb772cf4d8051c185a3f1caaaf507b5bc9)) + ### Features -- **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e)) -- **vars:** updated typography ([#981](https://github.com/core-ds/core-components/issues/981)) ([95bcce8](https://github.com/core-ds/core-components/commit/95bcce8e07467c635e2a93c55edfb3550a533ba4)) +* **notification:** disabled trackMouse ([#987](https://github.com/core-ds/core-components/issues/987)) ([c237b04](https://github.com/core-ds/core-components/commit/c237b04be227d370b321bb2d4585ce72b4d9994e)) +* **vars:** updated typography ([#981](https://github.com/core-ds/core-components/issues/981)) ([95bcce8](https://github.com/core-ds/core-components/commit/95bcce8e07467c635e2a93c55edfb3550a533ba4)) # [23.12.0](https://github.com/core-ds/core-components/compare/v23.11.0...v23.12.0) (2022-02-09) + ### Features -- **tabs:** add xxs xs sizes to secondary view and fix heights ([#985](https://github.com/core-ds/core-components/issues/985)) ([dd20933](https://github.com/core-ds/core-components/commit/dd20933f7c9a8f08920f7ad21bacb25983d3e93e)) -- **themes:** introducing intranet theme ([#983](https://github.com/core-ds/core-components/issues/983)) ([85eb9cf](https://github.com/core-ds/core-components/commit/85eb9cfffeef31b886c5123d6333e177c261ac62)) +* **tabs:** add xxs xs sizes to secondary view and fix heights ([#985](https://github.com/core-ds/core-components/issues/985)) ([dd20933](https://github.com/core-ds/core-components/commit/dd20933f7c9a8f08920f7ad21bacb25983d3e93e)) +* **themes:** introducing intranet theme ([#983](https://github.com/core-ds/core-components/issues/983)) ([85eb9cf](https://github.com/core-ds/core-components/commit/85eb9cfffeef31b886c5123d6333e177c261ac62)) # [23.11.0](https://github.com/core-ds/core-components/compare/v23.10.0...v23.11.0) (2022-02-03) + ### Bug Fixes -- **loader:** fix animation in IE ([#970](https://github.com/core-ds/core-components/issues/970)) ([03df943](https://github.com/core-ds/core-components/commit/03df9438f00bda639aae78aadb940161112a2672)) +* **loader:** fix animation in IE ([#970](https://github.com/core-ds/core-components/issues/970)) ([03df943](https://github.com/core-ds/core-components/commit/03df9438f00bda639aae78aadb940161112a2672)) + ### Features -- **picker-button:** add conditional righAddons prop for custom icon ([#975](https://github.com/core-ds/core-components/issues/975)) ([d2544b7](https://github.com/core-ds/core-components/commit/d2544b74e56deda9cae735e5b3ca6a2d97aef94d)) +* **picker-button:** add conditional righAddons prop for custom icon ([#975](https://github.com/core-ds/core-components/issues/975)) ([d2544b7](https://github.com/core-ds/core-components/commit/d2544b74e56deda9cae735e5b3ca6a2d97aef94d)) # [23.10.0](https://github.com/core-ds/core-components/compare/v23.9.1...v23.10.0) (2022-02-02) + ### Bug Fixes -- **input-autocomplete:** open list on backspace ([#964](https://github.com/core-ds/core-components/issues/964)) ([4d4f126](https://github.com/core-ds/core-components/commit/4d4f1267a98f05c184267564cd0a2517803bd08b)) -- **themes:** fix font weight mobile button ([#972](https://github.com/core-ds/core-components/issues/972)) ([447a89d](https://github.com/core-ds/core-components/commit/447a89dde25aa7659d771ae1c722086354323706)) +* **input-autocomplete:** open list on backspace ([#964](https://github.com/core-ds/core-components/issues/964)) ([4d4f126](https://github.com/core-ds/core-components/commit/4d4f1267a98f05c184267564cd0a2517803bd08b)) +* **themes:** fix font weight mobile button ([#972](https://github.com/core-ds/core-components/issues/972)) ([447a89d](https://github.com/core-ds/core-components/commit/447a89dde25aa7659d771ae1c722086354323706)) + ### Features -- **amount:** add rightAddons, add showPlus, make currency optional ([#955](https://github.com/core-ds/core-components/issues/955)) ([ac35b9a](https://github.com/core-ds/core-components/commit/ac35b9aaf842d88fd28caeb4f888cdf74facf644)) +* **amount:** add rightAddons, add showPlus, make currency optional ([#955](https://github.com/core-ds/core-components/issues/955)) ([ac35b9a](https://github.com/core-ds/core-components/commit/ac35b9aaf842d88fd28caeb4f888cdf74facf644)) ## [23.9.1](https://github.com/core-ds/core-components/compare/v23.9.0...v23.9.1) (2022-01-28) + ### Bug Fixes -- **select-with-tags:** update tag size to xxs ([#960](https://github.com/core-ds/core-components/issues/960)) ([4234826](https://github.com/core-ds/core-components/commit/4234826e5dedebc1e6555dfba181981eea4db69f)) +* **select-with-tags:** update tag size to xxs ([#960](https://github.com/core-ds/core-components/issues/960)) ([4234826](https://github.com/core-ds/core-components/commit/4234826e5dedebc1e6555dfba181981eea4db69f)) # [23.9.0](https://github.com/core-ds/core-components/compare/v23.8.1...v23.9.0) (2022-01-27) + ### Bug Fixes -- **bottom-sheet:** fix double calling onClose fn ([#962](https://github.com/core-ds/core-components/issues/962)) ([feda2a4](https://github.com/core-ds/core-components/commit/feda2a4c8d3a4f40a1ab9c40eb21f5359e4fa538)) -- **icon-view:** fix types ([#961](https://github.com/core-ds/core-components/issues/961)) ([74152f3](https://github.com/core-ds/core-components/commit/74152f3bd6d776bebeabea65d5971b57cc486b2e)) +* **bottom-sheet:** fix double calling onClose fn ([#962](https://github.com/core-ds/core-components/issues/962)) ([feda2a4](https://github.com/core-ds/core-components/commit/feda2a4c8d3a4f40a1ab9c40eb21f5359e4fa538)) +* **icon-view:** fix types ([#961](https://github.com/core-ds/core-components/issues/961)) ([74152f3](https://github.com/core-ds/core-components/commit/74152f3bd6d776bebeabea65d5971b57cc486b2e)) + ### Features -- **select:** add OptionsListWithApply ([#948](https://github.com/core-ds/core-components/issues/948)) ([d8ef8dd](https://github.com/core-ds/core-components/commit/d8ef8dd257dfc100095c923c4f3e317787ed1877)) +* **select:** add OptionsListWithApply ([#948](https://github.com/core-ds/core-components/issues/948)) ([d8ef8dd](https://github.com/core-ds/core-components/commit/d8ef8dd257dfc100095c923c4f3e317787ed1877)) ## [23.8.1](https://github.com/core-ds/core-components/compare/v23.8.0...v23.8.1) (2022-01-21) + ### Bug Fixes -- **cdn-icon:** add className prop ([#957](https://github.com/core-ds/core-components/issues/957)) ([86f2139](https://github.com/core-ds/core-components/commit/86f2139fc56fe1cd2669d05d7953075aa8982e22)) +* **cdn-icon:** add className prop ([#957](https://github.com/core-ds/core-components/issues/957)) ([86f2139](https://github.com/core-ds/core-components/commit/86f2139fc56fe1cd2669d05d7953075aa8982e22)) # [23.8.0](https://github.com/core-ds/core-components/compare/v23.7.0...v23.8.0) (2022-01-21) + ### Bug Fixes -- **table:** fix th paddings ([#951](https://github.com/core-ds/core-components/issues/951)) ([2d916c1](https://github.com/core-ds/core-components/commit/2d916c16a388b0949db2d0ae00c852c0acac6d28)) +* **table:** fix th paddings ([#951](https://github.com/core-ds/core-components/issues/951)) ([2d916c1](https://github.com/core-ds/core-components/commit/2d916c16a388b0949db2d0ae00c852c0acac6d28)) + ### Features -- **picker-button:** gap между picker-button и popover в 8px ([#935](https://github.com/core-ds/core-components/issues/935)) ([9b3aa2b](https://github.com/core-ds/core-components/commit/9b3aa2b70b534d8e571baa62b973e1f67667ac43)) -- **vars:** build color-mod ([#953](https://github.com/core-ds/core-components/issues/953)) ([aa64366](https://github.com/core-ds/core-components/commit/aa64366d970be46776d23c9d13ebec413b2ac4d9)) +* **picker-button:** gap между picker-button и popover в 8px ([#935](https://github.com/core-ds/core-components/issues/935)) ([9b3aa2b](https://github.com/core-ds/core-components/commit/9b3aa2b70b534d8e571baa62b973e1f67667ac43)) +* **vars:** build color-mod ([#953](https://github.com/core-ds/core-components/issues/953)) ([aa64366](https://github.com/core-ds/core-components/commit/aa64366d970be46776d23c9d13ebec413b2ac4d9)) # [23.7.0](https://github.com/core-ds/core-components/compare/v23.6.1...v23.7.0) (2022-01-17) + ### Bug Fixes -- **vars:** remove unused colors ([#945](https://github.com/core-ds/core-components/issues/945)) ([310a70a](https://github.com/core-ds/core-components/commit/310a70a8be6bff687861d3d643ebc347ecf6cd6d)) +* **vars:** remove unused colors ([#945](https://github.com/core-ds/core-components/issues/945)) ([310a70a](https://github.com/core-ds/core-components/commit/310a70a8be6bff687861d3d643ebc347ecf6cd6d)) + ### Features -- **base-modal:** extract modal store to global ([#943](https://github.com/core-ds/core-components/issues/943)) ([9587f17](https://github.com/core-ds/core-components/commit/9587f1773bb690ac6696077509d4a519aa109198)) -- **calendar:** split header to header & period-slider ([#939](https://github.com/core-ds/core-components/issues/939)) ([107cee0](https://github.com/core-ds/core-components/commit/107cee0f2b5d609a02b61023b324dcc8c98c5220)) -- **typography:** export types ([#940](https://github.com/core-ds/core-components/issues/940)) ([498227c](https://github.com/core-ds/core-components/commit/498227c272659a1ebf890eee61c6fecdd110faee)) +* **base-modal:** extract modal store to global ([#943](https://github.com/core-ds/core-components/issues/943)) ([9587f17](https://github.com/core-ds/core-components/commit/9587f1773bb690ac6696077509d4a519aa109198)) +* **calendar:** split header to header & period-slider ([#939](https://github.com/core-ds/core-components/issues/939)) ([107cee0](https://github.com/core-ds/core-components/commit/107cee0f2b5d609a02b61023b324dcc8c98c5220)) +* **typography:** export types ([#940](https://github.com/core-ds/core-components/issues/940)) ([498227c](https://github.com/core-ds/core-components/commit/498227c272659a1ebf890eee61c6fecdd110faee)) ## [23.6.1](https://github.com/core-ds/core-components/compare/v23.6.0...v23.6.1) (2022-01-13) + ### Bug Fixes -- **amount-input:** позволяем использовать строки, не рисуем 0 если передана пустая строка ([#941](https://github.com/core-ds/core-components/issues/941)) ([51c954f](https://github.com/core-ds/core-components/commit/51c954f238e7dbdbdbbd517e81e0e944f880ded6)) -- **dropzone:** корректный сброс dragCounter ([#944](https://github.com/core-ds/core-components/issues/944)) ([091b4a4](https://github.com/core-ds/core-components/commit/091b4a4b2f42fb0b84581c875a18c14c735eb92b)) -- **file-upload-item:** корректная обрезка контента ([#942](https://github.com/core-ds/core-components/issues/942)) ([5a285f2](https://github.com/core-ds/core-components/commit/5a285f2c1259dab270f52b438203fe7d40c07b29)) -- **table:** фикс высоты раскрывающейся ячейки ([#946](https://github.com/core-ds/core-components/issues/946)) ([643f9a5](https://github.com/core-ds/core-components/commit/643f9a556748bafc46a5c6f8c458c07770b11b17)) +* **amount-input:** позволяем использовать строки, не рисуем 0 если передана пустая строка ([#941](https://github.com/core-ds/core-components/issues/941)) ([51c954f](https://github.com/core-ds/core-components/commit/51c954f238e7dbdbdbbd517e81e0e944f880ded6)) +* **dropzone:** корректный сброс dragCounter ([#944](https://github.com/core-ds/core-components/issues/944)) ([091b4a4](https://github.com/core-ds/core-components/commit/091b4a4b2f42fb0b84581c875a18c14c735eb92b)) +* **file-upload-item:** корректная обрезка контента ([#942](https://github.com/core-ds/core-components/issues/942)) ([5a285f2](https://github.com/core-ds/core-components/commit/5a285f2c1259dab270f52b438203fe7d40c07b29)) +* **table:** фикс высоты раскрывающейся ячейки ([#946](https://github.com/core-ds/core-components/issues/946)) ([643f9a5](https://github.com/core-ds/core-components/commit/643f9a556748bafc46a5c6f8c458c07770b11b17)) + CHANGELOG за 2021 год доступен [здесь](https://github.com/core-ds/core-components/blob/master/CHANGELOG.2021.md) From f71647ff01990de9ee943e294cd33556922cbd07 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 15 Jun 2026 14:39:09 +0700 Subject: [PATCH 16/35] feat: update main.yml --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d4c0796baa..087dd3733c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,6 +48,8 @@ jobs: run: yarn build env: BUILD_CONCURRENCY: 4 + CDN_ENV: ${{ vars.CDN_ENV }} + AO_ENV: ${{ vars.AO_ENV }} lint: needs: [setup-variant, variants] From 64f63d263e6769aa5e70ad08b457dd2654a0e0e3 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 15 Jun 2026 14:51:10 +0700 Subject: [PATCH 17/35] feat: update release.yml --- .github/workflows/build-demo.yml | 2 ++ .github/workflows/release.yml | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/build-demo.yml b/.github/workflows/build-demo.yml index 389a56549a..a5e438fef2 100644 --- a/.github/workflows/build-demo.yml +++ b/.github/workflows/build-demo.yml @@ -101,6 +101,8 @@ jobs: - name: Build demo env: BUILD_CONCURRENCY: 4 + CDN_ENV: ${{ vars.CDN_ENV }} + AO_ENV: ${{ vars.AO_ENV }} run: | yarn build-storybook diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3876a3652a..3ba256a92a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,6 +67,8 @@ jobs: # `secrets.GITHUB_TOKEN` doesn't trigger any action https://github.com/orgs/community/discussions/55906 GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + CDN_ENV: ${{ vars.CDN_ENV }} + AO_ENV: ${{ vars.AO_ENV }} variants: needs: release @@ -104,6 +106,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + CDN_ENV: ${{ vars.CDN_ENV }} + AO_ENV: ${{ vars.AO_ENV }} snapshot-release: if: ${{ github.event_name == 'workflow_dispatch' && github.repository == 'core-ds/core-components' }} @@ -156,6 +160,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + CDN_ENV: ${{ vars.CDN_ENV }} + AO_ENV: ${{ vars.AO_ENV }} comment: needs: snapshot-release From e2c1598a0b7b81f3bc3f12dce219528e8985772f Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 15 Jun 2026 18:46:31 +0700 Subject: [PATCH 18/35] feat: revert --- .github/workflows/build-demo.yml | 2 -- .github/workflows/main.yml | 2 -- .github/workflows/release.yml | 6 ------ 3 files changed, 10 deletions(-) diff --git a/.github/workflows/build-demo.yml b/.github/workflows/build-demo.yml index a5e438fef2..389a56549a 100644 --- a/.github/workflows/build-demo.yml +++ b/.github/workflows/build-demo.yml @@ -101,8 +101,6 @@ jobs: - name: Build demo env: BUILD_CONCURRENCY: 4 - CDN_ENV: ${{ vars.CDN_ENV }} - AO_ENV: ${{ vars.AO_ENV }} run: | yarn build-storybook diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 087dd3733c..d4c0796baa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,8 +48,6 @@ jobs: run: yarn build env: BUILD_CONCURRENCY: 4 - CDN_ENV: ${{ vars.CDN_ENV }} - AO_ENV: ${{ vars.AO_ENV }} lint: needs: [setup-variant, variants] diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ba256a92a..3876a3652a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,8 +67,6 @@ jobs: # `secrets.GITHUB_TOKEN` doesn't trigger any action https://github.com/orgs/community/discussions/55906 GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - CDN_ENV: ${{ vars.CDN_ENV }} - AO_ENV: ${{ vars.AO_ENV }} variants: needs: release @@ -106,8 +104,6 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - CDN_ENV: ${{ vars.CDN_ENV }} - AO_ENV: ${{ vars.AO_ENV }} snapshot-release: if: ${{ github.event_name == 'workflow_dispatch' && github.repository == 'core-ds/core-components' }} @@ -160,8 +156,6 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - CDN_ENV: ${{ vars.CDN_ENV }} - AO_ENV: ${{ vars.AO_ENV }} comment: needs: snapshot-release From f81fb9e43b879a2003f87da52bf0169ffe027e46 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 15 Jun 2026 18:52:19 +0700 Subject: [PATCH 19/35] feat: rework --- .storybook/main.js | 7 +++---- .storybook/scope.ts | 2 +- docs/typography.stories.mdx | 20 +++++++++---------- jest.screenshots.config.mjs | 8 ++++---- packages/card-image/src/Component.tsx | 2 +- .../card-image/src/docs/Component.stories.tsx | 2 +- packages/card-image/src/docs/description.mdx | 2 +- packages/cdn-icon/src/Component.tsx | 2 +- packages/env/src/react-app.d.ts | 8 ++++++-- packages/product-cover/src/Component.test.tsx | 4 ++-- .../src/docs/Component.stories.tsx | 6 +++--- .../product-cover/src/docs/description.mdx | 10 +++++----- packages/screenshot-utils/src/helpers.ts | 2 +- packages/typography/src/docs/development.mdx | 15 +++++++------- tools/env-manager.js | 18 +++++++++++++++++ tools/jest/globalSetup.ts | 4 +++- tools/rollup/rollup.config.mjs | 5 +++-- 17 files changed, 70 insertions(+), 47 deletions(-) create mode 100644 tools/env-manager.js diff --git a/.storybook/main.js b/.storybook/main.js index 32e23bdcae..efdaae9feb 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -12,6 +12,7 @@ const { resolveInternal } = require('../tools/resolve-internal.cjs'); const { readPackagesFileSync } = require('../tools/read-packages-file.cjs'); const { existsSync } = require('node:fs'); const { decodeBase64 } = require('../tools/decode-base-64'); +const { envManager } = require('../tools/env-manager'); const INTERNAL_PACKAGES = readPackagesFileSync( path.resolve(__dirname, '../tools/.internal-packages'), @@ -300,10 +301,8 @@ module.exports = { 'process.env.CORE_COMPONENTS_VARIANT': JSON.stringify( process.env.CORE_COMPONENTS_VARIANT, ), - 'process.env.CDN_ENV': JSON.stringify( - decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), - ), - 'process.env.AO_ENV': JSON.stringify(decodeBase64('b25saW5lLmFsZmFiYW5rLnJ1')), + 'process.env.CDN_ICONS': JSON.stringify(envManager.CDN_ICONS), + 'process.env.AO_CARDS': JSON.stringify(envManager.AO_CARDS), }), ); return config; diff --git a/.storybook/scope.ts b/.storybook/scope.ts index c8339f0c11..963011d6b3 100644 --- a/.storybook/scope.ts +++ b/.storybook/scope.ts @@ -41,5 +41,5 @@ export default { ...grid, ...dateUtils, ...knobs, - AO_ENV: process.env.AO_ENV, + AO_CARDS: process.env.AO_CARDS, }; diff --git a/docs/typography.stories.mdx b/docs/typography.stories.mdx index 229650854f..9894199e96 100644 --- a/docs/typography.stories.mdx +++ b/docs/typography.stories.mdx @@ -3,7 +3,7 @@ import { Plate } from '@alfalab/core-components-plate'; import { StatusBadge } from '@alfalab/core-components-status-badge'; import { Typography } from '@alfalab/core-components-typography'; -export const CDN_ENV = process.env.CDN_ENV; +import {envManager} from '../tools/env-manager' /tsconfig.test.json' }); -process.env.CDN_ENV = decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='); - /** * @type {import('ts-jest').JestConfigWithTsJest} */ @@ -32,6 +29,9 @@ const config = { testMatch: ['**/*.screenshots.test.ts?(x)'], maxWorkers: 5, testTimeout: 200000, + globals: { + CDN_DOMAIN: envManager.CDN_DOMAIN, + }, }; export default config; diff --git a/packages/card-image/src/Component.tsx b/packages/card-image/src/Component.tsx index 74cae6a643..f4b256f7d8 100644 --- a/packages/card-image/src/Component.tsx +++ b/packages/card-image/src/Component.tsx @@ -5,7 +5,7 @@ import styles from './index.module.css'; export const ASPECT_RATIO = 0.63; export const DEFAULT_WIDTH = 280; -export const DEFAULT_BASE_URL = `https://${process.env.AO_ENV}/cards-images/cards/`; +export const DEFAULT_BASE_URL = process.env.AO_CARDS; export type CardImageProps = { /** diff --git a/packages/card-image/src/docs/Component.stories.tsx b/packages/card-image/src/docs/Component.stories.tsx index 06cde7644c..7337356b8f 100644 --- a/packages/card-image/src/docs/Component.stories.tsx +++ b/packages/card-image/src/docs/Component.stories.tsx @@ -23,7 +23,7 @@ export const card_image: Story = { )} width={number('width', 280)} rounded={boolean('rounded', false)} - baseUrl={text('baseUrl', `https://${process.env.AO_ENV}/cards-images/cards/`)} + baseUrl={text('baseUrl', process.env.AO_CARDS)} /> ); }, diff --git a/packages/card-image/src/docs/description.mdx b/packages/card-image/src/docs/description.mdx index 6cca3de636..f0f05af873 100644 --- a/packages/card-image/src/docs/description.mdx +++ b/packages/card-image/src/docs/description.mdx @@ -4,7 +4,7 @@ = ({ color, dataTestId, className, - baseUrl = `https://${process.env.CDN_ENV}/icons`, + baseUrl = process.env.CDN_ICONS, fallback, onError, }) => { diff --git a/packages/env/src/react-app.d.ts b/packages/env/src/react-app.d.ts index e6fbb49b57..c08cdd9edc 100644 --- a/packages/env/src/react-app.d.ts +++ b/packages/env/src/react-app.d.ts @@ -3,13 +3,17 @@ /// /// +// Прокидывается через `globals` в jest.screenshots.config.mjs — особый случай только для скриншот-тестов. +// eslint-disable-next-line no-var +declare var CDN_DOMAIN: string; + declare namespace NodeJS { interface ProcessEnv { readonly NODE_ENV: 'development' | 'production' | 'test'; readonly CORE_COMPONENTS_ENV: 'development' | 'production' | 'test'; readonly CORE_COMPONENTS_VARIANT?: 'default' | 'alfasans'; - readonly AO_ENV: string; - CDN_ENV: string; + readonly AO_CARDS: string; + readonly CDN_ICONS: string; } } diff --git a/packages/product-cover/src/Component.test.tsx b/packages/product-cover/src/Component.test.tsx index 320b2da628..29923ae5b1 100644 --- a/packages/product-cover/src/Component.test.tsx +++ b/packages/product-cover/src/Component.test.tsx @@ -12,7 +12,7 @@ describe('ProductCover', () => { , @@ -155,7 +155,7 @@ describe('ProductCover', () => { it('renders ProductCover component with image', () => { const { container } = render( , diff --git a/packages/product-cover/src/docs/Component.stories.tsx b/packages/product-cover/src/docs/Component.stories.tsx index 8fe6725326..e5ac395a7b 100644 --- a/packages/product-cover/src/docs/Component.stories.tsx +++ b/packages/product-cover/src/docs/Component.stories.tsx @@ -41,7 +41,7 @@ export const product_cover_single: Story = { return ( { size={size} cardholderName='Cardholder Name' cardNumber={1234000000001234} - baseUrl={`https://${AO_ENV}/cards-images/cards/`} + baseUrl={AO_CARDS} layers='BACKGROUND,LOGO,PAYMENT_SYSTEM' cardId='RM' eyeButton={true} @@ -35,7 +35,7 @@ render(() => { size={size} cardholderName='Cardholder Name' cardNumber={1234000000001234} - baseUrl={`https://${AO_ENV}/cards-images/cards/`} + baseUrl={AO_CARDS} layers='BACKGROUND,LOGO,PAYMENT_SYSTEM' cardId='RM' /> @@ -67,7 +67,7 @@ render(() => { const baseCard = { cardNumber: 1234000000001234, - baseUrl: `https://${AO_ENV}/cards-images/cards/`, + baseUrl: AO_CARDS, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', }; @@ -178,7 +178,7 @@ render(() => { const firstCard = { cardNumber: 1234000000001234, shadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.20)', - baseUrl: `https://${AO_ENV}/cards-images/cards/`, + baseUrl: AO_CARDS, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', shadow, @@ -186,7 +186,7 @@ render(() => { const secondCard = { ...(numberOfCards === '2' && { - baseUrl: `https://${AO_ENV}/cards-images/cards/`, + baseUrl: AO_CARDS, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', }), diff --git a/packages/screenshot-utils/src/helpers.ts b/packages/screenshot-utils/src/helpers.ts index f9b8441f71..90821f95d3 100644 --- a/packages/screenshot-utils/src/helpers.ts +++ b/packages/screenshot-utils/src/helpers.ts @@ -102,7 +102,7 @@ export const matchHtml = async ({ `, }), page.setViewportSize(viewport), - page.route(new RegExp(process.env.CDN_ENV), proxyAssets), + page.route(new RegExp(globalThis.CDN_DOMAIN), proxyAssets), ]); await waitForPreviewShowed(page); diff --git a/packages/typography/src/docs/development.mdx b/packages/typography/src/docs/development.mdx index 6af2b479e7..6052162544 100644 --- a/packages/typography/src/docs/development.mdx +++ b/packages/typography/src/docs/development.mdx @@ -1,8 +1,7 @@ import { ArgsTabs } from 'storybook/blocks'; import { Typography } from '../component'; import { Source } from '@storybook/addon-docs'; - -export const CDN_ENV = process.env.CDN_ENV; +import {envManager} from '../../../../tools/env-manager' ## Подключение @@ -42,22 +41,22 @@ import { Typography } from '@alfalab/core-components/typography'; language='css' code={`@font-face { font-family: 'Styrene UI'; - src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff2') format('woff2'), - url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_regular.woff') format('woff'); + src: url('https://${envManager.CDN_DOMAIN}/media/fonts/styrene-ui/styrene-ui_regular.woff2') format('woff2'), + url('https://${envManager.CDN_DOMAIN}/media/fonts/styrene-ui/styrene-ui_regular.woff') format('woff'); font-weight: 400; font-style: normal; } @font-face { font-family: 'Styrene UI'; - src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff2') format('woff2'), - url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_medium.woff') format('woff'); + src: url('https://${envManager.CDN_DOMAIN}/media/fonts/styrene-ui/styrene-ui_medium.woff2') format('woff2'), + url('https://${envManager.CDN_DOMAIN}/media/fonts/styrene-ui/styrene-ui_medium.woff') format('woff'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Styrene UI'; - src: url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff2') format('woff2'), - url('https://${CDN_ENV}/media/fonts/styrene-ui/styrene-ui_bold.woff') format('woff'); + src: url('https://${envManager.CDN_DOMAIN}/media/fonts/styrene-ui/styrene-ui_bold.woff2') format('woff2'), + url('https://${envManager.CDN_DOMAIN}/media/fonts/styrene-ui/styrene-ui_bold.woff') format('woff'); font-weight: 700; font-style: normal; }`} diff --git a/tools/env-manager.js b/tools/env-manager.js new file mode 100644 index 0000000000..a72946490f --- /dev/null +++ b/tools/env-manager.js @@ -0,0 +1,18 @@ +const { decodeBase64 } = require('./decode-base-64'); + +const CDN_DOMAIN = decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='); +const AO_DOMAIN = decodeBase64('b25saW5lLmFsZmFiYW5rLnJ1'); +const AO_DOMAIN_JEST = 'example.com'; + +function getAOCards(domain) { + return `https://${domain}/cards-images/cards/`; +} + +const envManager = { + CDN_DOMAIN, + CDN_ICONS: `https://${CDN_DOMAIN}/icons`, + AO_CARDS: getAOCards(AO_DOMAIN), + AO_CARDS_JEST: getAOCards(AO_DOMAIN_JEST), +}; + +module.exports = { envManager }; diff --git a/tools/jest/globalSetup.ts b/tools/jest/globalSetup.ts index 69e83934e6..2e1e604d12 100644 --- a/tools/jest/globalSetup.ts +++ b/tools/jest/globalSetup.ts @@ -1,8 +1,10 @@ +import { envManager } from '../env-manager'; + module.exports = async () => { process.env.TZ = 'UTC'; // need to assign readonly CORE_COMPONENTS_ENV Object.assign(process.env, { CORE_COMPONENTS_ENV: process.env.NODE_ENV, - AO_ENV: 'example.com', + AO_CARDS: envManager.AO_CARDS_JEST, }); }; diff --git a/tools/rollup/rollup.config.mjs b/tools/rollup/rollup.config.mjs index 49fc0835ca..3303ee3bda 100644 --- a/tools/rollup/rollup.config.mjs +++ b/tools/rollup/rollup.config.mjs @@ -12,6 +12,7 @@ import copy from 'rollup-plugin-copy'; import { globSync } from 'tinyglobby'; import ts from 'typescript'; +import { envManager } from '../env-manager.js'; import { readPackagesFileSync } from '../read-packages-file.cjs'; import { coreComponentsResolver, externalsResolver } from './core-components-resolver.mjs'; @@ -44,8 +45,8 @@ const baseConfig = () => replace({ values: { 'process.env.CORE_COMPONENTS_ENV': JSON.stringify('production'), - 'process.env.CDN_ENV': JSON.stringify(process.env.CDN_ENV), - 'process.env.AO_ENV': JSON.stringify(process.env.AO_ENV), + 'process.env.CDN_ICONS': JSON.stringify(envManager.CDN_ICONS), + 'process.env.AO_CARDS': JSON.stringify(envManager.AO_CARDS), }, preventAssignment: true, }), From bd5ba2bcb07b6cde794d8f50caa1fea308da1d5d Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Fri, 19 Jun 2026 16:40:12 +0700 Subject: [PATCH 20/35] feat: split changeset --- .changeset/early-hotels-joke.md | 10 ---------- .changeset/nice-bats-accept.md | 7 +++++++ .changeset/petite-oranges-love.md | 7 +++++++ 3 files changed, 14 insertions(+), 10 deletions(-) create mode 100644 .changeset/nice-bats-accept.md create mode 100644 .changeset/petite-oranges-love.md diff --git a/.changeset/early-hotels-joke.md b/.changeset/early-hotels-joke.md index ddb66553e7..5d5428f868 100644 --- a/.changeset/early-hotels-joke.md +++ b/.changeset/early-hotels-joke.md @@ -2,18 +2,8 @@ '@alfalab/core-components-cdn-icon': patch '@alfalab/core-components-card-image': patch '@alfalab/core-components-product-cover': patch -'@alfalab/core-components-bank-card': patch -'@alfalab/core-components-mcp': patch --- ##### CDNIcon, CardImage, ProductCover - Небольшие изменения не влияющие на работу компонента - -##### BankCard - -- Логотп по умолчанию добавлен как inline код вместо зависимости - -##### MCP - -- Исправлены index файлы diff --git a/.changeset/nice-bats-accept.md b/.changeset/nice-bats-accept.md new file mode 100644 index 0000000000..803eab3515 --- /dev/null +++ b/.changeset/nice-bats-accept.md @@ -0,0 +1,7 @@ +--- +'@alfalab/core-components-bank-card': patch +--- + +##### BankCard + +- Логотип по умолчанию добавлен как inline код вместо зависимости diff --git a/.changeset/petite-oranges-love.md b/.changeset/petite-oranges-love.md new file mode 100644 index 0000000000..0d3e48b131 --- /dev/null +++ b/.changeset/petite-oranges-love.md @@ -0,0 +1,7 @@ +--- +'@alfalab/core-components-mcp': patch +--- + +##### MCP + +- Исправлены index файлы From 8ed177fa54afcc6b2826846f3786103ade9ee60d Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Fri, 19 Jun 2026 17:00:49 +0700 Subject: [PATCH 21/35] feat: cdn domain fix after code review --- .storybook/main.js | 2 +- docs/typography.stories.mdx | 20 ++++++++++---------- jest.screenshots.config.mjs | 2 +- packages/env/src/react-app.d.ts | 2 +- packages/screenshot-utils/src/helpers.ts | 2 +- packages/typography/src/docs/development.mdx | 15 ++++++++------- tools/env-manager.js | 5 ++--- 7 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index efdaae9feb..6c66cd864a 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -11,7 +11,6 @@ const { isSamePath } = require('../tools/path.cjs'); const { resolveInternal } = require('../tools/resolve-internal.cjs'); const { readPackagesFileSync } = require('../tools/read-packages-file.cjs'); const { existsSync } = require('node:fs'); -const { decodeBase64 } = require('../tools/decode-base-64'); const { envManager } = require('../tools/env-manager'); const INTERNAL_PACKAGES = readPackagesFileSync( @@ -301,6 +300,7 @@ module.exports = { 'process.env.CORE_COMPONENTS_VARIANT': JSON.stringify( process.env.CORE_COMPONENTS_VARIANT, ), + 'process.env.SERVICE_CDN': JSON.stringify(envManager.SERVICE_CDN), 'process.env.CDN_ICONS': JSON.stringify(envManager.CDN_ICONS), 'process.env.AO_CARDS': JSON.stringify(envManager.AO_CARDS), }), diff --git a/docs/typography.stories.mdx b/docs/typography.stories.mdx index 9894199e96..ac9ca6bc01 100644 --- a/docs/typography.stories.mdx +++ b/docs/typography.stories.mdx @@ -3,7 +3,7 @@ import { Plate } from '@alfalab/core-components-plate'; import { StatusBadge } from '@alfalab/core-components-status-badge'; import { Typography } from '@alfalab/core-components-typography'; -import {envManager} from '../tools/env-manager' +export const SERVICE_CDN = process.env.SERVICE_CDN; Date: Fri, 19 Jun 2026 17:38:55 +0700 Subject: [PATCH 22/35] feat: cdn icon fix after code review --- .storybook/main.js | 4 +++- packages/cdn-icon/src/Component.tsx | 2 +- packages/env/src/react-app.d.ts | 2 +- tools/env-manager.js | 4 +++- tools/rollup/rollup.config.mjs | 4 +++- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index 6c66cd864a..380ee97382 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -301,7 +301,9 @@ module.exports = { process.env.CORE_COMPONENTS_VARIANT, ), 'process.env.SERVICE_CDN': JSON.stringify(envManager.SERVICE_CDN), - 'process.env.CDN_ICONS': JSON.stringify(envManager.CDN_ICONS), + 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( + envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, + ), 'process.env.AO_CARDS': JSON.stringify(envManager.AO_CARDS), }), ); diff --git a/packages/cdn-icon/src/Component.tsx b/packages/cdn-icon/src/Component.tsx index 25922382b6..7c9cd5c770 100644 --- a/packages/cdn-icon/src/Component.tsx +++ b/packages/cdn-icon/src/Component.tsx @@ -41,7 +41,7 @@ export const CDNIcon: React.FC = ({ color, dataTestId, className, - baseUrl = process.env.CDN_ICONS, + baseUrl = process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL, fallback, onError, }) => { diff --git a/packages/env/src/react-app.d.ts b/packages/env/src/react-app.d.ts index e218a28fda..3d0ae2af49 100644 --- a/packages/env/src/react-app.d.ts +++ b/packages/env/src/react-app.d.ts @@ -13,7 +13,7 @@ declare namespace NodeJS { readonly CORE_COMPONENTS_ENV: 'development' | 'production' | 'test'; readonly CORE_COMPONENTS_VARIANT?: 'default' | 'alfasans'; readonly AO_CARDS: string; - readonly CDN_ICONS: string; + readonly CORE_COMPONENTS_CDN_ICON_BASE_URL: string; } } diff --git a/tools/env-manager.js b/tools/env-manager.js index dbb8dee2c2..2595ddae46 100644 --- a/tools/env-manager.js +++ b/tools/env-manager.js @@ -9,7 +9,9 @@ function getAOCards(domain) { const envManager = { SERVICE_CDN: decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), - CDN_ICONS: decodeBase64('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'), + CORE_COMPONENTS_CDN_ICON_BASE_URL: decodeBase64( + 'aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z', + ), AO_CARDS: getAOCards(AO_DOMAIN), AO_CARDS_JEST: getAOCards(AO_DOMAIN_JEST), }; diff --git a/tools/rollup/rollup.config.mjs b/tools/rollup/rollup.config.mjs index 3303ee3bda..206032a347 100644 --- a/tools/rollup/rollup.config.mjs +++ b/tools/rollup/rollup.config.mjs @@ -45,7 +45,9 @@ const baseConfig = () => replace({ values: { 'process.env.CORE_COMPONENTS_ENV': JSON.stringify('production'), - 'process.env.CDN_ICONS': JSON.stringify(envManager.CDN_ICONS), + 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( + envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, + ), 'process.env.AO_CARDS': JSON.stringify(envManager.AO_CARDS), }, preventAssignment: true, From da63e07397328ae963a9ddbb15883f130d42ad82 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Fri, 19 Jun 2026 17:45:38 +0700 Subject: [PATCH 23/35] feat: card image fix after code review --- .storybook/main.js | 4 +++- .storybook/scope.ts | 6 +++++- packages/card-image/src/Component.tsx | 2 +- .../card-image/src/docs/Component.stories.tsx | 2 +- packages/card-image/src/docs/description.mdx | 2 +- packages/env/src/react-app.d.ts | 2 +- packages/product-cover/src/Component.test.tsx | 4 ++-- .../product-cover/src/docs/Component.stories.tsx | 6 +++--- packages/product-cover/src/docs/description.mdx | 10 +++++----- tools/env-manager.js | 15 ++++++--------- tools/jest/globalSetup.ts | 2 +- tools/rollup/rollup.config.mjs | 4 +++- 12 files changed, 32 insertions(+), 27 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index 380ee97382..8c7412f600 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -304,7 +304,9 @@ module.exports = { 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, ), - 'process.env.AO_CARDS': JSON.stringify(envManager.AO_CARDS), + 'process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL': JSON.stringify( + envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, + ), }), ); return config; diff --git a/.storybook/scope.ts b/.storybook/scope.ts index 963011d6b3..7fda6d6e24 100644 --- a/.storybook/scope.ts +++ b/.storybook/scope.ts @@ -41,5 +41,9 @@ export default { ...grid, ...dateUtils, ...knobs, - AO_CARDS: process.env.AO_CARDS, + process: { + env: { + ...process.env, + }, + }, }; diff --git a/packages/card-image/src/Component.tsx b/packages/card-image/src/Component.tsx index f4b256f7d8..ec4d3a4f44 100644 --- a/packages/card-image/src/Component.tsx +++ b/packages/card-image/src/Component.tsx @@ -5,7 +5,7 @@ import styles from './index.module.css'; export const ASPECT_RATIO = 0.63; export const DEFAULT_WIDTH = 280; -export const DEFAULT_BASE_URL = process.env.AO_CARDS; +export const DEFAULT_BASE_URL = process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL; export type CardImageProps = { /** diff --git a/packages/card-image/src/docs/Component.stories.tsx b/packages/card-image/src/docs/Component.stories.tsx index 7337356b8f..6e1dfde71a 100644 --- a/packages/card-image/src/docs/Component.stories.tsx +++ b/packages/card-image/src/docs/Component.stories.tsx @@ -23,7 +23,7 @@ export const card_image: Story = { )} width={number('width', 280)} rounded={boolean('rounded', false)} - baseUrl={text('baseUrl', process.env.AO_CARDS)} + baseUrl={text('baseUrl', process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL)} /> ); }, diff --git a/packages/card-image/src/docs/description.mdx b/packages/card-image/src/docs/description.mdx index f0f05af873..c7e0dd70e4 100644 --- a/packages/card-image/src/docs/description.mdx +++ b/packages/card-image/src/docs/description.mdx @@ -4,7 +4,7 @@ { , @@ -155,7 +155,7 @@ describe('ProductCover', () => { it('renders ProductCover component with image', () => { const { container } = render( , diff --git a/packages/product-cover/src/docs/Component.stories.tsx b/packages/product-cover/src/docs/Component.stories.tsx index e5ac395a7b..1a0973f4be 100644 --- a/packages/product-cover/src/docs/Component.stories.tsx +++ b/packages/product-cover/src/docs/Component.stories.tsx @@ -41,7 +41,7 @@ export const product_cover_single: Story = { return ( { size={size} cardholderName='Cardholder Name' cardNumber={1234000000001234} - baseUrl={AO_CARDS} + baseUrl={CORE_COMPONENTS_CARD_IMAGE_BASE_URL} layers='BACKGROUND,LOGO,PAYMENT_SYSTEM' cardId='RM' eyeButton={true} @@ -35,7 +35,7 @@ render(() => { size={size} cardholderName='Cardholder Name' cardNumber={1234000000001234} - baseUrl={AO_CARDS} + baseUrl={CORE_COMPONENTS_CARD_IMAGE_BASE_URL} layers='BACKGROUND,LOGO,PAYMENT_SYSTEM' cardId='RM' /> @@ -67,7 +67,7 @@ render(() => { const baseCard = { cardNumber: 1234000000001234, - baseUrl: AO_CARDS, + baseUrl: CORE_COMPONENTS_CARD_IMAGE_BASE_URL, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', }; @@ -178,7 +178,7 @@ render(() => { const firstCard = { cardNumber: 1234000000001234, shadow: '2px 2px 2px 0px rgba(0, 0, 0, 0.20)', - baseUrl: AO_CARDS, + baseUrl: CORE_COMPONENTS_CARD_IMAGE_BASE_URL, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', shadow, @@ -186,7 +186,7 @@ render(() => { const secondCard = { ...(numberOfCards === '2' && { - baseUrl: AO_CARDS, + baseUrl: CORE_COMPONENTS_CARD_IMAGE_BASE_URL, layers: 'BACKGROUND,LOGO,PAYMENT_SYSTEM', cardId: 'RM', }), diff --git a/tools/env-manager.js b/tools/env-manager.js index 2595ddae46..279055689e 100644 --- a/tools/env-manager.js +++ b/tools/env-manager.js @@ -1,19 +1,16 @@ const { decodeBase64 } = require('./decode-base-64'); -const AO_DOMAIN = decodeBase64('b25saW5lLmFsZmFiYW5rLnJ1'); -const AO_DOMAIN_JEST = 'example.com'; - -function getAOCards(domain) { - return `https://${domain}/cards-images/cards/`; -} - const envManager = { SERVICE_CDN: decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), CORE_COMPONENTS_CDN_ICON_BASE_URL: decodeBase64( 'aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z', ), - AO_CARDS: getAOCards(AO_DOMAIN), - AO_CARDS_JEST: getAOCards(AO_DOMAIN_JEST), + CORE_COMPONENTS_CARD_IMAGE_BASE_URL: decodeBase64( + 'aHR0cHM6Ly9vbmxpbmUuYWxmYWJhbmsucnUvY2FyZHMtaW1hZ2VzL2NhcmRzLw==', + ), + CORE_COMPONENTS_CARD_IMAGE_BASE_URL_JEST: decodeBase64( + 'aHR0cHM6Ly9leGFtcGxlLmNvbS9jYXJkcy1pbWFnZXMvY2FyZHMv', + ), }; module.exports = { envManager }; diff --git a/tools/jest/globalSetup.ts b/tools/jest/globalSetup.ts index 2e1e604d12..7a04e222e4 100644 --- a/tools/jest/globalSetup.ts +++ b/tools/jest/globalSetup.ts @@ -5,6 +5,6 @@ module.exports = async () => { // need to assign readonly CORE_COMPONENTS_ENV Object.assign(process.env, { CORE_COMPONENTS_ENV: process.env.NODE_ENV, - AO_CARDS: envManager.AO_CARDS_JEST, + CORE_COMPONENTS_CARD_IMAGE_BASE_URL: envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL_JEST, }); }; diff --git a/tools/rollup/rollup.config.mjs b/tools/rollup/rollup.config.mjs index 206032a347..a192890cf8 100644 --- a/tools/rollup/rollup.config.mjs +++ b/tools/rollup/rollup.config.mjs @@ -48,7 +48,9 @@ const baseConfig = () => 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, ), - 'process.env.AO_CARDS': JSON.stringify(envManager.AO_CARDS), + 'process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL': JSON.stringify( + envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, + ), }, preventAssignment: true, }), From 656392ab31cdb3fab533e7943edcc7bd00cf6a6b Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Fri, 19 Jun 2026 18:18:47 +0700 Subject: [PATCH 24/35] feat: decode fix after code review --- .storybook/metrics/config.js | 4 +-- tools/decode-base-64.js | 54 ------------------------------------ tools/decode-base-64.test.ts | 17 ------------ tools/env-manager.js | 12 ++++---- 4 files changed, 6 insertions(+), 81 deletions(-) delete mode 100644 tools/decode-base-64.js delete mode 100644 tools/decode-base-64.test.ts diff --git a/.storybook/metrics/config.js b/.storybook/metrics/config.js index 4c25d3c400..ee6ead5c87 100644 --- a/.storybook/metrics/config.js +++ b/.storybook/metrics/config.js @@ -1,6 +1,4 @@ -import { decodeBase64 } from '../../tools/decode-base-64'; - -const domain = decodeBase64('bWV0cmljcy5hbGZhYmFuay5ydQ=='); +const domain = atob('bWV0cmljcy5hbGZhYmFuay5ydQ=='); export const setMetricConfig = () => { (function (p, l, o, w, i, n, g) { diff --git a/tools/decode-base-64.js b/tools/decode-base-64.js deleted file mode 100644 index 5ee88ace1c..0000000000 --- a/tools/decode-base-64.js +++ /dev/null @@ -1,54 +0,0 @@ -/** - * Декодирует строку в формате base64 в обычную строку (UTF-8). - * - * Поддерживает два окружения: - * - Node.js: через глобальный объект Buffer (доступен без импортов) - * - Браузер: через Web API atob + decodeURIComponent - * - * Простой atob не подходит для UTF-8, потому что он возвращает строку - * в Latin-1 (один байт = один символ). Кириллица и другие многобайтовые - * символы требуют явного перекодирования через percent-encoding. - * - * @param value - строка в формате base64 - * @returns декодированная строка в UTF-8 - * - * @example - * decodeBase64('SGVsbG8=') // 'Hello' - * decodeBase64('0J/RgNC40LLQtdGC') // 'Привет' - */ -function decodeBase64(value) { - /* - * В Node.js глобальный Buffer всегда доступен; в браузере его нет. - * Проверяем typeof, чтобы не получить ReferenceError в браузере. - */ - if (typeof Buffer !== 'undefined') { - /* - * Buffer.from принимает base64-строку и сразу декодирует байты, - * toString('utf-8') собирает из них корректную UTF-8 строку. - */ - return Buffer.from(value, 'base64').toString('utf-8'); - } - - /* - * atob — браузерный Web API, декодирует base64 в бинарную строку Latin-1: - * каждый символ строки соответствует одному байту (charCode 0–255). - * Для ASCII это уже готовый результат, но UTF-8 символы (кириллица и др.) - * закодированы как последовательности байт, которые нужно собрать вручную. - */ - return decodeURIComponent( - atob(value) - // Разбиваем бинарную строку на массив отдельных символов (байт). - .split('') - /* - * Каждый символ превращаем в percent-encoded байт вида '%XX', - * где XX — шестнадцатеричный код символа (charCodeAt возвращает число, - * toString(16) переводит в hex, padStart добавляет ведущий ноль для однозначных кодов). - */ - .map((char) => `%${char.charCodeAt(0).toString(16).padStart(2, '0')}`) - // Соединяем массив '%XX' обратно в одну строку вида '%D0%9F%D1%80%D0%B8...' - .join(''), - // decodeURIComponent читает percent-encoding и собирает из байт правильные UTF-8 символы. - ); -} - -module.exports = { decodeBase64 }; diff --git a/tools/decode-base-64.test.ts b/tools/decode-base-64.test.ts deleted file mode 100644 index 55c5bcf148..0000000000 --- a/tools/decode-base-64.test.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { decodeBase64 } from './decode-base-64'; - -describe('decodeBase64', () => { - const cases: [string, string][] = [ - ['SGVsbG8=', 'Hello'], - ['V29ybGQ=', 'World'], - ['SGVsbG8sIFdvcmxkIQ==', 'Hello, World!'], - ['0J/RgNC40LLQtdGC', 'Привет'], - ['cXdlcnR5MTIzNDU2', 'qwerty123456'], - ['aHR0cHM6Ly93d3cuZXhhbXBsZS5jb20v', 'https://www.example.com/'], - ['', ''], - ]; - - it.each(cases)('decodeBase64("%s")', (input, expected) => { - expect(decodeBase64(input)).toBe(expected); - }); -}); diff --git a/tools/env-manager.js b/tools/env-manager.js index 279055689e..1b7fe9ccb0 100644 --- a/tools/env-manager.js +++ b/tools/env-manager.js @@ -1,14 +1,12 @@ -const { decodeBase64 } = require('./decode-base-64'); +const decode = (value) => Buffer.from(value, 'base64').toString('utf-8'); const envManager = { - SERVICE_CDN: decodeBase64('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), - CORE_COMPONENTS_CDN_ICON_BASE_URL: decodeBase64( - 'aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z', - ), - CORE_COMPONENTS_CARD_IMAGE_BASE_URL: decodeBase64( + SERVICE_CDN: decode('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), + CORE_COMPONENTS_CDN_ICON_BASE_URL: decode('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'), + CORE_COMPONENTS_CARD_IMAGE_BASE_URL: decode( 'aHR0cHM6Ly9vbmxpbmUuYWxmYWJhbmsucnUvY2FyZHMtaW1hZ2VzL2NhcmRzLw==', ), - CORE_COMPONENTS_CARD_IMAGE_BASE_URL_JEST: decodeBase64( + CORE_COMPONENTS_CARD_IMAGE_BASE_URL_JEST: decode( 'aHR0cHM6Ly9leGFtcGxlLmNvbS9jYXJkcy1pbWFnZXMvY2FyZHMv', ), }; From 69883b7835fe3af2b28aa1936e7b0388b71c652d Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Fri, 19 Jun 2026 18:50:18 +0700 Subject: [PATCH 25/35] feat: metrics fix after code review --- .storybook/main.js | 4 ++++ .storybook/metrics/config.js | 12 ++++++++---- tools/env-manager.js | 1 + 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index 8c7412f600..efc416b7e4 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -120,6 +120,10 @@ function disableReactRefreshOverlay(config) { * @type {import('@storybook/react-webpack5').StorybookConfig} */ module.exports = { + env: (config) => ({ + ...config, + CORE_COMPONENTS_METRICS: envManager.CORE_COMPONENTS_METRICS, + }), stories: [ '../packages/**/*.docs.@(ts|md)x', '../packages/**/*.stories.@(ts|md)x', diff --git a/.storybook/metrics/config.js b/.storybook/metrics/config.js index ee6ead5c87..a7e9f8feb1 100644 --- a/.storybook/metrics/config.js +++ b/.storybook/metrics/config.js @@ -1,5 +1,3 @@ -const domain = atob('bWV0cmljcy5hbGZhYmFuay5ydQ=='); - export const setMetricConfig = () => { (function (p, l, o, w, i, n, g) { if (!p[i]) { @@ -15,14 +13,20 @@ export const setMetricConfig = () => { n.src = w; g.parentNode.insertBefore(n, g); } - })(window, document, 'script', `https://${domain}/metrica/sp.js`, 'sp'); + })( + window, + document, + 'script', + `https://${process.env.CORE_COMPONENTS_METRICS}/metrica/sp.js`, + 'sp', + ); function getMetricUrl() { const { hostname } = window.location; switch (hostname) { case 'core-ds.github.io': { - return `${domain}/metrica/intra`; + return `${process.env.CORE_COMPONENTS_METRICS}/metrica/intra`; } default: { return ''; diff --git a/tools/env-manager.js b/tools/env-manager.js index 1b7fe9ccb0..3d1bf445c7 100644 --- a/tools/env-manager.js +++ b/tools/env-manager.js @@ -2,6 +2,7 @@ const decode = (value) => Buffer.from(value, 'base64').toString('utf-8'); const envManager = { SERVICE_CDN: decode('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), + CORE_COMPONENTS_METRICS: decode('bWV0cmljcy5hbGZhYmFuay5ydQ=='), CORE_COMPONENTS_CDN_ICON_BASE_URL: decode('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'), CORE_COMPONENTS_CARD_IMAGE_BASE_URL: decode( 'aHR0cHM6Ly9vbmxpbmUuYWxmYWJhbmsucnUvY2FyZHMtaW1hZ2VzL2NhcmRzLw==', From 1e82ab9e8b786abc875b8c6033334dafa2a2fe49 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 13:23:29 +0700 Subject: [PATCH 26/35] feat: cdn domain fix after code review --- .storybook/main.js | 4 +++- docs/typography.stories.mdx | 20 ++++++++++---------- jest.screenshots.config.mjs | 2 +- packages/env/src/react-app.d.ts | 2 +- packages/screenshot-utils/src/helpers.ts | 2 +- packages/typography/src/docs/development.mdx | 14 +++++++------- tools/env-manager.js | 2 +- 7 files changed, 24 insertions(+), 22 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index efc416b7e4..14cce3950f 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -304,7 +304,9 @@ module.exports = { 'process.env.CORE_COMPONENTS_VARIANT': JSON.stringify( process.env.CORE_COMPONENTS_VARIANT, ), - 'process.env.SERVICE_CDN': JSON.stringify(envManager.SERVICE_CDN), + 'process.env.CORE_COMPONENTS_SERVICE_CDN': JSON.stringify( + envManager.CORE_COMPONENTS_SERVICE_CDN, + ), 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, ), diff --git a/docs/typography.stories.mdx b/docs/typography.stories.mdx index ac9ca6bc01..7bdb5555c7 100644 --- a/docs/typography.stories.mdx +++ b/docs/typography.stories.mdx @@ -3,7 +3,7 @@ import { Plate } from '@alfalab/core-components-plate'; import { StatusBadge } from '@alfalab/core-components-status-badge'; import { Typography } from '@alfalab/core-components-typography'; -export const SERVICE_CDN = process.env.SERVICE_CDN; +export const CORE_COMPONENTS_SERVICE_CDN = process.env.CORE_COMPONENTS_SERVICE_CDN; Buffer.from(value, 'base64').toString('utf-8'); const envManager = { - SERVICE_CDN: decode('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), + CORE_COMPONENTS_SERVICE_CDN: decode('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), CORE_COMPONENTS_METRICS: decode('bWV0cmljcy5hbGZhYmFuay5ydQ=='), CORE_COMPONENTS_CDN_ICON_BASE_URL: decode('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'), CORE_COMPONENTS_CARD_IMAGE_BASE_URL: decode( From a02edc271a67cb4ad903f0fb47688bfd47765397 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 13:33:55 +0700 Subject: [PATCH 27/35] feat: env manager fix after code review --- tools/{env-manager.js => env-manager.mjs} | 2 +- tools/jest/globalSetup.ts | 4 ++-- tools/rollup/rollup.config.mjs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename tools/{env-manager.js => env-manager.mjs} (94%) diff --git a/tools/env-manager.js b/tools/env-manager.mjs similarity index 94% rename from tools/env-manager.js rename to tools/env-manager.mjs index 457d4c87b9..d86730783d 100644 --- a/tools/env-manager.js +++ b/tools/env-manager.mjs @@ -12,4 +12,4 @@ const envManager = { ), }; -module.exports = { envManager }; +export { envManager }; diff --git a/tools/jest/globalSetup.ts b/tools/jest/globalSetup.ts index 7a04e222e4..6bb77ba6b0 100644 --- a/tools/jest/globalSetup.ts +++ b/tools/jest/globalSetup.ts @@ -1,6 +1,6 @@ -import { envManager } from '../env-manager'; - module.exports = async () => { + const { envManager } = await import('../env-manager.mjs'); + process.env.TZ = 'UTC'; // need to assign readonly CORE_COMPONENTS_ENV Object.assign(process.env, { diff --git a/tools/rollup/rollup.config.mjs b/tools/rollup/rollup.config.mjs index a192890cf8..3e2804babe 100644 --- a/tools/rollup/rollup.config.mjs +++ b/tools/rollup/rollup.config.mjs @@ -12,7 +12,7 @@ import copy from 'rollup-plugin-copy'; import { globSync } from 'tinyglobby'; import ts from 'typescript'; -import { envManager } from '../env-manager.js'; +import { envManager } from '../env-manager.mjs'; import { readPackagesFileSync } from '../read-packages-file.cjs'; import { coreComponentsResolver, externalsResolver } from './core-components-resolver.mjs'; From f19ba9bb668ef23fd715d74503502c3753a711d0 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 14:13:01 +0700 Subject: [PATCH 28/35] feat: globalSetup fix after code review --- jest.screenshots.config.mjs | 6 +----- packages/env/src/react-app.d.ts | 5 +---- packages/screenshot-utils/src/helpers.ts | 2 +- tools/jest/globalSetupScreenshots.mjs | 7 +++++++ 4 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 tools/jest/globalSetupScreenshots.mjs diff --git a/jest.screenshots.config.mjs b/jest.screenshots.config.mjs index 865d9d61ad..cae06e99be 100644 --- a/jest.screenshots.config.mjs +++ b/jest.screenshots.config.mjs @@ -6,8 +6,6 @@ import path from 'node:path'; import { fileURLToPath } from 'node:url'; import { createJsWithTsLegacyPreset, pathsToModuleNameMapper } from 'ts-jest'; -import { envManager } from './tools/env-manager.js'; - const dirname = path.dirname(fileURLToPath(import.meta.url)); const tsconfig = fse.readJsonSync(path.join(dirname, 'tsconfig.test.json'), { encoding: 'utf8' }); @@ -20,6 +18,7 @@ const tsJestPreset = createJsWithTsLegacyPreset({ tsconfig: '/tsconfig. const config = { ...tsJestPreset, testEnvironment: 'node', + globalSetup: '/tools/jest/globalSetupScreenshots.mjs', setupFilesAfterEnv: ['/tools/jest/setupScreenshotsTests.ts'], modulePathIgnorePatterns: ['/dist/'], moduleNameMapper: { @@ -29,9 +28,6 @@ const config = { testMatch: ['**/*.screenshots.test.ts?(x)'], maxWorkers: 5, testTimeout: 200000, - globals: { - CORE_COMPONENTS_SERVICE_CDN: envManager.CORE_COMPONENTS_SERVICE_CDN, - }, }; export default config; diff --git a/packages/env/src/react-app.d.ts b/packages/env/src/react-app.d.ts index 53b882ba4a..87b46a3561 100644 --- a/packages/env/src/react-app.d.ts +++ b/packages/env/src/react-app.d.ts @@ -3,10 +3,6 @@ /// /// -// Прокидывается через `globals` в jest.screenshots.config.mjs — особый случай только для скриншот-тестов. -// eslint-disable-next-line no-var -declare var CORE_COMPONENTS_SERVICE_CDN: string; - declare namespace NodeJS { interface ProcessEnv { readonly NODE_ENV: 'development' | 'production' | 'test'; @@ -14,6 +10,7 @@ declare namespace NodeJS { readonly CORE_COMPONENTS_VARIANT?: 'default' | 'alfasans'; readonly CORE_COMPONENTS_CARD_IMAGE_BASE_URL: string; readonly CORE_COMPONENTS_CDN_ICON_BASE_URL: string; + readonly CORE_COMPONENTS_SERVICE_CDN: string; } } diff --git a/packages/screenshot-utils/src/helpers.ts b/packages/screenshot-utils/src/helpers.ts index 10faab4e0f..76d659a4a0 100644 --- a/packages/screenshot-utils/src/helpers.ts +++ b/packages/screenshot-utils/src/helpers.ts @@ -102,7 +102,7 @@ export const matchHtml = async ({ `, }), page.setViewportSize(viewport), - page.route(new RegExp(globalThis.CORE_COMPONENTS_SERVICE_CDN), proxyAssets), + page.route(new RegExp(process.env.CORE_COMPONENTS_SERVICE_CDN), proxyAssets), ]); await waitForPreviewShowed(page); diff --git a/tools/jest/globalSetupScreenshots.mjs b/tools/jest/globalSetupScreenshots.mjs new file mode 100644 index 0000000000..f07efaf0d7 --- /dev/null +++ b/tools/jest/globalSetupScreenshots.mjs @@ -0,0 +1,7 @@ +export default async () => { + const { envManager } = await import('../env-manager.mjs'); + + Object.assign(process.env, { + CORE_COMPONENTS_SERVICE_CDN: envManager.CORE_COMPONENTS_SERVICE_CDN, + }); +}; From 20485c3ccc9b4d264f78f303143b87b4d2de2f34 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 14:48:38 +0700 Subject: [PATCH 29/35] feat: env fix after code review --- tools/env-manager.mjs | 7 +++++-- tools/jest/globalSetup.ts | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/tools/env-manager.mjs b/tools/env-manager.mjs index d86730783d..49084758aa 100644 --- a/tools/env-manager.mjs +++ b/tools/env-manager.mjs @@ -7,9 +7,12 @@ const envManager = { CORE_COMPONENTS_CARD_IMAGE_BASE_URL: decode( 'aHR0cHM6Ly9vbmxpbmUuYWxmYWJhbmsucnUvY2FyZHMtaW1hZ2VzL2NhcmRzLw==', ), - CORE_COMPONENTS_CARD_IMAGE_BASE_URL_JEST: decode( +}; + +const jestEnv = { + CORE_COMPONENTS_CARD_IMAGE_BASE_URL: decode( 'aHR0cHM6Ly9leGFtcGxlLmNvbS9jYXJkcy1pbWFnZXMvY2FyZHMv', ), }; -export { envManager }; +export { envManager, jestEnv }; diff --git a/tools/jest/globalSetup.ts b/tools/jest/globalSetup.ts index 6bb77ba6b0..be2ed68183 100644 --- a/tools/jest/globalSetup.ts +++ b/tools/jest/globalSetup.ts @@ -1,10 +1,10 @@ module.exports = async () => { - const { envManager } = await import('../env-manager.mjs'); + const { jestEnv } = await import('../env-manager.mjs'); process.env.TZ = 'UTC'; // need to assign readonly CORE_COMPONENTS_ENV Object.assign(process.env, { CORE_COMPONENTS_ENV: process.env.NODE_ENV, - CORE_COMPONENTS_CARD_IMAGE_BASE_URL: envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL_JEST, + CORE_COMPONENTS_CARD_IMAGE_BASE_URL: jestEnv.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, }); }; From 4fa81d2a5923918159b538e38212970f50632102 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 15:13:45 +0700 Subject: [PATCH 30/35] feat: createWebpackPlugin --- .storybook/main.js | 26 +++----------------------- tools/env-manager.mjs | 27 ++++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 24 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index 14cce3950f..a9236fdefd 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -2,7 +2,7 @@ const path = require('node:path'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const { patchWebpackConfig } = require('storybook-addon-live-examples/dist/cjs/utils'); const CssMinimizerPlugin = require('css-minimizer-webpack-plugin'); -const { DefinePlugin, NormalModuleReplacementPlugin } = require('webpack'); +const { NormalModuleReplacementPlugin } = require('webpack'); const postcssConfig = require('../postcss.config'); const postcssImport = require('postcss-import'); const loadCss = require('postcss-import/lib/load-content'); @@ -11,7 +11,7 @@ const { isSamePath } = require('../tools/path.cjs'); const { resolveInternal } = require('../tools/resolve-internal.cjs'); const { readPackagesFileSync } = require('../tools/read-packages-file.cjs'); const { existsSync } = require('node:fs'); -const { envManager } = require('../tools/env-manager'); +const { envManager, createWebpackPlugin } = require('../tools/env-manager'); const INTERNAL_PACKAGES = readPackagesFileSync( path.resolve(__dirname, '../tools/.internal-packages'), @@ -293,27 +293,7 @@ module.exports = { }), }, }), - new DefinePlugin({ - 'process.env.BUILD_STORYBOOK_FROM_DIST': JSON.stringify( - process.env.BUILD_STORYBOOK_FROM_DIST, - ), - 'process.env.CORE_COMPONENTS_ENV': JSON.stringify( - mode /* 'DEVELOPMENT' | 'PRODUCTION' */ - .toLowerCase(), - ), - 'process.env.CORE_COMPONENTS_VARIANT': JSON.stringify( - process.env.CORE_COMPONENTS_VARIANT, - ), - 'process.env.CORE_COMPONENTS_SERVICE_CDN': JSON.stringify( - envManager.CORE_COMPONENTS_SERVICE_CDN, - ), - 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( - envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, - ), - 'process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL': JSON.stringify( - envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, - ), - }), + createWebpackPlugin(mode), ); return config; }, diff --git a/tools/env-manager.mjs b/tools/env-manager.mjs index 49084758aa..d2ddceb00a 100644 --- a/tools/env-manager.mjs +++ b/tools/env-manager.mjs @@ -1,3 +1,7 @@ +import webpack from 'webpack'; + +const { DefinePlugin } = webpack; + const decode = (value) => Buffer.from(value, 'base64').toString('utf-8'); const envManager = { @@ -15,4 +19,25 @@ const jestEnv = { ), }; -export { envManager, jestEnv }; +const createWebpackPlugin = (mode) => + new DefinePlugin({ + 'process.env.BUILD_STORYBOOK_FROM_DIST': JSON.stringify( + process.env.BUILD_STORYBOOK_FROM_DIST, + ), + 'process.env.CORE_COMPONENTS_ENV': JSON.stringify( + mode /* 'DEVELOPMENT' | 'PRODUCTION' */ + .toLowerCase(), + ), + 'process.env.CORE_COMPONENTS_VARIANT': JSON.stringify(process.env.CORE_COMPONENTS_VARIANT), + 'process.env.CORE_COMPONENTS_SERVICE_CDN': JSON.stringify( + envManager.CORE_COMPONENTS_SERVICE_CDN, + ), + 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( + envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, + ), + 'process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL': JSON.stringify( + envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, + ), + }); + +export { envManager, jestEnv, createWebpackPlugin }; From 7d93729407c68003c6fb5dbfdc74e2c10df2bdef Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 15:15:24 +0700 Subject: [PATCH 31/35] feat: createManagerEnv --- .storybook/main.js | 10 +++++----- tools/env-manager.mjs | 7 ++++++- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.storybook/main.js b/.storybook/main.js index a9236fdefd..92d6d44275 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -11,7 +11,7 @@ const { isSamePath } = require('../tools/path.cjs'); const { resolveInternal } = require('../tools/resolve-internal.cjs'); const { readPackagesFileSync } = require('../tools/read-packages-file.cjs'); const { existsSync } = require('node:fs'); -const { envManager, createWebpackPlugin } = require('../tools/env-manager'); +const { createWebpackPlugin, createManagerEnv } = require('../tools/env-manager'); const INTERNAL_PACKAGES = readPackagesFileSync( path.resolve(__dirname, '../tools/.internal-packages'), @@ -120,10 +120,10 @@ function disableReactRefreshOverlay(config) { * @type {import('@storybook/react-webpack5').StorybookConfig} */ module.exports = { - env: (config) => ({ - ...config, - CORE_COMPONENTS_METRICS: envManager.CORE_COMPONENTS_METRICS, - }), + // env прокидывает переменные в оба бандла Storybook: preview (iframe) и manager. + // DefinePlugin из createWebpackPlugin работает только в preview-бандле (через webpackFinal), + // поэтому переменные, нужные в manager.js, выносятся сюда отдельно. + env: createManagerEnv, stories: [ '../packages/**/*.docs.@(ts|md)x', '../packages/**/*.stories.@(ts|md)x', diff --git a/tools/env-manager.mjs b/tools/env-manager.mjs index d2ddceb00a..fad82c4ade 100644 --- a/tools/env-manager.mjs +++ b/tools/env-manager.mjs @@ -40,4 +40,9 @@ const createWebpackPlugin = (mode) => ), }); -export { envManager, jestEnv, createWebpackPlugin }; +const createManagerEnv = (config) => ({ + ...config, + CORE_COMPONENTS_METRICS: envManager.CORE_COMPONENTS_METRICS, +}); + +export { envManager, jestEnv, createWebpackPlugin, createManagerEnv }; From f9d8b14753f96b984054c87dcb8293810b21b66b Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 15:21:52 +0700 Subject: [PATCH 32/35] feat: createRollupPlugin --- tools/env-manager.mjs | 17 ++++++++++++++++- tools/rollup/rollup.config.mjs | 19 ++----------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/tools/env-manager.mjs b/tools/env-manager.mjs index fad82c4ade..39401ecf54 100644 --- a/tools/env-manager.mjs +++ b/tools/env-manager.mjs @@ -1,3 +1,4 @@ +import replace from '@rollup/plugin-replace'; import webpack from 'webpack'; const { DefinePlugin } = webpack; @@ -45,4 +46,18 @@ const createManagerEnv = (config) => ({ CORE_COMPONENTS_METRICS: envManager.CORE_COMPONENTS_METRICS, }); -export { envManager, jestEnv, createWebpackPlugin, createManagerEnv }; +const createRollupPlugin = () => + replace({ + values: { + 'process.env.CORE_COMPONENTS_ENV': JSON.stringify('production'), + 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( + envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, + ), + 'process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL': JSON.stringify( + envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, + ), + }, + preventAssignment: true, + }); + +export { envManager, jestEnv, createWebpackPlugin, createManagerEnv, createRollupPlugin }; diff --git a/tools/rollup/rollup.config.mjs b/tools/rollup/rollup.config.mjs index 3e2804babe..0725363053 100644 --- a/tools/rollup/rollup.config.mjs +++ b/tools/rollup/rollup.config.mjs @@ -1,7 +1,6 @@ /* eslint-disable import/no-extraneous-dependencies, no-nested-ternary */ import json from '@rollup/plugin-json'; -import replace from '@rollup/plugin-replace'; import typescript from '@rollup/plugin-typescript'; import fse from 'fs-extra'; import path from 'node:path'; @@ -12,7 +11,7 @@ import copy from 'rollup-plugin-copy'; import { globSync } from 'tinyglobby'; import ts from 'typescript'; -import { envManager } from '../env-manager.mjs'; +import { createRollupPlugin } from '../env-manager.mjs'; import { readPackagesFileSync } from '../read-packages-file.cjs'; import { coreComponentsResolver, externalsResolver } from './core-components-resolver.mjs'; @@ -40,21 +39,7 @@ const baseConfig = () => input: globSync('src/**/*.{ts,tsx}', { ignore: ['src/**/*.{test,stories}.{ts,tsx}', 'src/**/*.mdx', 'src/**/*.d.ts'], }), - plugins: [ - json(), - replace({ - values: { - 'process.env.CORE_COMPONENTS_ENV': JSON.stringify('production'), - 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( - envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, - ), - 'process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL': JSON.stringify( - envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, - ), - }, - preventAssignment: true, - }), - ], + plugins: [json(), createRollupPlugin()], }); const assetsCopyPlugin = (dest) => From 06c71c88ca2998f4024950f1f4531458b841ab97 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 15:24:52 +0700 Subject: [PATCH 33/35] feat: createGlobalSetupEnv --- tools/env-manager.mjs | 16 +++++++++++++++- tools/jest/globalSetup.ts | 8 ++------ 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/tools/env-manager.mjs b/tools/env-manager.mjs index 39401ecf54..8e978d2a5e 100644 --- a/tools/env-manager.mjs +++ b/tools/env-manager.mjs @@ -60,4 +60,18 @@ const createRollupPlugin = () => preventAssignment: true, }); -export { envManager, jestEnv, createWebpackPlugin, createManagerEnv, createRollupPlugin }; +const createGlobalSetupEnv = () => + // need to assign readonly CORE_COMPONENTS_ENV + Object.assign(process.env, { + CORE_COMPONENTS_ENV: process.env.NODE_ENV, + CORE_COMPONENTS_CARD_IMAGE_BASE_URL: jestEnv.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, + }); + +export { + envManager, + jestEnv, + createWebpackPlugin, + createManagerEnv, + createRollupPlugin, + createGlobalSetupEnv, +}; diff --git a/tools/jest/globalSetup.ts b/tools/jest/globalSetup.ts index be2ed68183..4427543049 100644 --- a/tools/jest/globalSetup.ts +++ b/tools/jest/globalSetup.ts @@ -1,10 +1,6 @@ module.exports = async () => { - const { jestEnv } = await import('../env-manager.mjs'); + const { createGlobalSetupEnv } = await import('../env-manager.mjs'); process.env.TZ = 'UTC'; - // need to assign readonly CORE_COMPONENTS_ENV - Object.assign(process.env, { - CORE_COMPONENTS_ENV: process.env.NODE_ENV, - CORE_COMPONENTS_CARD_IMAGE_BASE_URL: jestEnv.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, - }); + createGlobalSetupEnv(); }; From d14bcab8b3e28579d4df315475f3d1d5d146ad16 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 15:26:47 +0700 Subject: [PATCH 34/35] feat: createGlobalSetupScreenshotsEnv --- tools/env-manager.mjs | 6 ++++++ tools/jest/globalSetupScreenshots.mjs | 6 ++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/tools/env-manager.mjs b/tools/env-manager.mjs index 8e978d2a5e..11066043a6 100644 --- a/tools/env-manager.mjs +++ b/tools/env-manager.mjs @@ -67,6 +67,11 @@ const createGlobalSetupEnv = () => CORE_COMPONENTS_CARD_IMAGE_BASE_URL: jestEnv.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, }); +const createGlobalSetupScreenshotsEnv = () => + Object.assign(process.env, { + CORE_COMPONENTS_SERVICE_CDN: envManager.CORE_COMPONENTS_SERVICE_CDN, + }); + export { envManager, jestEnv, @@ -74,4 +79,5 @@ export { createManagerEnv, createRollupPlugin, createGlobalSetupEnv, + createGlobalSetupScreenshotsEnv, }; diff --git a/tools/jest/globalSetupScreenshots.mjs b/tools/jest/globalSetupScreenshots.mjs index f07efaf0d7..10f185b68a 100644 --- a/tools/jest/globalSetupScreenshots.mjs +++ b/tools/jest/globalSetupScreenshots.mjs @@ -1,7 +1,5 @@ export default async () => { - const { envManager } = await import('../env-manager.mjs'); + const { createGlobalSetupScreenshotsEnv } = await import('../env-manager.mjs'); - Object.assign(process.env, { - CORE_COMPONENTS_SERVICE_CDN: envManager.CORE_COMPONENTS_SERVICE_CDN, - }); + createGlobalSetupScreenshotsEnv(); }; From d43f5e750d0aad9fa1b764197969471f4c8e7737 Mon Sep 17 00:00:00 2001 From: Mikhail Lukin Date: Mon, 22 Jun 2026 15:28:53 +0700 Subject: [PATCH 35/35] feat: rename env manager --- tools/env-manager.mjs | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/tools/env-manager.mjs b/tools/env-manager.mjs index 11066043a6..ca72e440ea 100644 --- a/tools/env-manager.mjs +++ b/tools/env-manager.mjs @@ -5,7 +5,7 @@ const { DefinePlugin } = webpack; const decode = (value) => Buffer.from(value, 'base64').toString('utf-8'); -const envManager = { +const env = { CORE_COMPONENTS_SERVICE_CDN: decode('YWxmYWJhbmsuc2VydmljZWNkbi5ydQ=='), CORE_COMPONENTS_METRICS: decode('bWV0cmljcy5hbGZhYmFuay5ydQ=='), CORE_COMPONENTS_CDN_ICON_BASE_URL: decode('aHR0cHM6Ly9hbGZhYmFuay5zZXJ2aWNlY2RuLnJ1L2ljb25z'), @@ -30,20 +30,18 @@ const createWebpackPlugin = (mode) => .toLowerCase(), ), 'process.env.CORE_COMPONENTS_VARIANT': JSON.stringify(process.env.CORE_COMPONENTS_VARIANT), - 'process.env.CORE_COMPONENTS_SERVICE_CDN': JSON.stringify( - envManager.CORE_COMPONENTS_SERVICE_CDN, - ), + 'process.env.CORE_COMPONENTS_SERVICE_CDN': JSON.stringify(env.CORE_COMPONENTS_SERVICE_CDN), 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( - envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, + env.CORE_COMPONENTS_CDN_ICON_BASE_URL, ), 'process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL': JSON.stringify( - envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, + env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, ), }); const createManagerEnv = (config) => ({ ...config, - CORE_COMPONENTS_METRICS: envManager.CORE_COMPONENTS_METRICS, + CORE_COMPONENTS_METRICS: env.CORE_COMPONENTS_METRICS, }); const createRollupPlugin = () => @@ -51,10 +49,10 @@ const createRollupPlugin = () => values: { 'process.env.CORE_COMPONENTS_ENV': JSON.stringify('production'), 'process.env.CORE_COMPONENTS_CDN_ICON_BASE_URL': JSON.stringify( - envManager.CORE_COMPONENTS_CDN_ICON_BASE_URL, + env.CORE_COMPONENTS_CDN_ICON_BASE_URL, ), 'process.env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL': JSON.stringify( - envManager.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, + env.CORE_COMPONENTS_CARD_IMAGE_BASE_URL, ), }, preventAssignment: true, @@ -69,12 +67,10 @@ const createGlobalSetupEnv = () => const createGlobalSetupScreenshotsEnv = () => Object.assign(process.env, { - CORE_COMPONENTS_SERVICE_CDN: envManager.CORE_COMPONENTS_SERVICE_CDN, + CORE_COMPONENTS_SERVICE_CDN: env.CORE_COMPONENTS_SERVICE_CDN, }); export { - envManager, - jestEnv, createWebpackPlugin, createManagerEnv, createRollupPlugin,