@fibery/ui-kit 1.21.0 → 1.21.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fibery/ui-kit",
3
- "version": "1.21.0",
3
+ "version": "1.21.1",
4
4
  "main": "index.ts",
5
5
  "private": false,
6
6
  "files": [
@@ -69,8 +69,8 @@
69
69
  "screenfull": "6.0.1",
70
70
  "ua-parser-js": "0.7.24",
71
71
  "@fibery/emoji-data": "2.2.1",
72
- "@fibery/react": "1.3.0",
73
- "@fibery/helpers": "1.2.0"
72
+ "@fibery/helpers": "1.2.0",
73
+ "@fibery/react": "1.3.0"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "react": "^18.2.0",
@@ -786,6 +786,7 @@ export const border = {
786
786
  export const lineHeight = {
787
787
  text: 1.6,
788
788
  regular: 1.5,
789
+ narrow: 1.4,
789
790
  heading: 1.25,
790
791
  nowrap: 1,
791
792
  } as const;
@@ -39,7 +39,7 @@ export const IntegrationCompactInfoButton: React.FC<{
39
39
  const className = cx(buttonCss, loading && loadingCss);
40
40
 
41
41
  const button = onClick ? (
42
- <ButtonBase dangerous={Boolean(error)} borderless className={className}>
42
+ <ButtonBase dangerous={Boolean(error)} borderless className={className} onClick={onClick}>
43
43
  {iconNode}
44
44
  {name}
45
45
  </ButtonBase>