@fluentui/web-components 2.5.2 → 2.5.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.
- package/CHANGELOG.json +31 -1
- package/CHANGELOG.md +11 -2
- package/dist/esm/card/card.stories.js +1 -1
- package/dist/esm/data-grid/data-grid.stories.js +1 -1
- package/dist/web-components.js +634 -278
- package/dist/web-components.min.js +222 -222
- package/package.json +5 -5
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,37 @@
|
|
|
2
2
|
"name": "@fluentui/web-components",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Thu, 16 Jun 2022 23:03:03 GMT",
|
|
6
|
+
"tag": "@fluentui/web-components_v2.5.3",
|
|
7
|
+
"version": "2.5.3",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "chhol@microsoft.com",
|
|
12
|
+
"package": "@fluentui/web-components",
|
|
13
|
+
"commit": "5d8b70afcccb439ffb41c4442860b61212da2492",
|
|
14
|
+
"comment": "update to latest stable versions of FAST packages"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Tue, 14 Jun 2022 07:52:10 GMT",
|
|
21
|
+
"tag": "@fluentui/web-components_v2.5.2",
|
|
22
|
+
"version": "2.5.2",
|
|
23
|
+
"comments": {
|
|
24
|
+
"none": [
|
|
25
|
+
{
|
|
26
|
+
"author": "47367562+bheston@users.noreply.github.com",
|
|
27
|
+
"package": "@fluentui/web-components",
|
|
28
|
+
"commit": "71cf20976f873e7aed3abd2aa3daf953d06941f9",
|
|
29
|
+
"comment": "Fixed Storybook loading page name check"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"date": "Tue, 07 Jun 2022 07:48:04 GMT",
|
|
6
36
|
"tag": "@fluentui/web-components_v2.5.2",
|
|
7
37
|
"version": "2.5.2",
|
|
8
38
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
# Change Log - @fluentui/web-components
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 16 Jun 2022 23:03:03 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [2.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.3)
|
|
8
|
+
|
|
9
|
+
Thu, 16 Jun 2022 23:03:03 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.2..@fluentui/web-components_v2.5.3)
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- update to latest stable versions of FAST packages ([PR #23585](https://github.com/microsoft/fluentui/pull/23585) by chhol@microsoft.com)
|
|
15
|
+
|
|
7
16
|
## [2.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.2)
|
|
8
17
|
|
|
9
|
-
Tue, 07 Jun 2022 07:
|
|
18
|
+
Tue, 07 Jun 2022 07:48:04 GMT
|
|
10
19
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.1..@fluentui/web-components_v2.5.2)
|
|
11
20
|
|
|
12
21
|
### Patches
|
|
@@ -4,7 +4,7 @@ import { DesignSystemProvider, StandardLuminance } from '../index-rollup';
|
|
|
4
4
|
import CardTemplate from './fixtures/card.html';
|
|
5
5
|
import './index';
|
|
6
6
|
addons.getChannel().addListener(DOCS_RENDERED, name => {
|
|
7
|
-
if (name.toLowerCase()
|
|
7
|
+
if (name.toLowerCase().includes('card')) {
|
|
8
8
|
const els = document.getElementsByClassName('darkMode');
|
|
9
9
|
for (let i = 0; i < els.length; i++) {
|
|
10
10
|
const el = els[i];
|
|
@@ -40,7 +40,7 @@ const customHeaderCellItemTemplate = html `
|
|
|
40
40
|
></fast-data-grid-header-cell>
|
|
41
41
|
`;
|
|
42
42
|
addons.getChannel().addListener(DOCS_RENDERED, (name) => {
|
|
43
|
-
if (name.toLowerCase().includes('
|
|
43
|
+
if (name.toLowerCase().includes('data-grid')) {
|
|
44
44
|
defaultGridElement = document.getElementById('defaultGrid');
|
|
45
45
|
reset();
|
|
46
46
|
const defaultGridRow = document.getElementById('defaultGridRow');
|