@fluentui/web-components 3.0.0-alpha.1 → 3.0.0-alpha.3

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 (109) hide show
  1. package/.eslintrc.json +62 -0
  2. package/CHANGELOG.json +208 -8
  3. package/CHANGELOG.md +155 -97
  4. package/build/{clean.js → clean.cjs} +0 -0
  5. package/dist/dts/badge/badge.d.ts +49 -0
  6. package/dist/dts/badge/badge.definition.d.ts +11 -0
  7. package/dist/dts/badge/badge.options.d.ts +73 -0
  8. package/dist/dts/badge/badge.stories.d.ts +12 -0
  9. package/dist/dts/badge/badge.styles.d.ts +4 -0
  10. package/dist/dts/badge/badge.template.d.ts +9 -0
  11. package/dist/dts/badge/define.d.ts +1 -0
  12. package/dist/dts/badge/index.d.ts +5 -0
  13. package/dist/dts/counter-badge/counter-badge.d.ts +90 -0
  14. package/dist/dts/counter-badge/counter-badge.definition.d.ts +11 -0
  15. package/dist/dts/counter-badge/counter-badge.options.d.ts +69 -0
  16. package/dist/dts/counter-badge/counter-badge.stories.d.ts +14 -0
  17. package/dist/dts/counter-badge/counter-badge.styles.d.ts +4 -0
  18. package/dist/dts/counter-badge/counter-badge.template.d.ts +7 -0
  19. package/dist/dts/counter-badge/define.d.ts +1 -0
  20. package/dist/dts/counter-badge/index.d.ts +5 -0
  21. package/dist/dts/fluent-design-system.d.ts +5 -0
  22. package/dist/dts/index-rollup.d.ts +1 -1
  23. package/dist/dts/index.d.ts +6 -1
  24. package/dist/dts/progress-bar/define.d.ts +1 -0
  25. package/dist/dts/progress-bar/index.d.ts +5 -0
  26. package/dist/dts/progress-bar/progress-bar.d.ts +30 -0
  27. package/dist/dts/progress-bar/progress-bar.definition.d.ts +10 -0
  28. package/dist/dts/progress-bar/progress-bar.options.d.ts +41 -0
  29. package/dist/dts/progress-bar/progress-bar.stories.d.ts +9 -0
  30. package/dist/dts/progress-bar/progress-bar.styles.d.ts +4 -0
  31. package/dist/dts/progress-bar/progress-bar.template.d.ts +3 -0
  32. package/dist/dts/spinner/define.d.ts +1 -0
  33. package/dist/dts/spinner/index.d.ts +5 -0
  34. package/dist/dts/spinner/spinner.d.ts +25 -0
  35. package/dist/dts/spinner/spinner.definition.d.ts +11 -0
  36. package/dist/dts/spinner/spinner.options.d.ts +32 -0
  37. package/dist/dts/spinner/spinner.stories.d.ts +8 -0
  38. package/dist/dts/spinner/spinner.styles.d.ts +1 -0
  39. package/dist/dts/spinner/spinner.template.d.ts +3 -0
  40. package/dist/dts/styles/index.d.ts +1 -0
  41. package/dist/dts/styles/partials/badge.partials.d.ts +28 -0
  42. package/dist/dts/styles/partials/index.d.ts +1 -0
  43. package/dist/dts/text/define.d.ts +1 -0
  44. package/dist/dts/text/index.d.ts +5 -0
  45. package/dist/dts/text/text.d.ts +91 -0
  46. package/dist/dts/text/text.definition.d.ts +10 -0
  47. package/dist/dts/text/text.options.d.ts +67 -0
  48. package/dist/dts/text/text.stories.d.ts +8 -0
  49. package/dist/dts/text/text.styles.d.ts +4 -0
  50. package/dist/dts/text/text.template.d.ts +6 -0
  51. package/dist/dts/theme/index.d.ts +2 -2
  52. package/dist/esm/badge/badge.definition.js +18 -0
  53. package/dist/esm/badge/badge.js +42 -0
  54. package/dist/esm/badge/badge.options.js +45 -0
  55. package/dist/esm/badge/badge.stories.js +108 -0
  56. package/dist/esm/badge/badge.styles.js +29 -0
  57. package/dist/esm/badge/badge.template.js +14 -0
  58. package/dist/esm/badge/define.js +3 -0
  59. package/dist/esm/badge/index.js +5 -0
  60. package/dist/esm/counter-badge/counter-badge.definition.js +18 -0
  61. package/dist/esm/counter-badge/counter-badge.js +89 -0
  62. package/dist/esm/counter-badge/counter-badge.options.js +42 -0
  63. package/dist/esm/counter-badge/counter-badge.stories.js +102 -0
  64. package/dist/esm/counter-badge/counter-badge.styles.js +30 -0
  65. package/dist/esm/counter-badge/counter-badge.template.js +12 -0
  66. package/dist/esm/counter-badge/define.js +3 -0
  67. package/dist/esm/counter-badge/index.js +5 -0
  68. package/dist/esm/fluent-design-system.js +5 -0
  69. package/dist/esm/index-rollup.js +1 -1
  70. package/dist/esm/index.js +6 -1
  71. package/dist/esm/progress-bar/define.js +3 -0
  72. package/dist/esm/progress-bar/index.js +5 -0
  73. package/dist/esm/progress-bar/progress-bar.definition.js +17 -0
  74. package/dist/esm/progress-bar/progress-bar.js +18 -0
  75. package/dist/esm/progress-bar/progress-bar.options.js +25 -0
  76. package/dist/esm/progress-bar/progress-bar.stories.js +60 -0
  77. package/dist/esm/progress-bar/progress-bar.styles.js +155 -0
  78. package/dist/esm/progress-bar/progress-bar.template.js +5 -0
  79. package/dist/esm/spinner/define.js +3 -0
  80. package/dist/esm/spinner/index.js +5 -0
  81. package/dist/esm/spinner/spinner.definition.js +18 -0
  82. package/dist/esm/spinner/spinner.js +15 -0
  83. package/dist/esm/spinner/spinner.options.js +21 -0
  84. package/dist/esm/spinner/spinner.stories.js +45 -0
  85. package/dist/esm/spinner/spinner.styles.js +95 -0
  86. package/dist/esm/spinner/spinner.template.js +21 -0
  87. package/dist/esm/styles/index.js +1 -0
  88. package/dist/esm/styles/partials/badge.partials.js +272 -0
  89. package/dist/esm/styles/partials/index.js +1 -0
  90. package/dist/esm/text/define.js +3 -0
  91. package/dist/esm/text/index.js +5 -0
  92. package/dist/esm/text/text.definition.js +17 -0
  93. package/dist/esm/text/text.js +91 -0
  94. package/dist/esm/text/text.options.js +45 -0
  95. package/dist/esm/text/text.stories.js +111 -0
  96. package/dist/esm/text/text.styles.js +104 -0
  97. package/dist/esm/text/text.template.js +5 -0
  98. package/dist/esm/theme/index.js +2 -2
  99. package/dist/esm/theme/set-theme.js +1 -1
  100. package/dist/esm/theme/theme.stories.js +1 -1
  101. package/dist/fluent-web-components.api.json +14330 -8
  102. package/dist/tsdoc-metadata.json +1 -1
  103. package/dist/web-components.d.ts +1460 -1
  104. package/dist/web-components.js +5713 -2
  105. package/dist/web-components.min.js +273 -1
  106. package/docs/api-report.md +1471 -1
  107. package/package.json +48 -16
  108. package/rollup.config.js +5 -0
  109. package/karma.conf.js +0 -147
package/CHANGELOG.md CHANGED
@@ -1,21 +1,79 @@
1
1
  # Change Log - @fluentui/web-components
2
2
 
3
- This log was last generated on Mon, 23 Jan 2023 12:40:30 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 15 Feb 2023 04:24:29 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [3.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-alpha.3)
8
+
9
+ Wed, 15 Feb 2023 04:24:29 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-alpha.2..@fluentui/web-components_v3.0.0-alpha.3)
11
+
12
+ ### Changes
13
+
14
+ - Adds Spinner as a web component ([PR #26392](https://github.com/microsoft/fluentui/pull/26392) by ryan@ryanmerrill.net)
15
+ - update fast element and foundation versions ([PR #26844](https://github.com/microsoft/fluentui/pull/26844) by chhol@microsoft.com)
16
+
17
+ ## [3.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-alpha.2)
18
+
19
+ Wed, 25 Jan 2023 17:42:30 GMT
20
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-alpha.1..@fluentui/web-components_v3.0.0-alpha.2)
21
+
22
+ ### Changes
23
+
24
+ - feat: export theme ([PR #26500](https://github.com/microsoft/fluentui/pull/26500) by miroslav.stastny@microsoft.com)
25
+
7
26
  ## [3.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-alpha.1)
8
27
 
9
- Mon, 23 Jan 2023 12:40:30 GMT
28
+ Wed, 25 Jan 2023 14:49:08 GMT
10
29
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.8..@fluentui/web-components_v3.0.0-alpha.1)
11
30
 
12
31
  ### Changes
13
32
 
33
+ - add progressbar as new component ([PR #26329](https://github.com/microsoft/fluentui/pull/26329) by ryan@ryanmerrill.net)
14
34
  - Add initial theme ([PR #25660](https://github.com/microsoft/fluentui/pull/25660) by miroslav.stastny@microsoft.com)
35
+ - add badge and counter badge as new components ([PR #26357](https://github.com/microsoft/fluentui/pull/26357) by chhol@microsoft.com)
36
+ - add text as a new component ([PR #26090](https://github.com/microsoft/fluentui/pull/26090) by chhol@microsoft.com)
37
+
38
+ ## [2.5.12](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.12)
39
+
40
+ Thu, 26 Jan 2023 07:35:32 GMT
41
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.11..@fluentui/web-components_v2.5.12)
42
+
43
+ ### Patches
44
+
45
+ - feat: bump tslib to 2.1 to align with rest of monorepo packages ([PR #26457](https://github.com/microsoft/fluentui/pull/26457) by martinhochel@microsoft.com)
46
+
47
+ ## [2.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.11)
48
+
49
+ Wed, 11 Jan 2023 07:50:49 GMT
50
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.10..@fluentui/web-components_v2.5.11)
51
+
52
+ ### Patches
53
+
54
+ - chore: upgrade version of storybook ([PR #26259](https://github.com/microsoft/fluentui/pull/26259) by mgodbolt@microsoft.com)
55
+
56
+ ## [2.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.10)
57
+
58
+ Tue, 10 Jan 2023 07:50:14 GMT
59
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.9..@fluentui/web-components_v2.5.10)
60
+
61
+ ### Patches
62
+
63
+ - fix: layering zindex issue with sub menus ([PR #26260](https://github.com/microsoft/fluentui/pull/26260) by jes@microsoft.com)
64
+
65
+ ## [2.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.9)
66
+
67
+ Thu, 05 Jan 2023 07:59:57 GMT
68
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.8..@fluentui/web-components_v2.5.9)
69
+
70
+ ### Patches
71
+
72
+ - Fix fluent-tooltip not showing anchor pointer when wc prefix is changed ([PR #26154](https://github.com/microsoft/fluentui/pull/26154) by abcy@microsoft.com)
15
73
 
16
74
  ## [2.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.8)
17
75
 
18
- Wed, 26 Oct 2022 07:52:54 GMT
76
+ Wed, 26 Oct 2022 07:52:54 GMT
19
77
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.7..@fluentui/web-components_v2.5.8)
20
78
 
21
79
  ### Patches
@@ -24,7 +82,7 @@ Wed, 26 Oct 2022 07:52:54 GMT
24
82
 
25
83
  ## [2.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.7)
26
84
 
27
- Fri, 21 Oct 2022 07:44:53 GMT
85
+ Fri, 21 Oct 2022 07:44:53 GMT
28
86
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.6..@fluentui/web-components_v2.5.7)
29
87
 
30
88
  ### Patches
@@ -33,7 +91,7 @@ Fri, 21 Oct 2022 07:44:53 GMT
33
91
 
34
92
  ## [2.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.6)
35
93
 
36
- Mon, 19 Sep 2022 07:47:29 GMT
94
+ Mon, 19 Sep 2022 07:47:29 GMT
37
95
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.5..@fluentui/web-components_v2.5.6)
38
96
 
39
97
  ### Patches
@@ -42,7 +100,7 @@ Mon, 19 Sep 2022 07:47:29 GMT
42
100
 
43
101
  ## [2.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.5)
44
102
 
45
- Wed, 07 Sep 2022 07:54:43 GMT
103
+ Wed, 07 Sep 2022 07:54:43 GMT
46
104
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.4..@fluentui/web-components_v2.5.5)
47
105
 
48
106
  ### Patches
@@ -51,7 +109,7 @@ Wed, 07 Sep 2022 07:54:43 GMT
51
109
 
52
110
  ## [2.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.4)
53
111
 
54
- Tue, 30 Aug 2022 07:41:54 GMT
112
+ Tue, 30 Aug 2022 07:41:54 GMT
55
113
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.3..@fluentui/web-components_v2.5.4)
56
114
 
57
115
  ### Patches
@@ -60,7 +118,7 @@ Tue, 30 Aug 2022 07:41:54 GMT
60
118
 
61
119
  ## [2.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.3)
62
120
 
63
- Thu, 16 Jun 2022 23:03:44 GMT
121
+ Thu, 16 Jun 2022 23:03:44 GMT
64
122
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.2..@fluentui/web-components_v2.5.3)
65
123
 
66
124
  ### Patches
@@ -69,7 +127,7 @@ Thu, 16 Jun 2022 23:03:44 GMT
69
127
 
70
128
  ## [2.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.2)
71
129
 
72
- Tue, 07 Jun 2022 07:48:04 GMT
130
+ Tue, 07 Jun 2022 07:48:04 GMT
73
131
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.1..@fluentui/web-components_v2.5.2)
74
132
 
75
133
  ### Patches
@@ -78,7 +136,7 @@ Tue, 07 Jun 2022 07:48:04 GMT
78
136
 
79
137
  ## [2.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.1)
80
138
 
81
- Tue, 17 May 2022 07:45:01 GMT
139
+ Tue, 17 May 2022 07:45:01 GMT
82
140
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.0..@fluentui/web-components_v2.5.1)
83
141
 
84
142
  ### Patches
@@ -87,7 +145,7 @@ Tue, 17 May 2022 07:45:01 GMT
87
145
 
88
146
  ## [2.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.0)
89
147
 
90
- Fri, 06 May 2022 07:36:53 GMT
148
+ Fri, 06 May 2022 07:36:53 GMT
91
149
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.4.0..@fluentui/web-components_v2.5.0)
92
150
 
93
151
  ### Minor changes
@@ -96,7 +154,7 @@ Fri, 06 May 2022 07:36:53 GMT
96
154
 
97
155
  ## [2.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.4.0)
98
156
 
99
- Thu, 28 Apr 2022 07:39:56 GMT
157
+ Thu, 28 Apr 2022 07:39:56 GMT
100
158
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.3.1..@fluentui/web-components_v2.4.0)
101
159
 
102
160
  ### Minor changes
@@ -105,7 +163,7 @@ Thu, 28 Apr 2022 07:39:56 GMT
105
163
 
106
164
  ## [2.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.3.1)
107
165
 
108
- Mon, 07 Mar 2022 07:41:14 GMT
166
+ Mon, 07 Mar 2022 07:41:14 GMT
109
167
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.3.0..@fluentui/web-components_v2.3.1)
110
168
 
111
169
  ### Patches
@@ -114,7 +172,7 @@ Mon, 07 Mar 2022 07:41:14 GMT
114
172
 
115
173
  ## [2.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.3.0)
116
174
 
117
- Tue, 01 Mar 2022 07:23:43 GMT
175
+ Tue, 01 Mar 2022 07:23:43 GMT
118
176
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.2.3..@fluentui/web-components_v2.3.0)
119
177
 
120
178
  ### Minor changes
@@ -123,7 +181,7 @@ Tue, 01 Mar 2022 07:23:43 GMT
123
181
 
124
182
  ## [2.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.2.3)
125
183
 
126
- Fri, 18 Feb 2022 07:22:08 GMT
184
+ Fri, 18 Feb 2022 07:22:08 GMT
127
185
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.2.2..@fluentui/web-components_v2.2.3)
128
186
 
129
187
  ### Patches
@@ -132,7 +190,7 @@ Fri, 18 Feb 2022 07:22:08 GMT
132
190
 
133
191
  ## [2.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.2.2)
134
192
 
135
- Thu, 27 Jan 2022 07:34:08 GMT
193
+ Thu, 27 Jan 2022 07:34:08 GMT
136
194
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.2.1..@fluentui/web-components_v2.2.2)
137
195
 
138
196
  ### Patches
@@ -141,7 +199,7 @@ Thu, 27 Jan 2022 07:34:08 GMT
141
199
 
142
200
  ## [2.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.2.1)
143
201
 
144
- Wed, 12 Jan 2022 07:32:29 GMT
202
+ Wed, 12 Jan 2022 07:32:29 GMT
145
203
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.2.0..@fluentui/web-components_v2.2.1)
146
204
 
147
205
  ### Patches
@@ -150,7 +208,7 @@ Wed, 12 Jan 2022 07:32:29 GMT
150
208
 
151
209
  ## [2.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.2.0)
152
210
 
153
- Fri, 07 Jan 2022 07:27:47 GMT
211
+ Fri, 07 Jan 2022 07:27:47 GMT
154
212
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.1.3..@fluentui/web-components_v2.2.0)
155
213
 
156
214
  ### Minor changes
@@ -159,7 +217,7 @@ Fri, 07 Jan 2022 07:27:47 GMT
159
217
 
160
218
  ## [2.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.1.3)
161
219
 
162
- Wed, 15 Dec 2021 07:31:29 GMT
220
+ Wed, 15 Dec 2021 07:31:29 GMT
163
221
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.1.2..@fluentui/web-components_v2.1.3)
164
222
 
165
223
  ### Patches
@@ -168,7 +226,7 @@ Wed, 15 Dec 2021 07:31:29 GMT
168
226
 
169
227
  ## [2.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.1.2)
170
228
 
171
- Fri, 10 Dec 2021 07:30:35 GMT
229
+ Fri, 10 Dec 2021 07:30:35 GMT
172
230
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.1.1..@fluentui/web-components_v2.1.2)
173
231
 
174
232
  ### Patches
@@ -177,7 +235,7 @@ Fri, 10 Dec 2021 07:30:35 GMT
177
235
 
178
236
  ## [2.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.1.1)
179
237
 
180
- Thu, 02 Dec 2021 07:36:29 GMT
238
+ Thu, 02 Dec 2021 07:36:29 GMT
181
239
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.1.0..@fluentui/web-components_v2.1.1)
182
240
 
183
241
  ### Patches
@@ -186,7 +244,7 @@ Thu, 02 Dec 2021 07:36:29 GMT
186
244
 
187
245
  ## [2.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.1.0)
188
246
 
189
- Tue, 23 Nov 2021 07:27:34 GMT
247
+ Tue, 23 Nov 2021 07:27:34 GMT
190
248
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.0.2..@fluentui/web-components_v2.1.0)
191
249
 
192
250
  ### Minor changes
@@ -195,7 +253,7 @@ Tue, 23 Nov 2021 07:27:34 GMT
195
253
 
196
254
  ## [2.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.0.2)
197
255
 
198
- Tue, 09 Nov 2021 07:38:11 GMT
256
+ Tue, 09 Nov 2021 07:38:11 GMT
199
257
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.0.1..@fluentui/web-components_v2.0.2)
200
258
 
201
259
  ### Patches
@@ -204,7 +262,7 @@ Tue, 09 Nov 2021 07:38:11 GMT
204
262
 
205
263
  ## [2.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.0.1)
206
264
 
207
- Tue, 02 Nov 2021 07:37:01 GMT
265
+ Tue, 02 Nov 2021 07:37:01 GMT
208
266
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.0.0..@fluentui/web-components_v2.0.1)
209
267
 
210
268
  ### Patches
@@ -215,7 +273,7 @@ Tue, 02 Nov 2021 07:37:01 GMT
215
273
 
216
274
  ## [2.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.0.0)
217
275
 
218
- Fri, 22 Oct 2021 23:04:22 GMT
276
+ Fri, 22 Oct 2021 23:04:22 GMT
219
277
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.6.3..@fluentui/web-components_v2.0.0)
220
278
 
221
279
  ### Major changes
@@ -224,7 +282,7 @@ Fri, 22 Oct 2021 23:04:22 GMT
224
282
 
225
283
  ## [1.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.6.3)
226
284
 
227
- Fri, 22 Oct 2021 19:30:28 GMT
285
+ Fri, 22 Oct 2021 19:30:28 GMT
228
286
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.6.2..@fluentui/web-components_v1.6.3)
229
287
 
230
288
  ### Patches
@@ -233,7 +291,7 @@ Fri, 22 Oct 2021 19:30:28 GMT
233
291
 
234
292
  ## [1.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.6.2)
235
293
 
236
- Thu, 14 Oct 2021 00:11:22 GMT
294
+ Thu, 14 Oct 2021 00:11:22 GMT
237
295
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.6.1..@fluentui/web-components_v1.6.2)
238
296
 
239
297
  ### Patches
@@ -242,7 +300,7 @@ Thu, 14 Oct 2021 00:11:22 GMT
242
300
 
243
301
  ## [1.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.6.1)
244
302
 
245
- Fri, 08 Oct 2021 07:31:50 GMT
303
+ Fri, 08 Oct 2021 07:31:50 GMT
246
304
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.6.0..@fluentui/web-components_v1.6.1)
247
305
 
248
306
  ### Patches
@@ -251,7 +309,7 @@ Fri, 08 Oct 2021 07:31:50 GMT
251
309
 
252
310
  ## [1.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.6.0)
253
311
 
254
- Thu, 07 Oct 2021 07:30:53 GMT
312
+ Thu, 07 Oct 2021 07:30:53 GMT
255
313
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.5.6..@fluentui/web-components_v1.6.0)
256
314
 
257
315
  ### Minor changes
@@ -265,7 +323,7 @@ Thu, 07 Oct 2021 07:30:53 GMT
265
323
 
266
324
  ## [1.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.5.6)
267
325
 
268
- Wed, 06 Oct 2021 11:11:56 GMT
326
+ Wed, 06 Oct 2021 11:11:56 GMT
269
327
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.5.5..@fluentui/web-components_v1.5.6)
270
328
 
271
329
  ### Patches
@@ -274,7 +332,7 @@ Wed, 06 Oct 2021 11:11:56 GMT
274
332
 
275
333
  ## [1.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.5.5)
276
334
 
277
- Tue, 05 Oct 2021 07:37:17 GMT
335
+ Tue, 05 Oct 2021 07:37:17 GMT
278
336
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.5.4..@fluentui/web-components_v1.5.5)
279
337
 
280
338
  ### Patches
@@ -284,7 +342,7 @@ Tue, 05 Oct 2021 07:37:17 GMT
284
342
 
285
343
  ## [1.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.5.4)
286
344
 
287
- Wed, 29 Sep 2021 07:36:23 GMT
345
+ Wed, 29 Sep 2021 07:36:23 GMT
288
346
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.5.3..@fluentui/web-components_v1.5.4)
289
347
 
290
348
  ### Patches
@@ -293,7 +351,7 @@ Wed, 29 Sep 2021 07:36:23 GMT
293
351
 
294
352
  ## [1.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.5.3)
295
353
 
296
- Thu, 23 Sep 2021 07:35:13 GMT
354
+ Thu, 23 Sep 2021 07:35:13 GMT
297
355
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.5.2..@fluentui/web-components_v1.5.3)
298
356
 
299
357
  ### Patches
@@ -302,7 +360,7 @@ Thu, 23 Sep 2021 07:35:13 GMT
302
360
 
303
361
  ## [1.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.5.2)
304
362
 
305
- Fri, 17 Sep 2021 07:35:26 GMT
363
+ Fri, 17 Sep 2021 07:35:26 GMT
306
364
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.5.1..@fluentui/web-components_v1.5.2)
307
365
 
308
366
  ### Patches
@@ -312,7 +370,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
312
370
 
313
371
  ## [1.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.5.1)
314
372
 
315
- Tue, 14 Sep 2021 20:09:02 GMT
373
+ Tue, 14 Sep 2021 20:09:02 GMT
316
374
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.5.0..@fluentui/web-components_v1.5.1)
317
375
 
318
376
  ### Patches
@@ -321,7 +379,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
321
379
 
322
380
  ## [1.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.5.0)
323
381
 
324
- Mon, 13 Sep 2021 07:37:03 GMT
382
+ Mon, 13 Sep 2021 07:37:03 GMT
325
383
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.4.2..@fluentui/web-components_v1.5.0)
326
384
 
327
385
  ### Minor changes
@@ -330,7 +388,7 @@ Mon, 13 Sep 2021 07:37:03 GMT
330
388
 
331
389
  ## [1.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.4.2)
332
390
 
333
- Fri, 10 Sep 2021 07:39:51 GMT
391
+ Fri, 10 Sep 2021 07:39:51 GMT
334
392
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.4.1..@fluentui/web-components_v1.4.2)
335
393
 
336
394
  ### Patches
@@ -340,7 +398,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
340
398
 
341
399
  ## [1.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.4.1)
342
400
 
343
- Fri, 03 Sep 2021 00:13:07 GMT
401
+ Fri, 03 Sep 2021 00:13:07 GMT
344
402
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.4.0..@fluentui/web-components_v1.4.1)
345
403
 
346
404
  ### Patches
@@ -349,7 +407,7 @@ Fri, 03 Sep 2021 00:13:07 GMT
349
407
 
350
408
  ## [1.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.4.0)
351
409
 
352
- Thu, 02 Sep 2021 07:36:46 GMT
410
+ Thu, 02 Sep 2021 07:36:46 GMT
353
411
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.8..@fluentui/web-components_v1.4.0)
354
412
 
355
413
  ### Minor changes
@@ -358,7 +416,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
358
416
 
359
417
  ## [1.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.8)
360
418
 
361
- Tue, 31 Aug 2021 07:37:47 GMT
419
+ Tue, 31 Aug 2021 07:37:47 GMT
362
420
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.7..@fluentui/web-components_v1.3.8)
363
421
 
364
422
  ### Patches
@@ -368,7 +426,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
368
426
 
369
427
  ## [1.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.7)
370
428
 
371
- Mon, 30 Aug 2021 07:35:05 GMT
429
+ Mon, 30 Aug 2021 07:35:05 GMT
372
430
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.6..@fluentui/web-components_v1.3.7)
373
431
 
374
432
  ### Patches
@@ -377,7 +435,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
377
435
 
378
436
  ## [1.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.6)
379
437
 
380
- Thu, 26 Aug 2021 07:35:43 GMT
438
+ Thu, 26 Aug 2021 07:35:43 GMT
381
439
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.5..@fluentui/web-components_v1.3.6)
382
440
 
383
441
  ### Patches
@@ -386,7 +444,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
386
444
 
387
445
  ## [1.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.5)
388
446
 
389
- Fri, 20 Aug 2021 07:37:28 GMT
447
+ Fri, 20 Aug 2021 07:37:28 GMT
390
448
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.4..@fluentui/web-components_v1.3.5)
391
449
 
392
450
  ### Patches
@@ -395,7 +453,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
395
453
 
396
454
  ## [1.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.4)
397
455
 
398
- Thu, 19 Aug 2021 07:41:35 GMT
456
+ Thu, 19 Aug 2021 07:41:35 GMT
399
457
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.3..@fluentui/web-components_v1.3.4)
400
458
 
401
459
  ### Patches
@@ -405,7 +463,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
405
463
 
406
464
  ## [1.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.3)
407
465
 
408
- Thu, 05 Aug 2021 07:34:24 GMT
466
+ Thu, 05 Aug 2021 07:34:24 GMT
409
467
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.2..@fluentui/web-components_v1.3.3)
410
468
 
411
469
  ### Patches
@@ -414,7 +472,7 @@ Thu, 05 Aug 2021 07:34:24 GMT
414
472
 
415
473
  ## [1.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.2)
416
474
 
417
- Wed, 04 Aug 2021 07:34:12 GMT
475
+ Wed, 04 Aug 2021 07:34:12 GMT
418
476
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.1..@fluentui/web-components_v1.3.2)
419
477
 
420
478
  ### Patches
@@ -423,7 +481,7 @@ Wed, 04 Aug 2021 07:34:12 GMT
423
481
 
424
482
  ## [1.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.1)
425
483
 
426
- Fri, 30 Jul 2021 07:35:22 GMT
484
+ Fri, 30 Jul 2021 07:35:22 GMT
427
485
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.3.0..@fluentui/web-components_v1.3.1)
428
486
 
429
487
  ### Patches
@@ -432,7 +490,7 @@ Fri, 30 Jul 2021 07:35:22 GMT
432
490
 
433
491
  ## [1.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.3.0)
434
492
 
435
- Mon, 26 Jul 2021 07:37:30 GMT
493
+ Mon, 26 Jul 2021 07:37:30 GMT
436
494
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.2.3..@fluentui/web-components_v1.3.0)
437
495
 
438
496
  ### Minor changes
@@ -441,7 +499,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
441
499
 
442
500
  ## [1.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.2.3)
443
501
 
444
- Fri, 23 Jul 2021 07:38:19 GMT
502
+ Fri, 23 Jul 2021 07:38:19 GMT
445
503
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.2.2..@fluentui/web-components_v1.2.3)
446
504
 
447
505
  ### Patches
@@ -450,7 +508,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
450
508
 
451
509
  ## [1.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.2.2)
452
510
 
453
- Thu, 22 Jul 2021 07:36:55 GMT
511
+ Thu, 22 Jul 2021 07:36:55 GMT
454
512
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.2.1..@fluentui/web-components_v1.2.2)
455
513
 
456
514
  ### Patches
@@ -459,7 +517,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
459
517
 
460
518
  ## [1.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.2.1)
461
519
 
462
- Fri, 16 Jul 2021 22:53:17 GMT
520
+ Fri, 16 Jul 2021 22:53:17 GMT
463
521
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.2.0..@fluentui/web-components_v1.2.1)
464
522
 
465
523
  ### Patches
@@ -469,7 +527,7 @@ Fri, 16 Jul 2021 22:53:17 GMT
469
527
 
470
528
  ## [1.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.2.0)
471
529
 
472
- Fri, 16 Jul 2021 00:35:31 GMT
530
+ Fri, 16 Jul 2021 00:35:31 GMT
473
531
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.1.1..@fluentui/web-components_v1.2.0)
474
532
 
475
533
  ### Minor changes
@@ -483,7 +541,7 @@ Fri, 16 Jul 2021 00:35:31 GMT
483
541
 
484
542
  ## [1.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.1.1)
485
543
 
486
- Thu, 15 Jul 2021 07:36:18 GMT
544
+ Thu, 15 Jul 2021 07:36:18 GMT
487
545
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.1.0..@fluentui/web-components_v1.1.1)
488
546
 
489
547
  ### Patches
@@ -492,7 +550,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
492
550
 
493
551
  ## [1.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.1.0)
494
552
 
495
- Tue, 13 Jul 2021 22:32:58 GMT
553
+ Tue, 13 Jul 2021 22:32:58 GMT
496
554
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.0.2..@fluentui/web-components_v1.1.0)
497
555
 
498
556
  ### Minor changes
@@ -502,7 +560,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
502
560
 
503
561
  ## [1.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.0.2)
504
562
 
505
- Fri, 09 Jul 2021 07:39:31 GMT
563
+ Fri, 09 Jul 2021 07:39:31 GMT
506
564
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.0.1..@fluentui/web-components_v1.0.2)
507
565
 
508
566
  ### Patches
@@ -511,7 +569,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
511
569
 
512
570
  ## [1.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.0.1)
513
571
 
514
- Wed, 07 Jul 2021 07:32:54 GMT
572
+ Wed, 07 Jul 2021 07:32:54 GMT
515
573
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v1.0.0..@fluentui/web-components_v1.0.1)
516
574
 
517
575
  ### Patches
@@ -520,7 +578,7 @@ Wed, 07 Jul 2021 07:32:54 GMT
520
578
 
521
579
  ## [1.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v1.0.0)
522
580
 
523
- Fri, 02 Jul 2021 23:15:55 GMT
581
+ Fri, 02 Jul 2021 23:15:55 GMT
524
582
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.22.1..@fluentui/web-components_v1.0.0)
525
583
 
526
584
  ### Major changes
@@ -553,7 +611,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
553
611
 
554
612
  ## [0.22.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.22.1)
555
613
 
556
- Tue, 08 Jun 2021 07:32:44 GMT
614
+ Tue, 08 Jun 2021 07:32:44 GMT
557
615
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.22.0..@fluentui/web-components_v0.22.1)
558
616
 
559
617
  ### Patches
@@ -562,7 +620,7 @@ Tue, 08 Jun 2021 07:32:44 GMT
562
620
 
563
621
  ## [0.22.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.22.0)
564
622
 
565
- Fri, 04 Jun 2021 07:37:23 GMT
623
+ Fri, 04 Jun 2021 07:37:23 GMT
566
624
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.21.2..@fluentui/web-components_v0.22.0)
567
625
 
568
626
  ### Minor changes
@@ -571,7 +629,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
571
629
 
572
630
  ## [0.21.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.21.2)
573
631
 
574
- Thu, 20 May 2021 07:41:54 GMT
632
+ Thu, 20 May 2021 07:41:54 GMT
575
633
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.21.1..@fluentui/web-components_v0.21.2)
576
634
 
577
635
  ### Patches
@@ -580,7 +638,7 @@ Thu, 20 May 2021 07:41:54 GMT
580
638
 
581
639
  ## [0.21.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.21.1)
582
640
 
583
- Mon, 17 May 2021 07:33:48 GMT
641
+ Mon, 17 May 2021 07:33:48 GMT
584
642
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.21.0..@fluentui/web-components_v0.21.1)
585
643
 
586
644
  ### Patches
@@ -590,7 +648,7 @@ Mon, 17 May 2021 07:33:48 GMT
590
648
 
591
649
  ## [0.21.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.21.0)
592
650
 
593
- Fri, 30 Apr 2021 07:42:23 GMT
651
+ Fri, 30 Apr 2021 07:42:23 GMT
594
652
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.20.3..@fluentui/web-components_v0.21.0)
595
653
 
596
654
  ### Minor changes
@@ -599,7 +657,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
599
657
 
600
658
  ## [0.20.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.20.3)
601
659
 
602
- Wed, 21 Apr 2021 07:31:50 GMT
660
+ Wed, 21 Apr 2021 07:31:50 GMT
603
661
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.20.2..@fluentui/web-components_v0.20.3)
604
662
 
605
663
  ### Patches
@@ -608,7 +666,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
608
666
 
609
667
  ## [0.20.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.20.2)
610
668
 
611
- Thu, 01 Apr 2021 07:33:24 GMT
669
+ Thu, 01 Apr 2021 07:33:24 GMT
612
670
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.20.1..@fluentui/web-components_v0.20.2)
613
671
 
614
672
  ### Patches
@@ -617,7 +675,7 @@ Thu, 01 Apr 2021 07:33:24 GMT
617
675
 
618
676
  ## [0.20.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.20.1)
619
677
 
620
- Mon, 29 Mar 2021 07:30:29 GMT
678
+ Mon, 29 Mar 2021 07:30:29 GMT
621
679
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.20.0..@fluentui/web-components_v0.20.1)
622
680
 
623
681
  ### Patches
@@ -626,7 +684,7 @@ Mon, 29 Mar 2021 07:30:29 GMT
626
684
 
627
685
  ## [0.20.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.20.0)
628
686
 
629
- Fri, 26 Mar 2021 07:32:34 GMT
687
+ Fri, 26 Mar 2021 07:32:34 GMT
630
688
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.19.1..@fluentui/web-components_v0.20.0)
631
689
 
632
690
  ### Minor changes
@@ -635,7 +693,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
635
693
 
636
694
  ## [0.19.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.19.1)
637
695
 
638
- Thu, 25 Mar 2021 07:33:24 GMT
696
+ Thu, 25 Mar 2021 07:33:24 GMT
639
697
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.19.0..@fluentui/web-components_v0.19.1)
640
698
 
641
699
  ### Patches
@@ -644,7 +702,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
644
702
 
645
703
  ## [0.19.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.19.0)
646
704
 
647
- Tue, 23 Mar 2021 07:31:43 GMT
705
+ Tue, 23 Mar 2021 07:31:43 GMT
648
706
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.18.0..@fluentui/web-components_v0.19.0)
649
707
 
650
708
  ### Minor changes
@@ -657,7 +715,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
657
715
 
658
716
  ## [0.18.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.18.0)
659
717
 
660
- Fri, 19 Mar 2021 07:32:43 GMT
718
+ Fri, 19 Mar 2021 07:32:43 GMT
661
719
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.17.0..@fluentui/web-components_v0.18.0)
662
720
 
663
721
  ### Minor changes
@@ -666,7 +724,7 @@ Fri, 19 Mar 2021 07:32:43 GMT
666
724
 
667
725
  ## [0.17.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.17.0)
668
726
 
669
- Thu, 18 Mar 2021 20:15:34 GMT
727
+ Thu, 18 Mar 2021 20:15:34 GMT
670
728
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.16.2..@fluentui/web-components_v0.17.0)
671
729
 
672
730
  ### Minor changes
@@ -679,7 +737,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
679
737
 
680
738
  ## [0.16.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.16.2)
681
739
 
682
- Wed, 17 Mar 2021 07:35:44 GMT
740
+ Wed, 17 Mar 2021 07:35:44 GMT
683
741
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.16.1..@fluentui/web-components_v0.16.2)
684
742
 
685
743
  ### Patches
@@ -688,7 +746,7 @@ Wed, 17 Mar 2021 07:35:44 GMT
688
746
 
689
747
  ## [0.16.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.16.1)
690
748
 
691
- Tue, 16 Mar 2021 07:32:44 GMT
749
+ Tue, 16 Mar 2021 07:32:44 GMT
692
750
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.16.0..@fluentui/web-components_v0.16.1)
693
751
 
694
752
  ### Patches
@@ -697,7 +755,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
697
755
 
698
756
  ## [0.16.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.16.0)
699
757
 
700
- Fri, 12 Mar 2021 20:04:27 GMT
758
+ Fri, 12 Mar 2021 20:04:27 GMT
701
759
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.15.0..@fluentui/web-components_v0.16.0)
702
760
 
703
761
  ### Minor changes
@@ -706,7 +764,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
706
764
 
707
765
  ## [0.15.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.15.0)
708
766
 
709
- Sun, 07 Mar 2021 23:34:51 GMT
767
+ Sun, 07 Mar 2021 23:34:51 GMT
710
768
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.14.2..@fluentui/web-components_v0.15.0)
711
769
 
712
770
  ### Minor changes
@@ -716,7 +774,7 @@ Sun, 07 Mar 2021 23:34:51 GMT
716
774
 
717
775
  ## [0.14.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.14.2)
718
776
 
719
- Thu, 25 Feb 2021 01:15:27 GMT
777
+ Thu, 25 Feb 2021 01:15:27 GMT
720
778
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.14.1..@fluentui/web-components_v0.14.2)
721
779
 
722
780
  ### Patches
@@ -726,7 +784,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
726
784
 
727
785
  ## [0.14.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.14.1)
728
786
 
729
- Mon, 22 Feb 2021 12:26:22 GMT
787
+ Mon, 22 Feb 2021 12:26:22 GMT
730
788
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.14.0..@fluentui/web-components_v0.14.1)
731
789
 
732
790
  ### Patches
@@ -735,7 +793,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
735
793
 
736
794
  ## [0.14.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.14.0)
737
795
 
738
- Fri, 12 Feb 2021 12:26:20 GMT
796
+ Fri, 12 Feb 2021 12:26:20 GMT
739
797
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.13.1..@fluentui/web-components_v0.14.0)
740
798
 
741
799
  ### Minor changes
@@ -744,7 +802,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
744
802
 
745
803
  ## [0.13.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.13.1)
746
804
 
747
- Thu, 11 Feb 2021 02:38:00 GMT
805
+ Thu, 11 Feb 2021 02:38:00 GMT
748
806
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.13.0..@fluentui/web-components_v0.13.1)
749
807
 
750
808
  ### Patches
@@ -753,7 +811,7 @@ Thu, 11 Feb 2021 02:38:00 GMT
753
811
 
754
812
  ## [0.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.13.0)
755
813
 
756
- Tue, 09 Feb 2021 00:56:52 GMT
814
+ Tue, 09 Feb 2021 00:56:52 GMT
757
815
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.12.1..@fluentui/web-components_v0.13.0)
758
816
 
759
817
  ### Minor changes
@@ -766,7 +824,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
766
824
 
767
825
  ## [0.12.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.12.1)
768
826
 
769
- Mon, 08 Feb 2021 12:23:08 GMT
827
+ Mon, 08 Feb 2021 12:23:08 GMT
770
828
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.12.0..@fluentui/web-components_v0.12.1)
771
829
 
772
830
  ### Patches
@@ -775,7 +833,7 @@ Mon, 08 Feb 2021 12:23:08 GMT
775
833
 
776
834
  ## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.12.0)
777
835
 
778
- Wed, 03 Feb 2021 05:51:40 GMT
836
+ Wed, 03 Feb 2021 05:51:40 GMT
779
837
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.11.0..@fluentui/web-components_v0.12.0)
780
838
 
781
839
  ### Minor changes
@@ -784,7 +842,7 @@ Wed, 03 Feb 2021 05:51:40 GMT
784
842
 
785
843
  ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.11.0)
786
844
 
787
- Tue, 26 Jan 2021 12:33:19 GMT
845
+ Tue, 26 Jan 2021 12:33:19 GMT
788
846
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.10.6..@fluentui/web-components_v0.11.0)
789
847
 
790
848
  ### Minor changes
@@ -797,7 +855,7 @@ Tue, 26 Jan 2021 12:33:19 GMT
797
855
 
798
856
  ## [0.10.6](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.10.6)
799
857
 
800
- Thu, 21 Jan 2021 12:36:12 GMT
858
+ Thu, 21 Jan 2021 12:36:12 GMT
801
859
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.10.5..@fluentui/web-components_v0.10.6)
802
860
 
803
861
  ### Patches
@@ -806,7 +864,7 @@ Thu, 21 Jan 2021 12:36:12 GMT
806
864
 
807
865
  ## [0.10.5](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.10.5)
808
866
 
809
- Wed, 20 Jan 2021 12:22:46 GMT
867
+ Wed, 20 Jan 2021 12:22:46 GMT
810
868
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.10.4..@fluentui/web-components_v0.10.5)
811
869
 
812
870
  ### Patches
@@ -815,7 +873,7 @@ Wed, 20 Jan 2021 12:22:46 GMT
815
873
 
816
874
  ## [0.10.4](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.10.4)
817
875
 
818
- Fri, 15 Jan 2021 12:30:40 GMT
876
+ Fri, 15 Jan 2021 12:30:40 GMT
819
877
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.10.3..@fluentui/web-components_v0.10.4)
820
878
 
821
879
  ### Patches
@@ -825,7 +883,7 @@ Fri, 15 Jan 2021 12:30:40 GMT
825
883
 
826
884
  ## [0.10.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.10.3)
827
885
 
828
- Tue, 12 Jan 2021 12:36:40 GMT
886
+ Tue, 12 Jan 2021 12:36:40 GMT
829
887
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.10.2..@fluentui/web-components_v0.10.3)
830
888
 
831
889
  ### Patches
@@ -834,7 +892,7 @@ Tue, 12 Jan 2021 12:36:40 GMT
834
892
 
835
893
  ## [0.10.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.10.2)
836
894
 
837
- Tue, 05 Jan 2021 12:29:33 GMT
895
+ Tue, 05 Jan 2021 12:29:33 GMT
838
896
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.10.1..@fluentui/web-components_v0.10.2)
839
897
 
840
898
  ### Patches
@@ -849,7 +907,7 @@ Tue, 05 Jan 2021 12:29:33 GMT
849
907
 
850
908
  ## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.10.1)
851
909
 
852
- Fri, 18 Dec 2020 12:27:55 GMT
910
+ Fri, 18 Dec 2020 12:27:55 GMT
853
911
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.10.0..@fluentui/web-components_v0.10.1)
854
912
 
855
913
  ### Patches
@@ -858,7 +916,7 @@ Fri, 18 Dec 2020 12:27:55 GMT
858
916
 
859
917
  ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.10.0)
860
918
 
861
- Thu, 17 Dec 2020 12:30:15 GMT
919
+ Thu, 17 Dec 2020 12:30:15 GMT
862
920
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.9.2..@fluentui/web-components_v0.10.0)
863
921
 
864
922
  ### Minor changes
@@ -871,7 +929,7 @@ Thu, 17 Dec 2020 12:30:15 GMT
871
929
 
872
930
  ## [0.9.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.9.2)
873
931
 
874
- Wed, 16 Dec 2020 12:27:05 GMT
932
+ Wed, 16 Dec 2020 12:27:05 GMT
875
933
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.9.1..@fluentui/web-components_v0.9.2)
876
934
 
877
935
  ### Patches
@@ -880,7 +938,7 @@ Wed, 16 Dec 2020 12:27:05 GMT
880
938
 
881
939
  ## [0.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.9.1)
882
940
 
883
- Wed, 09 Dec 2020 12:27:00 GMT
941
+ Wed, 09 Dec 2020 12:27:00 GMT
884
942
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.9.0..@fluentui/web-components_v0.9.1)
885
943
 
886
944
  ### Patches
@@ -889,7 +947,7 @@ Wed, 09 Dec 2020 12:27:00 GMT
889
947
 
890
948
  ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.9.0)
891
949
 
892
- Wed, 02 Dec 2020 12:37:40 GMT
950
+ Wed, 02 Dec 2020 12:37:40 GMT
893
951
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.8.1..@fluentui/web-components_v0.9.0)
894
952
 
895
953
  ### Minor changes
@@ -898,7 +956,7 @@ Wed, 02 Dec 2020 12:37:40 GMT
898
956
 
899
957
  ## [0.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.8.1)
900
958
 
901
- Sat, 21 Nov 2020 02:00:44 GMT
959
+ Sat, 21 Nov 2020 02:00:44 GMT
902
960
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.8.0..@fluentui/web-components_v0.8.1)
903
961
 
904
962
  ### Patches
@@ -910,7 +968,7 @@ Sat, 21 Nov 2020 02:00:44 GMT
910
968
 
911
969
  ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.8.0)
912
970
 
913
- Wed, 18 Nov 2020 12:30:07 GMT
971
+ Wed, 18 Nov 2020 12:30:07 GMT
914
972
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.7.2..@fluentui/web-components_v0.8.0)
915
973
 
916
974
  ### Minor changes
@@ -919,7 +977,7 @@ Wed, 18 Nov 2020 12:30:07 GMT
919
977
 
920
978
  ## [0.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.7.2)
921
979
 
922
- Tue, 17 Nov 2020 12:36:24 GMT
980
+ Tue, 17 Nov 2020 12:36:24 GMT
923
981
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.7.1..@fluentui/web-components_v0.7.2)
924
982
 
925
983
  ### Patches
@@ -928,7 +986,7 @@ Tue, 17 Nov 2020 12:36:24 GMT
928
986
 
929
987
  ## [0.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.7.1)
930
988
 
931
- Thu, 05 Nov 2020 12:29:43 GMT
989
+ Thu, 05 Nov 2020 12:29:43 GMT
932
990
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.7.0..@fluentui/web-components_v0.7.1)
933
991
 
934
992
  ### Patches
@@ -937,7 +995,7 @@ Thu, 05 Nov 2020 12:29:43 GMT
937
995
 
938
996
  ## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v0.7.0)
939
997
 
940
- Thu, 29 Oct 2020 12:34:59 GMT
998
+ Thu, 29 Oct 2020 12:34:59 GMT
941
999
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v0.6.3..@fluentui/web-components_v0.7.0)
942
1000
 
943
1001
  ### Minor changes