@synerise/ds-scrollbar 0.12.2 → 0.12.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.12.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-scrollbar@0.12.2...@synerise/ds-scrollbar@0.12.3) (2025-02-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **scrollbar:** copy styles ([ba1c3d5](https://github.com/Synerise/synerise-design/commit/ba1c3d504fc04f60f4d3e21334a857177bfc582b))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.12.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-scrollbar@0.12.1...@synerise/ds-scrollbar@0.12.2) (2025-02-14)
7
18
 
8
19
 
@@ -1,6 +1,6 @@
1
1
  /// <reference types="perfect-scrollbar" />
2
2
  import React from 'react';
3
- import './style/index.less';
3
+ import '../style/index.less';
4
4
  export declare const VirtualScrollbar: React.ForwardRefExoticComponent<import("../Scrollbar.types").ScrollbarAdditionalProps & {
5
5
  children?: React.ReactNode;
6
6
  } & {
@@ -3,7 +3,7 @@ import React, { useCallback, forwardRef, useRef, useEffect, useState } from 'rea
3
3
  import PerfectScrollbar from '@ofsajd/react-perfect-scrollbar';
4
4
  // import { debounce } from 'lodash';
5
5
  import { useCombinedRefs, useResizeObserver } from '@synerise/ds-utils';
6
- import "./style/index.css";
6
+ import "../style/index.css";
7
7
  import * as S from './VirtualScrollbar.styles';
8
8
  // eslint-disable-next-line import/prefer-default-export
9
9
  export var VirtualScrollbar = forwardRef(function (_ref, forwardedRef) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-scrollbar",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "Scrollbar UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -44,5 +44,5 @@
44
44
  "react": ">=16.9.0 <= 18.3.1",
45
45
  "styled-components": "^5.3.3"
46
46
  },
47
- "gitHead": "f03bc22383f0ac3f0b1bde9f80ce190ae49badd1"
47
+ "gitHead": "627d5249e79b471d6363e9d04642eb011a329d71"
48
48
  }