@synerise/ds-button 1.4.9 → 1.4.11
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 +16 -0
- package/dist/Button.styles.d.ts +1 -1
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.4.11](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@1.4.10...@synerise/ds-button@1.4.11) (2025-09-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-button
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.4.10](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@1.4.9...@synerise/ds-button@1.4.10) (2025-09-16)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-button
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.4.9](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@1.4.8...@synerise/ds-button@1.4.9) (2025-08-28)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-button
|
package/dist/Button.styles.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export declare const RIPPLE_ANIMATION_TIME = 500;
|
|
|
3
3
|
export declare const Spinner: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
4
|
export declare const RippleEffect: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
5
5
|
export declare const ButtonFocus: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
|
-
export declare const Tag: import("styled-components").StyledComponent<({ id, name, className, disabled, removable, image, shape, color, textColor, onRemove, onClick, prefixel, suffixel, texts, asPill, dashed, ...htmlAttributes }: import("@synerise/ds-tag").TagProps) => React.JSX.Element, any, {}, never>;
|
|
6
|
+
export declare const Tag: import("styled-components").StyledComponent<({ id, name, className, disabled, removable, image, shape, color, textColor, onRemove, onClick, prefixel, suffixel, texts, asPill, dashed, tooltipProps, ...htmlAttributes }: import("@synerise/ds-tag").TagProps) => React.JSX.Element, any, {}, never>;
|
|
7
7
|
export declare const ButtonLabel: import("styled-components").StyledComponent<"div", any, {
|
|
8
8
|
withTooltip?: boolean;
|
|
9
9
|
}, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-button",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.11",
|
|
4
4
|
"description": "Button 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,10 +35,10 @@
|
|
|
34
35
|
],
|
|
35
36
|
"types": "dist/index.d.ts",
|
|
36
37
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-icon": "^1.7.
|
|
38
|
-
"@synerise/ds-tag": "^1.
|
|
39
|
-
"@synerise/ds-tooltip": "^1.
|
|
40
|
-
"@synerise/ds-utils": "^1.4.
|
|
38
|
+
"@synerise/ds-icon": "^1.7.2",
|
|
39
|
+
"@synerise/ds-tag": "^1.2.0",
|
|
40
|
+
"@synerise/ds-tooltip": "^1.2.0",
|
|
41
|
+
"@synerise/ds-utils": "^1.4.2",
|
|
41
42
|
"classnames": "^2.5.1",
|
|
42
43
|
"csstype": "^2.6.9"
|
|
43
44
|
},
|
|
@@ -47,5 +48,5 @@
|
|
|
47
48
|
"react": ">=16.9.0 <= 18.3.1",
|
|
48
49
|
"styled-components": "^5.3.3"
|
|
49
50
|
},
|
|
50
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "5029af8713235b315d36bb3c73363f2feca86da0"
|
|
51
52
|
}
|