@synerise/ds-inline-alert 1.1.13 → 1.1.14
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 +10 -9
- package/package.json +4 -4
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.1.14](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-alert@1.1.13...@synerise/ds-inline-alert@1.1.14) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-inline-alert
|
|
9
|
+
|
|
6
10
|
## [1.1.13](https://github.com/Synerise/synerise-design/compare/@synerise/ds-inline-alert@1.1.12...@synerise/ds-inline-alert@1.1.13) (2026-02-19)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @synerise/ds-inline-alert
|
package/README.md
CHANGED
|
@@ -28,12 +28,13 @@ import InlineAlert from '@synerise/ds-inline-alert'
|
|
|
28
28
|
|
|
29
29
|
## API
|
|
30
30
|
|
|
31
|
-
| Property | Description
|
|
32
|
-
| ------------ |
|
|
33
|
-
| type |
|
|
34
|
-
| message | Message of Inline Alert
|
|
35
|
-
| disabled |
|
|
36
|
-
| withEmphasis |
|
|
37
|
-
| withLink |
|
|
38
|
-
| hoverButton |
|
|
39
|
-
| customIcon |
|
|
31
|
+
| Property | Description | Type | Default |
|
|
32
|
+
| ------------ | ------------------------------------------------------------------------ | ---------------------------------------------- | ----------- |
|
|
33
|
+
| type | Visual style variant | `'success' \| 'alert' \| 'warning' \| 'info'` | `'warning'` |
|
|
34
|
+
| message | Message of Inline Alert | `ReactNode` | - |
|
|
35
|
+
| disabled | Disables interaction and reduces opacity to 0.4 | `boolean` | - |
|
|
36
|
+
| withEmphasis | Bold text appended to message (ignored when `withLink` is also set) | `ReactNode` | - |
|
|
37
|
+
| withLink | Underlined text appended to message (takes priority over `withEmphasis`) | `ReactNode` | - |
|
|
38
|
+
| hoverButton | Adds pointer cursor and darker hover colour | `boolean` | - |
|
|
39
|
+
| customIcon | Replaces the default type icon | `ReactNode` | - |
|
|
40
|
+
| iconAlert | **Deprecated** — has no effect | `boolean` | - |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-inline-alert",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"description": "InlineAlert 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.
|
|
38
|
-
"@synerise/ds-utils": "^1.
|
|
37
|
+
"@synerise/ds-icon": "^1.15.0",
|
|
38
|
+
"@synerise/ds-utils": "^1.7.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
|
}
|