@instructure/ui-alerts 11.7.3-snapshot-3 → 11.7.3-snapshot-6
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,7 +3,7 @@
|
|
|
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
|
-
## [11.7.3-snapshot-
|
|
6
|
+
## [11.7.3-snapshot-6](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-6) (2026-04-29)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-alerts
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-alerts",
|
|
3
|
-
"version": "11.7.3-snapshot-
|
|
3
|
+
"version": "11.7.3-snapshot-6",
|
|
4
4
|
"description": "An alert component",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -16,26 +16,26 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.27.6",
|
|
18
18
|
"keycode": "^2",
|
|
19
|
-
"@instructure/console": "11.7.3-snapshot-
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/
|
|
22
|
-
"@instructure/
|
|
23
|
-
"@instructure/ui-
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/ui-themes": "11.7.3-snapshot-
|
|
28
|
-
"@instructure/ui-view": "11.7.3-snapshot-
|
|
19
|
+
"@instructure/console": "11.7.3-snapshot-6",
|
|
20
|
+
"@instructure/shared-types": "11.7.3-snapshot-6",
|
|
21
|
+
"@instructure/ui-a11y-content": "11.7.3-snapshot-6",
|
|
22
|
+
"@instructure/emotion": "11.7.3-snapshot-6",
|
|
23
|
+
"@instructure/ui-icons": "11.7.3-snapshot-6",
|
|
24
|
+
"@instructure/ui-buttons": "11.7.3-snapshot-6",
|
|
25
|
+
"@instructure/ui-react-utils": "11.7.3-snapshot-6",
|
|
26
|
+
"@instructure/ui-motion": "11.7.3-snapshot-6",
|
|
27
|
+
"@instructure/ui-themes": "11.7.3-snapshot-6",
|
|
28
|
+
"@instructure/ui-view": "11.7.3-snapshot-6"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@testing-library/jest-dom": "^6.6.3",
|
|
32
32
|
"@testing-library/react": "15.0.7",
|
|
33
33
|
"@testing-library/user-event": "^14.6.1",
|
|
34
34
|
"vitest": "^3.2.2",
|
|
35
|
-
"@instructure/ui-
|
|
36
|
-
"@instructure/ui-
|
|
37
|
-
"@instructure/ui-color-utils": "11.7.3-snapshot-
|
|
38
|
-
"@instructure/ui-scripts": "11.7.3-snapshot-
|
|
35
|
+
"@instructure/ui-babel-preset": "11.7.3-snapshot-6",
|
|
36
|
+
"@instructure/ui-axe-check": "11.7.3-snapshot-6",
|
|
37
|
+
"@instructure/ui-color-utils": "11.7.3-snapshot-6",
|
|
38
|
+
"@instructure/ui-scripts": "11.7.3-snapshot-6"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": ">=18 <=19",
|
package/src/Alert/v2/props.ts
CHANGED
|
@@ -29,7 +29,8 @@ import type {
|
|
|
29
29
|
WithStyleProps,
|
|
30
30
|
ComponentStyle
|
|
31
31
|
} from '@instructure/emotion'
|
|
32
|
-
import type {
|
|
32
|
+
import type { NewComponentTypes } from '@instructure/ui-themes'
|
|
33
|
+
import type { Renderable } from '@instructure/shared-types'
|
|
33
34
|
import type { WithDeterministicIdProps } from '@instructure/ui-react-utils'
|
|
34
35
|
|
|
35
36
|
type AlertOwnProps = {
|
|
@@ -116,7 +117,7 @@ type PropKeys = keyof AlertOwnProps
|
|
|
116
117
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
117
118
|
|
|
118
119
|
type AlertProps = AlertOwnProps &
|
|
119
|
-
WithStyleProps<
|
|
120
|
+
WithStyleProps<ReturnType<NewComponentTypes['Alert']>, AlertStyle> &
|
|
120
121
|
WithDeterministicIdProps
|
|
121
122
|
|
|
122
123
|
type AlertStyle = ComponentStyle<
|