@synerise/ds-progress-bar 2.0.2 → 2.0.4
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 +12 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [2.0.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-progress-bar@2.0.3...@synerise/ds-progress-bar@2.0.4) (2026-09-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-progress-bar
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.0.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-progress-bar@2.0.2...@synerise/ds-progress-bar@2.0.3) (2026-09-16)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-progress-bar
|
|
17
|
+
|
|
6
18
|
## [2.0.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-progress-bar@2.0.1...@synerise/ds-progress-bar@2.0.2) (2026-09-08)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @synerise/ds-progress-bar
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { default } from './ProgressBar';
|
|
2
1
|
export { default as Multivalue } from './Multivalue/Multivalue';
|
|
3
|
-
export { default as ProgressTiles } from './ProgressTiles/ProgressTiles';
|
|
4
|
-
export type { ProgressProps } from './ProgressBar.types';
|
|
5
2
|
export type { MultivalueProps, ProgressValue, } from './Multivalue/Multivalue.types';
|
|
3
|
+
export { default } from './ProgressBar';
|
|
4
|
+
export type { ProgressProps } from './ProgressBar.types';
|
|
5
|
+
export { default as ProgressTiles } from './ProgressTiles/ProgressTiles';
|
|
6
6
|
export type { ProgressTilesProps } from './ProgressTiles/ProgressTiles.types';
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { default as default2 } from "./
|
|
2
|
-
import { default as default3 } from "./
|
|
1
|
+
import { default as default2 } from "./Multivalue/Multivalue.js";
|
|
2
|
+
import { default as default3 } from "./ProgressBar.js";
|
|
3
3
|
import { ProgressTiles } from "./ProgressTiles/ProgressTiles.js";
|
|
4
4
|
export {
|
|
5
|
-
|
|
5
|
+
default2 as Multivalue,
|
|
6
6
|
ProgressTiles,
|
|
7
|
-
|
|
7
|
+
default3 as default
|
|
8
8
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-progress-bar",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Progress-Bar UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
],
|
|
43
43
|
"types": "dist/index.d.ts",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@synerise/ds-form-field": "^2.0.
|
|
46
|
-
"@synerise/ds-tooltip": "^2.0.
|
|
47
|
-
"@synerise/ds-utils": "^2.
|
|
45
|
+
"@synerise/ds-form-field": "^2.0.4",
|
|
46
|
+
"@synerise/ds-tooltip": "^2.0.4",
|
|
47
|
+
"@synerise/ds-utils": "^2.1.1",
|
|
48
48
|
"uuid": "^8.3.2"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"styled-components": "^5.3.3",
|
|
54
54
|
"vitest": "4"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "b1d905617dfb186b5d80966d63ce55bf29df743d"
|
|
57
57
|
}
|