@fluentui/web-components 2.3.0 → 2.3.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.
- package/CHANGELOG.json +24 -1
- package/CHANGELOG.md +11 -2
- package/dist/dts/custom-elements.d.ts +21 -20
- package/dist/fluent-web-components.api.json +20 -20
- package/dist/web-components.d.ts +16 -16
- package/docs/api-report.md +23 -23
- package/package.json +2 -2
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,30 @@
|
|
|
2
2
|
"name": "@fluentui/web-components",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Mon, 07 Mar 2022 07:39:50 GMT",
|
|
6
|
+
"tag": "@fluentui/web-components_v2.3.1",
|
|
7
|
+
"version": "2.3.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"author": "chhol@microsoft.com",
|
|
12
|
+
"package": "@fluentui/web-components",
|
|
13
|
+
"commit": "415b189f76b7f5bca11ebc62d3a6855c01b59c53",
|
|
14
|
+
"comment": "update karma to latest stable version for web components"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"patch": [
|
|
18
|
+
{
|
|
19
|
+
"author": "john.kreitlow@microsoft.com",
|
|
20
|
+
"package": "@fluentui/web-components",
|
|
21
|
+
"commit": "9d0611016f1e6f5a39b105df1d6e85beecb1e469",
|
|
22
|
+
"comment": "fix d.ts errors generated by api-extractor"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"date": "Tue, 01 Mar 2022 07:23:43 GMT",
|
|
6
29
|
"tag": "@fluentui/web-components_v2.3.0",
|
|
7
30
|
"version": "2.3.0",
|
|
8
31
|
"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 Mon, 07 Mar 2022 07:39:50 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [2.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.3.1)
|
|
8
|
+
|
|
9
|
+
Mon, 07 Mar 2022 07:39:50 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.3.0..@fluentui/web-components_v2.3.1)
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- fix d.ts errors generated by api-extractor ([PR #21945](https://github.com/microsoft/fluentui/pull/21945) by john.kreitlow@microsoft.com)
|
|
15
|
+
|
|
7
16
|
## [2.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.3.0)
|
|
8
17
|
|
|
9
|
-
Tue, 01 Mar 2022 07:
|
|
18
|
+
Tue, 01 Mar 2022 07:23:43 GMT
|
|
10
19
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.2.3..@fluentui/web-components_v2.3.0)
|
|
11
20
|
|
|
12
21
|
### Minor changes
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Accordion, AnchoredRegion, Breadcrumb, DataGrid, Dialog, Divider, ListboxOption, RadioGroup, Skeleton, SliderLabel, Tabs, TextArea, TextField, TreeView } from '@microsoft/fast-foundation';
|
|
1
2
|
/**
|
|
2
3
|
* Export all custom element definitions
|
|
3
4
|
*/
|
|
@@ -46,19 +47,19 @@ export { fluentAccordion, fluentAccordionItem, fluentAnchor, fluentAnchoredRegio
|
|
|
46
47
|
* @public
|
|
47
48
|
*/
|
|
48
49
|
export declare const allComponents: {
|
|
49
|
-
fluentAccordion: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
50
|
+
fluentAccordion: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof Accordion>;
|
|
50
51
|
fluentAccordionItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").AccordionItemOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").AccordionItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
51
52
|
fluentAnchor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./anchor/index").Anchor>;
|
|
52
|
-
fluentAnchoredRegion: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
53
|
+
fluentAnchoredRegion: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof AnchoredRegion>;
|
|
53
54
|
fluentBadge: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./badge/index").Badge>;
|
|
54
|
-
fluentBreadcrumb: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
55
|
+
fluentBreadcrumb: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof Breadcrumb>;
|
|
55
56
|
fluentBreadcrumbItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").BreadcrumbItemOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").BreadcrumbItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
56
57
|
fluentButton: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./button/index").Button>;
|
|
57
58
|
fluentCalendar: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").CalendarOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").CalendarOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
58
59
|
fluentCard: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./card/index").Card>;
|
|
59
60
|
fluentCheckbox: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").CheckboxOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").CheckboxOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
60
61
|
fluentCombobox: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").ComboboxOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").ComboboxOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
61
|
-
fluentDataGrid: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
62
|
+
fluentDataGrid: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof DataGrid>;
|
|
62
63
|
fluentDataGridCell: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("@microsoft/fast-foundation").DataGridCell>;
|
|
63
64
|
fluentDataGridRow: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("@microsoft/fast-foundation").DataGridRow>;
|
|
64
65
|
fluentDesignSystemProvider: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
@@ -70,40 +71,40 @@ export declare const allComponents: {
|
|
|
70
71
|
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
71
72
|
styles: import("@microsoft/fast-element").ElementStyles;
|
|
72
73
|
}, typeof import("./design-system-provider/index").DesignSystemProvider>;
|
|
73
|
-
fluentDialog: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
74
|
-
fluentDivider: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
74
|
+
fluentDialog: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof Dialog>;
|
|
75
|
+
fluentDivider: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof Divider>;
|
|
75
76
|
fluentFlipper: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FlipperOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FlipperOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
76
77
|
fluentHorizontalScroll: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").HorizontalScrollOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").HorizontalScrollOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
77
78
|
fluentListbox: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./listbox/index").Listbox>;
|
|
78
|
-
fluentOption: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
79
|
+
fluentOption: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof ListboxOption>;
|
|
79
80
|
fluentMenu: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./menu/index").Menu>;
|
|
80
81
|
fluentMenuItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").MenuItemOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").MenuItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
81
82
|
fluentNumberField: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").NumberFieldOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").NumberFieldOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
82
83
|
fluentProgress: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").ProgressOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").ProgressOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
83
84
|
fluentProgressRing: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").ProgressRingOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").ProgressRingOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
84
85
|
fluentRadio: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").RadioOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").RadioOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
85
|
-
fluentRadioGroup: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
86
|
+
fluentRadioGroup: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof RadioGroup>;
|
|
86
87
|
fluentSearch: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").SearchOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").SearchOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
87
88
|
fluentSelect: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").SelectOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").SelectOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
88
|
-
fluentSkeleton: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
89
|
+
fluentSkeleton: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof Skeleton>;
|
|
89
90
|
fluentSlider: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").SliderOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").SliderOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
90
|
-
fluentSliderLabel: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
91
|
+
fluentSliderLabel: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof SliderLabel>;
|
|
91
92
|
fluentSwitch: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").SwitchOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").SwitchOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
92
|
-
fluentTabs: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
93
|
+
fluentTabs: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof Tabs>;
|
|
93
94
|
fluentTab: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("@microsoft/fast-foundation").Tab>;
|
|
94
95
|
fluentTabPanel: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("@microsoft/fast-foundation").TabPanel>;
|
|
95
96
|
fluentTextArea: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
96
97
|
baseName: string;
|
|
97
|
-
baseClass: typeof
|
|
98
|
-
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<
|
|
98
|
+
baseClass: typeof TextArea;
|
|
99
|
+
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<TextArea, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>;
|
|
99
100
|
styles: (context: any, definition: any) => import("@microsoft/fast-element").ElementStyles;
|
|
100
101
|
shadowOptions: {
|
|
101
102
|
delegatesFocus: true;
|
|
102
103
|
};
|
|
103
104
|
}> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
104
105
|
baseName: string;
|
|
105
|
-
baseClass: typeof
|
|
106
|
-
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<
|
|
106
|
+
baseClass: typeof TextArea;
|
|
107
|
+
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<TextArea, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>;
|
|
107
108
|
styles: (context: any, definition: any) => import("@microsoft/fast-element").ElementStyles;
|
|
108
109
|
shadowOptions: {
|
|
109
110
|
delegatesFocus: true;
|
|
@@ -111,16 +112,16 @@ export declare const allComponents: {
|
|
|
111
112
|
}, typeof import("./text-area/index").TextArea>;
|
|
112
113
|
fluentTextField: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
113
114
|
baseName: string;
|
|
114
|
-
baseClass: typeof
|
|
115
|
-
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<
|
|
115
|
+
baseClass: typeof TextField;
|
|
116
|
+
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<TextField, any>, import("@microsoft/fast-foundation").TextFieldOptions>;
|
|
116
117
|
styles: (context: any, definition: any) => import("@microsoft/fast-element").ElementStyles;
|
|
117
118
|
shadowOptions: {
|
|
118
119
|
delegatesFocus: true;
|
|
119
120
|
};
|
|
120
121
|
}> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
121
122
|
baseName: string;
|
|
122
|
-
baseClass: typeof
|
|
123
|
-
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<
|
|
123
|
+
baseClass: typeof TextField;
|
|
124
|
+
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<TextField, any>, import("@microsoft/fast-foundation").TextFieldOptions>;
|
|
124
125
|
styles: (context: any, definition: any) => import("@microsoft/fast-element").ElementStyles;
|
|
125
126
|
shadowOptions: {
|
|
126
127
|
delegatesFocus: true;
|
|
@@ -128,7 +129,7 @@ export declare const allComponents: {
|
|
|
128
129
|
}, typeof import("./text-field/index").TextField>;
|
|
129
130
|
fluentToolbar: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./toolbar/index").Toolbar>;
|
|
130
131
|
fluentTooltip: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof import("./tooltip/index").Tooltip>;
|
|
131
|
-
fluentTreeView: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof
|
|
132
|
+
fluentTreeView: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").FoundationElementDefinition, typeof TreeView>;
|
|
132
133
|
fluentTreeItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<import("@microsoft/fast-foundation").TreeItemOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<import("@microsoft/fast-foundation").TreeItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
133
134
|
register(container?: Container | undefined, ...rest: any[]): void;
|
|
134
135
|
};
|
|
@@ -1246,7 +1246,7 @@
|
|
|
1246
1246
|
},
|
|
1247
1247
|
{
|
|
1248
1248
|
"kind": "Content",
|
|
1249
|
-
"text": ", typeof
|
|
1249
|
+
"text": ", typeof "
|
|
1250
1250
|
},
|
|
1251
1251
|
{
|
|
1252
1252
|
"kind": "Reference",
|
|
@@ -1390,7 +1390,7 @@
|
|
|
1390
1390
|
},
|
|
1391
1391
|
{
|
|
1392
1392
|
"kind": "Content",
|
|
1393
|
-
"text": ", typeof
|
|
1393
|
+
"text": ", typeof "
|
|
1394
1394
|
},
|
|
1395
1395
|
{
|
|
1396
1396
|
"kind": "Reference",
|
|
@@ -1480,7 +1480,7 @@
|
|
|
1480
1480
|
},
|
|
1481
1481
|
{
|
|
1482
1482
|
"kind": "Content",
|
|
1483
|
-
"text": ", typeof
|
|
1483
|
+
"text": ", typeof "
|
|
1484
1484
|
},
|
|
1485
1485
|
{
|
|
1486
1486
|
"kind": "Reference",
|
|
@@ -1831,7 +1831,7 @@
|
|
|
1831
1831
|
},
|
|
1832
1832
|
{
|
|
1833
1833
|
"kind": "Content",
|
|
1834
|
-
"text": ", typeof
|
|
1834
|
+
"text": ", typeof "
|
|
1835
1835
|
},
|
|
1836
1836
|
{
|
|
1837
1837
|
"kind": "Reference",
|
|
@@ -2029,7 +2029,7 @@
|
|
|
2029
2029
|
},
|
|
2030
2030
|
{
|
|
2031
2031
|
"kind": "Content",
|
|
2032
|
-
"text": ", typeof
|
|
2032
|
+
"text": ", typeof "
|
|
2033
2033
|
},
|
|
2034
2034
|
{
|
|
2035
2035
|
"kind": "Reference",
|
|
@@ -2074,7 +2074,7 @@
|
|
|
2074
2074
|
},
|
|
2075
2075
|
{
|
|
2076
2076
|
"kind": "Content",
|
|
2077
|
-
"text": ", typeof
|
|
2077
|
+
"text": ", typeof "
|
|
2078
2078
|
},
|
|
2079
2079
|
{
|
|
2080
2080
|
"kind": "Reference",
|
|
@@ -2272,7 +2272,7 @@
|
|
|
2272
2272
|
},
|
|
2273
2273
|
{
|
|
2274
2274
|
"kind": "Content",
|
|
2275
|
-
"text": ", typeof
|
|
2275
|
+
"text": ", typeof "
|
|
2276
2276
|
},
|
|
2277
2277
|
{
|
|
2278
2278
|
"kind": "Reference",
|
|
@@ -2632,7 +2632,7 @@
|
|
|
2632
2632
|
},
|
|
2633
2633
|
{
|
|
2634
2634
|
"kind": "Content",
|
|
2635
|
-
"text": ", typeof
|
|
2635
|
+
"text": ", typeof "
|
|
2636
2636
|
},
|
|
2637
2637
|
{
|
|
2638
2638
|
"kind": "Reference",
|
|
@@ -2785,7 +2785,7 @@
|
|
|
2785
2785
|
},
|
|
2786
2786
|
{
|
|
2787
2787
|
"kind": "Content",
|
|
2788
|
-
"text": ", typeof
|
|
2788
|
+
"text": ", typeof "
|
|
2789
2789
|
},
|
|
2790
2790
|
{
|
|
2791
2791
|
"kind": "Reference",
|
|
@@ -2884,7 +2884,7 @@
|
|
|
2884
2884
|
},
|
|
2885
2885
|
{
|
|
2886
2886
|
"kind": "Content",
|
|
2887
|
-
"text": ", typeof
|
|
2887
|
+
"text": ", typeof "
|
|
2888
2888
|
},
|
|
2889
2889
|
{
|
|
2890
2890
|
"kind": "Reference",
|
|
@@ -2983,7 +2983,7 @@
|
|
|
2983
2983
|
},
|
|
2984
2984
|
{
|
|
2985
2985
|
"kind": "Content",
|
|
2986
|
-
"text": ", typeof
|
|
2986
|
+
"text": ", typeof "
|
|
2987
2987
|
},
|
|
2988
2988
|
{
|
|
2989
2989
|
"kind": "Reference",
|
|
@@ -3091,7 +3091,7 @@
|
|
|
3091
3091
|
},
|
|
3092
3092
|
{
|
|
3093
3093
|
"kind": "Content",
|
|
3094
|
-
"text": "<{\n baseName: string;\n baseClass: typeof
|
|
3094
|
+
"text": "<{\n baseName: string;\n baseClass: typeof "
|
|
3095
3095
|
},
|
|
3096
3096
|
{
|
|
3097
3097
|
"kind": "Reference",
|
|
@@ -3118,7 +3118,7 @@
|
|
|
3118
3118
|
},
|
|
3119
3119
|
{
|
|
3120
3120
|
"kind": "Content",
|
|
3121
|
-
"text": "<
|
|
3121
|
+
"text": "<"
|
|
3122
3122
|
},
|
|
3123
3123
|
{
|
|
3124
3124
|
"kind": "Reference",
|
|
@@ -3154,7 +3154,7 @@
|
|
|
3154
3154
|
},
|
|
3155
3155
|
{
|
|
3156
3156
|
"kind": "Content",
|
|
3157
|
-
"text": "<{\n baseName: string;\n baseClass: typeof
|
|
3157
|
+
"text": "<{\n baseName: string;\n baseClass: typeof "
|
|
3158
3158
|
},
|
|
3159
3159
|
{
|
|
3160
3160
|
"kind": "Reference",
|
|
@@ -3181,7 +3181,7 @@
|
|
|
3181
3181
|
},
|
|
3182
3182
|
{
|
|
3183
3183
|
"kind": "Content",
|
|
3184
|
-
"text": "<
|
|
3184
|
+
"text": "<"
|
|
3185
3185
|
},
|
|
3186
3186
|
{
|
|
3187
3187
|
"kind": "Reference",
|
|
@@ -3226,7 +3226,7 @@
|
|
|
3226
3226
|
},
|
|
3227
3227
|
{
|
|
3228
3228
|
"kind": "Content",
|
|
3229
|
-
"text": "<{\n baseName: string;\n baseClass: typeof
|
|
3229
|
+
"text": "<{\n baseName: string;\n baseClass: typeof "
|
|
3230
3230
|
},
|
|
3231
3231
|
{
|
|
3232
3232
|
"kind": "Reference",
|
|
@@ -3253,7 +3253,7 @@
|
|
|
3253
3253
|
},
|
|
3254
3254
|
{
|
|
3255
3255
|
"kind": "Content",
|
|
3256
|
-
"text": "<
|
|
3256
|
+
"text": "<"
|
|
3257
3257
|
},
|
|
3258
3258
|
{
|
|
3259
3259
|
"kind": "Reference",
|
|
@@ -3289,7 +3289,7 @@
|
|
|
3289
3289
|
},
|
|
3290
3290
|
{
|
|
3291
3291
|
"kind": "Content",
|
|
3292
|
-
"text": "<{\n baseName: string;\n baseClass: typeof
|
|
3292
|
+
"text": "<{\n baseName: string;\n baseClass: typeof "
|
|
3293
3293
|
},
|
|
3294
3294
|
{
|
|
3295
3295
|
"kind": "Reference",
|
|
@@ -3316,7 +3316,7 @@
|
|
|
3316
3316
|
},
|
|
3317
3317
|
{
|
|
3318
3318
|
"kind": "Content",
|
|
3319
|
-
"text": "<
|
|
3319
|
+
"text": "<"
|
|
3320
3320
|
},
|
|
3321
3321
|
{
|
|
3322
3322
|
"kind": "Reference",
|
|
@@ -3478,7 +3478,7 @@
|
|
|
3478
3478
|
},
|
|
3479
3479
|
{
|
|
3480
3480
|
"kind": "Content",
|
|
3481
|
-
"text": ", typeof
|
|
3481
|
+
"text": ", typeof "
|
|
3482
3482
|
},
|
|
3483
3483
|
{
|
|
3484
3484
|
"kind": "Reference",
|
package/dist/web-components.d.ts
CHANGED
|
@@ -181,19 +181,19 @@ export declare const accordionStyles: (context: ElementDefinitionContext, defini
|
|
|
181
181
|
* @public
|
|
182
182
|
*/
|
|
183
183
|
export declare const allComponents: {
|
|
184
|
-
fluentAccordion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Accordion>;
|
|
184
|
+
fluentAccordion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Accordion>;
|
|
185
185
|
fluentAccordionItem: (overrideDefinition?: OverrideFoundationElementDefinition<AccordionItemOptions> | undefined) => FoundationElementRegistry<AccordionItemOptions, Constructable<FoundationElement>>;
|
|
186
186
|
fluentAnchor: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Anchor>;
|
|
187
|
-
fluentAnchoredRegion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, AnchoredRegion>;
|
|
187
|
+
fluentAnchoredRegion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof AnchoredRegion>;
|
|
188
188
|
fluentBadge: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Badge>;
|
|
189
|
-
fluentBreadcrumb: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Breadcrumb>;
|
|
189
|
+
fluentBreadcrumb: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Breadcrumb>;
|
|
190
190
|
fluentBreadcrumbItem: (overrideDefinition?: OverrideFoundationElementDefinition<BreadcrumbItemOptions> | undefined) => FoundationElementRegistry<BreadcrumbItemOptions, Constructable<FoundationElement>>;
|
|
191
191
|
fluentButton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Button>;
|
|
192
192
|
fluentCalendar: (overrideDefinition?: OverrideFoundationElementDefinition<CalendarOptions> | undefined) => FoundationElementRegistry<CalendarOptions, Constructable<FoundationElement>>;
|
|
193
193
|
fluentCard: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Card>;
|
|
194
194
|
fluentCheckbox: (overrideDefinition?: OverrideFoundationElementDefinition<CheckboxOptions> | undefined) => FoundationElementRegistry<CheckboxOptions, Constructable<FoundationElement>>;
|
|
195
195
|
fluentCombobox: (overrideDefinition?: OverrideFoundationElementDefinition<ComboboxOptions> | undefined) => FoundationElementRegistry<ComboboxOptions, Constructable<FoundationElement>>;
|
|
196
|
-
fluentDataGrid: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGrid>;
|
|
196
|
+
fluentDataGrid: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof DataGrid>;
|
|
197
197
|
fluentDataGridCell: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGridCell>;
|
|
198
198
|
fluentDataGridRow: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGridRow>;
|
|
199
199
|
fluentDesignSystemProvider: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
@@ -205,31 +205,31 @@ export declare const allComponents: {
|
|
|
205
205
|
template: ViewTemplate<any, any>;
|
|
206
206
|
styles: ElementStyles;
|
|
207
207
|
}, DesignSystemProvider>;
|
|
208
|
-
fluentDialog: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Dialog>;
|
|
209
|
-
fluentDivider: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Divider>;
|
|
208
|
+
fluentDialog: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Dialog>;
|
|
209
|
+
fluentDivider: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Divider>;
|
|
210
210
|
fluentFlipper: (overrideDefinition?: OverrideFoundationElementDefinition<FlipperOptions> | undefined) => FoundationElementRegistry<FlipperOptions, Constructable<FoundationElement>>;
|
|
211
211
|
fluentHorizontalScroll: (overrideDefinition?: OverrideFoundationElementDefinition<HorizontalScrollOptions> | undefined) => FoundationElementRegistry<HorizontalScrollOptions, Constructable<FoundationElement>>;
|
|
212
212
|
fluentListbox: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Listbox>;
|
|
213
|
-
fluentOption: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, ListboxOption>;
|
|
213
|
+
fluentOption: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof ListboxOption>;
|
|
214
214
|
fluentMenu: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Menu>;
|
|
215
215
|
fluentMenuItem: (overrideDefinition?: OverrideFoundationElementDefinition<MenuItemOptions> | undefined) => FoundationElementRegistry<MenuItemOptions, Constructable<FoundationElement>>;
|
|
216
216
|
fluentNumberField: (overrideDefinition?: OverrideFoundationElementDefinition<NumberFieldOptions> | undefined) => FoundationElementRegistry<NumberFieldOptions, Constructable<FoundationElement>>;
|
|
217
217
|
fluentProgress: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressOptions> | undefined) => FoundationElementRegistry<ProgressOptions, Constructable<FoundationElement>>;
|
|
218
218
|
fluentProgressRing: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressRingOptions> | undefined) => FoundationElementRegistry<ProgressRingOptions, Constructable<FoundationElement>>;
|
|
219
219
|
fluentRadio: (overrideDefinition?: OverrideFoundationElementDefinition<RadioOptions> | undefined) => FoundationElementRegistry<RadioOptions, Constructable<FoundationElement>>;
|
|
220
|
-
fluentRadioGroup: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, RadioGroup>;
|
|
220
|
+
fluentRadioGroup: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof RadioGroup>;
|
|
221
221
|
fluentSearch: (overrideDefinition?: OverrideFoundationElementDefinition<SearchOptions> | undefined) => FoundationElementRegistry<SearchOptions, Constructable<FoundationElement>>;
|
|
222
222
|
fluentSelect: (overrideDefinition?: OverrideFoundationElementDefinition<SelectOptions> | undefined) => FoundationElementRegistry<SelectOptions, Constructable<FoundationElement>>;
|
|
223
|
-
fluentSkeleton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Skeleton>;
|
|
223
|
+
fluentSkeleton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Skeleton>;
|
|
224
224
|
fluentSlider: (overrideDefinition?: OverrideFoundationElementDefinition<SliderOptions> | undefined) => FoundationElementRegistry<SliderOptions, Constructable<FoundationElement>>;
|
|
225
|
-
fluentSliderLabel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, SliderLabel>;
|
|
225
|
+
fluentSliderLabel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof SliderLabel>;
|
|
226
226
|
fluentSwitch: (overrideDefinition?: OverrideFoundationElementDefinition<SwitchOptions> | undefined) => FoundationElementRegistry<SwitchOptions, Constructable<FoundationElement>>;
|
|
227
|
-
fluentTabs: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tabs>;
|
|
227
|
+
fluentTabs: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Tabs>;
|
|
228
228
|
fluentTab: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tab>;
|
|
229
229
|
fluentTabPanel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TabPanel>;
|
|
230
230
|
fluentTextArea: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
231
231
|
baseName: string;
|
|
232
|
-
baseClass: TextArea_2;
|
|
232
|
+
baseClass: typeof TextArea_2;
|
|
233
233
|
template: FoundationElementTemplate<ViewTemplate<TextArea_2, any>, FoundationElementDefinition>;
|
|
234
234
|
styles: (context: any, definition: any) => ElementStyles;
|
|
235
235
|
shadowOptions: {
|
|
@@ -237,7 +237,7 @@ export declare const allComponents: {
|
|
|
237
237
|
};
|
|
238
238
|
}> | undefined) => FoundationElementRegistry< {
|
|
239
239
|
baseName: string;
|
|
240
|
-
baseClass: TextArea_2;
|
|
240
|
+
baseClass: typeof TextArea_2;
|
|
241
241
|
template: FoundationElementTemplate<ViewTemplate<TextArea_2, any>, FoundationElementDefinition>;
|
|
242
242
|
styles: (context: any, definition: any) => ElementStyles;
|
|
243
243
|
shadowOptions: {
|
|
@@ -246,7 +246,7 @@ export declare const allComponents: {
|
|
|
246
246
|
}, TextArea>;
|
|
247
247
|
fluentTextField: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
248
248
|
baseName: string;
|
|
249
|
-
baseClass: TextField_2;
|
|
249
|
+
baseClass: typeof TextField_2;
|
|
250
250
|
template: FoundationElementTemplate<ViewTemplate<TextField_2, any>, TextFieldOptions>;
|
|
251
251
|
styles: (context: any, definition: any) => ElementStyles;
|
|
252
252
|
shadowOptions: {
|
|
@@ -254,7 +254,7 @@ export declare const allComponents: {
|
|
|
254
254
|
};
|
|
255
255
|
}> | undefined) => FoundationElementRegistry< {
|
|
256
256
|
baseName: string;
|
|
257
|
-
baseClass: TextField_2;
|
|
257
|
+
baseClass: typeof TextField_2;
|
|
258
258
|
template: FoundationElementTemplate<ViewTemplate<TextField_2, any>, TextFieldOptions>;
|
|
259
259
|
styles: (context: any, definition: any) => ElementStyles;
|
|
260
260
|
shadowOptions: {
|
|
@@ -263,7 +263,7 @@ export declare const allComponents: {
|
|
|
263
263
|
}, TextField>;
|
|
264
264
|
fluentToolbar: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Toolbar>;
|
|
265
265
|
fluentTooltip: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tooltip>;
|
|
266
|
-
fluentTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TreeView>;
|
|
266
|
+
fluentTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TreeView>;
|
|
267
267
|
fluentTreeItem: (overrideDefinition?: OverrideFoundationElementDefinition<TreeItemOptions> | undefined) => FoundationElementRegistry<TreeItemOptions, Constructable<FoundationElement>>;
|
|
268
268
|
register(container?: Container | undefined, ...rest: any[]): void;
|
|
269
269
|
};
|
package/docs/api-report.md
CHANGED
|
@@ -178,19 +178,19 @@ export const accordionStyles: (context: ElementDefinitionContext, definition: Fo
|
|
|
178
178
|
|
|
179
179
|
// @public
|
|
180
180
|
export const allComponents: {
|
|
181
|
-
fluentAccordion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Accordion>;
|
|
181
|
+
fluentAccordion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Accordion>;
|
|
182
182
|
fluentAccordionItem: (overrideDefinition?: OverrideFoundationElementDefinition<AccordionItemOptions> | undefined) => FoundationElementRegistry<AccordionItemOptions, Constructable<FoundationElement>>;
|
|
183
183
|
fluentAnchor: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Anchor>;
|
|
184
|
-
fluentAnchoredRegion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, AnchoredRegion>;
|
|
184
|
+
fluentAnchoredRegion: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof AnchoredRegion>;
|
|
185
185
|
fluentBadge: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Badge>;
|
|
186
|
-
fluentBreadcrumb: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Breadcrumb>;
|
|
186
|
+
fluentBreadcrumb: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Breadcrumb>;
|
|
187
187
|
fluentBreadcrumbItem: (overrideDefinition?: OverrideFoundationElementDefinition<BreadcrumbItemOptions> | undefined) => FoundationElementRegistry<BreadcrumbItemOptions, Constructable<FoundationElement>>;
|
|
188
188
|
fluentButton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Button>;
|
|
189
189
|
fluentCalendar: (overrideDefinition?: OverrideFoundationElementDefinition<CalendarOptions> | undefined) => FoundationElementRegistry<CalendarOptions, Constructable<FoundationElement>>;
|
|
190
190
|
fluentCard: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Card>;
|
|
191
191
|
fluentCheckbox: (overrideDefinition?: OverrideFoundationElementDefinition<CheckboxOptions> | undefined) => FoundationElementRegistry<CheckboxOptions, Constructable<FoundationElement>>;
|
|
192
192
|
fluentCombobox: (overrideDefinition?: OverrideFoundationElementDefinition<ComboboxOptions> | undefined) => FoundationElementRegistry<ComboboxOptions, Constructable<FoundationElement>>;
|
|
193
|
-
fluentDataGrid: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGrid>;
|
|
193
|
+
fluentDataGrid: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof DataGrid>;
|
|
194
194
|
fluentDataGridCell: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGridCell>;
|
|
195
195
|
fluentDataGridRow: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, DataGridRow>;
|
|
196
196
|
fluentDesignSystemProvider: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
@@ -202,31 +202,31 @@ export const allComponents: {
|
|
|
202
202
|
template: ViewTemplate<any, any>;
|
|
203
203
|
styles: ElementStyles;
|
|
204
204
|
}, DesignSystemProvider>;
|
|
205
|
-
fluentDialog: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Dialog>;
|
|
206
|
-
fluentDivider: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Divider>;
|
|
205
|
+
fluentDialog: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Dialog>;
|
|
206
|
+
fluentDivider: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Divider>;
|
|
207
207
|
fluentFlipper: (overrideDefinition?: OverrideFoundationElementDefinition<FlipperOptions> | undefined) => FoundationElementRegistry<FlipperOptions, Constructable<FoundationElement>>;
|
|
208
208
|
fluentHorizontalScroll: (overrideDefinition?: OverrideFoundationElementDefinition<HorizontalScrollOptions> | undefined) => FoundationElementRegistry<HorizontalScrollOptions, Constructable<FoundationElement>>;
|
|
209
209
|
fluentListbox: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Listbox>;
|
|
210
|
-
fluentOption: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, ListboxOption>;
|
|
210
|
+
fluentOption: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof ListboxOption>;
|
|
211
211
|
fluentMenu: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Menu>;
|
|
212
212
|
fluentMenuItem: (overrideDefinition?: OverrideFoundationElementDefinition<MenuItemOptions> | undefined) => FoundationElementRegistry<MenuItemOptions, Constructable<FoundationElement>>;
|
|
213
213
|
fluentNumberField: (overrideDefinition?: OverrideFoundationElementDefinition<NumberFieldOptions> | undefined) => FoundationElementRegistry<NumberFieldOptions, Constructable<FoundationElement>>;
|
|
214
214
|
fluentProgress: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressOptions> | undefined) => FoundationElementRegistry<ProgressOptions, Constructable<FoundationElement>>;
|
|
215
215
|
fluentProgressRing: (overrideDefinition?: OverrideFoundationElementDefinition<ProgressRingOptions> | undefined) => FoundationElementRegistry<ProgressRingOptions, Constructable<FoundationElement>>;
|
|
216
216
|
fluentRadio: (overrideDefinition?: OverrideFoundationElementDefinition<RadioOptions> | undefined) => FoundationElementRegistry<RadioOptions, Constructable<FoundationElement>>;
|
|
217
|
-
fluentRadioGroup: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, RadioGroup>;
|
|
217
|
+
fluentRadioGroup: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof RadioGroup>;
|
|
218
218
|
fluentSearch: (overrideDefinition?: OverrideFoundationElementDefinition<SearchOptions> | undefined) => FoundationElementRegistry<SearchOptions, Constructable<FoundationElement>>;
|
|
219
219
|
fluentSelect: (overrideDefinition?: OverrideFoundationElementDefinition<SelectOptions> | undefined) => FoundationElementRegistry<SelectOptions, Constructable<FoundationElement>>;
|
|
220
|
-
fluentSkeleton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Skeleton>;
|
|
220
|
+
fluentSkeleton: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Skeleton>;
|
|
221
221
|
fluentSlider: (overrideDefinition?: OverrideFoundationElementDefinition<SliderOptions> | undefined) => FoundationElementRegistry<SliderOptions, Constructable<FoundationElement>>;
|
|
222
|
-
fluentSliderLabel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, SliderLabel>;
|
|
222
|
+
fluentSliderLabel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof SliderLabel>;
|
|
223
223
|
fluentSwitch: (overrideDefinition?: OverrideFoundationElementDefinition<SwitchOptions> | undefined) => FoundationElementRegistry<SwitchOptions, Constructable<FoundationElement>>;
|
|
224
|
-
fluentTabs: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tabs>;
|
|
224
|
+
fluentTabs: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof Tabs>;
|
|
225
225
|
fluentTab: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tab>;
|
|
226
226
|
fluentTabPanel: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TabPanel>;
|
|
227
227
|
fluentTextArea: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
228
228
|
baseName: string;
|
|
229
|
-
baseClass: TextArea_2;
|
|
229
|
+
baseClass: typeof TextArea_2;
|
|
230
230
|
template: FoundationElementTemplate<ViewTemplate<TextArea_2, any>, FoundationElementDefinition>;
|
|
231
231
|
styles: (context: any, definition: any) => ElementStyles;
|
|
232
232
|
shadowOptions: {
|
|
@@ -234,7 +234,7 @@ export const allComponents: {
|
|
|
234
234
|
};
|
|
235
235
|
}> | undefined) => FoundationElementRegistry< {
|
|
236
236
|
baseName: string;
|
|
237
|
-
baseClass: TextArea_2;
|
|
237
|
+
baseClass: typeof TextArea_2;
|
|
238
238
|
template: FoundationElementTemplate<ViewTemplate<TextArea_2, any>, FoundationElementDefinition>;
|
|
239
239
|
styles: (context: any, definition: any) => ElementStyles;
|
|
240
240
|
shadowOptions: {
|
|
@@ -243,7 +243,7 @@ export const allComponents: {
|
|
|
243
243
|
}, TextArea>;
|
|
244
244
|
fluentTextField: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
245
245
|
baseName: string;
|
|
246
|
-
baseClass: TextField_2;
|
|
246
|
+
baseClass: typeof TextField_2;
|
|
247
247
|
template: FoundationElementTemplate<ViewTemplate<TextField_2, any>, TextFieldOptions>;
|
|
248
248
|
styles: (context: any, definition: any) => ElementStyles;
|
|
249
249
|
shadowOptions: {
|
|
@@ -251,7 +251,7 @@ export const allComponents: {
|
|
|
251
251
|
};
|
|
252
252
|
}> | undefined) => FoundationElementRegistry< {
|
|
253
253
|
baseName: string;
|
|
254
|
-
baseClass: TextField_2;
|
|
254
|
+
baseClass: typeof TextField_2;
|
|
255
255
|
template: FoundationElementTemplate<ViewTemplate<TextField_2, any>, TextFieldOptions>;
|
|
256
256
|
styles: (context: any, definition: any) => ElementStyles;
|
|
257
257
|
shadowOptions: {
|
|
@@ -260,7 +260,7 @@ export const allComponents: {
|
|
|
260
260
|
}, TextField>;
|
|
261
261
|
fluentToolbar: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Toolbar>;
|
|
262
262
|
fluentTooltip: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, Tooltip>;
|
|
263
|
-
fluentTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, TreeView>;
|
|
263
|
+
fluentTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => FoundationElementRegistry<FoundationElementDefinition, typeof TreeView>;
|
|
264
264
|
fluentTreeItem: (overrideDefinition?: OverrideFoundationElementDefinition<TreeItemOptions> | undefined) => FoundationElementRegistry<TreeItemOptions, Constructable<FoundationElement>>;
|
|
265
265
|
register(container?: Container | undefined, ...rest: any[]): void;
|
|
266
266
|
};
|
|
@@ -1719,13 +1719,13 @@ export const typeRampPlus6LineHeight: CSSDesignToken<string>;
|
|
|
1719
1719
|
//
|
|
1720
1720
|
// dist/dts/color/palette.d.ts:70:5 - (ae-forgotten-export) The symbol "create" needs to be exported by the entry point index.d.ts
|
|
1721
1721
|
// dist/dts/color/palette.d.ts:71:5 - (ae-forgotten-export) The symbol "from" needs to be exported by the entry point index.d.ts
|
|
1722
|
-
// dist/dts/custom-elements.d.ts:
|
|
1723
|
-
// dist/dts/custom-elements.d.ts:
|
|
1724
|
-
// dist/dts/custom-elements.d.ts:
|
|
1725
|
-
// dist/dts/custom-elements.d.ts:
|
|
1726
|
-
// dist/dts/custom-elements.d.ts:
|
|
1727
|
-
// dist/dts/custom-elements.d.ts:
|
|
1728
|
-
// dist/dts/custom-elements.d.ts:
|
|
1722
|
+
// dist/dts/custom-elements.d.ts:52:5 - (ae-incompatible-release-tags) The symbol "fluentAnchor" is marked as @public, but its signature references "Anchor" which is marked as @internal
|
|
1723
|
+
// dist/dts/custom-elements.d.ts:54:5 - (ae-incompatible-release-tags) The symbol "fluentBadge" is marked as @public, but its signature references "Badge" which is marked as @internal
|
|
1724
|
+
// dist/dts/custom-elements.d.ts:57:5 - (ae-incompatible-release-tags) The symbol "fluentButton" is marked as @public, but its signature references "Button" which is marked as @internal
|
|
1725
|
+
// dist/dts/custom-elements.d.ts:96:5 - (ae-incompatible-release-tags) The symbol "fluentTextArea" is marked as @public, but its signature references "TextArea" which is marked as @internal
|
|
1726
|
+
// dist/dts/custom-elements.d.ts:113:5 - (ae-incompatible-release-tags) The symbol "fluentTextField" is marked as @public, but its signature references "TextField" which is marked as @internal
|
|
1727
|
+
// dist/dts/custom-elements.d.ts:130:5 - (ae-incompatible-release-tags) The symbol "fluentToolbar" is marked as @public, but its signature references "Toolbar" which is marked as @internal
|
|
1728
|
+
// dist/dts/custom-elements.d.ts:131:5 - (ae-incompatible-release-tags) The symbol "fluentTooltip" is marked as @public, but its signature references "Tooltip" which is marked as @internal
|
|
1729
1729
|
|
|
1730
1730
|
// (No @packageDocumentation comment for this package)
|
|
1731
1731
|
|
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.3.
|
|
5
|
+
"version": "2.3.1",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Microsoft",
|
|
8
8
|
"url": "https://discord.gg/FcSNfg4"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"istanbul": "^0.4.5",
|
|
62
62
|
"istanbul-instrumenter-loader": "^3.0.1",
|
|
63
63
|
"jsdom-global": "3.0.2",
|
|
64
|
-
"karma": "^
|
|
64
|
+
"karma": "^6.3.0",
|
|
65
65
|
"karma-chrome-launcher": "^3.1.0",
|
|
66
66
|
"karma-coverage": "^2.0.2",
|
|
67
67
|
"karma-coverage-istanbul-reporter": "^3.0.0",
|