@synerise/ds-progress-bar 1.1.15 → 1.1.17

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,25 @@
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
+ ## [1.1.17](https://github.com/Synerise/synerise-design/compare/@synerise/ds-progress-bar@1.1.16...@synerise/ds-progress-bar@1.1.17) (2025-09-16)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-progress-bar
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.1.16](https://github.com/Synerise/synerise-design/compare/@synerise/ds-progress-bar@1.1.15...@synerise/ds-progress-bar@1.1.16) (2025-09-05)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * fixed regressions ([7280298](https://github.com/Synerise/synerise-design/commit/7280298de410dd67bb858afda6c2367436bbc192))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.1.15](https://github.com/Synerise/synerise-design/compare/@synerise/ds-progress-bar@1.1.14...@synerise/ds-progress-bar@1.1.15) (2025-09-05)
7
26
 
8
27
 
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { type ProgressProps } from './ProgressBar.types';
3
- declare const ProgressBar: ({ description, label, steps, width, customColor, percent, className, thin, containerStyles, inline, style, ...rest }: ProgressProps) => React.JSX.Element;
3
+ declare const ProgressBar: ({ description, label, steps, width, customColor, percent, className, thin, containerStyles, inline, ...rest }: ProgressProps) => React.JSX.Element;
4
4
  export default ProgressBar;
@@ -1,4 +1,4 @@
1
- var _excluded = ["description", "label", "steps", "width", "customColor", "percent", "className", "thin", "containerStyles", "inline", "style"];
1
+ var _excluded = ["description", "label", "steps", "width", "customColor", "percent", "className", "thin", "containerStyles", "inline"];
2
2
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
3
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
4
4
  import React, { useMemo } from 'react';
@@ -12,7 +12,7 @@ var ProgressBar = function ProgressBar(_ref) {
12
12
  _ref$steps = _ref.steps,
13
13
  steps = _ref$steps === void 0 ? 1 : _ref$steps,
14
14
  _ref$width = _ref.width,
15
- width = _ref$width === void 0 ? '' : _ref$width,
15
+ width = _ref$width === void 0 ? '100%' : _ref$width,
16
16
  _ref$customColor = _ref.customColor,
17
17
  customColor = _ref$customColor === void 0 ? '' : _ref$customColor,
18
18
  _ref$percent = _ref.percent,
@@ -23,7 +23,6 @@ var ProgressBar = function ProgressBar(_ref) {
23
23
  containerStyles = _ref.containerStyles,
24
24
  _ref$inline = _ref.inline,
25
25
  inline = _ref$inline === void 0 ? false : _ref$inline,
26
- style = _ref.style,
27
26
  rest = _objectWithoutPropertiesLoose(_ref, _excluded);
28
27
  var tiles = useMemo(function () {
29
28
  return Array.from({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-progress-bar",
3
- "version": "1.1.15",
3
+ "version": "1.1.17",
4
4
  "description": "Progress-Bar UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -26,6 +26,7 @@
26
26
  "test": "jest",
27
27
  "test:watch": "npm run test -- --watchAll",
28
28
  "types": "tsc --noEmit",
29
+ "check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
29
30
  "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
30
31
  },
31
32
  "sideEffects": [
@@ -34,13 +35,13 @@
34
35
  ],
35
36
  "types": "dist/index.d.ts",
36
37
  "dependencies": {
37
- "@synerise/ds-form-field": "^1.1.14",
38
- "@synerise/ds-utils": "^1.4.1"
38
+ "@synerise/ds-form-field": "^1.1.15",
39
+ "@synerise/ds-utils": "^1.4.2"
39
40
  },
40
41
  "peerDependencies": {
41
42
  "@synerise/ds-core": "*",
42
43
  "react": ">=16.9.0 <= 18.3.1",
43
44
  "styled-components": "^5.3.3"
44
45
  },
45
- "gitHead": "7f119fa17e645f1d800aea95c313fe22f348439c"
46
+ "gitHead": "5beb6ab5f2d77b9e98e04caab7dff20b8436078b"
46
47
  }