@synerise/ds-button 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 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-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
+
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)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-button
17
+
6
18
  ## [2.0.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@2.0.1...@synerise/ds-button@2.0.2) (2026-09-08)
7
19
 
8
20
  **Note:** Version bump only for package @synerise/ds-button
@@ -77,7 +77,7 @@ const BaseButton = forwardRef(({
77
77
  download
78
78
  };
79
79
  return (
80
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
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 { Expander, Creator, StarButton as Star, CheckboxButton as Checkbox };
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 type { CheckboxButtonProps } from './Checkbox/Checkbox.types';
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.2",
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.0",
43
- "@synerise/ds-tag": "^2.0.2",
44
- "@synerise/ds-tooltip": "^2.0.2",
45
- "@synerise/ds-utils": "^2.0.0",
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": "e0dced8fd3a1194eff2fafc1b7e385b29238af88"
55
+ "gitHead": "b1d905617dfb186b5d80966d63ce55bf29df743d"
56
56
  }