@synerise/ds-empty-states 1.0.34 → 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.
- package/CHANGELOG.md +4 -0
- package/README.md +13 -10
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
|
|
6
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)
|
|
7
11
|
|
|
8
12
|
**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
|
|
32
|
-
| ------------- |
|
|
33
|
-
| size |
|
|
34
|
-
| label |
|
|
35
|
-
| labelPosition |
|
|
36
|
-
| text |
|
|
37
|
-
|
|
|
38
|
-
|
|
|
39
|
-
|
|
|
40
|
-
|
|
|
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.
|
|
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.
|
|
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": "
|
|
45
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
46
46
|
}
|