Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ class ScrollBarRoot extends Component<ScrollBarProps, typeof ScrollBarRoot.enhan

const visibleScroll = this.calculateVisibleScroll();

if (!visibleScroll && this.$slider) {
this.$slider.style.transform = 'none';
}

this.setState({ visibleScroll }, () => {
if (!this.$container || !this.$bar || !this.$slider) return;
const orientation = this.getOrientation();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ const Demo = () => {
</Text>
)}
</ScrollArea.Container>
{Boolean(options.length) && <ScrollArea.Bar orientation='vertical' />}
<ScrollArea.Bar orientation='vertical' />
</ScrollArea>
</hideScrollBarsFromScreenReadersContext.Provider>

Expand Down
6 changes: 5 additions & 1 deletion tools/continuous-delivery/src/utils/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,13 @@ export class Changelog {

body.forEach((token: Token) => {
if (token.type === 'heading' && token.level === 3 && token.raw && allAllowedScopes.has(token.raw.slice(9).toLowerCase())) { // slice(9) for remove @semcore scope
traversingComponent = null;
traversingBaseComponent = null;
traversingType = null;

traversingComponent = token.raw.toLowerCase();

if (semcoreBaseComponents.includes(traversingComponent.slice(9))) {
if (traversingComponent !== '@semcore/ellipsis' && semcoreBaseComponents.includes(traversingComponent.slice(9))) {
traversingBaseComponent = traversingComponent;
traversingComponent = '@semcore/base-components';
}
Expand Down
4 changes: 2 additions & 2 deletions tools/continuous-delivery/src/utils/packages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const ignoreComponents = [
'@semcore/email',
'@semcore/utils',
'@semcore/table',
'@semcore/icon', // separate to another pipeline
'@semcore/illustration', // separate to another pipeline
// '@semcore/icon', // separate to another pipeline
// '@semcore/illustration', // separate to another pipeline
'@semcore/theme', // separate to another pipeline
];

Expand Down