@synerise/ds-scrollbar 0.12.5 → 0.12.7

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,22 @@
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.7](https://github.com/Synerise/synerise-design/compare/@synerise/ds-scrollbar@0.12.6...@synerise/ds-scrollbar@0.12.7) (2025-03-10)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-scrollbar
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.12.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-scrollbar@0.12.5...@synerise/ds-scrollbar@0.12.6) (2025-03-04)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-scrollbar
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.12.5](https://github.com/Synerise/synerise-design/compare/@synerise/ds-scrollbar@0.12.4...@synerise/ds-scrollbar@0.12.5) (2025-02-27)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-scrollbar
@@ -2,7 +2,7 @@ import styled, { keyframes } from 'styled-components';
2
2
  var spinnerAnimation = keyframes(["from{transform:rotateZ(0deg);}to{transform:rotateZ(360deg);}"]);
3
3
  export var Loader = styled.div.withConfig({
4
4
  displayName: "Scrollbarstyles__Loader",
5
- componentId: "rfwkf7-0"
5
+ componentId: "sc-rfwkf7-0"
6
6
  })(["width:0;height:0;position:absolute;top:calc(50% - 12px);left:calc(50% - 12px);z-index:99;pointer-events:none;display:flex;opacity:", ";transform-origin:12px 12px;transition:opacity 0.3s ease-in-out;animation:", " 1s forwards linear infinite;svg{color:", ";fill:", ";}"], function (props) {
7
7
  return props.loading ? '1' : '0';
8
8
  }, spinnerAnimation, function (props) {
@@ -12,9 +12,9 @@ export var Loader = styled.div.withConfig({
12
12
  });
13
13
  export var LoaderWrapper = styled.div.withConfig({
14
14
  displayName: "Scrollbarstyles__LoaderWrapper",
15
- componentId: "rfwkf7-1"
15
+ componentId: "sc-rfwkf7-1"
16
16
  })(["width:100%;height:100%;bottom:0;left:0;position:absolute;background-color:rgba(255,255,255,0.6);"]);
17
17
  export var ScrollbarContainer = styled.div.withConfig({
18
18
  displayName: "Scrollbarstyles__ScrollbarContainer",
19
- componentId: "rfwkf7-2"
19
+ componentId: "sc-rfwkf7-2"
20
20
  })(["position:relative;height:100%;"]);
@@ -1,11 +1,11 @@
1
1
  import styled from 'styled-components';
2
2
  export var ScrollbarContent = styled.div.withConfig({
3
3
  displayName: "VirtualScrollbarstyles__ScrollbarContent",
4
- componentId: "hoiad9-0"
4
+ componentId: "sc-hoiad9-0"
5
5
  })([""]);
6
6
  export var ScrollbarWrapper = styled.div.withConfig({
7
7
  displayName: "VirtualScrollbarstyles__ScrollbarWrapper",
8
- componentId: "hoiad9-1"
8
+ componentId: "sc-hoiad9-1"
9
9
  })(["padding-right:", ";padding-bottom:", ";& > *{opacity:", ";transition:all 0.25s ease-in-out;}"], function (props) {
10
10
  if (props.absolute) {
11
11
  return '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-scrollbar",
3
- "version": "0.12.5",
3
+ "version": "0.12.7",
4
4
  "description": "Scrollbar UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -21,7 +21,7 @@
21
21
  "build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
22
22
  "build:watch": "npm run build:js -- --watch",
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
- "pack:ci": "npm pack --pack-destination ../../portal/storybook-static/static",
24
+ "pack:ci": "npm pack --pack-destination ../../storybook/storybook-static/static",
25
25
  "prepublish": "npm run build",
26
26
  "test": "jest",
27
27
  "test:watch": "npm run test -- --watchAll",
@@ -35,8 +35,8 @@
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
37
  "@ofsajd/react-perfect-scrollbar": "1.0.0",
38
- "@synerise/ds-icon": "^0.71.2",
39
- "@synerise/ds-utils": "^0.32.2",
38
+ "@synerise/ds-icon": "^0.72.1",
39
+ "@synerise/ds-utils": "^0.32.3",
40
40
  "lodash": "^4.7.21"
41
41
  },
42
42
  "peerDependencies": {
@@ -44,5 +44,5 @@
44
44
  "react": ">=16.9.0 <= 18.3.1",
45
45
  "styled-components": "^5.3.3"
46
46
  },
47
- "gitHead": "23054ac8e90293b1a722acdec723b4bfd5abd6c9"
47
+ "gitHead": "a176b46dab123cd503247ae57022f8e808772d68"
48
48
  }