@synerise/ds-empty-states 1.0.14 → 1.0.15

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,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
+ ## [1.0.15](https://github.com/Synerise/synerise-design/compare/@synerise/ds-empty-states@1.0.14...@synerise/ds-empty-states@1.0.15) (2025-07-24)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-empty-states
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.0.14](https://github.com/Synerise/synerise-design/compare/@synerise/ds-empty-states@1.0.13...@synerise/ds-empty-states@1.0.14) (2025-07-17)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-empty-states
@@ -2,15 +2,15 @@ import { EmptyStatesSize } from './EmptyStates.types';
2
2
  export declare const EmptyStatesIconContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const TextWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
4
4
  export declare const HeaderWrapper: import("styled-components").StyledComponent<"div", any, {
5
- fontSize?: EmptyStatesSize | undefined;
6
- size?: EmptyStatesSize | undefined;
7
- hasIcon?: boolean | undefined;
5
+ fontSize?: EmptyStatesSize;
6
+ size?: EmptyStatesSize;
7
+ hasIcon?: boolean;
8
8
  }, never>;
9
9
  export declare const ButtonWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
10
10
  export declare const EmptyStatesWrapper: import("styled-components").StyledComponent<"div", any, {
11
- iconPosition: 'top' | 'left' | 'right';
12
- mode?: "absolute" | undefined;
11
+ iconPosition: "top" | "left" | "right";
12
+ mode?: "absolute";
13
13
  }, never>;
14
14
  export declare const EmptyStatesContent: import("styled-components").StyledComponent<"div", any, {
15
- textAlign: 'left' | 'right' | 'center' | 'justify';
15
+ textAlign: "left" | "right" | "center" | "justify";
16
16
  }, never>;
@@ -31,7 +31,7 @@ export var HeaderWrapper = styled.div.withConfig({
31
31
  }, function (props) {
32
32
  return props.theme.palette['grey-800'];
33
33
  }, function (props) {
34
- return FontSize[props.fontSize] || FONT_SIZE_DEFAULT;
34
+ return props.fontSize ? FontSize[props.fontSize] : FONT_SIZE_DEFAULT;
35
35
  }, function (props) {
36
36
  return props.fontSize === EmptyStatesSize.SMALL ? '12px' : '18px';
37
37
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-empty-states",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "EmptyStates UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -34,13 +34,13 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-icon": "^1.6.1",
38
- "@synerise/ds-utils": "^1.3.1"
37
+ "@synerise/ds-icon": "^1.6.2",
38
+ "@synerise/ds-utils": "^1.4.0"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@synerise/ds-core": "*",
42
42
  "react": ">=16.9.0 <= 18.3.1",
43
43
  "styled-components": "^5.3.3"
44
44
  },
45
- "gitHead": "4e851d649cb25346f2f8e0575dde91cc50f43bc4"
45
+ "gitHead": "b35b1875727156fe9f5b3bad55aed5ca447c8c8d"
46
46
  }