@fluentui/web-components 2.5.15 → 2.5.17
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 +46 -1
- package/CHANGELOG.md +20 -2
- package/dist/dts/custom-elements.d.ts +1 -1
- package/dist/dts/divider/divider.stories.d.ts +18 -0
- package/dist/dts/text-area/text-area.stories.d.ts +10 -0
- package/dist/esm/design-system-provider/index.js +1 -2
- package/dist/esm/divider/divider.stories.js +23 -1
- package/dist/esm/divider/divider.styles.js +8 -1
- package/dist/esm/text-area/text-area.stories.js +9 -1
- package/dist/esm/text-area/text-area.styles.js +8 -0
- package/dist/fluent-web-components.api.json +607 -85
- package/dist/web-components.d.ts +1 -1
- package/dist/web-components.js +41 -22
- package/dist/web-components.min.js +205 -205
- package/docs/api-report.md +1 -1
- package/package.json +3 -3
- package/project.json +6 -0
package/docs/api-report.md
CHANGED
|
@@ -228,7 +228,7 @@ export const allComponents: {
|
|
|
228
228
|
fluentTooltip: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tooltip>;
|
|
229
229
|
fluentTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TreeView>;
|
|
230
230
|
fluentTreeItem: (overrideDefinition?: OverrideFoundationElementDefinition<TreeItemOptions> | undefined) => FoundationElementRegistry<TreeItemOptions, Constructable<FoundationElement>>;
|
|
231
|
-
register(container?: Container
|
|
231
|
+
register(container?: Container, ...rest: any[]): void;
|
|
232
232
|
};
|
|
233
233
|
|
|
234
234
|
// Warning: (ae-internal-missing-underscore) The name "ambientShadow" should be prefixed with an underscore because the declaration is marked as @internal
|
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": "2.5.
|
|
5
|
+
"version": "2.5.17",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Microsoft",
|
|
8
8
|
"url": "https://discord.gg/FcSNfg4"
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"@microsoft/fast-colors": "^5.3.0",
|
|
76
|
-
"@microsoft/fast-element": "^1.
|
|
77
|
-
"@microsoft/fast-foundation": "^2.
|
|
76
|
+
"@microsoft/fast-element": "^1.12.0",
|
|
77
|
+
"@microsoft/fast-foundation": "^2.49.4",
|
|
78
78
|
"@microsoft/fast-web-utilities": "^5.4.0",
|
|
79
79
|
"tslib": "^2.1.0"
|
|
80
80
|
}
|