@fluentui/react-message-bar 0.0.0-nightly-20231013-0415.1

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 (178) hide show
  1. package/CHANGELOG.json +255 -0
  2. package/CHANGELOG.md +86 -0
  3. package/LICENSE +15 -0
  4. package/README.md +27 -0
  5. package/dist/index.d.ts +271 -0
  6. package/lib/MessageBar.js +1 -0
  7. package/lib/MessageBar.js.map +1 -0
  8. package/lib/MessageBarActions.js +1 -0
  9. package/lib/MessageBarActions.js.map +1 -0
  10. package/lib/MessageBarBody.js +1 -0
  11. package/lib/MessageBarBody.js.map +1 -0
  12. package/lib/MessageBarGroup.js +1 -0
  13. package/lib/MessageBarGroup.js.map +1 -0
  14. package/lib/MessageBarTitle.js +1 -0
  15. package/lib/MessageBarTitle.js.map +1 -0
  16. package/lib/components/MessageBar/MessageBar.js +15 -0
  17. package/lib/components/MessageBar/MessageBar.js.map +1 -0
  18. package/lib/components/MessageBar/MessageBar.types.js +1 -0
  19. package/lib/components/MessageBar/MessageBar.types.js.map +1 -0
  20. package/lib/components/MessageBar/getIntentIcon.js +16 -0
  21. package/lib/components/MessageBar/getIntentIcon.js.map +1 -0
  22. package/lib/components/MessageBar/index.js +5 -0
  23. package/lib/components/MessageBar/index.js.map +1 -0
  24. package/lib/components/MessageBar/renderMessageBar.js +17 -0
  25. package/lib/components/MessageBar/renderMessageBar.js.map +1 -0
  26. package/lib/components/MessageBar/useMessageBar.js +72 -0
  27. package/lib/components/MessageBar/useMessageBar.js.map +1 -0
  28. package/lib/components/MessageBar/useMessageBarContextValues.js +18 -0
  29. package/lib/components/MessageBar/useMessageBarContextValues.js.map +1 -0
  30. package/lib/components/MessageBar/useMessageBarReflow.js +80 -0
  31. package/lib/components/MessageBar/useMessageBarReflow.js.map +1 -0
  32. package/lib/components/MessageBar/useMessageBarStyles.styles.js +87 -0
  33. package/lib/components/MessageBar/useMessageBarStyles.styles.js.map +1 -0
  34. package/lib/components/MessageBarActions/MessageBarActions.js +15 -0
  35. package/lib/components/MessageBarActions/MessageBarActions.js.map +1 -0
  36. package/lib/components/MessageBarActions/MessageBarActions.types.js +1 -0
  37. package/lib/components/MessageBarActions/MessageBarActions.types.js.map +1 -0
  38. package/lib/components/MessageBarActions/index.js +5 -0
  39. package/lib/components/MessageBarActions/index.js.map +1 -0
  40. package/lib/components/MessageBarActions/renderMessageBarActions.js +24 -0
  41. package/lib/components/MessageBarActions/renderMessageBarActions.js.map +1 -0
  42. package/lib/components/MessageBarActions/useMessageBarActions.js +31 -0
  43. package/lib/components/MessageBarActions/useMessageBarActions.js.map +1 -0
  44. package/lib/components/MessageBarActions/useMessageBarActionsContextValues.js +9 -0
  45. package/lib/components/MessageBarActions/useMessageBarActionsContextValues.js.map +1 -0
  46. package/lib/components/MessageBarActions/useMessageBarActionsStyles.styles.js +36 -0
  47. package/lib/components/MessageBarActions/useMessageBarActionsStyles.styles.js.map +1 -0
  48. package/lib/components/MessageBarBody/MessageBarBody.js +14 -0
  49. package/lib/components/MessageBarBody/MessageBarBody.js.map +1 -0
  50. package/lib/components/MessageBarBody/MessageBarBody.types.js +1 -0
  51. package/lib/components/MessageBarBody/MessageBarBody.types.js.map +1 -0
  52. package/lib/components/MessageBarBody/index.js +5 -0
  53. package/lib/components/MessageBarBody/index.js.map +1 -0
  54. package/lib/components/MessageBarBody/renderMessageBarBody.js +8 -0
  55. package/lib/components/MessageBarBody/renderMessageBarBody.js.map +1 -0
  56. package/lib/components/MessageBarBody/useMessageBarBody.js +25 -0
  57. package/lib/components/MessageBarBody/useMessageBarBody.js.map +1 -0
  58. package/lib/components/MessageBarBody/useMessageBarBodyStyles.styles.js +15 -0
  59. package/lib/components/MessageBarBody/useMessageBarBodyStyles.styles.js.map +1 -0
  60. package/lib/components/MessageBarGroup/MessageBarGroup.js +14 -0
  61. package/lib/components/MessageBarGroup/MessageBarGroup.js.map +1 -0
  62. package/lib/components/MessageBarGroup/MessageBarGroup.types.js +1 -0
  63. package/lib/components/MessageBarGroup/MessageBarGroup.types.js.map +1 -0
  64. package/lib/components/MessageBarGroup/MessageBarTransition.js +45 -0
  65. package/lib/components/MessageBarGroup/MessageBarTransition.js.map +1 -0
  66. package/lib/components/MessageBarGroup/index.js +5 -0
  67. package/lib/components/MessageBarGroup/index.js.map +1 -0
  68. package/lib/components/MessageBarGroup/renderMessageBarGroup.js +20 -0
  69. package/lib/components/MessageBarGroup/renderMessageBarGroup.js.map +1 -0
  70. package/lib/components/MessageBarGroup/useMessageBarGroup.js +37 -0
  71. package/lib/components/MessageBarGroup/useMessageBarGroup.js.map +1 -0
  72. package/lib/components/MessageBarGroup/useMessageBarGroupStyles.styles.js +34 -0
  73. package/lib/components/MessageBarGroup/useMessageBarGroupStyles.styles.js.map +1 -0
  74. package/lib/components/MessageBarTitle/MessageBarTitle.js +14 -0
  75. package/lib/components/MessageBarTitle/MessageBarTitle.js.map +1 -0
  76. package/lib/components/MessageBarTitle/MessageBarTitle.types.js +1 -0
  77. package/lib/components/MessageBarTitle/MessageBarTitle.types.js.map +1 -0
  78. package/lib/components/MessageBarTitle/index.js +5 -0
  79. package/lib/components/MessageBarTitle/index.js.map +1 -0
  80. package/lib/components/MessageBarTitle/renderMessageBarTitle.js +8 -0
  81. package/lib/components/MessageBarTitle/renderMessageBarTitle.js.map +1 -0
  82. package/lib/components/MessageBarTitle/useMessageBarTitle.js +26 -0
  83. package/lib/components/MessageBarTitle/useMessageBarTitle.js.map +1 -0
  84. package/lib/components/MessageBarTitle/useMessageBarTitleStyles.styles.js +18 -0
  85. package/lib/components/MessageBarTitle/useMessageBarTitleStyles.styles.js.map +1 -0
  86. package/lib/contexts/messageBarContext.js +13 -0
  87. package/lib/contexts/messageBarContext.js.map +1 -0
  88. package/lib/contexts/messageBarTransitionContext.js +18 -0
  89. package/lib/contexts/messageBarTransitionContext.js.map +1 -0
  90. package/lib/index.js +6 -0
  91. package/lib/index.js.map +1 -0
  92. package/lib-commonjs/MessageBar.js +6 -0
  93. package/lib-commonjs/MessageBar.js.map +1 -0
  94. package/lib-commonjs/MessageBarActions.js +6 -0
  95. package/lib-commonjs/MessageBarActions.js.map +1 -0
  96. package/lib-commonjs/MessageBarBody.js +6 -0
  97. package/lib-commonjs/MessageBarBody.js.map +1 -0
  98. package/lib-commonjs/MessageBarGroup.js +6 -0
  99. package/lib-commonjs/MessageBarGroup.js.map +1 -0
  100. package/lib-commonjs/MessageBarTitle.js +6 -0
  101. package/lib-commonjs/MessageBarTitle.js.map +1 -0
  102. package/lib-commonjs/components/MessageBar/MessageBar.js +24 -0
  103. package/lib-commonjs/components/MessageBar/MessageBar.js.map +1 -0
  104. package/lib-commonjs/components/MessageBar/MessageBar.types.js +4 -0
  105. package/lib-commonjs/components/MessageBar/MessageBar.types.js.map +1 -0
  106. package/lib-commonjs/components/MessageBar/getIntentIcon.js +27 -0
  107. package/lib-commonjs/components/MessageBar/getIntentIcon.js.map +1 -0
  108. package/lib-commonjs/components/MessageBar/index.js +10 -0
  109. package/lib-commonjs/components/MessageBar/index.js.map +1 -0
  110. package/lib-commonjs/components/MessageBar/renderMessageBar.js +25 -0
  111. package/lib-commonjs/components/MessageBar/renderMessageBar.js.map +1 -0
  112. package/lib-commonjs/components/MessageBar/useMessageBar.js +75 -0
  113. package/lib-commonjs/components/MessageBar/useMessageBar.js.map +1 -0
  114. package/lib-commonjs/components/MessageBar/useMessageBarContextValues.js +29 -0
  115. package/lib-commonjs/components/MessageBar/useMessageBarContextValues.js.map +1 -0
  116. package/lib-commonjs/components/MessageBar/useMessageBarReflow.js +91 -0
  117. package/lib-commonjs/components/MessageBar/useMessageBarReflow.js.map +1 -0
  118. package/lib-commonjs/components/MessageBar/useMessageBarStyles.styles.js +174 -0
  119. package/lib-commonjs/components/MessageBar/useMessageBarStyles.styles.js.map +1 -0
  120. package/lib-commonjs/components/MessageBarActions/MessageBarActions.js +24 -0
  121. package/lib-commonjs/components/MessageBarActions/MessageBarActions.js.map +1 -0
  122. package/lib-commonjs/components/MessageBarActions/MessageBarActions.types.js +4 -0
  123. package/lib-commonjs/components/MessageBarActions/MessageBarActions.types.js.map +1 -0
  124. package/lib-commonjs/components/MessageBarActions/index.js +10 -0
  125. package/lib-commonjs/components/MessageBarActions/index.js.map +1 -0
  126. package/lib-commonjs/components/MessageBarActions/renderMessageBarActions.js +32 -0
  127. package/lib-commonjs/components/MessageBarActions/renderMessageBarActions.js.map +1 -0
  128. package/lib-commonjs/components/MessageBarActions/useMessageBarActions.js +34 -0
  129. package/lib-commonjs/components/MessageBarActions/useMessageBarActions.js.map +1 -0
  130. package/lib-commonjs/components/MessageBarActions/useMessageBarActionsContextValues.js +20 -0
  131. package/lib-commonjs/components/MessageBarActions/useMessageBarActionsContextValues.js.map +1 -0
  132. package/lib-commonjs/components/MessageBarActions/useMessageBarActionsStyles.styles.js +68 -0
  133. package/lib-commonjs/components/MessageBarActions/useMessageBarActionsStyles.styles.js.map +1 -0
  134. package/lib-commonjs/components/MessageBarBody/MessageBarBody.js +23 -0
  135. package/lib-commonjs/components/MessageBarBody/MessageBarBody.js.map +1 -0
  136. package/lib-commonjs/components/MessageBarBody/MessageBarBody.types.js +4 -0
  137. package/lib-commonjs/components/MessageBarBody/MessageBarBody.types.js.map +1 -0
  138. package/lib-commonjs/components/MessageBarBody/index.js +10 -0
  139. package/lib-commonjs/components/MessageBarBody/index.js.map +1 -0
  140. package/lib-commonjs/components/MessageBarBody/renderMessageBarBody.js +16 -0
  141. package/lib-commonjs/components/MessageBarBody/renderMessageBarBody.js.map +1 -0
  142. package/lib-commonjs/components/MessageBarBody/useMessageBarBody.js +28 -0
  143. package/lib-commonjs/components/MessageBarBody/useMessageBarBody.js.map +1 -0
  144. package/lib-commonjs/components/MessageBarBody/useMessageBarBodyStyles.styles.js +31 -0
  145. package/lib-commonjs/components/MessageBarBody/useMessageBarBodyStyles.styles.js.map +1 -0
  146. package/lib-commonjs/components/MessageBarGroup/MessageBarGroup.js +23 -0
  147. package/lib-commonjs/components/MessageBarGroup/MessageBarGroup.js.map +1 -0
  148. package/lib-commonjs/components/MessageBarGroup/MessageBarGroup.types.js +6 -0
  149. package/lib-commonjs/components/MessageBarGroup/MessageBarGroup.types.js.map +1 -0
  150. package/lib-commonjs/components/MessageBarGroup/MessageBarTransition.js +53 -0
  151. package/lib-commonjs/components/MessageBarGroup/MessageBarTransition.js.map +1 -0
  152. package/lib-commonjs/components/MessageBarGroup/index.js +10 -0
  153. package/lib-commonjs/components/MessageBarGroup/index.js.map +1 -0
  154. package/lib-commonjs/components/MessageBarGroup/renderMessageBarGroup.js +28 -0
  155. package/lib-commonjs/components/MessageBarGroup/renderMessageBarGroup.js.map +1 -0
  156. package/lib-commonjs/components/MessageBarGroup/useMessageBarGroup.js +40 -0
  157. package/lib-commonjs/components/MessageBarGroup/useMessageBarGroup.js.map +1 -0
  158. package/lib-commonjs/components/MessageBarGroup/useMessageBarGroupStyles.styles.js +54 -0
  159. package/lib-commonjs/components/MessageBarGroup/useMessageBarGroupStyles.styles.js.map +1 -0
  160. package/lib-commonjs/components/MessageBarTitle/MessageBarTitle.js +23 -0
  161. package/lib-commonjs/components/MessageBarTitle/MessageBarTitle.js.map +1 -0
  162. package/lib-commonjs/components/MessageBarTitle/MessageBarTitle.types.js +4 -0
  163. package/lib-commonjs/components/MessageBarTitle/MessageBarTitle.types.js.map +1 -0
  164. package/lib-commonjs/components/MessageBarTitle/index.js +10 -0
  165. package/lib-commonjs/components/MessageBarTitle/index.js.map +1 -0
  166. package/lib-commonjs/components/MessageBarTitle/renderMessageBarTitle.js +16 -0
  167. package/lib-commonjs/components/MessageBarTitle/renderMessageBarTitle.js.map +1 -0
  168. package/lib-commonjs/components/MessageBarTitle/useMessageBarTitle.js +29 -0
  169. package/lib-commonjs/components/MessageBarTitle/useMessageBarTitle.js.map +1 -0
  170. package/lib-commonjs/components/MessageBarTitle/useMessageBarTitleStyles.styles.js +33 -0
  171. package/lib-commonjs/components/MessageBarTitle/useMessageBarTitleStyles.styles.js.map +1 -0
  172. package/lib-commonjs/contexts/messageBarContext.js +35 -0
  173. package/lib-commonjs/contexts/messageBarContext.js.map +1 -0
  174. package/lib-commonjs/contexts/messageBarTransitionContext.js +33 -0
  175. package/lib-commonjs/contexts/messageBarTransitionContext.js.map +1 -0
  176. package/lib-commonjs/index.js +99 -0
  177. package/lib-commonjs/index.js.map +1 -0
  178. package/package.json +60 -0
package/CHANGELOG.json ADDED
@@ -0,0 +1,255 @@
1
+ {
2
+ "name": "@fluentui/react-message-bar",
3
+ "entries": [
4
+ {
5
+ "date": "Fri, 13 Oct 2023 04:22:37 GMT",
6
+ "tag": "@fluentui/react-message-bar_v0.0.0-nightly-20231013-0415.1",
7
+ "version": "0.0.0-nightly-20231013-0415.1",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "fluentui-internal@service.microsoft.com",
12
+ "package": "@fluentui/react-message-bar",
13
+ "commit": "not available",
14
+ "comment": "Release nightly v9"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-message-bar",
19
+ "comment": "Bump @fluentui/react-button to v0.0.0-nightly-20231013-0415.1",
20
+ "commit": "2bfb7d28d93633dacbc12ff4c9782be7113a0b87"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-message-bar",
25
+ "comment": "Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20231013-0415.1",
26
+ "commit": "2bfb7d28d93633dacbc12ff4c9782be7113a0b87"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-message-bar",
31
+ "comment": "Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20231013-0415.1",
32
+ "commit": "2bfb7d28d93633dacbc12ff4c9782be7113a0b87"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-message-bar",
37
+ "comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20231013-0415.1",
38
+ "commit": "2bfb7d28d93633dacbc12ff4c9782be7113a0b87"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-message-bar",
43
+ "comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20231013-0415.1",
44
+ "commit": "2bfb7d28d93633dacbc12ff4c9782be7113a0b87"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-message-bar",
49
+ "comment": "Bump @fluentui/react-conformance to v0.0.0-nightly-20231013-0415.1",
50
+ "commit": "2bfb7d28d93633dacbc12ff4c9782be7113a0b87"
51
+ },
52
+ {
53
+ "author": "beachball",
54
+ "package": "@fluentui/react-message-bar",
55
+ "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20231013-0415.1",
56
+ "commit": "2bfb7d28d93633dacbc12ff4c9782be7113a0b87"
57
+ }
58
+ ]
59
+ }
60
+ },
61
+ {
62
+ "date": "Thu, 12 Oct 2023 14:55:44 GMT",
63
+ "tag": "@fluentui/react-message-bar_v9.0.0",
64
+ "version": "9.0.0",
65
+ "comments": {
66
+ "minor": [
67
+ {
68
+ "author": "lingfangao@hotmail.com",
69
+ "package": "@fluentui/react-message-bar",
70
+ "commit": "40e6a376db3c2f11ba131c046c4241bf52e6d3a3",
71
+ "comment": "feat: Release MessageBar as stable"
72
+ },
73
+ {
74
+ "author": "beachball",
75
+ "package": "@fluentui/react-message-bar",
76
+ "comment": "Bump @fluentui/react-button to v9.3.49",
77
+ "commit": "8178c3cae60005bc21137aa1f3e766e18cdb4a30"
78
+ },
79
+ {
80
+ "author": "beachball",
81
+ "package": "@fluentui/react-message-bar",
82
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.17",
83
+ "commit": "8178c3cae60005bc21137aa1f3e766e18cdb4a30"
84
+ }
85
+ ]
86
+ }
87
+ },
88
+ {
89
+ "date": "Wed, 11 Oct 2023 13:54:24 GMT",
90
+ "tag": "@fluentui/react-message-bar-preview_v0.2.1",
91
+ "version": "0.2.1",
92
+ "comments": {
93
+ "patch": [
94
+ {
95
+ "author": "lingfan.gao@microsoft.com",
96
+ "package": "@fluentui/react-message-bar-preview",
97
+ "commit": "5a1cee209858ce4e5c1c304755ff74bba0148193",
98
+ "comment": "fix: Align icons with text content"
99
+ },
100
+ {
101
+ "author": "lingfangao@hotmail.com",
102
+ "package": "@fluentui/react-message-bar-preview",
103
+ "commit": "aed130bfbf4ac88947a697b723387fd8d8382686",
104
+ "comment": "fix: MessageBarActions should not overflow into grid padding"
105
+ },
106
+ {
107
+ "author": "beachball",
108
+ "package": "@fluentui/react-message-bar-preview",
109
+ "comment": "Bump @fluentui/react-button to v9.3.48",
110
+ "commit": "b4466a0b9d3568e8e1ee1d814db5c8449dfd65b8"
111
+ },
112
+ {
113
+ "author": "beachball",
114
+ "package": "@fluentui/react-message-bar-preview",
115
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.16",
116
+ "commit": "b4466a0b9d3568e8e1ee1d814db5c8449dfd65b8"
117
+ },
118
+ {
119
+ "author": "beachball",
120
+ "package": "@fluentui/react-message-bar-preview",
121
+ "comment": "Bump @fluentui/react-utilities to v9.15.0",
122
+ "commit": "b4466a0b9d3568e8e1ee1d814db5c8449dfd65b8"
123
+ }
124
+ ]
125
+ }
126
+ },
127
+ {
128
+ "date": "Mon, 09 Oct 2023 20:45:42 GMT",
129
+ "tag": "@fluentui/react-message-bar-preview_v0.2.0",
130
+ "version": "0.2.0",
131
+ "comments": {
132
+ "minor": [
133
+ {
134
+ "author": "lingfangao@hotmail.com",
135
+ "package": "@fluentui/react-message-bar-preview",
136
+ "commit": "60a911e66db784521a35c1e1ac0362a3f2d8169f",
137
+ "comment": "feat: Add shape prop to MessageBar"
138
+ },
139
+ {
140
+ "author": "beachball",
141
+ "package": "@fluentui/react-message-bar-preview",
142
+ "comment": "Bump @fluentui/react-button to v9.3.47",
143
+ "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4"
144
+ },
145
+ {
146
+ "author": "beachball",
147
+ "package": "@fluentui/react-message-bar-preview",
148
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.15",
149
+ "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4"
150
+ },
151
+ {
152
+ "author": "beachball",
153
+ "package": "@fluentui/react-message-bar-preview",
154
+ "comment": "Bump @fluentui/react-shared-contexts to v9.10.0",
155
+ "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4"
156
+ },
157
+ {
158
+ "author": "beachball",
159
+ "package": "@fluentui/react-message-bar-preview",
160
+ "comment": "Bump @fluentui/react-utilities to v9.14.2",
161
+ "commit": "d2196ea1ca001fbc22f38fcb258016f1df6c87e4"
162
+ }
163
+ ],
164
+ "patch": [
165
+ {
166
+ "author": "lingfangao@hotmail.com",
167
+ "package": "@fluentui/react-message-bar-preview",
168
+ "commit": "dbc18f02facdc420ec4baf7c125ddab22271facf",
169
+ "comment": "feat: Add custom style hook to MessageBar."
170
+ }
171
+ ],
172
+ "none": [
173
+ {
174
+ "author": "olfedias@microsoft.com",
175
+ "package": "@fluentui/react-message-bar-preview",
176
+ "commit": "93d4ee6dd801b672ade6ce41345cfbd9010af01a",
177
+ "comment": "chore: fix typos"
178
+ }
179
+ ]
180
+ }
181
+ },
182
+ {
183
+ "date": "Thu, 05 Oct 2023 15:25:31 GMT",
184
+ "tag": "@fluentui/react-message-bar-preview_v0.1.1",
185
+ "version": "0.1.1",
186
+ "comments": {
187
+ "patch": [
188
+ {
189
+ "author": "bernardo.sunderhus@gmail.com",
190
+ "package": "@fluentui/react-message-bar-preview",
191
+ "commit": "86dd76990e3da5af1f2b6b04a3aec46141d5a653",
192
+ "comment": "chore: migrate from getNativeElementProps to getIntrinsicElementProps"
193
+ },
194
+ {
195
+ "author": "lingfangao@hotmail.com",
196
+ "package": "@fluentui/react-message-bar-preview",
197
+ "commit": "f61b2b14b6daf39bb3c2da1909a4cfce94c73845",
198
+ "comment": "fix: screenreader narration improvements"
199
+ },
200
+ {
201
+ "author": "beachball",
202
+ "package": "@fluentui/react-message-bar-preview",
203
+ "comment": "Bump @fluentui/react-button to v9.3.46",
204
+ "commit": "690590449dc3d65cd40b2b06a990fd920180919d"
205
+ },
206
+ {
207
+ "author": "beachball",
208
+ "package": "@fluentui/react-message-bar-preview",
209
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.14",
210
+ "commit": "690590449dc3d65cd40b2b06a990fd920180919d"
211
+ },
212
+ {
213
+ "author": "beachball",
214
+ "package": "@fluentui/react-message-bar-preview",
215
+ "comment": "Bump @fluentui/react-utilities to v9.14.1",
216
+ "commit": "690590449dc3d65cd40b2b06a990fd920180919d"
217
+ }
218
+ ]
219
+ }
220
+ },
221
+ {
222
+ "date": "Wed, 04 Oct 2023 08:45:46 GMT",
223
+ "tag": "@fluentui/react-message-bar-preview_v0.1.0",
224
+ "version": "0.1.0",
225
+ "comments": {
226
+ "minor": [
227
+ {
228
+ "author": "lingfangao@hotmail.com",
229
+ "package": "@fluentui/react-message-bar-preview",
230
+ "commit": "b93332889af6fc14d25bcfe50ed0c56d988c10f8",
231
+ "comment": "feat: release preview package"
232
+ },
233
+ {
234
+ "author": "beachball",
235
+ "package": "@fluentui/react-message-bar-preview",
236
+ "comment": "Bump @fluentui/react-button to v9.3.45",
237
+ "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc"
238
+ },
239
+ {
240
+ "author": "beachball",
241
+ "package": "@fluentui/react-message-bar-preview",
242
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.13",
243
+ "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc"
244
+ },
245
+ {
246
+ "author": "beachball",
247
+ "package": "@fluentui/react-message-bar-preview",
248
+ "comment": "Bump @fluentui/react-utilities to v9.14.0",
249
+ "commit": "67b6cc6534e684ed32704dc6c0faee632bb840dc"
250
+ }
251
+ ]
252
+ }
253
+ }
254
+ ]
255
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,86 @@
1
+ # Change Log - @fluentui/react-message-bar
2
+
3
+ This log was last generated on Fri, 13 Oct 2023 04:22:37 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20231013-0415.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-message-bar_v0.0.0-nightly-20231013-0415.1)
8
+
9
+ Fri, 13 Oct 2023 04:22:37 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-message-bar_v9.0.0..@fluentui/react-message-bar_v0.0.0-nightly-20231013-0415.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
15
+ - Bump @fluentui/react-button to v0.0.0-nightly-20231013-0415.1 ([commit](https://github.com/microsoft/fluentui/commit/2bfb7d28d93633dacbc12ff4c9782be7113a0b87) by beachball)
16
+ - Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20231013-0415.1 ([commit](https://github.com/microsoft/fluentui/commit/2bfb7d28d93633dacbc12ff4c9782be7113a0b87) by beachball)
17
+ - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20231013-0415.1 ([commit](https://github.com/microsoft/fluentui/commit/2bfb7d28d93633dacbc12ff4c9782be7113a0b87) by beachball)
18
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20231013-0415.1 ([commit](https://github.com/microsoft/fluentui/commit/2bfb7d28d93633dacbc12ff4c9782be7113a0b87) by beachball)
19
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20231013-0415.1 ([commit](https://github.com/microsoft/fluentui/commit/2bfb7d28d93633dacbc12ff4c9782be7113a0b87) by beachball)
20
+ - Bump @fluentui/react-conformance to v0.0.0-nightly-20231013-0415.1 ([commit](https://github.com/microsoft/fluentui/commit/2bfb7d28d93633dacbc12ff4c9782be7113a0b87) by beachball)
21
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20231013-0415.1 ([commit](https://github.com/microsoft/fluentui/commit/2bfb7d28d93633dacbc12ff4c9782be7113a0b87) by beachball)
22
+
23
+ ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-message-bar_v9.0.0)
24
+
25
+ Thu, 12 Oct 2023 14:55:44 GMT
26
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-message-bar-preview_v0.2.1..@fluentui/react-message-bar_v9.0.0)
27
+
28
+ ### Minor changes
29
+
30
+ - feat: Release MessageBar as stable ([PR #29502](https://github.com/microsoft/fluentui/pull/29502) by lingfangao@hotmail.com)
31
+ - Bump @fluentui/react-button to v9.3.49 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
32
+ - Bump @fluentui/react-jsx-runtime to v9.0.17 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
33
+
34
+ ## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-message-bar-preview_v0.2.1)
35
+
36
+ Wed, 11 Oct 2023 13:54:24 GMT
37
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-message-bar-preview_v0.2.0..@fluentui/react-message-bar-preview_v0.2.1)
38
+
39
+ ### Patches
40
+
41
+ - fix: Align icons with text content ([PR #29482](https://github.com/microsoft/fluentui/pull/29482) by lingfan.gao@microsoft.com)
42
+ - fix: MessageBarActions should not overflow into grid padding ([PR #29462](https://github.com/microsoft/fluentui/pull/29462) by lingfangao@hotmail.com)
43
+ - Bump @fluentui/react-button to v9.3.48 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
44
+ - Bump @fluentui/react-jsx-runtime to v9.0.16 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
45
+ - Bump @fluentui/react-utilities to v9.15.0 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
46
+
47
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-message-bar-preview_v0.2.0)
48
+
49
+ Mon, 09 Oct 2023 20:45:42 GMT
50
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-message-bar-preview_v0.1.1..@fluentui/react-message-bar-preview_v0.2.0)
51
+
52
+ ### Minor changes
53
+
54
+ - feat: Add shape prop to MessageBar ([PR #29426](https://github.com/microsoft/fluentui/pull/29426) by lingfangao@hotmail.com)
55
+ - Bump @fluentui/react-button to v9.3.47 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
56
+ - Bump @fluentui/react-jsx-runtime to v9.0.15 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
57
+ - Bump @fluentui/react-shared-contexts to v9.10.0 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
58
+ - Bump @fluentui/react-utilities to v9.14.2 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
59
+
60
+ ### Patches
61
+
62
+ - feat: Add custom style hook to MessageBar. ([PR #29431](https://github.com/microsoft/fluentui/pull/29431) by lingfangao@hotmail.com)
63
+
64
+ ## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-message-bar-preview_v0.1.1)
65
+
66
+ Thu, 05 Oct 2023 15:25:31 GMT
67
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-message-bar-preview_v0.1.0..@fluentui/react-message-bar-preview_v0.1.1)
68
+
69
+ ### Patches
70
+
71
+ - chore: migrate from getNativeElementProps to getIntrinsicElementProps ([PR #29387](https://github.com/microsoft/fluentui/pull/29387) by bernardo.sunderhus@gmail.com)
72
+ - fix: screenreader narration improvements ([PR #29404](https://github.com/microsoft/fluentui/pull/29404) by lingfangao@hotmail.com)
73
+ - Bump @fluentui/react-button to v9.3.46 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
74
+ - Bump @fluentui/react-jsx-runtime to v9.0.14 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
75
+ - Bump @fluentui/react-utilities to v9.14.1 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
76
+
77
+ ## [0.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-message-bar-preview_v0.1.0)
78
+
79
+ Wed, 04 Oct 2023 08:45:46 GMT
80
+
81
+ ### Minor changes
82
+
83
+ - feat: release preview package ([PR #29377](https://github.com/microsoft/fluentui/pull/29377) by lingfangao@hotmail.com)
84
+ - Bump @fluentui/react-button to v9.3.45 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
85
+ - Bump @fluentui/react-jsx-runtime to v9.0.13 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
86
+ - Bump @fluentui/react-utilities to v9.14.0 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ @fluentui/react-message-bar-preview
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,27 @@
1
+ # @fluentui/react-message-bar
2
+
3
+ The MessageBar component communicates important information about the state of the entire application or surface.
4
+ For example, the status of a page, panel, dialog or card. The information shouldn't require someone
5
+ to take immediate action, but should persist until the user performs one of the required actions.
6
+
7
+ ```tsx
8
+
9
+ import { MessageBar, MessageBarTitle, MessageBarBody, Button } from '@fluentui/react-components';
10
+ import { DismissRegular } from '@fluentui/react-icons';
11
+
12
+ function Example() {
13
+ return (
14
+ <MessageBar>
15
+ <MessageBarBody>
16
+ <MessageBarTitle>Descriptive title</MessageBarTite>
17
+ This is a message bar
18
+
19
+ <MessageBarActions containerAction={<Button arial-label="dismiss" icon={<DismissReguladr />} />}>
20
+ <Button>Action</Button>
21
+ <Button>Action</Button>
22
+ </MessageBarActions>
23
+ </MessageBarBody>
24
+ </MessageBar>
25
+ )
26
+ }
27
+ ```
@@ -0,0 +1,271 @@
1
+ /// <reference types="react" />
2
+
3
+ import type { ButtonContextValue } from '@fluentui/react-button';
4
+ import type { ComponentProps } from '@fluentui/react-utilities';
5
+ import type { ComponentState } from '@fluentui/react-utilities';
6
+ import type { ForwardRefComponent } from '@fluentui/react-utilities';
7
+ import * as React_2 from 'react';
8
+ import type { Slot } from '@fluentui/react-utilities';
9
+ import type { SlotClassNames } from '@fluentui/react-utilities';
10
+
11
+ /**
12
+ * MessageBar component
13
+ */
14
+ export declare const MessageBar: ForwardRefComponent<MessageBarProps>;
15
+
16
+ /**
17
+ * MessageBarActions component
18
+ */
19
+ export declare const MessageBarActions: ForwardRefComponent<MessageBarActionsProps>;
20
+
21
+ export declare const messageBarActionsClassNames: SlotClassNames<MessageBarActionsSlots>;
22
+
23
+ declare type MessageBarActionsContextValues = {
24
+ button: ButtonContextValue;
25
+ };
26
+
27
+ /**
28
+ * MessageBarActions Props
29
+ */
30
+ export declare type MessageBarActionsProps = ComponentProps<MessageBarActionsSlots>;
31
+
32
+ export declare type MessageBarActionsSlots = {
33
+ root: Slot<'div'>;
34
+ /**
35
+ * Generally the 'Dismiss' button for the MessageBar
36
+ */
37
+ containerAction?: Slot<'div'>;
38
+ };
39
+
40
+ /**
41
+ * State used in rendering MessageBarActions
42
+ */
43
+ export declare type MessageBarActionsState = ComponentState<MessageBarActionsSlots> & Pick<Required<MessageBarContextValue>, 'layout'>;
44
+
45
+ /**
46
+ * MessageBarBody component
47
+ */
48
+ export declare const MessageBarBody: ForwardRefComponent<MessageBarBodyProps>;
49
+
50
+ export declare const messageBarBodyClassNames: SlotClassNames<MessageBarBodySlots>;
51
+
52
+ /**
53
+ * MessageBarBody Props
54
+ */
55
+ export declare type MessageBarBodyProps = ComponentProps<MessageBarBodySlots>;
56
+
57
+ export declare type MessageBarBodySlots = {
58
+ root: Slot<'div'>;
59
+ };
60
+
61
+ /**
62
+ * State used in rendering MessageBarBody
63
+ */
64
+ export declare type MessageBarBodyState = ComponentState<MessageBarBodySlots>;
65
+
66
+ export declare const messageBarClassNames: SlotClassNames<MessageBarSlots>;
67
+
68
+ export declare const MessageBarContextProvider: React_2.Provider<MessageBarContextValue | undefined>;
69
+
70
+ export declare type MessageBarContextValue = {
71
+ layout: 'multiline' | 'singleline' | 'auto';
72
+ actionsRef: React_2.MutableRefObject<HTMLDivElement | null>;
73
+ bodyRef: React_2.MutableRefObject<HTMLDivElement | null>;
74
+ titleId: string;
75
+ };
76
+
77
+ declare type MessageBarContextValues = {
78
+ messageBar: MessageBarContextValue;
79
+ };
80
+
81
+ /**
82
+ * MessageBarGroup component
83
+ */
84
+ export declare const MessageBarGroup: ForwardRefComponent<MessageBarGroupProps>;
85
+
86
+ export declare const messageBarGroupClassNames: SlotClassNames<MessageBarGroupSlots>;
87
+
88
+ /**
89
+ * MessageBarGroup Props
90
+ */
91
+ export declare type MessageBarGroupProps = ComponentProps<MessageBarGroupSlots> & {
92
+ children: React_2.ReactElement[] | React_2.ReactElement;
93
+ animate?: 'exit-only' | 'both';
94
+ };
95
+
96
+ export declare type MessageBarGroupSlots = {
97
+ root: Slot<'div'>;
98
+ };
99
+
100
+ /**
101
+ * State used in rendering MessageBarGroup
102
+ */
103
+ export declare type MessageBarGroupState = ComponentState<MessageBarGroupSlots> & Pick<MessageBarGroupProps, 'animate'> & {
104
+ enterStyles: string;
105
+ exitStyles: string;
106
+ children: React_2.ReactElement[];
107
+ };
108
+
109
+ export declare type MessageBarIntent = 'info' | 'success' | 'warning' | 'error';
110
+
111
+ /**
112
+ * MessageBar Props
113
+ */
114
+ export declare type MessageBarProps = ComponentProps<MessageBarSlots> & Pick<Partial<MessageBarContextValue>, 'layout'> & {
115
+ /**
116
+ * Default designs announcement presets
117
+ * @default info
118
+ */
119
+ intent?: MessageBarIntent;
120
+ /**
121
+ * @see https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Live_Regions
122
+ */
123
+ politeness?: 'assertive' | 'polite';
124
+ /**
125
+ * Use squal for page level messages and rounded for component level messages
126
+ * @default rounded
127
+ */
128
+ shape?: 'square' | 'rounded';
129
+ };
130
+
131
+ export declare type MessageBarSlots = {
132
+ root: Slot<'div'>;
133
+ icon?: Slot<'div'>;
134
+ };
135
+
136
+ /**
137
+ * State used in rendering MessageBar
138
+ */
139
+ export declare type MessageBarState = ComponentState<MessageBarSlots> & Required<Pick<MessageBarProps, 'layout' | 'intent' | 'shape'>> & Pick<MessageBarContextValue, 'actionsRef' | 'bodyRef' | 'titleId'> & {
140
+ transitionClassName: string;
141
+ };
142
+
143
+ /**
144
+ * MessageBarTitle component
145
+ */
146
+ export declare const MessageBarTitle: ForwardRefComponent<MessageBarTitleProps>;
147
+
148
+ export declare const messageBarTitleClassNames: SlotClassNames<MessageBarTitleSlots>;
149
+
150
+ /**
151
+ * MessageBarTitle Props
152
+ */
153
+ export declare type MessageBarTitleProps = ComponentProps<MessageBarTitleSlots>;
154
+
155
+ export declare type MessageBarTitleSlots = {
156
+ root: Slot<'span'>;
157
+ };
158
+
159
+ /**
160
+ * State used in rendering MessageBarTitle
161
+ */
162
+ export declare type MessageBarTitleState = ComponentState<MessageBarTitleSlots>;
163
+
164
+ /**
165
+ * Render the final JSX of MessageBar
166
+ */
167
+ export declare const renderMessageBar_unstable: (state: MessageBarState, contexts: MessageBarContextValues) => JSX.Element;
168
+
169
+ /**
170
+ * Render the final JSX of MessageBarActions
171
+ */
172
+ export declare const renderMessageBarActions_unstable: (state: MessageBarActionsState, contexts: MessageBarActionsContextValues) => JSX.Element;
173
+
174
+ /**
175
+ * Render the final JSX of MessageBarBody
176
+ */
177
+ export declare const renderMessageBarBody_unstable: (state: MessageBarBodyState) => JSX.Element;
178
+
179
+ /**
180
+ * Render the final JSX of MessageBarGroup
181
+ */
182
+ export declare const renderMessageBarGroup_unstable: (state: MessageBarGroupState) => JSX.Element;
183
+
184
+ /**
185
+ * Render the final JSX of MessageBarTitle
186
+ */
187
+ export declare const renderMessageBarTitle_unstable: (state: MessageBarTitleState) => JSX.Element;
188
+
189
+ /**
190
+ * Create the state required to render MessageBar.
191
+ *
192
+ * The returned state can be modified with hooks such as useMessageBarStyles_unstable,
193
+ * before being passed to renderMessageBar_unstable.
194
+ *
195
+ * @param props - props from this instance of MessageBar
196
+ * @param ref - reference to root HTMLElement of MessageBar
197
+ */
198
+ export declare const useMessageBar_unstable: (props: MessageBarProps, ref: React_2.Ref<HTMLDivElement>) => MessageBarState;
199
+
200
+ /**
201
+ * Create the state required to render MessageBarActions.
202
+ *
203
+ * The returned state can be modified with hooks such as useMessageBarActionsStyles_unstable,
204
+ * before being passed to renderMessageBarActions_unstable.
205
+ *
206
+ * @param props - props from this instance of MessageBarActions
207
+ * @param ref - reference to root HTMLElement of MessageBarActions
208
+ */
209
+ export declare const useMessageBarActions_unstable: (props: MessageBarActionsProps, ref: React_2.Ref<HTMLDivElement>) => MessageBarActionsState;
210
+
211
+ /**
212
+ * Apply styling to the MessageBarActions slots based on the state
213
+ */
214
+ export declare const useMessageBarActionsStyles_unstable: (state: MessageBarActionsState) => MessageBarActionsState;
215
+
216
+ /**
217
+ * Create the state required to render MessageBarBody.
218
+ *
219
+ * The returned state can be modified with hooks such as useMessageBarBodyStyles_unstable,
220
+ * before being passed to renderMessageBarBody_unstable.
221
+ *
222
+ * @param props - props from this instance of MessageBarBody
223
+ * @param ref - reference to root HTMLElement of MessageBarBody
224
+ */
225
+ export declare const useMessageBarBody_unstable: (props: MessageBarBodyProps, ref: React_2.Ref<HTMLDivElement>) => MessageBarBodyState;
226
+
227
+ /**
228
+ * Apply styling to the MessageBarBody slots based on the state
229
+ */
230
+ export declare const useMessageBarBodyStyles_unstable: (state: MessageBarBodyState) => MessageBarBodyState;
231
+
232
+ export declare const useMessageBarContext: () => MessageBarContextValue;
233
+
234
+ /**
235
+ * Create the state required to render MessageBarGroup.
236
+ *
237
+ * The returned state can be modified with hooks such as useMessageBarGroupStyles_unstable,
238
+ * before being passed to renderMessageBarGroup_unstable.
239
+ *
240
+ * @param props - props from this instance of MessageBarGroup
241
+ * @param ref - reference to root HTMLElement of MessageBarGroup
242
+ */
243
+ export declare const useMessageBarGroup_unstable: (props: MessageBarGroupProps, ref: React_2.Ref<HTMLDivElement>) => MessageBarGroupState;
244
+
245
+ /**
246
+ * Apply styling to the MessageBarGroup slots based on the state
247
+ */
248
+ export declare const useMessageBarGroupStyles_unstable: (state: MessageBarGroupState) => MessageBarGroupState;
249
+
250
+ /**
251
+ * Apply styling to the MessageBar slots based on the state
252
+ */
253
+ export declare const useMessageBarStyles_unstable: (state: MessageBarState) => MessageBarState;
254
+
255
+ /**
256
+ * Create the state required to render MessageBarTitle.
257
+ *
258
+ * The returned state can be modified with hooks such as useMessageBarTitleStyles_unstable,
259
+ * before being passed to renderMessageBarTitle_unstable.
260
+ *
261
+ * @param props - props from this instance of MessageBarTitle
262
+ * @param ref - reference to root HTMLElement of MessageBarTitle
263
+ */
264
+ export declare const useMessageBarTitle_unstable: (props: MessageBarTitleProps, ref: React_2.Ref<HTMLElement>) => MessageBarTitleState;
265
+
266
+ /**
267
+ * Apply styling to the MessageBarTitle slots based on the state
268
+ */
269
+ export declare const useMessageBarTitleStyles_unstable: (state: MessageBarTitleState) => MessageBarTitleState;
270
+
271
+ export { }
@@ -0,0 +1 @@
1
+ export * from './components/MessageBar/index';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["MessageBar.ts"],"sourcesContent":["export * from './components/MessageBar/index';\n"],"names":[],"mappings":"AAAA,cAAc,gCAAgC"}
@@ -0,0 +1 @@
1
+ export * from './components/MessageBarActions/index';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["MessageBarActions.ts"],"sourcesContent":["export * from './components/MessageBarActions/index';\n"],"names":[],"mappings":"AAAA,cAAc,uCAAuC"}
@@ -0,0 +1 @@
1
+ export * from './components/MessageBarBody/index';