@fluentui/web-components 3.0.0-beta.16 → 3.0.0-beta.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.
@@ -17,6 +17,7 @@ import { HTMLDirective } from '@microsoft/fast-element';
17
17
  import { Orientation } from '@microsoft/fast-web-utilities';
18
18
  import type { SyntheticViewTemplate } from '@microsoft/fast-element';
19
19
  import type { Theme } from '@fluentui/tokens';
20
+ import { ViewTemplate } from '@microsoft/fast-element';
20
21
 
21
22
  // @public
22
23
  export class Accordion extends FASTElement {
@@ -2709,8 +2710,11 @@ export const spacingVerticalXXS = "var(--spacingVerticalXXS)";
2709
2710
  export const spacingVerticalXXXL = "var(--spacingVerticalXXXL)";
2710
2711
 
2711
2712
  // @public
2712
- export class Spinner extends BaseProgress {
2713
+ export class Spinner extends FASTElement {
2714
+ constructor();
2713
2715
  appearance?: SpinnerAppearance;
2716
+ // @internal
2717
+ protected elementInternals: ElementInternals;
2714
2718
  size?: SpinnerSize;
2715
2719
  }
2716
2720
 
@@ -2726,11 +2730,6 @@ export type SpinnerAppearance = ValuesOf<typeof SpinnerAppearance>;
2726
2730
  // @public (undocumented)
2727
2731
  export const SpinnerDefinition: FASTElementDefinition<typeof Spinner>;
2728
2732
 
2729
- // @public
2730
- export type SpinnerOptions = {
2731
- indeterminateIndicator?: StaticallyComposableHTML<Spinner>;
2732
- };
2733
-
2734
2733
  // @public
2735
2734
  export const SpinnerSize: {
2736
2735
  readonly tiny: "tiny";
@@ -2749,7 +2748,7 @@ export type SpinnerSize = ValuesOf<typeof SpinnerSize>;
2749
2748
  export const SpinnerStyles: ElementStyles;
2750
2749
 
2751
2750
  // @public (undocumented)
2752
- export const SpinnerTemplate: ElementViewTemplate<Spinner>;
2751
+ export const SpinnerTemplate: ViewTemplate<Spinner, any>;
2753
2752
 
2754
2753
  // @public (undocumented)
2755
2754
  export const strokeWidthThick = "var(--strokeWidthThick)";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fluentui/web-components",
3
3
  "description": "A library of Fluent Web Components",
4
- "version": "3.0.0-beta.16",
4
+ "version": "3.0.0-beta.17",
5
5
  "author": {
6
6
  "name": "Microsoft",
7
7
  "url": "https://discord.gg/FcSNfg4"