From da2fe1cbf07dc23ae44ab8fb13de7532a876ec6d Mon Sep 17 00:00:00 2001 From: PosikBoy Date: Wed, 27 May 2026 19:45:23 +0300 Subject: [PATCH 1/5] fix(ChangelogDialog): fixed styling in ChangelogDialog --- src/components/ChangelogDialog/ChangelogDialog.scss | 3 --- src/components/ChangelogDialog/ChangelogDialog.tsx | 1 + src/components/ChangelogDialog/components/Item/Item.scss | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/ChangelogDialog/ChangelogDialog.scss b/src/components/ChangelogDialog/ChangelogDialog.scss index 913bea4d..153abec9 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.scss +++ b/src/components/ChangelogDialog/ChangelogDialog.scss @@ -4,11 +4,8 @@ $block: '.#{variables.$ns}changelog-dialog'; $maxItemsHeight: 70vh; #{$block} { - --gc-changelog-dialog-width: 732px; --gc-changelog-dialog-meta-width: 80px; - width: var(--gc-changelog-dialog-width); - &__full-list-link-icon { margin-inline-start: var(--g-spacing-1); vertical-align: middle; diff --git a/src/components/ChangelogDialog/ChangelogDialog.tsx b/src/components/ChangelogDialog/ChangelogDialog.tsx index f4b035be..72386798 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.tsx +++ b/src/components/ChangelogDialog/ChangelogDialog.tsx @@ -70,6 +70,7 @@ export function ChangelogDialog(props: ChangelogDialogProps) { disableOutsideClick={disableOutsideClick} aria-labelledby={dialogCaptionId} disableHeightTransition={disableHeightTransition} + size="m" > {fullListLink ? ( diff --git a/src/components/ChangelogDialog/components/Item/Item.scss b/src/components/ChangelogDialog/components/Item/Item.scss index 5ced6537..56f091fb 100644 --- a/src/components/ChangelogDialog/components/Item/Item.scss +++ b/src/components/ChangelogDialog/components/Item/Item.scss @@ -21,7 +21,7 @@ $block: '.#{variables.$ns}changelog-dialog-item'; &__content { flex: 1; - margin-inline-start: var(--g-spacing-5); + margin-inline-start: var(--g-spacing-8); } &__title { From 50f0e86a800d435ad4b6b93a4feed00570ab90d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9?= <134225302+PosikBoy@users.noreply.github.com> Date: Fri, 29 May 2026 16:45:55 +0300 Subject: [PATCH 2/5] Update ChangelogDialog.scss --- src/components/ChangelogDialog/ChangelogDialog.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/ChangelogDialog/ChangelogDialog.scss b/src/components/ChangelogDialog/ChangelogDialog.scss index 153abec9..913bea4d 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.scss +++ b/src/components/ChangelogDialog/ChangelogDialog.scss @@ -4,8 +4,11 @@ $block: '.#{variables.$ns}changelog-dialog'; $maxItemsHeight: 70vh; #{$block} { + --gc-changelog-dialog-width: 732px; --gc-changelog-dialog-meta-width: 80px; + width: var(--gc-changelog-dialog-width); + &__full-list-link-icon { margin-inline-start: var(--g-spacing-1); vertical-align: middle; From 271883a9061650d836c290b9fbd9acec94f736f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9?= <134225302+PosikBoy@users.noreply.github.com> Date: Fri, 29 May 2026 16:46:47 +0300 Subject: [PATCH 3/5] Update ChangelogDialog.scss --- src/components/ChangelogDialog/ChangelogDialog.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/ChangelogDialog/ChangelogDialog.scss b/src/components/ChangelogDialog/ChangelogDialog.scss index 913bea4d..c046ac6b 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.scss +++ b/src/components/ChangelogDialog/ChangelogDialog.scss @@ -4,7 +4,6 @@ $block: '.#{variables.$ns}changelog-dialog'; $maxItemsHeight: 70vh; #{$block} { - --gc-changelog-dialog-width: 732px; --gc-changelog-dialog-meta-width: 80px; width: var(--gc-changelog-dialog-width); From a90b1254342be62dc1639de1a2a61cdcfd9dd04b Mon Sep 17 00:00:00 2001 From: PosikBoy Date: Mon, 1 Jun 2026 17:24:22 +0300 Subject: [PATCH 4/5] fix(bug): fixed Backward compatibility --- src/components/ChangelogDialog/ChangelogDialog.scss | 3 +-- src/components/ChangelogDialog/components/Item/Item.scss | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/ChangelogDialog/ChangelogDialog.scss b/src/components/ChangelogDialog/ChangelogDialog.scss index c046ac6b..72c1db8a 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.scss +++ b/src/components/ChangelogDialog/ChangelogDialog.scss @@ -5,8 +5,7 @@ $maxItemsHeight: 70vh; #{$block} { --gc-changelog-dialog-meta-width: 80px; - - width: var(--gc-changelog-dialog-width); + --g-dialog-width: var(--gc-changelog-dialog-width, 732px); &__full-list-link-icon { margin-inline-start: var(--g-spacing-1); diff --git a/src/components/ChangelogDialog/components/Item/Item.scss b/src/components/ChangelogDialog/components/Item/Item.scss index 56f091fb..5ced6537 100644 --- a/src/components/ChangelogDialog/components/Item/Item.scss +++ b/src/components/ChangelogDialog/components/Item/Item.scss @@ -21,7 +21,7 @@ $block: '.#{variables.$ns}changelog-dialog-item'; &__content { flex: 1; - margin-inline-start: var(--g-spacing-8); + margin-inline-start: var(--g-spacing-5); } &__title { From 005cd0367e2912a95148068632ab9a0a0976d013 Mon Sep 17 00:00:00 2001 From: PosikBoy Date: Mon, 1 Jun 2026 17:24:58 +0300 Subject: [PATCH 5/5] fix(bug): removed size=m --- src/components/ChangelogDialog/ChangelogDialog.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/ChangelogDialog/ChangelogDialog.tsx b/src/components/ChangelogDialog/ChangelogDialog.tsx index 72386798..f4b035be 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.tsx +++ b/src/components/ChangelogDialog/ChangelogDialog.tsx @@ -70,7 +70,6 @@ export function ChangelogDialog(props: ChangelogDialogProps) { disableOutsideClick={disableOutsideClick} aria-labelledby={dialogCaptionId} disableHeightTransition={disableHeightTransition} - size="m" > {fullListLink ? (