@synerise/ds-empty-states 1.0.33 → 1.0.35

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +13 -10
  3. package/package.json +3 -3
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.35](https://github.com/Synerise/synerise-design/compare/@synerise/ds-empty-states@1.0.34...@synerise/ds-empty-states@1.0.35) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-empty-states
9
+
10
+ ## [1.0.34](https://github.com/Synerise/synerise-design/compare/@synerise/ds-empty-states@1.0.33...@synerise/ds-empty-states@1.0.34) (2026-02-19)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-empty-states
13
+
6
14
  ## [1.0.33](https://github.com/Synerise/synerise-design/compare/@synerise/ds-empty-states@1.0.32...@synerise/ds-empty-states@1.0.33) (2026-02-12)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-empty-states
package/README.md CHANGED
@@ -28,13 +28,16 @@ import EmptyStates from '@synerise/ds-empty-states'
28
28
 
29
29
  ## API
30
30
 
31
- | Property | Description | Type | Default |
32
- | ------------- | ---------------------------------- | --------------------------------------- | ------- |
33
- | size | Changing size on Icon | 'Xl' / 'L' | M |
34
- | label | text of empty states | string / React.ReactNode | - |
35
- | labelPosition | Defines the position of text | right / bottom | right |
36
- | text | text of Header | string / React.ReactNode | - |
37
- | type | type of icon | `Add` / `NoResults` / `SearchNoResults` | - |
38
- | button | render button | string / React.ReactNode | - |
39
- | fontSize | set size of Header | string / React.ReactNode | - |
40
- | mode | prop to set empty states in center | absolute / undefined | - |
31
+ | Property | Description | Type | Default |
32
+ | ------------- | --------------------------------------------------------- | --------------------------------------- | -------- |
33
+ | size | Icon size | `small` / `medium` | `small` |
34
+ | label | Secondary label text | string / React.ReactNode | - |
35
+ | labelPosition | **@deprecated** has no effect on rendering | `right` / `bottom` | - |
36
+ | text | Header / primary text | string / React.ReactNode | - |
37
+ | button | Action button rendered below label | React.ReactNode | - |
38
+ | fontSize | Header font size (`small` = 14px, `medium` = 18px) | `small` / `medium` | `small` |
39
+ | customIcon | Icon element rendered via `@synerise/ds-icon` | React.ReactElement | - |
40
+ | iconPosition | Position of icon relative to content | `top` / `left` / `right` | `top` |
41
+ | textAlign | Text alignment of the content area | `left` / `center` / `right` / `justify` | `center` |
42
+ | mode | `absolute` positions wrapper at top:50% left:50% | `absolute` | - |
43
+ | className | Additional CSS class (merged with `ds-empty-states`) | string | - |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-empty-states",
3
- "version": "1.0.33",
3
+ "version": "1.0.35",
4
4
  "description": "EmptyStates UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -35,12 +35,12 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-icon": "^1.14.0"
38
+ "@synerise/ds-icon": "^1.15.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": "eb495cfbc2ede0bff95548c6c4e80c38dd965391"
45
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
46
46
  }