@fluentui/web-components 3.0.0-alpha.15 → 3.0.0-alpha.16
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 +16 -1
- package/CHANGELOG.md +11 -2
- package/package.json +13 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@fluentui/web-components",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Tue, 11 Apr 2023 04:24:52 GMT",
|
|
6
|
+
"tag": "@fluentui/web-components_v3.0.0-alpha.16",
|
|
7
|
+
"version": "3.0.0-alpha.16",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "mibaraka@microsoft.com",
|
|
12
|
+
"package": "@fluentui/web-components",
|
|
13
|
+
"commit": "30b72e9804a37880b4b90c0bcd400635506f300e",
|
|
14
|
+
"comment": "Adding Tabs, Tab and Tab-Panel"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Fri, 07 Apr 2023 04:17:30 GMT",
|
|
6
21
|
"tag": "@fluentui/web-components_v3.0.0-alpha.15",
|
|
7
22
|
"version": "3.0.0-alpha.15",
|
|
8
23
|
"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 Tue, 11 Apr 2023 04:24:52 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [3.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-alpha.16)
|
|
8
|
+
|
|
9
|
+
Tue, 11 Apr 2023 04:24:52 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-alpha.15..@fluentui/web-components_v3.0.0-alpha.16)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- Adding Tabs, Tab and Tab-Panel ([PR #27505](https://github.com/microsoft/fluentui/pull/27505) by mibaraka@microsoft.com)
|
|
15
|
+
|
|
7
16
|
## [3.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-alpha.15)
|
|
8
17
|
|
|
9
|
-
Fri, 07 Apr 2023 04:17:
|
|
18
|
+
Fri, 07 Apr 2023 04:17:30 GMT
|
|
10
19
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-alpha.14..@fluentui/web-components_v3.0.0-alpha.15)
|
|
11
20
|
|
|
12
21
|
### Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@fluentui/web-components",
|
|
3
3
|
"description": "A library of Fluent Web Components",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "3.0.0-alpha.
|
|
5
|
+
"version": "3.0.0-alpha.16",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Microsoft",
|
|
8
8
|
"url": "https://discord.gg/FcSNfg4"
|
|
@@ -80,6 +80,18 @@
|
|
|
80
80
|
"types": "./dist/esm/switch/define.d.ts",
|
|
81
81
|
"default": "./dist/esm/switch/define.js"
|
|
82
82
|
},
|
|
83
|
+
"./tabs": {
|
|
84
|
+
"types": "./dist/esm/tabs/define.d.ts",
|
|
85
|
+
"default": "./dist/esm/tabs/define.js"
|
|
86
|
+
},
|
|
87
|
+
"./tab": {
|
|
88
|
+
"types": "./dist/esm/tab/define.d.ts",
|
|
89
|
+
"default": "./dist/esm/tab/define.js"
|
|
90
|
+
},
|
|
91
|
+
"./tab-panel": {
|
|
92
|
+
"types": "./dist/esm/tab-panel/define.d.ts",
|
|
93
|
+
"default": "./dist/esm/tab-panel/define.js"
|
|
94
|
+
},
|
|
83
95
|
"./text": {
|
|
84
96
|
"types": "./dist/esm/text/define.d.ts",
|
|
85
97
|
"default": "./dist/esm/text/define.js"
|