@khanacademy/wonder-blocks-modal 2.2.3 → 2.3.2
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 +32 -0
- package/dist/es/index.js +92 -351
- package/dist/index.js +1395 -26
- package/package.json +9 -9
- package/src/components/__tests__/modal-backdrop.test.js +0 -4
- package/src/components/__tests__/modal-launcher.test.js +134 -38
- package/src/components/modal-launcher.js +56 -6
- package/src/components/one-pane-dialog.stories.js +48 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-modal
|
|
2
2
|
|
|
3
|
+
## 2.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [5f4a4297]
|
|
8
|
+
- Updated dependencies [2b96fd59]
|
|
9
|
+
- @khanacademy/wonder-blocks-core@4.3.2
|
|
10
|
+
- @khanacademy/wonder-blocks-breadcrumbs@1.0.31
|
|
11
|
+
- @khanacademy/wonder-blocks-icon@1.2.28
|
|
12
|
+
- @khanacademy/wonder-blocks-icon-button@3.4.7
|
|
13
|
+
- @khanacademy/wonder-blocks-layout@1.4.10
|
|
14
|
+
- @khanacademy/wonder-blocks-toolbar@2.1.32
|
|
15
|
+
- @khanacademy/wonder-blocks-typography@1.1.32
|
|
16
|
+
|
|
17
|
+
## 2.3.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- @khanacademy/wonder-blocks-breadcrumbs@1.0.30
|
|
22
|
+
- @khanacademy/wonder-blocks-core@4.3.1
|
|
23
|
+
- @khanacademy/wonder-blocks-icon@1.2.27
|
|
24
|
+
- @khanacademy/wonder-blocks-icon-button@3.4.6
|
|
25
|
+
- @khanacademy/wonder-blocks-layout@1.4.9
|
|
26
|
+
- @khanacademy/wonder-blocks-toolbar@2.1.31
|
|
27
|
+
- @khanacademy/wonder-blocks-typography@1.1.31
|
|
28
|
+
|
|
29
|
+
## 2.3.0
|
|
30
|
+
|
|
31
|
+
### Minor Changes
|
|
32
|
+
|
|
33
|
+
- 7eaf74bd: Added `closedFocusId` prop so users can specify the element to receive focus after the modal is closed
|
|
34
|
+
|
|
3
35
|
## 2.2.3
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|