@fluentui/react-dialog 9.0.0-beta.7

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 (226) hide show
  1. package/CHANGELOG.json +328 -0
  2. package/CHANGELOG.md +152 -0
  3. package/LICENSE +15 -0
  4. package/README.md +5 -0
  5. package/Spec.md +518 -0
  6. package/assets/AlertDialogKeyboardInteraction.png +0 -0
  7. package/assets/AlertDialogMouseInteraction.png +0 -0
  8. package/assets/ModalDialogKeyboardInteraction.png +0 -0
  9. package/assets/ModalDialogMouseInteraction.png +0 -0
  10. package/assets/NonModalDialogKeyboardInteraction.png +0 -0
  11. package/assets/NonModalDialogMouseInteraction.png +0 -0
  12. package/dist/index.d.ts +406 -0
  13. package/dist/tsdoc-metadata.json +11 -0
  14. package/lib/Dialog.js +2 -0
  15. package/lib/Dialog.js.map +1 -0
  16. package/lib/DialogActions.js +2 -0
  17. package/lib/DialogActions.js.map +1 -0
  18. package/lib/DialogBody.js +2 -0
  19. package/lib/DialogBody.js.map +1 -0
  20. package/lib/DialogSurface.js +2 -0
  21. package/lib/DialogSurface.js.map +1 -0
  22. package/lib/DialogTitle.js +2 -0
  23. package/lib/DialogTitle.js.map +1 -0
  24. package/lib/DialogTrigger.js +2 -0
  25. package/lib/DialogTrigger.js.map +1 -0
  26. package/lib/components/Dialog/Dialog.js +21 -0
  27. package/lib/components/Dialog/Dialog.js.map +1 -0
  28. package/lib/components/Dialog/Dialog.types.js +2 -0
  29. package/lib/components/Dialog/Dialog.types.js.map +1 -0
  30. package/lib/components/Dialog/index.js +6 -0
  31. package/lib/components/Dialog/index.js.map +1 -0
  32. package/lib/components/Dialog/renderDialog.js +26 -0
  33. package/lib/components/Dialog/renderDialog.js.map +1 -0
  34. package/lib/components/Dialog/useDialog.js +197 -0
  35. package/lib/components/Dialog/useDialog.js.map +1 -0
  36. package/lib/components/Dialog/useDialogContextValues.js +31 -0
  37. package/lib/components/Dialog/useDialogContextValues.js.map +1 -0
  38. package/lib/components/Dialog/useDialogStyles.js +41 -0
  39. package/lib/components/Dialog/useDialogStyles.js.map +1 -0
  40. package/lib/components/DialogActions/DialogActions.js +16 -0
  41. package/lib/components/DialogActions/DialogActions.js.map +1 -0
  42. package/lib/components/DialogActions/DialogActions.types.js +2 -0
  43. package/lib/components/DialogActions/DialogActions.types.js.map +1 -0
  44. package/lib/components/DialogActions/index.js +6 -0
  45. package/lib/components/DialogActions/index.js.map +1 -0
  46. package/lib/components/DialogActions/renderDialogActions.js +16 -0
  47. package/lib/components/DialogActions/renderDialogActions.js.map +1 -0
  48. package/lib/components/DialogActions/useDialogActions.js +27 -0
  49. package/lib/components/DialogActions/useDialogActions.js.map +1 -0
  50. package/lib/components/DialogActions/useDialogActionsStyles.js +51 -0
  51. package/lib/components/DialogActions/useDialogActionsStyles.js.map +1 -0
  52. package/lib/components/DialogBody/DialogBody.js +16 -0
  53. package/lib/components/DialogBody/DialogBody.js.map +1 -0
  54. package/lib/components/DialogBody/DialogBody.types.js +2 -0
  55. package/lib/components/DialogBody/DialogBody.types.js.map +1 -0
  56. package/lib/components/DialogBody/index.js +6 -0
  57. package/lib/components/DialogBody/index.js.map +1 -0
  58. package/lib/components/DialogBody/renderDialogBody.js +16 -0
  59. package/lib/components/DialogBody/renderDialogBody.js.map +1 -0
  60. package/lib/components/DialogBody/useDialogBody.js +25 -0
  61. package/lib/components/DialogBody/useDialogBody.js.map +1 -0
  62. package/lib/components/DialogBody/useDialogBodyStyles.js +42 -0
  63. package/lib/components/DialogBody/useDialogBodyStyles.js.map +1 -0
  64. package/lib/components/DialogSurface/DialogSurface.js +18 -0
  65. package/lib/components/DialogSurface/DialogSurface.js.map +1 -0
  66. package/lib/components/DialogSurface/DialogSurface.types.js +2 -0
  67. package/lib/components/DialogSurface/DialogSurface.types.js.map +1 -0
  68. package/lib/components/DialogSurface/index.js +6 -0
  69. package/lib/components/DialogSurface/index.js.map +1 -0
  70. package/lib/components/DialogSurface/renderDialogSurface.js +18 -0
  71. package/lib/components/DialogSurface/renderDialogSurface.js.map +1 -0
  72. package/lib/components/DialogSurface/useDialogSurface.js +59 -0
  73. package/lib/components/DialogSurface/useDialogSurface.js.map +1 -0
  74. package/lib/components/DialogSurface/useDialogSurfaceContextValues.js +7 -0
  75. package/lib/components/DialogSurface/useDialogSurfaceContextValues.js.map +1 -0
  76. package/lib/components/DialogSurface/useDialogSurfaceStyles.js +78 -0
  77. package/lib/components/DialogSurface/useDialogSurfaceStyles.js.map +1 -0
  78. package/lib/components/DialogTitle/DialogTitle.js +17 -0
  79. package/lib/components/DialogTitle/DialogTitle.js.map +1 -0
  80. package/lib/components/DialogTitle/DialogTitle.types.js +2 -0
  81. package/lib/components/DialogTitle/DialogTitle.types.js.map +1 -0
  82. package/lib/components/DialogTitle/index.js +6 -0
  83. package/lib/components/DialogTitle/index.js.map +1 -0
  84. package/lib/components/DialogTitle/renderDialogTitle.js +19 -0
  85. package/lib/components/DialogTitle/renderDialogTitle.js.map +1 -0
  86. package/lib/components/DialogTitle/useDialogTitle.js +42 -0
  87. package/lib/components/DialogTitle/useDialogTitle.js.map +1 -0
  88. package/lib/components/DialogTitle/useDialogTitleStyles.js +109 -0
  89. package/lib/components/DialogTitle/useDialogTitleStyles.js.map +1 -0
  90. package/lib/components/DialogTrigger/DialogTrigger.js +20 -0
  91. package/lib/components/DialogTrigger/DialogTrigger.js.map +1 -0
  92. package/lib/components/DialogTrigger/DialogTrigger.types.js +2 -0
  93. package/lib/components/DialogTrigger/DialogTrigger.types.js.map +1 -0
  94. package/lib/components/DialogTrigger/index.js +5 -0
  95. package/lib/components/DialogTrigger/index.js.map +1 -0
  96. package/lib/components/DialogTrigger/renderDialogTrigger.js +7 -0
  97. package/lib/components/DialogTrigger/renderDialogTrigger.js.map +1 -0
  98. package/lib/components/DialogTrigger/useDialogTrigger.js +65 -0
  99. package/lib/components/DialogTrigger/useDialogTrigger.js.map +1 -0
  100. package/lib/contexts/constants.js +11 -0
  101. package/lib/contexts/constants.js.map +1 -0
  102. package/lib/contexts/dialogContext.js +21 -0
  103. package/lib/contexts/dialogContext.js.map +1 -0
  104. package/lib/contexts/dialogSurfaceContext.js +10 -0
  105. package/lib/contexts/dialogSurfaceContext.js.map +1 -0
  106. package/lib/contexts/index.js +4 -0
  107. package/lib/contexts/index.js.map +1 -0
  108. package/lib/index.js +7 -0
  109. package/lib/index.js.map +1 -0
  110. package/lib/utils/index.js +5 -0
  111. package/lib/utils/index.js.map +1 -0
  112. package/lib/utils/isEscapeKeyDown.js +11 -0
  113. package/lib/utils/isEscapeKeyDown.js.map +1 -0
  114. package/lib/utils/isTargetDisabled.js +14 -0
  115. package/lib/utils/isTargetDisabled.js.map +1 -0
  116. package/lib/utils/localShorthands.js +9 -0
  117. package/lib/utils/localShorthands.js.map +1 -0
  118. package/lib/utils/normalizeDefaultPrevented.js +11 -0
  119. package/lib/utils/normalizeDefaultPrevented.js.map +1 -0
  120. package/lib-commonjs/Dialog.js +10 -0
  121. package/lib-commonjs/Dialog.js.map +1 -0
  122. package/lib-commonjs/DialogActions.js +10 -0
  123. package/lib-commonjs/DialogActions.js.map +1 -0
  124. package/lib-commonjs/DialogBody.js +10 -0
  125. package/lib-commonjs/DialogBody.js.map +1 -0
  126. package/lib-commonjs/DialogSurface.js +10 -0
  127. package/lib-commonjs/DialogSurface.js.map +1 -0
  128. package/lib-commonjs/DialogTitle.js +10 -0
  129. package/lib-commonjs/DialogTitle.js.map +1 -0
  130. package/lib-commonjs/DialogTrigger.js +10 -0
  131. package/lib-commonjs/DialogTrigger.js.map +1 -0
  132. package/lib-commonjs/components/Dialog/Dialog.js +33 -0
  133. package/lib-commonjs/components/Dialog/Dialog.js.map +1 -0
  134. package/lib-commonjs/components/Dialog/Dialog.types.js +6 -0
  135. package/lib-commonjs/components/Dialog/Dialog.types.js.map +1 -0
  136. package/lib-commonjs/components/Dialog/index.js +18 -0
  137. package/lib-commonjs/components/Dialog/index.js.map +1 -0
  138. package/lib-commonjs/components/Dialog/renderDialog.js +39 -0
  139. package/lib-commonjs/components/Dialog/renderDialog.js.map +1 -0
  140. package/lib-commonjs/components/Dialog/useDialog.js +211 -0
  141. package/lib-commonjs/components/Dialog/useDialog.js.map +1 -0
  142. package/lib-commonjs/components/Dialog/useDialogContextValues.js +40 -0
  143. package/lib-commonjs/components/Dialog/useDialogContextValues.js.map +1 -0
  144. package/lib-commonjs/components/Dialog/useDialogStyles.js +53 -0
  145. package/lib-commonjs/components/Dialog/useDialogStyles.js.map +1 -0
  146. package/lib-commonjs/components/DialogActions/DialogActions.js +27 -0
  147. package/lib-commonjs/components/DialogActions/DialogActions.js.map +1 -0
  148. package/lib-commonjs/components/DialogActions/DialogActions.types.js +6 -0
  149. package/lib-commonjs/components/DialogActions/DialogActions.types.js.map +1 -0
  150. package/lib-commonjs/components/DialogActions/index.js +18 -0
  151. package/lib-commonjs/components/DialogActions/index.js.map +1 -0
  152. package/lib-commonjs/components/DialogActions/renderDialogActions.js +27 -0
  153. package/lib-commonjs/components/DialogActions/renderDialogActions.js.map +1 -0
  154. package/lib-commonjs/components/DialogActions/useDialogActions.js +37 -0
  155. package/lib-commonjs/components/DialogActions/useDialogActions.js.map +1 -0
  156. package/lib-commonjs/components/DialogActions/useDialogActionsStyles.js +63 -0
  157. package/lib-commonjs/components/DialogActions/useDialogActionsStyles.js.map +1 -0
  158. package/lib-commonjs/components/DialogBody/DialogBody.js +27 -0
  159. package/lib-commonjs/components/DialogBody/DialogBody.js.map +1 -0
  160. package/lib-commonjs/components/DialogBody/DialogBody.types.js +6 -0
  161. package/lib-commonjs/components/DialogBody/DialogBody.types.js.map +1 -0
  162. package/lib-commonjs/components/DialogBody/index.js +18 -0
  163. package/lib-commonjs/components/DialogBody/index.js.map +1 -0
  164. package/lib-commonjs/components/DialogBody/renderDialogBody.js +27 -0
  165. package/lib-commonjs/components/DialogBody/renderDialogBody.js.map +1 -0
  166. package/lib-commonjs/components/DialogBody/useDialogBody.js +36 -0
  167. package/lib-commonjs/components/DialogBody/useDialogBody.js.map +1 -0
  168. package/lib-commonjs/components/DialogBody/useDialogBodyStyles.js +55 -0
  169. package/lib-commonjs/components/DialogBody/useDialogBodyStyles.js.map +1 -0
  170. package/lib-commonjs/components/DialogSurface/DialogSurface.js +30 -0
  171. package/lib-commonjs/components/DialogSurface/DialogSurface.js.map +1 -0
  172. package/lib-commonjs/components/DialogSurface/DialogSurface.types.js +6 -0
  173. package/lib-commonjs/components/DialogSurface/DialogSurface.types.js.map +1 -0
  174. package/lib-commonjs/components/DialogSurface/index.js +18 -0
  175. package/lib-commonjs/components/DialogSurface/index.js.map +1 -0
  176. package/lib-commonjs/components/DialogSurface/renderDialogSurface.js +30 -0
  177. package/lib-commonjs/components/DialogSurface/renderDialogSurface.js.map +1 -0
  178. package/lib-commonjs/components/DialogSurface/useDialogSurface.js +72 -0
  179. package/lib-commonjs/components/DialogSurface/useDialogSurface.js.map +1 -0
  180. package/lib-commonjs/components/DialogSurface/useDialogSurfaceContextValues.js +16 -0
  181. package/lib-commonjs/components/DialogSurface/useDialogSurfaceContextValues.js.map +1 -0
  182. package/lib-commonjs/components/DialogSurface/useDialogSurfaceStyles.js +90 -0
  183. package/lib-commonjs/components/DialogSurface/useDialogSurfaceStyles.js.map +1 -0
  184. package/lib-commonjs/components/DialogTitle/DialogTitle.js +28 -0
  185. package/lib-commonjs/components/DialogTitle/DialogTitle.js.map +1 -0
  186. package/lib-commonjs/components/DialogTitle/DialogTitle.types.js +6 -0
  187. package/lib-commonjs/components/DialogTitle/DialogTitle.types.js.map +1 -0
  188. package/lib-commonjs/components/DialogTitle/index.js +18 -0
  189. package/lib-commonjs/components/DialogTitle/index.js.map +1 -0
  190. package/lib-commonjs/components/DialogTitle/renderDialogTitle.js +31 -0
  191. package/lib-commonjs/components/DialogTitle/renderDialogTitle.js.map +1 -0
  192. package/lib-commonjs/components/DialogTitle/useDialogTitle.js +56 -0
  193. package/lib-commonjs/components/DialogTitle/useDialogTitle.js.map +1 -0
  194. package/lib-commonjs/components/DialogTitle/useDialogTitleStyles.js +123 -0
  195. package/lib-commonjs/components/DialogTitle/useDialogTitleStyles.js.map +1 -0
  196. package/lib-commonjs/components/DialogTrigger/DialogTrigger.js +31 -0
  197. package/lib-commonjs/components/DialogTrigger/DialogTrigger.js.map +1 -0
  198. package/lib-commonjs/components/DialogTrigger/DialogTrigger.types.js +6 -0
  199. package/lib-commonjs/components/DialogTrigger/DialogTrigger.types.js.map +1 -0
  200. package/lib-commonjs/components/DialogTrigger/index.js +16 -0
  201. package/lib-commonjs/components/DialogTrigger/index.js.map +1 -0
  202. package/lib-commonjs/components/DialogTrigger/renderDialogTrigger.js +16 -0
  203. package/lib-commonjs/components/DialogTrigger/renderDialogTrigger.js.map +1 -0
  204. package/lib-commonjs/components/DialogTrigger/useDialogTrigger.js +80 -0
  205. package/lib-commonjs/components/DialogTrigger/useDialogTrigger.js.map +1 -0
  206. package/lib-commonjs/contexts/constants.js +17 -0
  207. package/lib-commonjs/contexts/constants.js.map +1 -0
  208. package/lib-commonjs/contexts/dialogContext.js +32 -0
  209. package/lib-commonjs/contexts/dialogContext.js.map +1 -0
  210. package/lib-commonjs/contexts/dialogSurfaceContext.js +21 -0
  211. package/lib-commonjs/contexts/dialogSurfaceContext.js.map +1 -0
  212. package/lib-commonjs/contexts/index.js +14 -0
  213. package/lib-commonjs/contexts/index.js.map +1 -0
  214. package/lib-commonjs/index.js +193 -0
  215. package/lib-commonjs/index.js.map +1 -0
  216. package/lib-commonjs/utils/index.js +16 -0
  217. package/lib-commonjs/utils/index.js.map +1 -0
  218. package/lib-commonjs/utils/isEscapeKeyDown.js +22 -0
  219. package/lib-commonjs/utils/isEscapeKeyDown.js.map +1 -0
  220. package/lib-commonjs/utils/isTargetDisabled.js +23 -0
  221. package/lib-commonjs/utils/isTargetDisabled.js.map +1 -0
  222. package/lib-commonjs/utils/localShorthands.js +18 -0
  223. package/lib-commonjs/utils/localShorthands.js.map +1 -0
  224. package/lib-commonjs/utils/normalizeDefaultPrevented.js +20 -0
  225. package/lib-commonjs/utils/normalizeDefaultPrevented.js.map +1 -0
  226. package/package.json +69 -0
package/CHANGELOG.json ADDED
@@ -0,0 +1,328 @@
1
+ {
2
+ "name": "@fluentui/react-dialog",
3
+ "entries": [
4
+ {
5
+ "date": "Wed, 03 Aug 2022 16:00:14 GMT",
6
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.7",
7
+ "version": "9.0.0-beta.7",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "bernardo.sunderhus@gmail.com",
12
+ "package": "@fluentui/react-dialog",
13
+ "commit": "93cbe6fdb4fc73aad83328aac304ac53cfd84303",
14
+ "comment": "chore: adds aria-labelledby and aria-describedby attributes"
15
+ },
16
+ {
17
+ "author": "bernardo.sunderhus@gmail.com",
18
+ "package": "@fluentui/react-dialog",
19
+ "commit": "26e5a29ec185ffaf62407b76e63190a4adb8e012",
20
+ "comment": "feat: adds react-dialog to react-components unstable"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-dialog",
25
+ "comment": "Bump @fluentui/react-aria to v9.1.0",
26
+ "commit": "54bc6105c5c9c9023da35d4670239e44117ed4a5"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-dialog",
31
+ "comment": "Bump @fluentui/react-tabster to v9.1.0",
32
+ "commit": "54bc6105c5c9c9023da35d4670239e44117ed4a5"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-dialog",
37
+ "comment": "Bump @fluentui/react-portal to v9.0.4",
38
+ "commit": "54bc6105c5c9c9023da35d4670239e44117ed4a5"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-dialog",
43
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12",
44
+ "commit": "54bc6105c5c9c9023da35d4670239e44117ed4a5"
45
+ }
46
+ ],
47
+ "none": [
48
+ {
49
+ "author": "bernardo.sunderhus@gmail.com",
50
+ "package": "@fluentui/react-dialog",
51
+ "commit": "b67323e77fe054dfaba09be0e22fb14bcbffa897",
52
+ "comment": "chore: Adds e2e tests for `react-dialog`"
53
+ },
54
+ {
55
+ "author": "bernardo.sunderhus@gmail.com",
56
+ "package": "@fluentui/react-dialog",
57
+ "commit": "83f074e81375955cba003eb8210b4751767a7987",
58
+ "comment": "fix(react-dialog): converts Dialog stories to Preview Components"
59
+ },
60
+ {
61
+ "author": "olfedias@microsoft.com",
62
+ "package": "@fluentui/react-dialog",
63
+ "commit": "3a670062bfb8a122fef0dfb7f9f06e884f3745a1",
64
+ "comment": "move stories to a proper directory"
65
+ }
66
+ ]
67
+ }
68
+ },
69
+ {
70
+ "date": "Thu, 14 Jul 2022 21:21:13 GMT",
71
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
72
+ "version": "9.0.0-beta.6",
73
+ "comments": {
74
+ "prerelease": [
75
+ {
76
+ "author": "beachball",
77
+ "package": "@fluentui/react-dialog",
78
+ "comment": "Bump @fluentui/react-utilities to v9.0.2",
79
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
80
+ }
81
+ ]
82
+ }
83
+ },
84
+ {
85
+ "date": "Thu, 14 Jul 2022 17:06:26 GMT",
86
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
87
+ "version": "9.0.0-beta.6",
88
+ "comments": {
89
+ "prerelease": [
90
+ {
91
+ "author": "beachball",
92
+ "package": "@fluentui/react-dialog",
93
+ "comment": "Bump @fluentui/react-utilities to v9.0.1-0",
94
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
95
+ },
96
+ {
97
+ "author": "beachball",
98
+ "package": "@fluentui/react-dialog",
99
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.11",
100
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
101
+ }
102
+ ]
103
+ }
104
+ },
105
+ {
106
+ "date": "Tue, 28 Jun 2022 17:39:54 GMT",
107
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
108
+ "version": "9.0.0-beta.6",
109
+ "comments": {
110
+ "prerelease": [
111
+ {
112
+ "author": "beachball",
113
+ "package": "@fluentui/react-dialog",
114
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.10",
115
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
116
+ }
117
+ ]
118
+ }
119
+ },
120
+ {
121
+ "date": "Tue, 28 Jun 2022 15:14:23 GMT",
122
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
123
+ "version": "9.0.0-beta.6",
124
+ "comments": {
125
+ "prerelease": [
126
+ {
127
+ "author": "beachball",
128
+ "package": "@fluentui/react-dialog",
129
+ "comment": "Bump @fluentui/react-utilities to v9.0.0",
130
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
131
+ },
132
+ {
133
+ "author": "beachball",
134
+ "package": "@fluentui/react-dialog",
135
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9",
136
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
137
+ }
138
+ ]
139
+ }
140
+ },
141
+ {
142
+ "date": "Tue, 31 May 2022 21:28:50 GMT",
143
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
144
+ "version": "9.0.0-beta.6",
145
+ "comments": {
146
+ "prerelease": [
147
+ {
148
+ "author": "beachball",
149
+ "package": "@fluentui/react-dialog",
150
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.10",
151
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
152
+ },
153
+ {
154
+ "author": "beachball",
155
+ "package": "@fluentui/react-dialog",
156
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8",
157
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
158
+ }
159
+ ]
160
+ }
161
+ },
162
+ {
163
+ "date": "Mon, 23 May 2022 18:56:51 GMT",
164
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
165
+ "version": "9.0.0-beta.6",
166
+ "comments": {
167
+ "prerelease": [
168
+ {
169
+ "author": "beachball",
170
+ "package": "@fluentui/react-dialog",
171
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7",
172
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
173
+ }
174
+ ]
175
+ }
176
+ },
177
+ {
178
+ "date": "Mon, 23 May 2022 12:14:24 GMT",
179
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
180
+ "version": "9.0.0-beta.6",
181
+ "comments": {
182
+ "prerelease": [
183
+ {
184
+ "author": "beachball",
185
+ "package": "@fluentui/react-dialog",
186
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.9",
187
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
188
+ },
189
+ {
190
+ "author": "beachball",
191
+ "package": "@fluentui/react-dialog",
192
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6",
193
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
194
+ }
195
+ ]
196
+ }
197
+ },
198
+ {
199
+ "date": "Thu, 05 May 2022 18:26:30 GMT",
200
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
201
+ "version": "9.0.0-beta.6",
202
+ "comments": {
203
+ "prerelease": [
204
+ {
205
+ "author": "beachball",
206
+ "package": "@fluentui/react-dialog",
207
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.8",
208
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
209
+ },
210
+ {
211
+ "author": "beachball",
212
+ "package": "@fluentui/react-dialog",
213
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5",
214
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
215
+ }
216
+ ]
217
+ }
218
+ },
219
+ {
220
+ "date": "Wed, 04 May 2022 13:26:54 GMT",
221
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
222
+ "version": "9.0.0-beta.6",
223
+ "comments": {
224
+ "prerelease": [
225
+ {
226
+ "author": "beachball",
227
+ "package": "@fluentui/react-dialog",
228
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.7",
229
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
230
+ }
231
+ ]
232
+ }
233
+ },
234
+ {
235
+ "date": "Tue, 19 Apr 2022 19:17:29 GMT",
236
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
237
+ "version": "9.0.0-beta.6",
238
+ "comments": {
239
+ "prerelease": [
240
+ {
241
+ "author": "beachball",
242
+ "package": "@fluentui/react-dialog",
243
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.6",
244
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
245
+ },
246
+ {
247
+ "author": "beachball",
248
+ "package": "@fluentui/react-dialog",
249
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4",
250
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
251
+ }
252
+ ]
253
+ }
254
+ },
255
+ {
256
+ "date": "Fri, 04 Mar 2022 05:17:40 GMT",
257
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
258
+ "version": "9.0.0-beta.6",
259
+ "comments": {
260
+ "prerelease": [
261
+ {
262
+ "author": "beachball",
263
+ "package": "@fluentui/react-dialog",
264
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.5",
265
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
266
+ }
267
+ ]
268
+ }
269
+ },
270
+ {
271
+ "date": "Tue, 01 Mar 2022 02:17:40 GMT",
272
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
273
+ "version": "9.0.0-beta.6",
274
+ "comments": {
275
+ "prerelease": [
276
+ {
277
+ "author": "beachball",
278
+ "package": "@fluentui/react-dialog",
279
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
280
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
281
+ }
282
+ ]
283
+ }
284
+ },
285
+ {
286
+ "date": "Fri, 18 Feb 2022 13:35:38 GMT",
287
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.6",
288
+ "version": "9.0.0-beta.6",
289
+ "comments": {
290
+ "prerelease": [
291
+ {
292
+ "author": "beachball",
293
+ "package": "@fluentui/react-dialog",
294
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
295
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
296
+ },
297
+ {
298
+ "author": "beachball",
299
+ "package": "@fluentui/react-dialog",
300
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
301
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
302
+ }
303
+ ]
304
+ }
305
+ },
306
+ {
307
+ "date": "Thu, 10 Feb 2022 08:52:26 GMT",
308
+ "tag": "@fluentui/react-dialog_v9.0.0-beta.5",
309
+ "version": "9.0.0-beta.5",
310
+ "comments": {
311
+ "prerelease": [
312
+ {
313
+ "author": "beachball",
314
+ "package": "@fluentui/react-dialog",
315
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
316
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
317
+ },
318
+ {
319
+ "author": "beachball",
320
+ "package": "@fluentui/react-dialog",
321
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
322
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
323
+ }
324
+ ]
325
+ }
326
+ }
327
+ ]
328
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,152 @@
1
+ # Change Log - @fluentui/react-dialog
2
+
3
+ This log was last generated on Wed, 03 Aug 2022 16:00:14 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [9.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.7)
8
+
9
+ Wed, 03 Aug 2022 16:00:14 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.7)
11
+
12
+ ### Changes
13
+
14
+ - chore: adds aria-labelledby and aria-describedby attributes ([PR #24141](https://github.com/microsoft/fluentui/pull/24141) by bernardo.sunderhus@gmail.com)
15
+ - feat: adds react-dialog to react-components unstable ([PR #24140](https://github.com/microsoft/fluentui/pull/24140) by bernardo.sunderhus@gmail.com)
16
+ - Bump @fluentui/react-aria to v9.1.0 ([PR #24201](https://github.com/microsoft/fluentui/pull/24201) by beachball)
17
+ - Bump @fluentui/react-tabster to v9.1.0 ([PR #24201](https://github.com/microsoft/fluentui/pull/24201) by beachball)
18
+ - Bump @fluentui/react-portal to v9.0.4 ([PR #24201](https://github.com/microsoft/fluentui/pull/24201) by beachball)
19
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12 ([PR #24201](https://github.com/microsoft/fluentui/pull/24201) by beachball)
20
+
21
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
22
+
23
+ Thu, 14 Jul 2022 21:21:13 GMT
24
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
25
+
26
+ ### Changes
27
+
28
+ - Bump @fluentui/react-utilities to v9.0.2 ([PR #23918](https://github.com/microsoft/fluentui/pull/23918) by beachball)
29
+
30
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
31
+
32
+ Thu, 14 Jul 2022 17:06:26 GMT
33
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
34
+
35
+ ### Changes
36
+
37
+ - Bump @fluentui/react-utilities to v9.0.1-0 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
38
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.11 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
39
+
40
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
41
+
42
+ Tue, 28 Jun 2022 17:39:54 GMT
43
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
44
+
45
+ ### Changes
46
+
47
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.10 ([PR #23754](https://github.com/microsoft/fluentui/pull/23754) by beachball)
48
+
49
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
50
+
51
+ Tue, 28 Jun 2022 15:14:23 GMT
52
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
53
+
54
+ ### Changes
55
+
56
+ - Bump @fluentui/react-utilities to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
57
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
58
+
59
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
60
+
61
+ Tue, 31 May 2022 21:28:50 GMT
62
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
63
+
64
+ ### Changes
65
+
66
+ - Bump @fluentui/react-utilities to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
67
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
68
+
69
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
70
+
71
+ Mon, 23 May 2022 18:56:51 GMT
72
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
73
+
74
+ ### Changes
75
+
76
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
77
+
78
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
79
+
80
+ Mon, 23 May 2022 12:14:24 GMT
81
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
82
+
83
+ ### Changes
84
+
85
+ - Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
86
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
87
+
88
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
89
+
90
+ Thu, 05 May 2022 18:26:30 GMT
91
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
92
+
93
+ ### Changes
94
+
95
+ - Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
96
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
97
+
98
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
99
+
100
+ Wed, 04 May 2022 13:26:54 GMT
101
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
102
+
103
+ ### Changes
104
+
105
+ - Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
106
+
107
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
108
+
109
+ Tue, 19 Apr 2022 19:17:29 GMT
110
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
111
+
112
+ ### Changes
113
+
114
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
115
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
116
+
117
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
118
+
119
+ Fri, 04 Mar 2022 05:17:40 GMT
120
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
121
+
122
+ ### Changes
123
+
124
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
125
+
126
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
127
+
128
+ Tue, 01 Mar 2022 02:17:40 GMT
129
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.6..@fluentui/react-dialog_v9.0.0-beta.6)
130
+
131
+ ### Changes
132
+
133
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
134
+
135
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.6)
136
+
137
+ Fri, 18 Feb 2022 13:35:38 GMT
138
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-dialog_v9.0.0-beta.5..@fluentui/react-dialog_v9.0.0-beta.6)
139
+
140
+ ### Changes
141
+
142
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
143
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
144
+
145
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-dialog_v9.0.0-beta.5)
146
+
147
+ Thu, 10 Feb 2022 08:52:26 GMT
148
+
149
+ ### Changes
150
+
151
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
152
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ @fluentui/react-dialog
2
+
3
+ Copyright (c) Microsoft Corporation
4
+
5
+ All rights reserved.
6
+
7
+ MIT License
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
+
15
+ Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @fluentui/react-dialog
2
+
3
+ **React Dialog components for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
4
+
5
+ These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.