@fluentui/web-components 3.0.0-beta.40 → 3.0.0-beta.41

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.
@@ -1 +1 @@
1
- {"version":3,"file":"menu-list.template.js","sourceRoot":"","sources":["../../../src/menu-list/menu-list.template.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,IAAI,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAG7E,MAAM,UAAU,YAAY;IAC1B,OAAO,IAAI,CAAG;;cAEF,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;;kBAE1D,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,KAAsB,CAAC;mBACtD,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,KAAmB,CAAC;;cAEtD,OAAO,CAAC,OAAO,CAAC;;GAE3B,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,MAAM,QAAQ,GAAkC,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"menu-list.template.js","sourceRoot":"","sources":["../../../src/menu-list/menu-list.template.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,IAAI,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAG7E,MAAM,UAAU,YAAY;IAC1B,OAAO,IAAI,CAAG;;cAEF,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;kBAC1D,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,KAAsB,CAAC;mBACtD,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,KAAmB,CAAC;;cAEtD,OAAO,CAAC,OAAO,CAAC;;GAE3B,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,MAAM,QAAQ,GAAkC,YAAY,EAAE,CAAC"}
@@ -4827,6 +4827,24 @@ export declare class Drawer extends FASTElement {
4827
4827
  clickHandler(event: Event): boolean;
4828
4828
  }
4829
4829
 
4830
+ export declare class DrawerBody extends FASTElement {
4831
+ }
4832
+
4833
+ /**
4834
+ *
4835
+ * @public
4836
+ * @remarks
4837
+ * HTML Element: <fluent-drawer>
4838
+ */
4839
+ export declare const DrawerBodyDefinition: FASTElementDefinition<typeof DrawerBody>;
4840
+
4841
+ /** Drawer styles
4842
+ * @public
4843
+ */
4844
+ export declare const DrawerBodyStyles: ElementStyles;
4845
+
4846
+ export declare const DrawerBodyTemplate: ElementViewTemplate<DrawerBody>;
4847
+
4830
4848
  /**
4831
4849
  *
4832
4850
  * @public
@@ -6095,6 +6113,12 @@ export declare const MenuDefinition: FASTElementDefinition<typeof Menu>;
6095
6113
  * @public
6096
6114
  */
6097
6115
  export declare class MenuItem extends FASTElement {
6116
+ /**
6117
+ * The internal {@link https://developer.mozilla.org/docs/Web/API/ElementInternals | `ElementInternals`} instance for the component.
6118
+ *
6119
+ * @internal
6120
+ */
6121
+ elementInternals: ElementInternals;
6098
6122
  /**
6099
6123
  * The disabled state of the element.
6100
6124
  *
@@ -6103,6 +6127,12 @@ export declare class MenuItem extends FASTElement {
6103
6127
  * HTML Attribute: disabled
6104
6128
  */
6105
6129
  disabled: boolean;
6130
+ /**
6131
+ * Handles changes to disabled attribute custom states and element internals
6132
+ * @param prev - the previous state
6133
+ * @param next - the next state
6134
+ */
6135
+ disabledChanged(prev: boolean | undefined, next: boolean | undefined): void;
6106
6136
  /**
6107
6137
  * The role of the element.
6108
6138
  *
@@ -6111,6 +6141,12 @@ export declare class MenuItem extends FASTElement {
6111
6141
  * HTML Attribute: role
6112
6142
  */
6113
6143
  role: MenuItemRole;
6144
+ /**
6145
+ * Handles changes to role attribute element internals properties
6146
+ * @param prev - the previous state
6147
+ * @param next - the next state
6148
+ */
6149
+ roleChanged(prev: MenuItemRole | undefined, next: MenuItemRole | undefined): void;
6114
6150
  /**
6115
6151
  * The checked value of the element.
6116
6152
  *
@@ -6119,7 +6155,12 @@ export declare class MenuItem extends FASTElement {
6119
6155
  * HTML Attribute: checked
6120
6156
  */
6121
6157
  checked: boolean;
6122
- protected checkedChanged(oldValue: boolean, newValue: boolean): void;
6158
+ /**
6159
+ * Handles changes to checked attribute custom states and element internals
6160
+ * @param prev - the previous state
6161
+ * @param next - the next state
6162
+ */
6163
+ protected checkedChanged(prev: boolean, next: boolean): void;
6123
6164
  /**
6124
6165
  * The hidden attribute.
6125
6166
  *
@@ -6144,6 +6185,7 @@ export declare class MenuItem extends FASTElement {
6144
6185
  * @internal
6145
6186
  */
6146
6187
  submenu: HTMLElement | undefined;
6188
+ connectedCallback(): void;
6147
6189
  /**
6148
6190
  * @internal
6149
6191
  */
@@ -6244,6 +6286,12 @@ export declare const MenuItemTemplate: ElementViewTemplate<MenuItem>;
6244
6286
  * @public
6245
6287
  */
6246
6288
  export declare class MenuList extends FASTElement {
6289
+ /**
6290
+ * The internal {@link https://developer.mozilla.org/docs/Web/API/ElementInternals | `ElementInternals`} instance for the component.
6291
+ *
6292
+ * @internal
6293
+ */
6294
+ elementInternals: ElementInternals;
6247
6295
  /**
6248
6296
  * @internal
6249
6297
  */
@@ -6256,6 +6304,7 @@ export declare class MenuList extends FASTElement {
6256
6304
  */
6257
6305
  private focusIndex;
6258
6306
  private static focusableElementRoles;
6307
+ constructor();
6259
6308
  /**
6260
6309
  * @internal
6261
6310
  */