@synerise/ds-button 2.0.3 → 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 +8 -0
- package/dist/BaseButton.js +1 -1
- package/dist/index.d.ts +4 -4
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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-button@2.0.3...@synerise/ds-button@2.0.4) (2026-09-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-button
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [2.0.3](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@2.0.2...@synerise/ds-button@2.0.3) (2026-09-16)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-button
|
package/dist/BaseButton.js
CHANGED
|
@@ -77,7 +77,7 @@ const BaseButton = forwardRef(({
|
|
|
77
77
|
download
|
|
78
78
|
};
|
|
79
79
|
return (
|
|
80
|
-
//
|
|
80
|
+
// biome-ignore lint/suspicious/noExplicitAny: upstream type is not expressible here
|
|
81
81
|
/* @__PURE__ */ jsx(Button, { ...anchorProps, children: wrapChildren(children) })
|
|
82
82
|
);
|
|
83
83
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -7,14 +7,14 @@ import * as CheckboxStyles from './Checkbox/Checkbox.styles';
|
|
|
7
7
|
import * as CreatorStyles from './Creator/Creator.styles';
|
|
8
8
|
import * as ExpanderStyles from './Expander/Expander.styles';
|
|
9
9
|
import * as StarStyles from './Star/Star.styles';
|
|
10
|
-
export {
|
|
10
|
+
export type { ButtonProps, ButtonType, StyledButton } from './Button.types';
|
|
11
11
|
export { default as ButtonToggle } from './ButtonToggle/ButtonToggle';
|
|
12
12
|
export type { ButtonToggleProps } from './ButtonToggle/ButtonToggle.types';
|
|
13
|
+
export type { CheckboxButtonProps } from './Checkbox/Checkbox.types';
|
|
13
14
|
export { type CreatorProps, CreatorStatus } from './Creator/Creator.types';
|
|
15
|
+
export { type ExpanderProps, ExpanderSize } from './Expander/Expander.types';
|
|
14
16
|
export type { StarButtonProps } from './Star/Star.types';
|
|
15
|
-
export
|
|
16
|
-
export { ExpanderSize, type ExpanderProps } from './Expander/Expander.types';
|
|
17
|
-
export type { ButtonProps, ButtonType, StyledButton } from './Button.types';
|
|
17
|
+
export { CheckboxButton as Checkbox, Creator, Expander, StarButton as Star };
|
|
18
18
|
export declare const ButtonStyles: {
|
|
19
19
|
Button: typeof MainButtonStyles;
|
|
20
20
|
Creator: typeof CreatorStyles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-button",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Button UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"sideEffects": false,
|
|
40
40
|
"types": "dist/index.d.ts",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@synerise/ds-icon": "^2.1.
|
|
43
|
-
"@synerise/ds-tag": "^2.0.
|
|
44
|
-
"@synerise/ds-tooltip": "^2.0.
|
|
45
|
-
"@synerise/ds-utils": "^2.1.
|
|
42
|
+
"@synerise/ds-icon": "^2.1.2",
|
|
43
|
+
"@synerise/ds-tag": "^2.0.4",
|
|
44
|
+
"@synerise/ds-tooltip": "^2.0.4",
|
|
45
|
+
"@synerise/ds-utils": "^2.1.1",
|
|
46
46
|
"classnames": "^2.5.1",
|
|
47
47
|
"csstype": "^2.6.9"
|
|
48
48
|
},
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"styled-components": "^5.3.3",
|
|
53
53
|
"vitest": "4"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "b1d905617dfb186b5d80966d63ce55bf29df743d"
|
|
56
56
|
}
|