Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
79e885e
fix: set 16px as border-radius for Reactions' buttons
Ruminat Dec 16, 2024
e804d78
fix: a better solution for rounding Reactions' buttons
Ruminat Dec 23, 2024
84caf8b
Merge remote-tracking branch 'origin/main' into fix-better-border-rad…
Ruminat Dec 23, 2024
1a76a52
fix: rename unstable namespace keyset (#253)
DarkGenius Dec 24, 2024
bfaee76
chore(main): release 3.13.2 (#254)
gravity-ui-bot Dec 24, 2024
279c9cb
chore: update codeowners (#257)
mournfulCoroner Jan 13, 2025
2a46c84
feat!: prepare v4 release (deps + removals) (#255)
amje Jan 13, 2025
49b04fc
feat: update uikit
amje Jan 13, 2025
7064db0
fix: lint issues
amje Jan 13, 2025
e7c1a27
feat!: major update Stories and StoriesGroup (#256)
DarkGenius Jan 14, 2025
90da3df
fix: bundling and tests
amje Jan 15, 2025
0d3b1b2
4.0.0-beta.0
amje Jan 15, 2025
bf872ec
feat!: use ts target es2022
amje Jan 15, 2025
d664744
4.0.0-beta.1
amje Jan 15, 2025
86dc20a
feat(ActionsPanel)!: remove component
amje Jan 16, 2025
c6fc0b9
4.0.0-beta.2
amje Jan 16, 2025
13ac887
feat!: update uikit
amje Jan 17, 2025
d1b01a7
4.0.0-beta.3
amje Jan 17, 2025
e20e6f3
fix: set 16px as border-radius for Reactions' buttons
Ruminat Dec 16, 2024
017a1ec
fix: a better solution for rounding Reactions' buttons
Ruminat Dec 23, 2024
ab0b661
fix(ConfirmDialog): focus on apply to submit on Enter
amje Jan 29, 2025
2cc2f1e
feat: update uikit
amje Jan 30, 2025
6e42cfa
4.0.0-beta.4
amje Jan 30, 2025
db190f7
fix: add exports field
amje Jan 30, 2025
b5beecd
4.0.0-beta.5
amje Jan 30, 2025
febaa45
feat: update uikit
amje Feb 4, 2025
a57ebb7
ci: update workflows actions
amje Feb 4, 2025
bf573a1
chore(main): release 4.0.0 (#259)
gravity-ui-bot Feb 4, 2025
237a300
fix: fix esm build (#260)
amje Feb 7, 2025
a726e03
chore(main): release 4.0.1 (#261)
gravity-ui-bot Feb 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [3.13.2](https://github.com/gravity-ui/components/compare/v3.13.1...v3.13.2) (2024-12-24)


### Bug Fixes

* rename unstable namespace keyset ([#253](https://github.com/gravity-ui/components/issues/253)) ([1d5052a](https://github.com/gravity-ui/components/commit/1d5052a308ad1208a1df99b9109d72e0b00f04f9))

## [3.13.1](https://github.com/gravity-ui/components/compare/v3.13.0...v3.13.1) (2024-12-16)


Expand Down
4 changes: 2 additions & 2 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
* @amje @ValeraS @korvin89
/src/components/AdaptiveTabs @artemipanchuk
/src/components/AdaptiveTabs
/src/components/DefinitionList @Raubzeug
/src/components/FilePreview @KirillDyachkovskiy
/src/components/FilePreview @mournfulCoroner
/src/components/FormRow @ogonkov
/src/components/HelpPopover @Raubzeug
/src/components/Notifications @Ruminat
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gravity-ui/components",
"version": "3.13.1",
"version": "3.13.2",
"description": "",
"license": "MIT",
"exports": {
Expand Down
1 change: 1 addition & 0 deletions src/components/Reactions/Reaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export function Reaction(props: ReactionInnerProps) {
selected={selected}
view="outlined"
extraProps={{value}}
pin="circle-circle"
onClick={onClickCallback}
>
<Button.Icon>
Expand Down
4 changes: 2 additions & 2 deletions src/components/unstable/Stories/i18n/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {addComponentKeysets} from '@gravity-ui/uikit/i18n';

import {NAMESPACE} from '../../../utils/cn';
import {UNSTABLE_NAMESPACE} from '../../../utils/cn';

import en from './en.json';
import ru from './ru.json';

export const i18n = addComponentKeysets({en, ru}, `${NAMESPACE}stories`);
export const i18n = addComponentKeysets({en, ru}, `${UNSTABLE_NAMESPACE}stories`);
1 change: 1 addition & 0 deletions src/components/utils/cn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {withNaming} from '@bem-react/classname';
export type CnMods = Record<string, string | boolean | undefined>;

export const NAMESPACE = 'gc-';
export const UNSTABLE_NAMESPACE = 'gcu-';

export const cn = withNaming({e: '__', m: '_', v: '_'});
export const block = withNaming({n: NAMESPACE, e: '__', m: '_', v: '_'});