@synerise/ds-badge 0.6.59 → 0.7.1
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 +19 -0
- package/dist/Badge.styles.d.ts +2 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
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
|
+
## [0.7.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-badge@0.7.0...@synerise/ds-badge@0.7.1) (2024-05-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-badge
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.7.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-badge@0.6.59...@synerise/ds-badge@0.7.0) (2024-05-16)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **storybook7:** SB7.5 install and config ([abfced9](https://github.com/Synerise/synerise-design/commit/abfced90c2661903338bff0f7022149fbf7583b9))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.6.59](https://github.com/Synerise/synerise-design/compare/@synerise/ds-badge@0.6.58...@synerise/ds-badge@0.6.59) (2024-05-10)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-badge
|
package/dist/Badge.styles.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
export declare const afterElementAnimation: import("styled-components").Keyframes;
|
|
2
3
|
export declare const beforeElementAnimation: import("styled-components").Keyframes;
|
|
3
|
-
declare const _default: import("styled-components").StyledComponent<({ flag, outlined, backgroundColor, textColor, backgroundColorHue, textColorHue, pulsing, customColor, ...rest }: any) => JSX.Element, any, {}, never>;
|
|
4
|
+
declare const _default: import("styled-components").StyledComponent<({ flag, outlined, backgroundColor, textColor, backgroundColorHue, textColorHue, pulsing, customColor, ...rest }: any) => React.JSX.Element, any, {}, never>;
|
|
4
5
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default } from './Badge';
|
|
2
|
-
export type { Status as BadgeStatus } from './Badge.types';
|
|
2
|
+
export type { Status as BadgeStatus, BadgeProps, Color as BadgeColor, ColorHue as BadgeColorHue } from './Badge.types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-badge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Badge UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"styled-components": "5.0.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@synerise/ds-utils": "^0.
|
|
45
|
+
"@synerise/ds-utils": "^0.27.0",
|
|
46
46
|
"@testing-library/jest-dom": "5.1.1"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "6bd94c78745df68ee3b853120a863ab24fc233ef"
|
|
49
49
|
}
|