@fluentui/web-components 3.0.0-alpha.13 → 3.0.0-alpha.14

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.
Files changed (88) hide show
  1. package/CHANGELOG.json +30 -1
  2. package/CHANGELOG.md +12 -2
  3. package/dist/dts/index.d.ts +4 -0
  4. package/dist/dts/menu-button/define.d.ts +1 -0
  5. package/dist/dts/menu-button/index.d.ts +5 -0
  6. package/dist/dts/menu-button/menu-button.d.ts +7 -0
  7. package/dist/dts/menu-button/menu-button.definition.d.ts +10 -0
  8. package/dist/dts/menu-button/menu-button.options.d.ts +46 -0
  9. package/dist/dts/menu-button/menu-button.template.d.ts +7 -0
  10. package/dist/dts/tab/define.d.ts +1 -0
  11. package/dist/dts/tab/index.d.ts +4 -0
  12. package/dist/dts/tab/tab.d.ts +8 -0
  13. package/dist/dts/tab/tab.definition.d.ts +2 -0
  14. package/dist/dts/tab/tab.styles.d.ts +1 -0
  15. package/dist/dts/tab/tab.template.d.ts +4 -0
  16. package/dist/dts/tab-panel/define.d.ts +1 -0
  17. package/dist/dts/tab-panel/index.d.ts +4 -0
  18. package/dist/dts/tab-panel/tab-panel.d.ts +3 -0
  19. package/dist/dts/tab-panel/tab-panel.definition.d.ts +2 -0
  20. package/dist/dts/tab-panel/tab-panel.styles.d.ts +1 -0
  21. package/dist/dts/tab-panel/tab-panel.template.d.ts +1 -0
  22. package/dist/dts/tabs/define.d.ts +1 -0
  23. package/dist/dts/tabs/index.d.ts +5 -0
  24. package/dist/dts/tabs/tabs.d.ts +88 -0
  25. package/dist/dts/tabs/tabs.definition.d.ts +2 -0
  26. package/dist/dts/tabs/tabs.options.d.ts +14 -0
  27. package/dist/dts/tabs/tabs.styles.d.ts +1 -0
  28. package/dist/dts/tabs/tabs.template.d.ts +1 -0
  29. package/dist/esm/button/button.styles.js +2 -0
  30. package/dist/esm/button/button.styles.js.map +1 -1
  31. package/dist/esm/index.js +4 -0
  32. package/dist/esm/index.js.map +1 -1
  33. package/dist/esm/menu-button/define.js +4 -0
  34. package/dist/esm/menu-button/define.js.map +1 -0
  35. package/dist/esm/menu-button/index.js +6 -0
  36. package/dist/esm/menu-button/index.js.map +1 -0
  37. package/dist/esm/menu-button/menu-button.definition.js +21 -0
  38. package/dist/esm/menu-button/menu-button.definition.js.map +1 -0
  39. package/dist/esm/menu-button/menu-button.js +8 -0
  40. package/dist/esm/menu-button/menu-button.js.map +1 -0
  41. package/dist/esm/menu-button/menu-button.options.js +17 -0
  42. package/dist/esm/menu-button/menu-button.options.js.map +1 -0
  43. package/dist/esm/menu-button/menu-button.template.js +10 -0
  44. package/dist/esm/menu-button/menu-button.template.js.map +1 -0
  45. package/dist/esm/tab/define.js +4 -0
  46. package/dist/esm/tab/define.js.map +1 -0
  47. package/dist/esm/tab/index.js +5 -0
  48. package/dist/esm/tab/index.js.map +1 -0
  49. package/dist/esm/tab/tab.definition.js +10 -0
  50. package/dist/esm/tab/tab.definition.js.map +1 -0
  51. package/dist/esm/tab/tab.js +20 -0
  52. package/dist/esm/tab/tab.js.map +1 -0
  53. package/dist/esm/tab/tab.styles.js +94 -0
  54. package/dist/esm/tab/tab.styles.js.map +1 -0
  55. package/dist/esm/tab/tab.template.js +13 -0
  56. package/dist/esm/tab/tab.template.js.map +1 -0
  57. package/dist/esm/tab-panel/define.js +4 -0
  58. package/dist/esm/tab-panel/define.js.map +1 -0
  59. package/dist/esm/tab-panel/index.js +5 -0
  60. package/dist/esm/tab-panel/index.js.map +1 -0
  61. package/dist/esm/tab-panel/tab-panel.definition.js +10 -0
  62. package/dist/esm/tab-panel/tab-panel.definition.js.map +1 -0
  63. package/dist/esm/tab-panel/tab-panel.js +4 -0
  64. package/dist/esm/tab-panel/tab-panel.js.map +1 -0
  65. package/dist/esm/tab-panel/tab-panel.styles.js +12 -0
  66. package/dist/esm/tab-panel/tab-panel.styles.js.map +1 -0
  67. package/dist/esm/tab-panel/tab-panel.template.js +3 -0
  68. package/dist/esm/tab-panel/tab-panel.template.js.map +1 -0
  69. package/dist/esm/tabs/define.js +4 -0
  70. package/dist/esm/tabs/define.js.map +1 -0
  71. package/dist/esm/tabs/index.js +6 -0
  72. package/dist/esm/tabs/index.js.map +1 -0
  73. package/dist/esm/tabs/tabs.definition.js +10 -0
  74. package/dist/esm/tabs/tabs.definition.js.map +1 -0
  75. package/dist/esm/tabs/tabs.js +158 -0
  76. package/dist/esm/tabs/tabs.js.map +1 -0
  77. package/dist/esm/tabs/tabs.options.js +12 -0
  78. package/dist/esm/tabs/tabs.options.js.map +1 -0
  79. package/dist/esm/tabs/tabs.styles.js +230 -0
  80. package/dist/esm/tabs/tabs.styles.js.map +1 -0
  81. package/dist/esm/tabs/tabs.template.js +3 -0
  82. package/dist/esm/tabs/tabs.template.js.map +1 -0
  83. package/dist/fluent-web-components.api.json +2082 -1054
  84. package/dist/web-components.d.ts +215 -2
  85. package/dist/web-components.js +636 -60
  86. package/dist/web-components.min.js +148 -136
  87. package/docs/api-report.md +121 -3
  88. package/package.json +8 -4
@@ -2530,33 +2530,6 @@
2530
2530
  "endIndex": 2
2531
2531
  }
2532
2532
  },
2533
- {
2534
- "kind": "Variable",
2535
- "canonicalReference": "@fluentui/web-components!ButtonStyles:var",
2536
- "docComment": "",
2537
- "excerptTokens": [
2538
- {
2539
- "kind": "Content",
2540
- "text": "styles: "
2541
- },
2542
- {
2543
- "kind": "Content",
2544
- "text": "import(\"@microsoft/fast-element\")."
2545
- },
2546
- {
2547
- "kind": "Reference",
2548
- "text": "ElementStyles",
2549
- "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
2550
- }
2551
- ],
2552
- "isReadonly": true,
2553
- "releaseTag": "Public",
2554
- "name": "ButtonStyles",
2555
- "variableTypeTokenRange": {
2556
- "startIndex": 1,
2557
- "endIndex": 3
2558
- }
2559
- },
2560
2533
  {
2561
2534
  "kind": "Variable",
2562
2535
  "canonicalReference": "@fluentui/web-components!ButtonTemplate:var",
@@ -14620,17 +14593,17 @@
14620
14593
  },
14621
14594
  {
14622
14595
  "kind": "Class",
14623
- "canonicalReference": "@fluentui/web-components!ProgressBar_2:class",
14624
- "docComment": "/**\n * The base class used for constructing a fluent-progress-bar custom element\n *\n * @public\n */\n",
14596
+ "canonicalReference": "@fluentui/web-components!MenuButton:class",
14597
+ "docComment": "/**\n * The base class used for constructing a fluent-menu-button custom element\n *\n * @public\n */\n",
14625
14598
  "excerptTokens": [
14626
14599
  {
14627
14600
  "kind": "Content",
14628
- "text": "export declare class ProgressBar extends "
14601
+ "text": "export declare class MenuButton extends "
14629
14602
  },
14630
14603
  {
14631
14604
  "kind": "Reference",
14632
- "text": "FASTProgress",
14633
- "canonicalReference": "@microsoft/fast-foundation!FASTProgress:class"
14605
+ "text": "Button",
14606
+ "canonicalReference": "@fluentui/web-components!Button:class"
14634
14607
  },
14635
14608
  {
14636
14609
  "kind": "Content",
@@ -14638,158 +14611,23 @@
14638
14611
  }
14639
14612
  ],
14640
14613
  "releaseTag": "Public",
14641
- "name": "ProgressBar_2",
14614
+ "name": "MenuButton",
14642
14615
  "preserveMemberOrder": false,
14643
- "members": [
14644
- {
14645
- "kind": "Property",
14646
- "canonicalReference": "@fluentui/web-components!ProgressBar_2#shape:member",
14647
- "docComment": "/**\n * The shape of the progress bar\n *\n * @remarks\n *\n * HTML Attribute: shape\n *\n * @public\n */\n",
14648
- "excerptTokens": [
14649
- {
14650
- "kind": "Content",
14651
- "text": "shape?: "
14652
- },
14653
- {
14654
- "kind": "Reference",
14655
- "text": "ProgressBarShape",
14656
- "canonicalReference": "@fluentui/web-components!ProgressBarShape:type"
14657
- },
14658
- {
14659
- "kind": "Content",
14660
- "text": ";"
14661
- }
14662
- ],
14663
- "isReadonly": false,
14664
- "isOptional": true,
14665
- "releaseTag": "Public",
14666
- "name": "shape",
14667
- "propertyTypeTokenRange": {
14668
- "startIndex": 1,
14669
- "endIndex": 2
14670
- },
14671
- "isStatic": false,
14672
- "isProtected": false
14673
- },
14674
- {
14675
- "kind": "Property",
14676
- "canonicalReference": "@fluentui/web-components!ProgressBar_2#thickness:member",
14677
- "docComment": "/**\n * The thickness of the progress bar\n *\n * @remarks\n *\n * HTML Attribute: thickness\n *\n * @public\n */\n",
14678
- "excerptTokens": [
14679
- {
14680
- "kind": "Content",
14681
- "text": "thickness?: "
14682
- },
14683
- {
14684
- "kind": "Reference",
14685
- "text": "ProgressBarThickness",
14686
- "canonicalReference": "@fluentui/web-components!ProgressBarThickness:type"
14687
- },
14688
- {
14689
- "kind": "Content",
14690
- "text": ";"
14691
- }
14692
- ],
14693
- "isReadonly": false,
14694
- "isOptional": true,
14695
- "releaseTag": "Public",
14696
- "name": "thickness",
14697
- "propertyTypeTokenRange": {
14698
- "startIndex": 1,
14699
- "endIndex": 2
14700
- },
14701
- "isStatic": false,
14702
- "isProtected": false
14703
- },
14704
- {
14705
- "kind": "Property",
14706
- "canonicalReference": "@fluentui/web-components!ProgressBar_2#validationState:member",
14707
- "docComment": "/**\n * The validation state of the progress bar\n *\n * @remarks\n *\n * HTML Attribute: validation-state\n *\n * @public\n */\n",
14708
- "excerptTokens": [
14709
- {
14710
- "kind": "Content",
14711
- "text": "validationState: "
14712
- },
14713
- {
14714
- "kind": "Reference",
14715
- "text": "ProgressBarValidationState",
14716
- "canonicalReference": "@fluentui/web-components!ProgressBarValidationState:type"
14717
- },
14718
- {
14719
- "kind": "Content",
14720
- "text": " | null"
14721
- },
14722
- {
14723
- "kind": "Content",
14724
- "text": ";"
14725
- }
14726
- ],
14727
- "isReadonly": false,
14728
- "isOptional": false,
14729
- "releaseTag": "Public",
14730
- "name": "validationState",
14731
- "propertyTypeTokenRange": {
14732
- "startIndex": 1,
14733
- "endIndex": 3
14734
- },
14735
- "isStatic": false,
14736
- "isProtected": false
14737
- }
14738
- ],
14616
+ "members": [],
14739
14617
  "extendsTokenRange": {
14740
14618
  "startIndex": 1,
14741
14619
  "endIndex": 2
14742
14620
  },
14743
14621
  "implementsTokenRanges": []
14744
14622
  },
14745
- {
14746
- "kind": "Variable",
14747
- "canonicalReference": "@fluentui/web-components!ProgressBarDefinition:var",
14748
- "docComment": "/**\n * The Fluent ProgressBar Element.\n *\n * @remarks\n *\n * HTML Element: \\<fluent-progress-bar\\>\n *\n * @public\n */\n",
14749
- "excerptTokens": [
14750
- {
14751
- "kind": "Content",
14752
- "text": "definition: "
14753
- },
14754
- {
14755
- "kind": "Content",
14756
- "text": "import(\"@microsoft/fast-element\")."
14757
- },
14758
- {
14759
- "kind": "Reference",
14760
- "text": "FASTElementDefinition",
14761
- "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
14762
- },
14763
- {
14764
- "kind": "Content",
14765
- "text": "<typeof "
14766
- },
14767
- {
14768
- "kind": "Reference",
14769
- "text": "ProgressBar",
14770
- "canonicalReference": "@fluentui/web-components!ProgressBar_2:class"
14771
- },
14772
- {
14773
- "kind": "Content",
14774
- "text": ">"
14775
- }
14776
- ],
14777
- "isReadonly": true,
14778
- "releaseTag": "Public",
14779
- "name": "ProgressBarDefinition",
14780
- "variableTypeTokenRange": {
14781
- "startIndex": 1,
14782
- "endIndex": 6
14783
- }
14784
- },
14785
14623
  {
14786
14624
  "kind": "TypeAlias",
14787
- "canonicalReference": "@fluentui/web-components!ProgressBarShape:type",
14788
- "docComment": "/**\n * Applies bar shape to the content\n *\n * @public\n */\n",
14625
+ "canonicalReference": "@fluentui/web-components!MenuButtonAppearance:type",
14626
+ "docComment": "/**\n * A Menu Button can be secondary, primary, outline, subtle, transparent\n *\n * @public\n */\n",
14789
14627
  "excerptTokens": [
14790
14628
  {
14791
14629
  "kind": "Content",
14792
- "text": "export declare type ProgressBarShape = "
14630
+ "text": "export declare type MenuButtonAppearance = "
14793
14631
  },
14794
14632
  {
14795
14633
  "kind": "Reference",
@@ -14802,8 +14640,8 @@
14802
14640
  },
14803
14641
  {
14804
14642
  "kind": "Reference",
14805
- "text": "ProgressBarShape",
14806
- "canonicalReference": "@fluentui/web-components!ProgressBarShape:var"
14643
+ "text": "MenuButtonAppearance",
14644
+ "canonicalReference": "@fluentui/web-components!MenuButtonAppearance:var"
14807
14645
  },
14808
14646
  {
14809
14647
  "kind": "Content",
@@ -14815,7 +14653,7 @@
14815
14653
  }
14816
14654
  ],
14817
14655
  "releaseTag": "Public",
14818
- "name": "ProgressBarShape",
14656
+ "name": "MenuButtonAppearance",
14819
14657
  "typeTokenRange": {
14820
14658
  "startIndex": 1,
14821
14659
  "endIndex": 5
@@ -14823,21 +14661,21 @@
14823
14661
  },
14824
14662
  {
14825
14663
  "kind": "Variable",
14826
- "canonicalReference": "@fluentui/web-components!ProgressBarShape:var",
14827
- "docComment": "/**\n * ProgressBarShape Constants\n *\n * @public\n */\n",
14664
+ "canonicalReference": "@fluentui/web-components!MenuButtonAppearance:var",
14665
+ "docComment": "/**\n * Menu Button Appearance constants\n *\n * @public\n */\n",
14828
14666
  "excerptTokens": [
14829
14667
  {
14830
14668
  "kind": "Content",
14831
- "text": "ProgressBarShape: "
14669
+ "text": "MenuButtonAppearance: "
14832
14670
  },
14833
14671
  {
14834
14672
  "kind": "Content",
14835
- "text": "{\n readonly rounded: \"rounded\";\n readonly square: \"square\";\n}"
14673
+ "text": "{\n readonly primary: \"primary\";\n readonly outline: \"outline\";\n readonly subtle: \"subtle\";\n readonly secondary: \"secondary\";\n readonly transparent: \"transparent\";\n}"
14836
14674
  }
14837
14675
  ],
14838
14676
  "isReadonly": true,
14839
14677
  "releaseTag": "Public",
14840
- "name": "ProgressBarShape",
14678
+ "name": "MenuButtonAppearance",
14841
14679
  "variableTypeTokenRange": {
14842
14680
  "startIndex": 1,
14843
14681
  "endIndex": 2
@@ -14845,12 +14683,12 @@
14845
14683
  },
14846
14684
  {
14847
14685
  "kind": "Variable",
14848
- "canonicalReference": "@fluentui/web-components!ProgressBarStyles:var",
14849
- "docComment": "/**\n * ProgressBar styles\n *\n * @public\n */\n",
14686
+ "canonicalReference": "@fluentui/web-components!MenuButtonDefinition:var",
14687
+ "docComment": "/**\n * The Fluent Menu Button Element. Implements {@link @microsoft/fast-foundation#Button}, {@link @microsoft/fast-foundation#buttonTemplate}\n *\n * @remarks\n *\n * HTML Element: \\<fluent-button\\>\n *\n * @public\n */\n",
14850
14688
  "excerptTokens": [
14851
14689
  {
14852
14690
  "kind": "Content",
14853
- "text": "styles: "
14691
+ "text": "definition: "
14854
14692
  },
14855
14693
  {
14856
14694
  "kind": "Content",
@@ -14858,40 +14696,17 @@
14858
14696
  },
14859
14697
  {
14860
14698
  "kind": "Reference",
14861
- "text": "ElementStyles",
14862
- "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
14863
- }
14864
- ],
14865
- "isReadonly": true,
14866
- "releaseTag": "Public",
14867
- "name": "ProgressBarStyles",
14868
- "variableTypeTokenRange": {
14869
- "startIndex": 1,
14870
- "endIndex": 3
14871
- }
14872
- },
14873
- {
14874
- "kind": "Variable",
14875
- "canonicalReference": "@fluentui/web-components!ProgressBarTemplate:var",
14876
- "docComment": "",
14877
- "excerptTokens": [
14878
- {
14879
- "kind": "Content",
14880
- "text": "template: "
14881
- },
14882
- {
14883
- "kind": "Reference",
14884
- "text": "ElementViewTemplate",
14885
- "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
14699
+ "text": "FASTElementDefinition",
14700
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
14886
14701
  },
14887
14702
  {
14888
14703
  "kind": "Content",
14889
- "text": "<"
14704
+ "text": "<typeof "
14890
14705
  },
14891
14706
  {
14892
14707
  "kind": "Reference",
14893
- "text": "ProgressBar",
14894
- "canonicalReference": "@fluentui/web-components!ProgressBar_2:class"
14708
+ "text": "MenuButton",
14709
+ "canonicalReference": "@fluentui/web-components!MenuButton:class"
14895
14710
  },
14896
14711
  {
14897
14712
  "kind": "Content",
@@ -14900,20 +14715,20 @@
14900
14715
  ],
14901
14716
  "isReadonly": true,
14902
14717
  "releaseTag": "Public",
14903
- "name": "ProgressBarTemplate",
14718
+ "name": "MenuButtonDefinition",
14904
14719
  "variableTypeTokenRange": {
14905
14720
  "startIndex": 1,
14906
- "endIndex": 5
14721
+ "endIndex": 6
14907
14722
  }
14908
14723
  },
14909
14724
  {
14910
14725
  "kind": "TypeAlias",
14911
- "canonicalReference": "@fluentui/web-components!ProgressBarThickness:type",
14912
- "docComment": "/**\n * Applies bar thickness to the content\n *\n * @public\n */\n",
14726
+ "canonicalReference": "@fluentui/web-components!MenuButtonShape:type",
14727
+ "docComment": "/**\n * A Menu Button can be square, circular or rounded\n *\n * @public\n */\n",
14913
14728
  "excerptTokens": [
14914
14729
  {
14915
14730
  "kind": "Content",
14916
- "text": "export declare type ProgressBarThickness = "
14731
+ "text": "export declare type MenuButtonShape = "
14917
14732
  },
14918
14733
  {
14919
14734
  "kind": "Reference",
@@ -14926,8 +14741,8 @@
14926
14741
  },
14927
14742
  {
14928
14743
  "kind": "Reference",
14929
- "text": "ProgressBarThickness",
14930
- "canonicalReference": "@fluentui/web-components!ProgressBarThickness:var"
14744
+ "text": "MenuButtonShape",
14745
+ "canonicalReference": "@fluentui/web-components!MenuButtonShape:var"
14931
14746
  },
14932
14747
  {
14933
14748
  "kind": "Content",
@@ -14939,7 +14754,7 @@
14939
14754
  }
14940
14755
  ],
14941
14756
  "releaseTag": "Public",
14942
- "name": "ProgressBarThickness",
14757
+ "name": "MenuButtonShape",
14943
14758
  "typeTokenRange": {
14944
14759
  "startIndex": 1,
14945
14760
  "endIndex": 5
@@ -14947,21 +14762,21 @@
14947
14762
  },
14948
14763
  {
14949
14764
  "kind": "Variable",
14950
- "canonicalReference": "@fluentui/web-components!ProgressBarThickness:var",
14951
- "docComment": "/**\n * ProgressBarThickness Constants\n *\n * @public\n */\n",
14765
+ "canonicalReference": "@fluentui/web-components!MenuButtonShape:var",
14766
+ "docComment": "/**\n * A Menu Button can be square, circular or rounded.\n *\n * @public\n */\n",
14952
14767
  "excerptTokens": [
14953
14768
  {
14954
14769
  "kind": "Content",
14955
- "text": "ProgressBarThickness: "
14770
+ "text": "MenuButtonShape: "
14956
14771
  },
14957
14772
  {
14958
14773
  "kind": "Content",
14959
- "text": "{\n readonly medium: \"medium\";\n readonly large: \"large\";\n}"
14774
+ "text": "{\n readonly circular: \"circular\";\n readonly rounded: \"rounded\";\n readonly square: \"square\";\n}"
14960
14775
  }
14961
14776
  ],
14962
14777
  "isReadonly": true,
14963
14778
  "releaseTag": "Public",
14964
- "name": "ProgressBarThickness",
14779
+ "name": "MenuButtonShape",
14965
14780
  "variableTypeTokenRange": {
14966
14781
  "startIndex": 1,
14967
14782
  "endIndex": 2
@@ -14969,12 +14784,12 @@
14969
14784
  },
14970
14785
  {
14971
14786
  "kind": "TypeAlias",
14972
- "canonicalReference": "@fluentui/web-components!ProgressBarValidationState:type",
14973
- "docComment": "/**\n * Applies validation state to the content\n *\n * @public\n */\n",
14787
+ "canonicalReference": "@fluentui/web-components!MenuButtonSize:type",
14788
+ "docComment": "/**\n * A Menu Button can be on of several preset sizes.\n *\n * @public\n */\n",
14974
14789
  "excerptTokens": [
14975
14790
  {
14976
14791
  "kind": "Content",
14977
- "text": "export declare type ProgressBarValidationState = "
14792
+ "text": "export declare type MenuButtonSize = "
14978
14793
  },
14979
14794
  {
14980
14795
  "kind": "Reference",
@@ -14987,8 +14802,8 @@
14987
14802
  },
14988
14803
  {
14989
14804
  "kind": "Reference",
14990
- "text": "ProgressBarValidationState",
14991
- "canonicalReference": "@fluentui/web-components!ProgressBarValidationState:var"
14805
+ "text": "MenuButtonSize",
14806
+ "canonicalReference": "@fluentui/web-components!MenuButtonSize:var"
14992
14807
  },
14993
14808
  {
14994
14809
  "kind": "Content",
@@ -15000,7 +14815,7 @@
15000
14815
  }
15001
14816
  ],
15002
14817
  "releaseTag": "Public",
15003
- "name": "ProgressBarValidationState",
14818
+ "name": "MenuButtonSize",
15004
14819
  "typeTokenRange": {
15005
14820
  "startIndex": 1,
15006
14821
  "endIndex": 5
@@ -15008,21 +14823,21 @@
15008
14823
  },
15009
14824
  {
15010
14825
  "kind": "Variable",
15011
- "canonicalReference": "@fluentui/web-components!ProgressBarValidationState:var",
15012
- "docComment": "/**\n * ProgressBarValidationState Constants\n *\n * @public\n */\n",
14826
+ "canonicalReference": "@fluentui/web-components!MenuButtonSize:var",
14827
+ "docComment": "/**\n * A Menu Button can be a size of small, medium or large.\n *\n * @public\n */\n",
15013
14828
  "excerptTokens": [
15014
14829
  {
15015
14830
  "kind": "Content",
15016
- "text": "ProgressBarValidationState: "
14831
+ "text": "MenuButtonSize: "
15017
14832
  },
15018
14833
  {
15019
14834
  "kind": "Content",
15020
- "text": "{\n readonly success: \"success\";\n readonly warning: \"warning\";\n readonly error: \"error\";\n}"
14835
+ "text": "{\n readonly small: \"small\";\n readonly medium: \"medium\";\n readonly large: \"large\";\n}"
15021
14836
  }
15022
14837
  ],
15023
14838
  "isReadonly": true,
15024
14839
  "releaseTag": "Public",
15025
- "name": "ProgressBarValidationState",
14840
+ "name": "MenuButtonSize",
15026
14841
  "variableTypeTokenRange": {
15027
14842
  "startIndex": 1,
15028
14843
  "endIndex": 2
@@ -15030,16 +14845,462 @@
15030
14845
  },
15031
14846
  {
15032
14847
  "kind": "Variable",
15033
- "canonicalReference": "@fluentui/web-components!setTheme:var",
15034
- "docComment": "/**\n * Sets the theme tokens on defaultNode.\n *\n * @param theme - Flat object of theme token values.\n */\n",
14848
+ "canonicalReference": "@fluentui/web-components!MenuButtonTemplate:var",
14849
+ "docComment": "/**\n * The template for the Button component.\n *\n * @public\n */\n",
15035
14850
  "excerptTokens": [
15036
14851
  {
15037
14852
  "kind": "Content",
15038
- "text": "setTheme: "
14853
+ "text": "template: "
14854
+ },
14855
+ {
14856
+ "kind": "Reference",
14857
+ "text": "ElementViewTemplate",
14858
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
15039
14859
  },
15040
14860
  {
15041
14861
  "kind": "Content",
15042
- "text": "(theme: "
14862
+ "text": "<"
14863
+ },
14864
+ {
14865
+ "kind": "Reference",
14866
+ "text": "MenuButton",
14867
+ "canonicalReference": "@fluentui/web-components!MenuButton:class"
14868
+ },
14869
+ {
14870
+ "kind": "Content",
14871
+ "text": ">"
14872
+ }
14873
+ ],
14874
+ "isReadonly": true,
14875
+ "releaseTag": "Public",
14876
+ "name": "MenuButtonTemplate",
14877
+ "variableTypeTokenRange": {
14878
+ "startIndex": 1,
14879
+ "endIndex": 5
14880
+ }
14881
+ },
14882
+ {
14883
+ "kind": "Class",
14884
+ "canonicalReference": "@fluentui/web-components!ProgressBar_2:class",
14885
+ "docComment": "/**\n * The base class used for constructing a fluent-progress-bar custom element\n *\n * @public\n */\n",
14886
+ "excerptTokens": [
14887
+ {
14888
+ "kind": "Content",
14889
+ "text": "export declare class ProgressBar extends "
14890
+ },
14891
+ {
14892
+ "kind": "Reference",
14893
+ "text": "FASTProgress",
14894
+ "canonicalReference": "@microsoft/fast-foundation!FASTProgress:class"
14895
+ },
14896
+ {
14897
+ "kind": "Content",
14898
+ "text": " "
14899
+ }
14900
+ ],
14901
+ "releaseTag": "Public",
14902
+ "name": "ProgressBar_2",
14903
+ "preserveMemberOrder": false,
14904
+ "members": [
14905
+ {
14906
+ "kind": "Property",
14907
+ "canonicalReference": "@fluentui/web-components!ProgressBar_2#shape:member",
14908
+ "docComment": "/**\n * The shape of the progress bar\n *\n * @remarks\n *\n * HTML Attribute: shape\n *\n * @public\n */\n",
14909
+ "excerptTokens": [
14910
+ {
14911
+ "kind": "Content",
14912
+ "text": "shape?: "
14913
+ },
14914
+ {
14915
+ "kind": "Reference",
14916
+ "text": "ProgressBarShape",
14917
+ "canonicalReference": "@fluentui/web-components!ProgressBarShape:type"
14918
+ },
14919
+ {
14920
+ "kind": "Content",
14921
+ "text": ";"
14922
+ }
14923
+ ],
14924
+ "isReadonly": false,
14925
+ "isOptional": true,
14926
+ "releaseTag": "Public",
14927
+ "name": "shape",
14928
+ "propertyTypeTokenRange": {
14929
+ "startIndex": 1,
14930
+ "endIndex": 2
14931
+ },
14932
+ "isStatic": false,
14933
+ "isProtected": false
14934
+ },
14935
+ {
14936
+ "kind": "Property",
14937
+ "canonicalReference": "@fluentui/web-components!ProgressBar_2#thickness:member",
14938
+ "docComment": "/**\n * The thickness of the progress bar\n *\n * @remarks\n *\n * HTML Attribute: thickness\n *\n * @public\n */\n",
14939
+ "excerptTokens": [
14940
+ {
14941
+ "kind": "Content",
14942
+ "text": "thickness?: "
14943
+ },
14944
+ {
14945
+ "kind": "Reference",
14946
+ "text": "ProgressBarThickness",
14947
+ "canonicalReference": "@fluentui/web-components!ProgressBarThickness:type"
14948
+ },
14949
+ {
14950
+ "kind": "Content",
14951
+ "text": ";"
14952
+ }
14953
+ ],
14954
+ "isReadonly": false,
14955
+ "isOptional": true,
14956
+ "releaseTag": "Public",
14957
+ "name": "thickness",
14958
+ "propertyTypeTokenRange": {
14959
+ "startIndex": 1,
14960
+ "endIndex": 2
14961
+ },
14962
+ "isStatic": false,
14963
+ "isProtected": false
14964
+ },
14965
+ {
14966
+ "kind": "Property",
14967
+ "canonicalReference": "@fluentui/web-components!ProgressBar_2#validationState:member",
14968
+ "docComment": "/**\n * The validation state of the progress bar\n *\n * @remarks\n *\n * HTML Attribute: validation-state\n *\n * @public\n */\n",
14969
+ "excerptTokens": [
14970
+ {
14971
+ "kind": "Content",
14972
+ "text": "validationState: "
14973
+ },
14974
+ {
14975
+ "kind": "Reference",
14976
+ "text": "ProgressBarValidationState",
14977
+ "canonicalReference": "@fluentui/web-components!ProgressBarValidationState:type"
14978
+ },
14979
+ {
14980
+ "kind": "Content",
14981
+ "text": " | null"
14982
+ },
14983
+ {
14984
+ "kind": "Content",
14985
+ "text": ";"
14986
+ }
14987
+ ],
14988
+ "isReadonly": false,
14989
+ "isOptional": false,
14990
+ "releaseTag": "Public",
14991
+ "name": "validationState",
14992
+ "propertyTypeTokenRange": {
14993
+ "startIndex": 1,
14994
+ "endIndex": 3
14995
+ },
14996
+ "isStatic": false,
14997
+ "isProtected": false
14998
+ }
14999
+ ],
15000
+ "extendsTokenRange": {
15001
+ "startIndex": 1,
15002
+ "endIndex": 2
15003
+ },
15004
+ "implementsTokenRanges": []
15005
+ },
15006
+ {
15007
+ "kind": "Variable",
15008
+ "canonicalReference": "@fluentui/web-components!ProgressBarDefinition:var",
15009
+ "docComment": "/**\n * The Fluent ProgressBar Element.\n *\n * @remarks\n *\n * HTML Element: \\<fluent-progress-bar\\>\n *\n * @public\n */\n",
15010
+ "excerptTokens": [
15011
+ {
15012
+ "kind": "Content",
15013
+ "text": "definition: "
15014
+ },
15015
+ {
15016
+ "kind": "Content",
15017
+ "text": "import(\"@microsoft/fast-element\")."
15018
+ },
15019
+ {
15020
+ "kind": "Reference",
15021
+ "text": "FASTElementDefinition",
15022
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
15023
+ },
15024
+ {
15025
+ "kind": "Content",
15026
+ "text": "<typeof "
15027
+ },
15028
+ {
15029
+ "kind": "Reference",
15030
+ "text": "ProgressBar",
15031
+ "canonicalReference": "@fluentui/web-components!ProgressBar_2:class"
15032
+ },
15033
+ {
15034
+ "kind": "Content",
15035
+ "text": ">"
15036
+ }
15037
+ ],
15038
+ "isReadonly": true,
15039
+ "releaseTag": "Public",
15040
+ "name": "ProgressBarDefinition",
15041
+ "variableTypeTokenRange": {
15042
+ "startIndex": 1,
15043
+ "endIndex": 6
15044
+ }
15045
+ },
15046
+ {
15047
+ "kind": "TypeAlias",
15048
+ "canonicalReference": "@fluentui/web-components!ProgressBarShape:type",
15049
+ "docComment": "/**\n * Applies bar shape to the content\n *\n * @public\n */\n",
15050
+ "excerptTokens": [
15051
+ {
15052
+ "kind": "Content",
15053
+ "text": "export declare type ProgressBarShape = "
15054
+ },
15055
+ {
15056
+ "kind": "Reference",
15057
+ "text": "ValuesOf",
15058
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
15059
+ },
15060
+ {
15061
+ "kind": "Content",
15062
+ "text": "<typeof "
15063
+ },
15064
+ {
15065
+ "kind": "Reference",
15066
+ "text": "ProgressBarShape",
15067
+ "canonicalReference": "@fluentui/web-components!ProgressBarShape:var"
15068
+ },
15069
+ {
15070
+ "kind": "Content",
15071
+ "text": ">"
15072
+ },
15073
+ {
15074
+ "kind": "Content",
15075
+ "text": ";"
15076
+ }
15077
+ ],
15078
+ "releaseTag": "Public",
15079
+ "name": "ProgressBarShape",
15080
+ "typeTokenRange": {
15081
+ "startIndex": 1,
15082
+ "endIndex": 5
15083
+ }
15084
+ },
15085
+ {
15086
+ "kind": "Variable",
15087
+ "canonicalReference": "@fluentui/web-components!ProgressBarShape:var",
15088
+ "docComment": "/**\n * ProgressBarShape Constants\n *\n * @public\n */\n",
15089
+ "excerptTokens": [
15090
+ {
15091
+ "kind": "Content",
15092
+ "text": "ProgressBarShape: "
15093
+ },
15094
+ {
15095
+ "kind": "Content",
15096
+ "text": "{\n readonly rounded: \"rounded\";\n readonly square: \"square\";\n}"
15097
+ }
15098
+ ],
15099
+ "isReadonly": true,
15100
+ "releaseTag": "Public",
15101
+ "name": "ProgressBarShape",
15102
+ "variableTypeTokenRange": {
15103
+ "startIndex": 1,
15104
+ "endIndex": 2
15105
+ }
15106
+ },
15107
+ {
15108
+ "kind": "Variable",
15109
+ "canonicalReference": "@fluentui/web-components!ProgressBarStyles:var",
15110
+ "docComment": "/**\n * ProgressBar styles\n *\n * @public\n */\n",
15111
+ "excerptTokens": [
15112
+ {
15113
+ "kind": "Content",
15114
+ "text": "styles: "
15115
+ },
15116
+ {
15117
+ "kind": "Content",
15118
+ "text": "import(\"@microsoft/fast-element\")."
15119
+ },
15120
+ {
15121
+ "kind": "Reference",
15122
+ "text": "ElementStyles",
15123
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
15124
+ }
15125
+ ],
15126
+ "isReadonly": true,
15127
+ "releaseTag": "Public",
15128
+ "name": "ProgressBarStyles",
15129
+ "variableTypeTokenRange": {
15130
+ "startIndex": 1,
15131
+ "endIndex": 3
15132
+ }
15133
+ },
15134
+ {
15135
+ "kind": "Variable",
15136
+ "canonicalReference": "@fluentui/web-components!ProgressBarTemplate:var",
15137
+ "docComment": "",
15138
+ "excerptTokens": [
15139
+ {
15140
+ "kind": "Content",
15141
+ "text": "template: "
15142
+ },
15143
+ {
15144
+ "kind": "Reference",
15145
+ "text": "ElementViewTemplate",
15146
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
15147
+ },
15148
+ {
15149
+ "kind": "Content",
15150
+ "text": "<"
15151
+ },
15152
+ {
15153
+ "kind": "Reference",
15154
+ "text": "ProgressBar",
15155
+ "canonicalReference": "@fluentui/web-components!ProgressBar_2:class"
15156
+ },
15157
+ {
15158
+ "kind": "Content",
15159
+ "text": ">"
15160
+ }
15161
+ ],
15162
+ "isReadonly": true,
15163
+ "releaseTag": "Public",
15164
+ "name": "ProgressBarTemplate",
15165
+ "variableTypeTokenRange": {
15166
+ "startIndex": 1,
15167
+ "endIndex": 5
15168
+ }
15169
+ },
15170
+ {
15171
+ "kind": "TypeAlias",
15172
+ "canonicalReference": "@fluentui/web-components!ProgressBarThickness:type",
15173
+ "docComment": "/**\n * Applies bar thickness to the content\n *\n * @public\n */\n",
15174
+ "excerptTokens": [
15175
+ {
15176
+ "kind": "Content",
15177
+ "text": "export declare type ProgressBarThickness = "
15178
+ },
15179
+ {
15180
+ "kind": "Reference",
15181
+ "text": "ValuesOf",
15182
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
15183
+ },
15184
+ {
15185
+ "kind": "Content",
15186
+ "text": "<typeof "
15187
+ },
15188
+ {
15189
+ "kind": "Reference",
15190
+ "text": "ProgressBarThickness",
15191
+ "canonicalReference": "@fluentui/web-components!ProgressBarThickness:var"
15192
+ },
15193
+ {
15194
+ "kind": "Content",
15195
+ "text": ">"
15196
+ },
15197
+ {
15198
+ "kind": "Content",
15199
+ "text": ";"
15200
+ }
15201
+ ],
15202
+ "releaseTag": "Public",
15203
+ "name": "ProgressBarThickness",
15204
+ "typeTokenRange": {
15205
+ "startIndex": 1,
15206
+ "endIndex": 5
15207
+ }
15208
+ },
15209
+ {
15210
+ "kind": "Variable",
15211
+ "canonicalReference": "@fluentui/web-components!ProgressBarThickness:var",
15212
+ "docComment": "/**\n * ProgressBarThickness Constants\n *\n * @public\n */\n",
15213
+ "excerptTokens": [
15214
+ {
15215
+ "kind": "Content",
15216
+ "text": "ProgressBarThickness: "
15217
+ },
15218
+ {
15219
+ "kind": "Content",
15220
+ "text": "{\n readonly medium: \"medium\";\n readonly large: \"large\";\n}"
15221
+ }
15222
+ ],
15223
+ "isReadonly": true,
15224
+ "releaseTag": "Public",
15225
+ "name": "ProgressBarThickness",
15226
+ "variableTypeTokenRange": {
15227
+ "startIndex": 1,
15228
+ "endIndex": 2
15229
+ }
15230
+ },
15231
+ {
15232
+ "kind": "TypeAlias",
15233
+ "canonicalReference": "@fluentui/web-components!ProgressBarValidationState:type",
15234
+ "docComment": "/**\n * Applies validation state to the content\n *\n * @public\n */\n",
15235
+ "excerptTokens": [
15236
+ {
15237
+ "kind": "Content",
15238
+ "text": "export declare type ProgressBarValidationState = "
15239
+ },
15240
+ {
15241
+ "kind": "Reference",
15242
+ "text": "ValuesOf",
15243
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
15244
+ },
15245
+ {
15246
+ "kind": "Content",
15247
+ "text": "<typeof "
15248
+ },
15249
+ {
15250
+ "kind": "Reference",
15251
+ "text": "ProgressBarValidationState",
15252
+ "canonicalReference": "@fluentui/web-components!ProgressBarValidationState:var"
15253
+ },
15254
+ {
15255
+ "kind": "Content",
15256
+ "text": ">"
15257
+ },
15258
+ {
15259
+ "kind": "Content",
15260
+ "text": ";"
15261
+ }
15262
+ ],
15263
+ "releaseTag": "Public",
15264
+ "name": "ProgressBarValidationState",
15265
+ "typeTokenRange": {
15266
+ "startIndex": 1,
15267
+ "endIndex": 5
15268
+ }
15269
+ },
15270
+ {
15271
+ "kind": "Variable",
15272
+ "canonicalReference": "@fluentui/web-components!ProgressBarValidationState:var",
15273
+ "docComment": "/**\n * ProgressBarValidationState Constants\n *\n * @public\n */\n",
15274
+ "excerptTokens": [
15275
+ {
15276
+ "kind": "Content",
15277
+ "text": "ProgressBarValidationState: "
15278
+ },
15279
+ {
15280
+ "kind": "Content",
15281
+ "text": "{\n readonly success: \"success\";\n readonly warning: \"warning\";\n readonly error: \"error\";\n}"
15282
+ }
15283
+ ],
15284
+ "isReadonly": true,
15285
+ "releaseTag": "Public",
15286
+ "name": "ProgressBarValidationState",
15287
+ "variableTypeTokenRange": {
15288
+ "startIndex": 1,
15289
+ "endIndex": 2
15290
+ }
15291
+ },
15292
+ {
15293
+ "kind": "Variable",
15294
+ "canonicalReference": "@fluentui/web-components!setTheme:var",
15295
+ "docComment": "/**\n * Sets the theme tokens on defaultNode.\n *\n * @param theme - Flat object of theme token values.\n */\n",
15296
+ "excerptTokens": [
15297
+ {
15298
+ "kind": "Content",
15299
+ "text": "setTheme: "
15300
+ },
15301
+ {
15302
+ "kind": "Content",
15303
+ "text": "(theme: "
15043
15304
  },
15044
15305
  {
15045
15306
  "kind": "Reference",
@@ -15048,12 +15309,1041 @@
15048
15309
  },
15049
15310
  {
15050
15311
  "kind": "Content",
15051
- "text": ") => void"
15312
+ "text": ") => void"
15313
+ }
15314
+ ],
15315
+ "isReadonly": true,
15316
+ "releaseTag": "Public",
15317
+ "name": "setTheme",
15318
+ "variableTypeTokenRange": {
15319
+ "startIndex": 1,
15320
+ "endIndex": 4
15321
+ }
15322
+ },
15323
+ {
15324
+ "kind": "Variable",
15325
+ "canonicalReference": "@fluentui/web-components!shadow16:var",
15326
+ "docComment": "",
15327
+ "excerptTokens": [
15328
+ {
15329
+ "kind": "Content",
15330
+ "text": "shadow16: "
15331
+ },
15332
+ {
15333
+ "kind": "Content",
15334
+ "text": "import(\"@microsoft/fast-foundation\")."
15335
+ },
15336
+ {
15337
+ "kind": "Reference",
15338
+ "text": "CSSDesignToken",
15339
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15340
+ },
15341
+ {
15342
+ "kind": "Content",
15343
+ "text": "<string>"
15344
+ }
15345
+ ],
15346
+ "isReadonly": true,
15347
+ "releaseTag": "Public",
15348
+ "name": "shadow16",
15349
+ "variableTypeTokenRange": {
15350
+ "startIndex": 1,
15351
+ "endIndex": 4
15352
+ }
15353
+ },
15354
+ {
15355
+ "kind": "Variable",
15356
+ "canonicalReference": "@fluentui/web-components!shadow16Brand:var",
15357
+ "docComment": "",
15358
+ "excerptTokens": [
15359
+ {
15360
+ "kind": "Content",
15361
+ "text": "shadow16Brand: "
15362
+ },
15363
+ {
15364
+ "kind": "Content",
15365
+ "text": "import(\"@microsoft/fast-foundation\")."
15366
+ },
15367
+ {
15368
+ "kind": "Reference",
15369
+ "text": "CSSDesignToken",
15370
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15371
+ },
15372
+ {
15373
+ "kind": "Content",
15374
+ "text": "<string>"
15375
+ }
15376
+ ],
15377
+ "isReadonly": true,
15378
+ "releaseTag": "Public",
15379
+ "name": "shadow16Brand",
15380
+ "variableTypeTokenRange": {
15381
+ "startIndex": 1,
15382
+ "endIndex": 4
15383
+ }
15384
+ },
15385
+ {
15386
+ "kind": "Variable",
15387
+ "canonicalReference": "@fluentui/web-components!shadow2:var",
15388
+ "docComment": "",
15389
+ "excerptTokens": [
15390
+ {
15391
+ "kind": "Content",
15392
+ "text": "shadow2: "
15393
+ },
15394
+ {
15395
+ "kind": "Content",
15396
+ "text": "import(\"@microsoft/fast-foundation\")."
15397
+ },
15398
+ {
15399
+ "kind": "Reference",
15400
+ "text": "CSSDesignToken",
15401
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15402
+ },
15403
+ {
15404
+ "kind": "Content",
15405
+ "text": "<string>"
15406
+ }
15407
+ ],
15408
+ "isReadonly": true,
15409
+ "releaseTag": "Public",
15410
+ "name": "shadow2",
15411
+ "variableTypeTokenRange": {
15412
+ "startIndex": 1,
15413
+ "endIndex": 4
15414
+ }
15415
+ },
15416
+ {
15417
+ "kind": "Variable",
15418
+ "canonicalReference": "@fluentui/web-components!shadow28:var",
15419
+ "docComment": "",
15420
+ "excerptTokens": [
15421
+ {
15422
+ "kind": "Content",
15423
+ "text": "shadow28: "
15424
+ },
15425
+ {
15426
+ "kind": "Content",
15427
+ "text": "import(\"@microsoft/fast-foundation\")."
15428
+ },
15429
+ {
15430
+ "kind": "Reference",
15431
+ "text": "CSSDesignToken",
15432
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15433
+ },
15434
+ {
15435
+ "kind": "Content",
15436
+ "text": "<string>"
15437
+ }
15438
+ ],
15439
+ "isReadonly": true,
15440
+ "releaseTag": "Public",
15441
+ "name": "shadow28",
15442
+ "variableTypeTokenRange": {
15443
+ "startIndex": 1,
15444
+ "endIndex": 4
15445
+ }
15446
+ },
15447
+ {
15448
+ "kind": "Variable",
15449
+ "canonicalReference": "@fluentui/web-components!shadow28Brand:var",
15450
+ "docComment": "",
15451
+ "excerptTokens": [
15452
+ {
15453
+ "kind": "Content",
15454
+ "text": "shadow28Brand: "
15455
+ },
15456
+ {
15457
+ "kind": "Content",
15458
+ "text": "import(\"@microsoft/fast-foundation\")."
15459
+ },
15460
+ {
15461
+ "kind": "Reference",
15462
+ "text": "CSSDesignToken",
15463
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15464
+ },
15465
+ {
15466
+ "kind": "Content",
15467
+ "text": "<string>"
15468
+ }
15469
+ ],
15470
+ "isReadonly": true,
15471
+ "releaseTag": "Public",
15472
+ "name": "shadow28Brand",
15473
+ "variableTypeTokenRange": {
15474
+ "startIndex": 1,
15475
+ "endIndex": 4
15476
+ }
15477
+ },
15478
+ {
15479
+ "kind": "Variable",
15480
+ "canonicalReference": "@fluentui/web-components!shadow2Brand:var",
15481
+ "docComment": "",
15482
+ "excerptTokens": [
15483
+ {
15484
+ "kind": "Content",
15485
+ "text": "shadow2Brand: "
15486
+ },
15487
+ {
15488
+ "kind": "Content",
15489
+ "text": "import(\"@microsoft/fast-foundation\")."
15490
+ },
15491
+ {
15492
+ "kind": "Reference",
15493
+ "text": "CSSDesignToken",
15494
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15495
+ },
15496
+ {
15497
+ "kind": "Content",
15498
+ "text": "<string>"
15499
+ }
15500
+ ],
15501
+ "isReadonly": true,
15502
+ "releaseTag": "Public",
15503
+ "name": "shadow2Brand",
15504
+ "variableTypeTokenRange": {
15505
+ "startIndex": 1,
15506
+ "endIndex": 4
15507
+ }
15508
+ },
15509
+ {
15510
+ "kind": "Variable",
15511
+ "canonicalReference": "@fluentui/web-components!shadow4:var",
15512
+ "docComment": "",
15513
+ "excerptTokens": [
15514
+ {
15515
+ "kind": "Content",
15516
+ "text": "shadow4: "
15517
+ },
15518
+ {
15519
+ "kind": "Content",
15520
+ "text": "import(\"@microsoft/fast-foundation\")."
15521
+ },
15522
+ {
15523
+ "kind": "Reference",
15524
+ "text": "CSSDesignToken",
15525
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15526
+ },
15527
+ {
15528
+ "kind": "Content",
15529
+ "text": "<string>"
15530
+ }
15531
+ ],
15532
+ "isReadonly": true,
15533
+ "releaseTag": "Public",
15534
+ "name": "shadow4",
15535
+ "variableTypeTokenRange": {
15536
+ "startIndex": 1,
15537
+ "endIndex": 4
15538
+ }
15539
+ },
15540
+ {
15541
+ "kind": "Variable",
15542
+ "canonicalReference": "@fluentui/web-components!shadow4Brand:var",
15543
+ "docComment": "",
15544
+ "excerptTokens": [
15545
+ {
15546
+ "kind": "Content",
15547
+ "text": "shadow4Brand: "
15548
+ },
15549
+ {
15550
+ "kind": "Content",
15551
+ "text": "import(\"@microsoft/fast-foundation\")."
15552
+ },
15553
+ {
15554
+ "kind": "Reference",
15555
+ "text": "CSSDesignToken",
15556
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15557
+ },
15558
+ {
15559
+ "kind": "Content",
15560
+ "text": "<string>"
15561
+ }
15562
+ ],
15563
+ "isReadonly": true,
15564
+ "releaseTag": "Public",
15565
+ "name": "shadow4Brand",
15566
+ "variableTypeTokenRange": {
15567
+ "startIndex": 1,
15568
+ "endIndex": 4
15569
+ }
15570
+ },
15571
+ {
15572
+ "kind": "Variable",
15573
+ "canonicalReference": "@fluentui/web-components!shadow64:var",
15574
+ "docComment": "",
15575
+ "excerptTokens": [
15576
+ {
15577
+ "kind": "Content",
15578
+ "text": "shadow64: "
15579
+ },
15580
+ {
15581
+ "kind": "Content",
15582
+ "text": "import(\"@microsoft/fast-foundation\")."
15583
+ },
15584
+ {
15585
+ "kind": "Reference",
15586
+ "text": "CSSDesignToken",
15587
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15588
+ },
15589
+ {
15590
+ "kind": "Content",
15591
+ "text": "<string>"
15592
+ }
15593
+ ],
15594
+ "isReadonly": true,
15595
+ "releaseTag": "Public",
15596
+ "name": "shadow64",
15597
+ "variableTypeTokenRange": {
15598
+ "startIndex": 1,
15599
+ "endIndex": 4
15600
+ }
15601
+ },
15602
+ {
15603
+ "kind": "Variable",
15604
+ "canonicalReference": "@fluentui/web-components!shadow64Brand:var",
15605
+ "docComment": "",
15606
+ "excerptTokens": [
15607
+ {
15608
+ "kind": "Content",
15609
+ "text": "shadow64Brand: "
15610
+ },
15611
+ {
15612
+ "kind": "Content",
15613
+ "text": "import(\"@microsoft/fast-foundation\")."
15614
+ },
15615
+ {
15616
+ "kind": "Reference",
15617
+ "text": "CSSDesignToken",
15618
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15619
+ },
15620
+ {
15621
+ "kind": "Content",
15622
+ "text": "<string>"
15623
+ }
15624
+ ],
15625
+ "isReadonly": true,
15626
+ "releaseTag": "Public",
15627
+ "name": "shadow64Brand",
15628
+ "variableTypeTokenRange": {
15629
+ "startIndex": 1,
15630
+ "endIndex": 4
15631
+ }
15632
+ },
15633
+ {
15634
+ "kind": "Variable",
15635
+ "canonicalReference": "@fluentui/web-components!shadow8:var",
15636
+ "docComment": "",
15637
+ "excerptTokens": [
15638
+ {
15639
+ "kind": "Content",
15640
+ "text": "shadow8: "
15641
+ },
15642
+ {
15643
+ "kind": "Content",
15644
+ "text": "import(\"@microsoft/fast-foundation\")."
15645
+ },
15646
+ {
15647
+ "kind": "Reference",
15648
+ "text": "CSSDesignToken",
15649
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15650
+ },
15651
+ {
15652
+ "kind": "Content",
15653
+ "text": "<string>"
15654
+ }
15655
+ ],
15656
+ "isReadonly": true,
15657
+ "releaseTag": "Public",
15658
+ "name": "shadow8",
15659
+ "variableTypeTokenRange": {
15660
+ "startIndex": 1,
15661
+ "endIndex": 4
15662
+ }
15663
+ },
15664
+ {
15665
+ "kind": "Variable",
15666
+ "canonicalReference": "@fluentui/web-components!shadow8Brand:var",
15667
+ "docComment": "",
15668
+ "excerptTokens": [
15669
+ {
15670
+ "kind": "Content",
15671
+ "text": "shadow8Brand: "
15672
+ },
15673
+ {
15674
+ "kind": "Content",
15675
+ "text": "import(\"@microsoft/fast-foundation\")."
15676
+ },
15677
+ {
15678
+ "kind": "Reference",
15679
+ "text": "CSSDesignToken",
15680
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15681
+ },
15682
+ {
15683
+ "kind": "Content",
15684
+ "text": "<string>"
15685
+ }
15686
+ ],
15687
+ "isReadonly": true,
15688
+ "releaseTag": "Public",
15689
+ "name": "shadow8Brand",
15690
+ "variableTypeTokenRange": {
15691
+ "startIndex": 1,
15692
+ "endIndex": 4
15693
+ }
15694
+ },
15695
+ {
15696
+ "kind": "Class",
15697
+ "canonicalReference": "@fluentui/web-components!Slider:class",
15698
+ "docComment": "/**\n * The base class used for constructing a fluent-slider custom element\n *\n * @public\n */\n",
15699
+ "excerptTokens": [
15700
+ {
15701
+ "kind": "Content",
15702
+ "text": "export declare class Slider extends "
15703
+ },
15704
+ {
15705
+ "kind": "Reference",
15706
+ "text": "FASTSlider",
15707
+ "canonicalReference": "@microsoft/fast-foundation!FASTSlider:class"
15708
+ },
15709
+ {
15710
+ "kind": "Content",
15711
+ "text": " "
15712
+ }
15713
+ ],
15714
+ "releaseTag": "Public",
15715
+ "name": "Slider",
15716
+ "preserveMemberOrder": false,
15717
+ "members": [
15718
+ {
15719
+ "kind": "Method",
15720
+ "canonicalReference": "@fluentui/web-components!Slider#connectedCallback:member(1)",
15721
+ "docComment": "",
15722
+ "excerptTokens": [
15723
+ {
15724
+ "kind": "Content",
15725
+ "text": "connectedCallback(): "
15726
+ },
15727
+ {
15728
+ "kind": "Content",
15729
+ "text": "void"
15730
+ },
15731
+ {
15732
+ "kind": "Content",
15733
+ "text": ";"
15734
+ }
15735
+ ],
15736
+ "isStatic": false,
15737
+ "returnTypeTokenRange": {
15738
+ "startIndex": 1,
15739
+ "endIndex": 2
15740
+ },
15741
+ "releaseTag": "Public",
15742
+ "isProtected": false,
15743
+ "overloadIndex": 1,
15744
+ "parameters": [],
15745
+ "isOptional": false,
15746
+ "name": "connectedCallback"
15747
+ },
15748
+ {
15749
+ "kind": "Method",
15750
+ "canonicalReference": "@fluentui/web-components!Slider#disconnectedCallback:member(1)",
15751
+ "docComment": "",
15752
+ "excerptTokens": [
15753
+ {
15754
+ "kind": "Content",
15755
+ "text": "disconnectedCallback(): "
15756
+ },
15757
+ {
15758
+ "kind": "Content",
15759
+ "text": "void"
15760
+ },
15761
+ {
15762
+ "kind": "Content",
15763
+ "text": ";"
15764
+ }
15765
+ ],
15766
+ "isStatic": false,
15767
+ "returnTypeTokenRange": {
15768
+ "startIndex": 1,
15769
+ "endIndex": 2
15770
+ },
15771
+ "releaseTag": "Public",
15772
+ "isProtected": false,
15773
+ "overloadIndex": 1,
15774
+ "parameters": [],
15775
+ "isOptional": false,
15776
+ "name": "disconnectedCallback"
15777
+ },
15778
+ {
15779
+ "kind": "Method",
15780
+ "canonicalReference": "@fluentui/web-components!Slider#handleChange:member(1)",
15781
+ "docComment": "",
15782
+ "excerptTokens": [
15783
+ {
15784
+ "kind": "Content",
15785
+ "text": "handleChange(source: "
15786
+ },
15787
+ {
15788
+ "kind": "Content",
15789
+ "text": "any"
15790
+ },
15791
+ {
15792
+ "kind": "Content",
15793
+ "text": ", propertyName: "
15794
+ },
15795
+ {
15796
+ "kind": "Content",
15797
+ "text": "string"
15798
+ },
15799
+ {
15800
+ "kind": "Content",
15801
+ "text": "): "
15802
+ },
15803
+ {
15804
+ "kind": "Content",
15805
+ "text": "void"
15806
+ },
15807
+ {
15808
+ "kind": "Content",
15809
+ "text": ";"
15810
+ }
15811
+ ],
15812
+ "isStatic": false,
15813
+ "returnTypeTokenRange": {
15814
+ "startIndex": 5,
15815
+ "endIndex": 6
15816
+ },
15817
+ "releaseTag": "Public",
15818
+ "isProtected": false,
15819
+ "overloadIndex": 1,
15820
+ "parameters": [
15821
+ {
15822
+ "parameterName": "source",
15823
+ "parameterTypeTokenRange": {
15824
+ "startIndex": 1,
15825
+ "endIndex": 2
15826
+ },
15827
+ "isOptional": false
15828
+ },
15829
+ {
15830
+ "parameterName": "propertyName",
15831
+ "parameterTypeTokenRange": {
15832
+ "startIndex": 3,
15833
+ "endIndex": 4
15834
+ },
15835
+ "isOptional": false
15836
+ }
15837
+ ],
15838
+ "isOptional": false,
15839
+ "name": "handleChange"
15840
+ },
15841
+ {
15842
+ "kind": "Property",
15843
+ "canonicalReference": "@fluentui/web-components!Slider#size:member",
15844
+ "docComment": "/**\n * The size of the slider\n *\n * @remarks\n *\n * HTML Attribute: size\n *\n * @public\n */\n",
15845
+ "excerptTokens": [
15846
+ {
15847
+ "kind": "Content",
15848
+ "text": "size?: "
15849
+ },
15850
+ {
15851
+ "kind": "Reference",
15852
+ "text": "SliderSize",
15853
+ "canonicalReference": "@fluentui/web-components!SliderSize:type"
15854
+ },
15855
+ {
15856
+ "kind": "Content",
15857
+ "text": ";"
15858
+ }
15859
+ ],
15860
+ "isReadonly": false,
15861
+ "isOptional": true,
15862
+ "releaseTag": "Public",
15863
+ "name": "size",
15864
+ "propertyTypeTokenRange": {
15865
+ "startIndex": 1,
15866
+ "endIndex": 2
15867
+ },
15868
+ "isStatic": false,
15869
+ "isProtected": false
15870
+ }
15871
+ ],
15872
+ "extendsTokenRange": {
15873
+ "startIndex": 1,
15874
+ "endIndex": 2
15875
+ },
15876
+ "implementsTokenRanges": []
15877
+ },
15878
+ {
15879
+ "kind": "Variable",
15880
+ "canonicalReference": "@fluentui/web-components!SliderDefinition:var",
15881
+ "docComment": "/**\n * The Fluent Slider Element.\n *\n * @remarks\n *\n * HTML Element: \\<fluent-slider\\>\n *\n * @public\n */\n",
15882
+ "excerptTokens": [
15883
+ {
15884
+ "kind": "Content",
15885
+ "text": "definition: "
15886
+ },
15887
+ {
15888
+ "kind": "Content",
15889
+ "text": "import(\"@microsoft/fast-element\")."
15890
+ },
15891
+ {
15892
+ "kind": "Reference",
15893
+ "text": "FASTElementDefinition",
15894
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
15895
+ },
15896
+ {
15897
+ "kind": "Content",
15898
+ "text": "<typeof "
15899
+ },
15900
+ {
15901
+ "kind": "Reference",
15902
+ "text": "Slider",
15903
+ "canonicalReference": "@fluentui/web-components!Slider:class"
15904
+ },
15905
+ {
15906
+ "kind": "Content",
15907
+ "text": ">"
15908
+ }
15909
+ ],
15910
+ "isReadonly": true,
15911
+ "releaseTag": "Public",
15912
+ "name": "SliderDefinition",
15913
+ "variableTypeTokenRange": {
15914
+ "startIndex": 1,
15915
+ "endIndex": 6
15916
+ }
15917
+ },
15918
+ {
15919
+ "kind": "TypeAlias",
15920
+ "canonicalReference": "@fluentui/web-components!SliderSize:type",
15921
+ "docComment": "/**\n * Applies bar height to the slider rail and diameter to the slider thumbs\n *\n * @public\n */\n",
15922
+ "excerptTokens": [
15923
+ {
15924
+ "kind": "Content",
15925
+ "text": "export declare type SliderSize = "
15926
+ },
15927
+ {
15928
+ "kind": "Reference",
15929
+ "text": "ValuesOf",
15930
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
15931
+ },
15932
+ {
15933
+ "kind": "Content",
15934
+ "text": "<typeof "
15935
+ },
15936
+ {
15937
+ "kind": "Reference",
15938
+ "text": "SliderSize",
15939
+ "canonicalReference": "@fluentui/web-components!SliderSize:var"
15940
+ },
15941
+ {
15942
+ "kind": "Content",
15943
+ "text": ">"
15944
+ },
15945
+ {
15946
+ "kind": "Content",
15947
+ "text": ";"
15948
+ }
15949
+ ],
15950
+ "releaseTag": "Public",
15951
+ "name": "SliderSize",
15952
+ "typeTokenRange": {
15953
+ "startIndex": 1,
15954
+ "endIndex": 5
15955
+ }
15956
+ },
15957
+ {
15958
+ "kind": "Variable",
15959
+ "canonicalReference": "@fluentui/web-components!SliderSize:var",
15960
+ "docComment": "/**\n * SliderSize Constants\n *\n * @public\n */\n",
15961
+ "excerptTokens": [
15962
+ {
15963
+ "kind": "Content",
15964
+ "text": "SliderSize: "
15965
+ },
15966
+ {
15967
+ "kind": "Content",
15968
+ "text": "{\n readonly small: \"small\";\n readonly medium: \"medium\";\n}"
15969
+ }
15970
+ ],
15971
+ "isReadonly": true,
15972
+ "releaseTag": "Public",
15973
+ "name": "SliderSize",
15974
+ "variableTypeTokenRange": {
15975
+ "startIndex": 1,
15976
+ "endIndex": 2
15977
+ }
15978
+ },
15979
+ {
15980
+ "kind": "Variable",
15981
+ "canonicalReference": "@fluentui/web-components!SliderStyles:var",
15982
+ "docComment": "/**\n * Text styles\n *\n * @public\n */\n",
15983
+ "excerptTokens": [
15984
+ {
15985
+ "kind": "Content",
15986
+ "text": "styles: "
15987
+ },
15988
+ {
15989
+ "kind": "Content",
15990
+ "text": "import(\"@microsoft/fast-element\")."
15991
+ },
15992
+ {
15993
+ "kind": "Reference",
15994
+ "text": "ElementStyles",
15995
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
15996
+ }
15997
+ ],
15998
+ "isReadonly": true,
15999
+ "releaseTag": "Public",
16000
+ "name": "SliderStyles",
16001
+ "variableTypeTokenRange": {
16002
+ "startIndex": 1,
16003
+ "endIndex": 3
16004
+ }
16005
+ },
16006
+ {
16007
+ "kind": "Variable",
16008
+ "canonicalReference": "@fluentui/web-components!SliderTemplate:var",
16009
+ "docComment": "",
16010
+ "excerptTokens": [
16011
+ {
16012
+ "kind": "Content",
16013
+ "text": "template: "
16014
+ },
16015
+ {
16016
+ "kind": "Reference",
16017
+ "text": "ElementViewTemplate",
16018
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
16019
+ },
16020
+ {
16021
+ "kind": "Content",
16022
+ "text": "<"
16023
+ },
16024
+ {
16025
+ "kind": "Reference",
16026
+ "text": "FASTSlider",
16027
+ "canonicalReference": "@microsoft/fast-foundation!FASTSlider:class"
16028
+ },
16029
+ {
16030
+ "kind": "Content",
16031
+ "text": ">"
16032
+ }
16033
+ ],
16034
+ "isReadonly": true,
16035
+ "releaseTag": "Public",
16036
+ "name": "SliderTemplate",
16037
+ "variableTypeTokenRange": {
16038
+ "startIndex": 1,
16039
+ "endIndex": 5
16040
+ }
16041
+ },
16042
+ {
16043
+ "kind": "Variable",
16044
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalL:var",
16045
+ "docComment": "",
16046
+ "excerptTokens": [
16047
+ {
16048
+ "kind": "Content",
16049
+ "text": "spacingHorizontalL: "
16050
+ },
16051
+ {
16052
+ "kind": "Content",
16053
+ "text": "import(\"@microsoft/fast-foundation\")."
16054
+ },
16055
+ {
16056
+ "kind": "Reference",
16057
+ "text": "CSSDesignToken",
16058
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16059
+ },
16060
+ {
16061
+ "kind": "Content",
16062
+ "text": "<string>"
16063
+ }
16064
+ ],
16065
+ "isReadonly": true,
16066
+ "releaseTag": "Public",
16067
+ "name": "spacingHorizontalL",
16068
+ "variableTypeTokenRange": {
16069
+ "startIndex": 1,
16070
+ "endIndex": 4
16071
+ }
16072
+ },
16073
+ {
16074
+ "kind": "Variable",
16075
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalM:var",
16076
+ "docComment": "",
16077
+ "excerptTokens": [
16078
+ {
16079
+ "kind": "Content",
16080
+ "text": "spacingHorizontalM: "
16081
+ },
16082
+ {
16083
+ "kind": "Content",
16084
+ "text": "import(\"@microsoft/fast-foundation\")."
16085
+ },
16086
+ {
16087
+ "kind": "Reference",
16088
+ "text": "CSSDesignToken",
16089
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16090
+ },
16091
+ {
16092
+ "kind": "Content",
16093
+ "text": "<string>"
16094
+ }
16095
+ ],
16096
+ "isReadonly": true,
16097
+ "releaseTag": "Public",
16098
+ "name": "spacingHorizontalM",
16099
+ "variableTypeTokenRange": {
16100
+ "startIndex": 1,
16101
+ "endIndex": 4
16102
+ }
16103
+ },
16104
+ {
16105
+ "kind": "Variable",
16106
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalMNudge:var",
16107
+ "docComment": "",
16108
+ "excerptTokens": [
16109
+ {
16110
+ "kind": "Content",
16111
+ "text": "spacingHorizontalMNudge: "
16112
+ },
16113
+ {
16114
+ "kind": "Content",
16115
+ "text": "import(\"@microsoft/fast-foundation\")."
16116
+ },
16117
+ {
16118
+ "kind": "Reference",
16119
+ "text": "CSSDesignToken",
16120
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16121
+ },
16122
+ {
16123
+ "kind": "Content",
16124
+ "text": "<string>"
16125
+ }
16126
+ ],
16127
+ "isReadonly": true,
16128
+ "releaseTag": "Public",
16129
+ "name": "spacingHorizontalMNudge",
16130
+ "variableTypeTokenRange": {
16131
+ "startIndex": 1,
16132
+ "endIndex": 4
16133
+ }
16134
+ },
16135
+ {
16136
+ "kind": "Variable",
16137
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalNone:var",
16138
+ "docComment": "",
16139
+ "excerptTokens": [
16140
+ {
16141
+ "kind": "Content",
16142
+ "text": "spacingHorizontalNone: "
16143
+ },
16144
+ {
16145
+ "kind": "Content",
16146
+ "text": "import(\"@microsoft/fast-foundation\")."
16147
+ },
16148
+ {
16149
+ "kind": "Reference",
16150
+ "text": "CSSDesignToken",
16151
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16152
+ },
16153
+ {
16154
+ "kind": "Content",
16155
+ "text": "<string>"
16156
+ }
16157
+ ],
16158
+ "isReadonly": true,
16159
+ "releaseTag": "Public",
16160
+ "name": "spacingHorizontalNone",
16161
+ "variableTypeTokenRange": {
16162
+ "startIndex": 1,
16163
+ "endIndex": 4
16164
+ }
16165
+ },
16166
+ {
16167
+ "kind": "Variable",
16168
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalS:var",
16169
+ "docComment": "",
16170
+ "excerptTokens": [
16171
+ {
16172
+ "kind": "Content",
16173
+ "text": "spacingHorizontalS: "
16174
+ },
16175
+ {
16176
+ "kind": "Content",
16177
+ "text": "import(\"@microsoft/fast-foundation\")."
16178
+ },
16179
+ {
16180
+ "kind": "Reference",
16181
+ "text": "CSSDesignToken",
16182
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16183
+ },
16184
+ {
16185
+ "kind": "Content",
16186
+ "text": "<string>"
16187
+ }
16188
+ ],
16189
+ "isReadonly": true,
16190
+ "releaseTag": "Public",
16191
+ "name": "spacingHorizontalS",
16192
+ "variableTypeTokenRange": {
16193
+ "startIndex": 1,
16194
+ "endIndex": 4
16195
+ }
16196
+ },
16197
+ {
16198
+ "kind": "Variable",
16199
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalSNudge:var",
16200
+ "docComment": "",
16201
+ "excerptTokens": [
16202
+ {
16203
+ "kind": "Content",
16204
+ "text": "spacingHorizontalSNudge: "
16205
+ },
16206
+ {
16207
+ "kind": "Content",
16208
+ "text": "import(\"@microsoft/fast-foundation\")."
16209
+ },
16210
+ {
16211
+ "kind": "Reference",
16212
+ "text": "CSSDesignToken",
16213
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16214
+ },
16215
+ {
16216
+ "kind": "Content",
16217
+ "text": "<string>"
16218
+ }
16219
+ ],
16220
+ "isReadonly": true,
16221
+ "releaseTag": "Public",
16222
+ "name": "spacingHorizontalSNudge",
16223
+ "variableTypeTokenRange": {
16224
+ "startIndex": 1,
16225
+ "endIndex": 4
16226
+ }
16227
+ },
16228
+ {
16229
+ "kind": "Variable",
16230
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalXL:var",
16231
+ "docComment": "",
16232
+ "excerptTokens": [
16233
+ {
16234
+ "kind": "Content",
16235
+ "text": "spacingHorizontalXL: "
16236
+ },
16237
+ {
16238
+ "kind": "Content",
16239
+ "text": "import(\"@microsoft/fast-foundation\")."
16240
+ },
16241
+ {
16242
+ "kind": "Reference",
16243
+ "text": "CSSDesignToken",
16244
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16245
+ },
16246
+ {
16247
+ "kind": "Content",
16248
+ "text": "<string>"
16249
+ }
16250
+ ],
16251
+ "isReadonly": true,
16252
+ "releaseTag": "Public",
16253
+ "name": "spacingHorizontalXL",
16254
+ "variableTypeTokenRange": {
16255
+ "startIndex": 1,
16256
+ "endIndex": 4
16257
+ }
16258
+ },
16259
+ {
16260
+ "kind": "Variable",
16261
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalXS:var",
16262
+ "docComment": "",
16263
+ "excerptTokens": [
16264
+ {
16265
+ "kind": "Content",
16266
+ "text": "spacingHorizontalXS: "
16267
+ },
16268
+ {
16269
+ "kind": "Content",
16270
+ "text": "import(\"@microsoft/fast-foundation\")."
16271
+ },
16272
+ {
16273
+ "kind": "Reference",
16274
+ "text": "CSSDesignToken",
16275
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16276
+ },
16277
+ {
16278
+ "kind": "Content",
16279
+ "text": "<string>"
16280
+ }
16281
+ ],
16282
+ "isReadonly": true,
16283
+ "releaseTag": "Public",
16284
+ "name": "spacingHorizontalXS",
16285
+ "variableTypeTokenRange": {
16286
+ "startIndex": 1,
16287
+ "endIndex": 4
16288
+ }
16289
+ },
16290
+ {
16291
+ "kind": "Variable",
16292
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalXXL:var",
16293
+ "docComment": "",
16294
+ "excerptTokens": [
16295
+ {
16296
+ "kind": "Content",
16297
+ "text": "spacingHorizontalXXL: "
16298
+ },
16299
+ {
16300
+ "kind": "Content",
16301
+ "text": "import(\"@microsoft/fast-foundation\")."
16302
+ },
16303
+ {
16304
+ "kind": "Reference",
16305
+ "text": "CSSDesignToken",
16306
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16307
+ },
16308
+ {
16309
+ "kind": "Content",
16310
+ "text": "<string>"
16311
+ }
16312
+ ],
16313
+ "isReadonly": true,
16314
+ "releaseTag": "Public",
16315
+ "name": "spacingHorizontalXXL",
16316
+ "variableTypeTokenRange": {
16317
+ "startIndex": 1,
16318
+ "endIndex": 4
16319
+ }
16320
+ },
16321
+ {
16322
+ "kind": "Variable",
16323
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalXXS:var",
16324
+ "docComment": "",
16325
+ "excerptTokens": [
16326
+ {
16327
+ "kind": "Content",
16328
+ "text": "spacingHorizontalXXS: "
16329
+ },
16330
+ {
16331
+ "kind": "Content",
16332
+ "text": "import(\"@microsoft/fast-foundation\")."
16333
+ },
16334
+ {
16335
+ "kind": "Reference",
16336
+ "text": "CSSDesignToken",
16337
+ "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16338
+ },
16339
+ {
16340
+ "kind": "Content",
16341
+ "text": "<string>"
15052
16342
  }
15053
16343
  ],
15054
16344
  "isReadonly": true,
15055
16345
  "releaseTag": "Public",
15056
- "name": "setTheme",
16346
+ "name": "spacingHorizontalXXS",
15057
16347
  "variableTypeTokenRange": {
15058
16348
  "startIndex": 1,
15059
16349
  "endIndex": 4
@@ -15061,12 +16351,12 @@
15061
16351
  },
15062
16352
  {
15063
16353
  "kind": "Variable",
15064
- "canonicalReference": "@fluentui/web-components!shadow16:var",
16354
+ "canonicalReference": "@fluentui/web-components!spacingHorizontalXXXL:var",
15065
16355
  "docComment": "",
15066
16356
  "excerptTokens": [
15067
16357
  {
15068
16358
  "kind": "Content",
15069
- "text": "shadow16: "
16359
+ "text": "spacingHorizontalXXXL: "
15070
16360
  },
15071
16361
  {
15072
16362
  "kind": "Content",
@@ -15084,7 +16374,7 @@
15084
16374
  ],
15085
16375
  "isReadonly": true,
15086
16376
  "releaseTag": "Public",
15087
- "name": "shadow16",
16377
+ "name": "spacingHorizontalXXXL",
15088
16378
  "variableTypeTokenRange": {
15089
16379
  "startIndex": 1,
15090
16380
  "endIndex": 4
@@ -15092,12 +16382,12 @@
15092
16382
  },
15093
16383
  {
15094
16384
  "kind": "Variable",
15095
- "canonicalReference": "@fluentui/web-components!shadow16Brand:var",
16385
+ "canonicalReference": "@fluentui/web-components!spacingVerticalL:var",
15096
16386
  "docComment": "",
15097
16387
  "excerptTokens": [
15098
16388
  {
15099
16389
  "kind": "Content",
15100
- "text": "shadow16Brand: "
16390
+ "text": "spacingVerticalL: "
15101
16391
  },
15102
16392
  {
15103
16393
  "kind": "Content",
@@ -15115,7 +16405,7 @@
15115
16405
  ],
15116
16406
  "isReadonly": true,
15117
16407
  "releaseTag": "Public",
15118
- "name": "shadow16Brand",
16408
+ "name": "spacingVerticalL",
15119
16409
  "variableTypeTokenRange": {
15120
16410
  "startIndex": 1,
15121
16411
  "endIndex": 4
@@ -15123,12 +16413,12 @@
15123
16413
  },
15124
16414
  {
15125
16415
  "kind": "Variable",
15126
- "canonicalReference": "@fluentui/web-components!shadow2:var",
16416
+ "canonicalReference": "@fluentui/web-components!spacingVerticalM:var",
15127
16417
  "docComment": "",
15128
16418
  "excerptTokens": [
15129
16419
  {
15130
16420
  "kind": "Content",
15131
- "text": "shadow2: "
16421
+ "text": "spacingVerticalM: "
15132
16422
  },
15133
16423
  {
15134
16424
  "kind": "Content",
@@ -15146,7 +16436,7 @@
15146
16436
  ],
15147
16437
  "isReadonly": true,
15148
16438
  "releaseTag": "Public",
15149
- "name": "shadow2",
16439
+ "name": "spacingVerticalM",
15150
16440
  "variableTypeTokenRange": {
15151
16441
  "startIndex": 1,
15152
16442
  "endIndex": 4
@@ -15154,12 +16444,12 @@
15154
16444
  },
15155
16445
  {
15156
16446
  "kind": "Variable",
15157
- "canonicalReference": "@fluentui/web-components!shadow28:var",
16447
+ "canonicalReference": "@fluentui/web-components!spacingVerticalMNudge:var",
15158
16448
  "docComment": "",
15159
16449
  "excerptTokens": [
15160
16450
  {
15161
16451
  "kind": "Content",
15162
- "text": "shadow28: "
16452
+ "text": "spacingVerticalMNudge: "
15163
16453
  },
15164
16454
  {
15165
16455
  "kind": "Content",
@@ -15177,7 +16467,7 @@
15177
16467
  ],
15178
16468
  "isReadonly": true,
15179
16469
  "releaseTag": "Public",
15180
- "name": "shadow28",
16470
+ "name": "spacingVerticalMNudge",
15181
16471
  "variableTypeTokenRange": {
15182
16472
  "startIndex": 1,
15183
16473
  "endIndex": 4
@@ -15185,12 +16475,12 @@
15185
16475
  },
15186
16476
  {
15187
16477
  "kind": "Variable",
15188
- "canonicalReference": "@fluentui/web-components!shadow28Brand:var",
16478
+ "canonicalReference": "@fluentui/web-components!spacingVerticalNone:var",
15189
16479
  "docComment": "",
15190
16480
  "excerptTokens": [
15191
16481
  {
15192
16482
  "kind": "Content",
15193
- "text": "shadow28Brand: "
16483
+ "text": "spacingVerticalNone: "
15194
16484
  },
15195
16485
  {
15196
16486
  "kind": "Content",
@@ -15208,7 +16498,7 @@
15208
16498
  ],
15209
16499
  "isReadonly": true,
15210
16500
  "releaseTag": "Public",
15211
- "name": "shadow28Brand",
16501
+ "name": "spacingVerticalNone",
15212
16502
  "variableTypeTokenRange": {
15213
16503
  "startIndex": 1,
15214
16504
  "endIndex": 4
@@ -15216,12 +16506,12 @@
15216
16506
  },
15217
16507
  {
15218
16508
  "kind": "Variable",
15219
- "canonicalReference": "@fluentui/web-components!shadow2Brand:var",
16509
+ "canonicalReference": "@fluentui/web-components!spacingVerticalS:var",
15220
16510
  "docComment": "",
15221
16511
  "excerptTokens": [
15222
16512
  {
15223
16513
  "kind": "Content",
15224
- "text": "shadow2Brand: "
16514
+ "text": "spacingVerticalS: "
15225
16515
  },
15226
16516
  {
15227
16517
  "kind": "Content",
@@ -15239,7 +16529,7 @@
15239
16529
  ],
15240
16530
  "isReadonly": true,
15241
16531
  "releaseTag": "Public",
15242
- "name": "shadow2Brand",
16532
+ "name": "spacingVerticalS",
15243
16533
  "variableTypeTokenRange": {
15244
16534
  "startIndex": 1,
15245
16535
  "endIndex": 4
@@ -15247,12 +16537,12 @@
15247
16537
  },
15248
16538
  {
15249
16539
  "kind": "Variable",
15250
- "canonicalReference": "@fluentui/web-components!shadow4:var",
16540
+ "canonicalReference": "@fluentui/web-components!spacingVerticalSNudge:var",
15251
16541
  "docComment": "",
15252
16542
  "excerptTokens": [
15253
16543
  {
15254
16544
  "kind": "Content",
15255
- "text": "shadow4: "
16545
+ "text": "spacingVerticalSNudge: "
15256
16546
  },
15257
16547
  {
15258
16548
  "kind": "Content",
@@ -15270,7 +16560,7 @@
15270
16560
  ],
15271
16561
  "isReadonly": true,
15272
16562
  "releaseTag": "Public",
15273
- "name": "shadow4",
16563
+ "name": "spacingVerticalSNudge",
15274
16564
  "variableTypeTokenRange": {
15275
16565
  "startIndex": 1,
15276
16566
  "endIndex": 4
@@ -15278,12 +16568,12 @@
15278
16568
  },
15279
16569
  {
15280
16570
  "kind": "Variable",
15281
- "canonicalReference": "@fluentui/web-components!shadow4Brand:var",
16571
+ "canonicalReference": "@fluentui/web-components!spacingVerticalXL:var",
15282
16572
  "docComment": "",
15283
16573
  "excerptTokens": [
15284
16574
  {
15285
16575
  "kind": "Content",
15286
- "text": "shadow4Brand: "
16576
+ "text": "spacingVerticalXL: "
15287
16577
  },
15288
16578
  {
15289
16579
  "kind": "Content",
@@ -15301,7 +16591,7 @@
15301
16591
  ],
15302
16592
  "isReadonly": true,
15303
16593
  "releaseTag": "Public",
15304
- "name": "shadow4Brand",
16594
+ "name": "spacingVerticalXL",
15305
16595
  "variableTypeTokenRange": {
15306
16596
  "startIndex": 1,
15307
16597
  "endIndex": 4
@@ -15309,12 +16599,12 @@
15309
16599
  },
15310
16600
  {
15311
16601
  "kind": "Variable",
15312
- "canonicalReference": "@fluentui/web-components!shadow64:var",
16602
+ "canonicalReference": "@fluentui/web-components!spacingVerticalXS:var",
15313
16603
  "docComment": "",
15314
16604
  "excerptTokens": [
15315
16605
  {
15316
16606
  "kind": "Content",
15317
- "text": "shadow64: "
16607
+ "text": "spacingVerticalXS: "
15318
16608
  },
15319
16609
  {
15320
16610
  "kind": "Content",
@@ -15332,7 +16622,7 @@
15332
16622
  ],
15333
16623
  "isReadonly": true,
15334
16624
  "releaseTag": "Public",
15335
- "name": "shadow64",
16625
+ "name": "spacingVerticalXS",
15336
16626
  "variableTypeTokenRange": {
15337
16627
  "startIndex": 1,
15338
16628
  "endIndex": 4
@@ -15340,12 +16630,12 @@
15340
16630
  },
15341
16631
  {
15342
16632
  "kind": "Variable",
15343
- "canonicalReference": "@fluentui/web-components!shadow64Brand:var",
16633
+ "canonicalReference": "@fluentui/web-components!spacingVerticalXXL:var",
15344
16634
  "docComment": "",
15345
16635
  "excerptTokens": [
15346
16636
  {
15347
16637
  "kind": "Content",
15348
- "text": "shadow64Brand: "
16638
+ "text": "spacingVerticalXXL: "
15349
16639
  },
15350
16640
  {
15351
16641
  "kind": "Content",
@@ -15363,7 +16653,7 @@
15363
16653
  ],
15364
16654
  "isReadonly": true,
15365
16655
  "releaseTag": "Public",
15366
- "name": "shadow64Brand",
16656
+ "name": "spacingVerticalXXL",
15367
16657
  "variableTypeTokenRange": {
15368
16658
  "startIndex": 1,
15369
16659
  "endIndex": 4
@@ -15371,12 +16661,12 @@
15371
16661
  },
15372
16662
  {
15373
16663
  "kind": "Variable",
15374
- "canonicalReference": "@fluentui/web-components!shadow8:var",
16664
+ "canonicalReference": "@fluentui/web-components!spacingVerticalXXS:var",
15375
16665
  "docComment": "",
15376
16666
  "excerptTokens": [
15377
16667
  {
15378
16668
  "kind": "Content",
15379
- "text": "shadow8: "
16669
+ "text": "spacingVerticalXXS: "
15380
16670
  },
15381
16671
  {
15382
16672
  "kind": "Content",
@@ -15394,7 +16684,7 @@
15394
16684
  ],
15395
16685
  "isReadonly": true,
15396
16686
  "releaseTag": "Public",
15397
- "name": "shadow8",
16687
+ "name": "spacingVerticalXXS",
15398
16688
  "variableTypeTokenRange": {
15399
16689
  "startIndex": 1,
15400
16690
  "endIndex": 4
@@ -15402,12 +16692,12 @@
15402
16692
  },
15403
16693
  {
15404
16694
  "kind": "Variable",
15405
- "canonicalReference": "@fluentui/web-components!shadow8Brand:var",
16695
+ "canonicalReference": "@fluentui/web-components!spacingVerticalXXXL:var",
15406
16696
  "docComment": "",
15407
16697
  "excerptTokens": [
15408
16698
  {
15409
16699
  "kind": "Content",
15410
- "text": "shadow8Brand: "
16700
+ "text": "spacingVerticalXXXL: "
15411
16701
  },
15412
16702
  {
15413
16703
  "kind": "Content",
@@ -15425,7 +16715,7 @@
15425
16715
  ],
15426
16716
  "isReadonly": true,
15427
16717
  "releaseTag": "Public",
15428
- "name": "shadow8Brand",
16718
+ "name": "spacingVerticalXXXL",
15429
16719
  "variableTypeTokenRange": {
15430
16720
  "startIndex": 1,
15431
16721
  "endIndex": 4
@@ -15433,17 +16723,17 @@
15433
16723
  },
15434
16724
  {
15435
16725
  "kind": "Class",
15436
- "canonicalReference": "@fluentui/web-components!Slider:class",
15437
- "docComment": "/**\n * The base class used for constructing a fluent-slider custom element\n *\n * @public\n */\n",
16726
+ "canonicalReference": "@fluentui/web-components!Spinner:class",
16727
+ "docComment": "/**\n * The base class used for constructing a fluent-spinner custom element\n *\n * @public\n */\n",
15438
16728
  "excerptTokens": [
15439
16729
  {
15440
16730
  "kind": "Content",
15441
- "text": "export declare class Slider extends "
16731
+ "text": "export declare class Spinner extends "
15442
16732
  },
15443
16733
  {
15444
16734
  "kind": "Reference",
15445
- "text": "FASTSlider",
15446
- "canonicalReference": "@microsoft/fast-foundation!FASTSlider:class"
16735
+ "text": "FASTProgressRing",
16736
+ "canonicalReference": "@microsoft/fast-foundation!FASTProgressRing:class"
15447
16737
  },
15448
16738
  {
15449
16739
  "kind": "Content",
@@ -15451,136 +16741,43 @@
15451
16741
  }
15452
16742
  ],
15453
16743
  "releaseTag": "Public",
15454
- "name": "Slider",
16744
+ "name": "Spinner",
15455
16745
  "preserveMemberOrder": false,
15456
16746
  "members": [
15457
16747
  {
15458
- "kind": "Method",
15459
- "canonicalReference": "@fluentui/web-components!Slider#connectedCallback:member(1)",
15460
- "docComment": "",
16748
+ "kind": "Property",
16749
+ "canonicalReference": "@fluentui/web-components!Spinner#appearance:member",
16750
+ "docComment": "/**\n * The appearance of the spinner\n *\n * @default 'primary'\n *\n * @remarks\n *\n * HTML Attribute: appearance\n *\n * @public\n */\n",
15461
16751
  "excerptTokens": [
15462
16752
  {
15463
16753
  "kind": "Content",
15464
- "text": "connectedCallback(): "
16754
+ "text": "appearance?: "
15465
16755
  },
15466
16756
  {
15467
- "kind": "Content",
15468
- "text": "void"
16757
+ "kind": "Reference",
16758
+ "text": "SpinnerAppearance",
16759
+ "canonicalReference": "@fluentui/web-components!SpinnerAppearance:type"
15469
16760
  },
15470
16761
  {
15471
16762
  "kind": "Content",
15472
16763
  "text": ";"
15473
16764
  }
15474
16765
  ],
15475
- "isStatic": false,
15476
- "returnTypeTokenRange": {
15477
- "startIndex": 1,
15478
- "endIndex": 2
15479
- },
16766
+ "isReadonly": false,
16767
+ "isOptional": true,
15480
16768
  "releaseTag": "Public",
15481
- "isProtected": false,
15482
- "overloadIndex": 1,
15483
- "parameters": [],
15484
- "isOptional": false,
15485
- "name": "connectedCallback"
15486
- },
15487
- {
15488
- "kind": "Method",
15489
- "canonicalReference": "@fluentui/web-components!Slider#disconnectedCallback:member(1)",
15490
- "docComment": "",
15491
- "excerptTokens": [
15492
- {
15493
- "kind": "Content",
15494
- "text": "disconnectedCallback(): "
15495
- },
15496
- {
15497
- "kind": "Content",
15498
- "text": "void"
15499
- },
15500
- {
15501
- "kind": "Content",
15502
- "text": ";"
15503
- }
15504
- ],
15505
- "isStatic": false,
15506
- "returnTypeTokenRange": {
16769
+ "name": "appearance",
16770
+ "propertyTypeTokenRange": {
15507
16771
  "startIndex": 1,
15508
16772
  "endIndex": 2
15509
16773
  },
15510
- "releaseTag": "Public",
15511
- "isProtected": false,
15512
- "overloadIndex": 1,
15513
- "parameters": [],
15514
- "isOptional": false,
15515
- "name": "disconnectedCallback"
15516
- },
15517
- {
15518
- "kind": "Method",
15519
- "canonicalReference": "@fluentui/web-components!Slider#handleChange:member(1)",
15520
- "docComment": "",
15521
- "excerptTokens": [
15522
- {
15523
- "kind": "Content",
15524
- "text": "handleChange(source: "
15525
- },
15526
- {
15527
- "kind": "Content",
15528
- "text": "any"
15529
- },
15530
- {
15531
- "kind": "Content",
15532
- "text": ", propertyName: "
15533
- },
15534
- {
15535
- "kind": "Content",
15536
- "text": "string"
15537
- },
15538
- {
15539
- "kind": "Content",
15540
- "text": "): "
15541
- },
15542
- {
15543
- "kind": "Content",
15544
- "text": "void"
15545
- },
15546
- {
15547
- "kind": "Content",
15548
- "text": ";"
15549
- }
15550
- ],
15551
16774
  "isStatic": false,
15552
- "returnTypeTokenRange": {
15553
- "startIndex": 5,
15554
- "endIndex": 6
15555
- },
15556
- "releaseTag": "Public",
15557
- "isProtected": false,
15558
- "overloadIndex": 1,
15559
- "parameters": [
15560
- {
15561
- "parameterName": "source",
15562
- "parameterTypeTokenRange": {
15563
- "startIndex": 1,
15564
- "endIndex": 2
15565
- },
15566
- "isOptional": false
15567
- },
15568
- {
15569
- "parameterName": "propertyName",
15570
- "parameterTypeTokenRange": {
15571
- "startIndex": 3,
15572
- "endIndex": 4
15573
- },
15574
- "isOptional": false
15575
- }
15576
- ],
15577
- "isOptional": false,
15578
- "name": "handleChange"
16775
+ "isProtected": false
15579
16776
  },
15580
16777
  {
15581
16778
  "kind": "Property",
15582
- "canonicalReference": "@fluentui/web-components!Slider#size:member",
15583
- "docComment": "/**\n * The size of the slider\n *\n * @remarks\n *\n * HTML Attribute: size\n *\n * @public\n */\n",
16779
+ "canonicalReference": "@fluentui/web-components!Spinner#size:member",
16780
+ "docComment": "/**\n * The size of the spinner\n *\n * @default 'medium'\n *\n * @remarks\n *\n * HTML Attribute: size\n *\n * @public\n */\n",
15584
16781
  "excerptTokens": [
15585
16782
  {
15586
16783
  "kind": "Content",
@@ -15588,8 +16785,8 @@
15588
16785
  },
15589
16786
  {
15590
16787
  "kind": "Reference",
15591
- "text": "SliderSize",
15592
- "canonicalReference": "@fluentui/web-components!SliderSize:type"
16788
+ "text": "SpinnerSize",
16789
+ "canonicalReference": "@fluentui/web-components!SpinnerSize:type"
15593
16790
  },
15594
16791
  {
15595
16792
  "kind": "Content",
@@ -15608,60 +16805,20 @@
15608
16805
  "isProtected": false
15609
16806
  }
15610
16807
  ],
15611
- "extendsTokenRange": {
15612
- "startIndex": 1,
15613
- "endIndex": 2
15614
- },
15615
- "implementsTokenRanges": []
15616
- },
15617
- {
15618
- "kind": "Variable",
15619
- "canonicalReference": "@fluentui/web-components!SliderDefinition:var",
15620
- "docComment": "/**\n * The Fluent Slider Element.\n *\n * @remarks\n *\n * HTML Element: \\<fluent-slider\\>\n *\n * @public\n */\n",
15621
- "excerptTokens": [
15622
- {
15623
- "kind": "Content",
15624
- "text": "definition: "
15625
- },
15626
- {
15627
- "kind": "Content",
15628
- "text": "import(\"@microsoft/fast-element\")."
15629
- },
15630
- {
15631
- "kind": "Reference",
15632
- "text": "FASTElementDefinition",
15633
- "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
15634
- },
15635
- {
15636
- "kind": "Content",
15637
- "text": "<typeof "
15638
- },
15639
- {
15640
- "kind": "Reference",
15641
- "text": "Slider",
15642
- "canonicalReference": "@fluentui/web-components!Slider:class"
15643
- },
15644
- {
15645
- "kind": "Content",
15646
- "text": ">"
15647
- }
15648
- ],
15649
- "isReadonly": true,
15650
- "releaseTag": "Public",
15651
- "name": "SliderDefinition",
15652
- "variableTypeTokenRange": {
16808
+ "extendsTokenRange": {
15653
16809
  "startIndex": 1,
15654
- "endIndex": 6
15655
- }
16810
+ "endIndex": 2
16811
+ },
16812
+ "implementsTokenRanges": []
15656
16813
  },
15657
16814
  {
15658
16815
  "kind": "TypeAlias",
15659
- "canonicalReference": "@fluentui/web-components!SliderSize:type",
15660
- "docComment": "/**\n * Applies bar height to the slider rail and diameter to the slider thumbs\n *\n * @public\n */\n",
16816
+ "canonicalReference": "@fluentui/web-components!SpinnerAppearance:type",
16817
+ "docComment": "/**\n * A Spinner's appearance can be either primary or inverted\n *\n * @public\n */\n",
15661
16818
  "excerptTokens": [
15662
16819
  {
15663
16820
  "kind": "Content",
15664
- "text": "export declare type SliderSize = "
16821
+ "text": "export declare type SpinnerAppearance = "
15665
16822
  },
15666
16823
  {
15667
16824
  "kind": "Reference",
@@ -15674,8 +16831,8 @@
15674
16831
  },
15675
16832
  {
15676
16833
  "kind": "Reference",
15677
- "text": "SliderSize",
15678
- "canonicalReference": "@fluentui/web-components!SliderSize:var"
16834
+ "text": "SpinnerAppearance",
16835
+ "canonicalReference": "@fluentui/web-components!SpinnerAppearance:var"
15679
16836
  },
15680
16837
  {
15681
16838
  "kind": "Content",
@@ -15687,7 +16844,7 @@
15687
16844
  }
15688
16845
  ],
15689
16846
  "releaseTag": "Public",
15690
- "name": "SliderSize",
16847
+ "name": "SpinnerAppearance",
15691
16848
  "typeTokenRange": {
15692
16849
  "startIndex": 1,
15693
16850
  "endIndex": 5
@@ -15695,21 +16852,21 @@
15695
16852
  },
15696
16853
  {
15697
16854
  "kind": "Variable",
15698
- "canonicalReference": "@fluentui/web-components!SliderSize:var",
15699
- "docComment": "/**\n * SliderSize Constants\n *\n * @public\n */\n",
16855
+ "canonicalReference": "@fluentui/web-components!SpinnerAppearance:var",
16856
+ "docComment": "/**\n * SpinnerAppearance constants\n *\n * @public\n */\n",
15700
16857
  "excerptTokens": [
15701
16858
  {
15702
16859
  "kind": "Content",
15703
- "text": "SliderSize: "
16860
+ "text": "SpinnerAppearance: "
15704
16861
  },
15705
16862
  {
15706
16863
  "kind": "Content",
15707
- "text": "{\n readonly small: \"small\";\n readonly medium: \"medium\";\n}"
16864
+ "text": "{\n readonly primary: \"primary\";\n readonly inverted: \"inverted\";\n}"
15708
16865
  }
15709
16866
  ],
15710
16867
  "isReadonly": true,
15711
16868
  "releaseTag": "Public",
15712
- "name": "SliderSize",
16869
+ "name": "SpinnerAppearance",
15713
16870
  "variableTypeTokenRange": {
15714
16871
  "startIndex": 1,
15715
16872
  "endIndex": 2
@@ -15717,12 +16874,12 @@
15717
16874
  },
15718
16875
  {
15719
16876
  "kind": "Variable",
15720
- "canonicalReference": "@fluentui/web-components!SliderStyles:var",
15721
- "docComment": "/**\n * Text styles\n *\n * @public\n */\n",
16877
+ "canonicalReference": "@fluentui/web-components!SpinnerDefinition:var",
16878
+ "docComment": "/**\n * The Fluent Spinner Element. Implements {@link @microsoft/fast-foundation#ProgressRing}, {@link @microsoft/fast-foundation#progress-ringTemplate}\n *\n * @remarks\n *\n * HTML Element: \\<fluent-spinner\\>\n *\n * @public\n */\n",
15722
16879
  "excerptTokens": [
15723
16880
  {
15724
16881
  "kind": "Content",
15725
- "text": "styles: "
16882
+ "text": "definition: "
15726
16883
  },
15727
16884
  {
15728
16885
  "kind": "Content",
@@ -15730,40 +16887,17 @@
15730
16887
  },
15731
16888
  {
15732
16889
  "kind": "Reference",
15733
- "text": "ElementStyles",
15734
- "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
15735
- }
15736
- ],
15737
- "isReadonly": true,
15738
- "releaseTag": "Public",
15739
- "name": "SliderStyles",
15740
- "variableTypeTokenRange": {
15741
- "startIndex": 1,
15742
- "endIndex": 3
15743
- }
15744
- },
15745
- {
15746
- "kind": "Variable",
15747
- "canonicalReference": "@fluentui/web-components!SliderTemplate:var",
15748
- "docComment": "",
15749
- "excerptTokens": [
15750
- {
15751
- "kind": "Content",
15752
- "text": "template: "
15753
- },
15754
- {
15755
- "kind": "Reference",
15756
- "text": "ElementViewTemplate",
15757
- "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
16890
+ "text": "FASTElementDefinition",
16891
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
15758
16892
  },
15759
16893
  {
15760
16894
  "kind": "Content",
15761
- "text": "<"
16895
+ "text": "<typeof "
15762
16896
  },
15763
16897
  {
15764
16898
  "kind": "Reference",
15765
- "text": "FASTSlider",
15766
- "canonicalReference": "@microsoft/fast-foundation!FASTSlider:class"
16899
+ "text": "Spinner",
16900
+ "canonicalReference": "@fluentui/web-components!Spinner:class"
15767
16901
  },
15768
16902
  {
15769
16903
  "kind": "Content",
@@ -15772,144 +16906,144 @@
15772
16906
  ],
15773
16907
  "isReadonly": true,
15774
16908
  "releaseTag": "Public",
15775
- "name": "SliderTemplate",
16909
+ "name": "SpinnerDefinition",
15776
16910
  "variableTypeTokenRange": {
15777
16911
  "startIndex": 1,
15778
- "endIndex": 5
16912
+ "endIndex": 6
15779
16913
  }
15780
16914
  },
15781
16915
  {
15782
- "kind": "Variable",
15783
- "canonicalReference": "@fluentui/web-components!spacingHorizontalL:var",
15784
- "docComment": "",
16916
+ "kind": "TypeAlias",
16917
+ "canonicalReference": "@fluentui/web-components!SpinnerSize:type",
16918
+ "docComment": "/**\n * A Spinner's size can be either small, tiny, extra-small, medium, large, extra-large, or huge\n *\n * @public\n */\n",
15785
16919
  "excerptTokens": [
15786
16920
  {
15787
16921
  "kind": "Content",
15788
- "text": "spacingHorizontalL: "
16922
+ "text": "export declare type SpinnerSize = "
16923
+ },
16924
+ {
16925
+ "kind": "Reference",
16926
+ "text": "ValuesOf",
16927
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
15789
16928
  },
15790
16929
  {
15791
16930
  "kind": "Content",
15792
- "text": "import(\"@microsoft/fast-foundation\")."
16931
+ "text": "<typeof "
15793
16932
  },
15794
16933
  {
15795
16934
  "kind": "Reference",
15796
- "text": "CSSDesignToken",
15797
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16935
+ "text": "SpinnerSize",
16936
+ "canonicalReference": "@fluentui/web-components!SpinnerSize:var"
15798
16937
  },
15799
16938
  {
15800
16939
  "kind": "Content",
15801
- "text": "<string>"
16940
+ "text": ">"
16941
+ },
16942
+ {
16943
+ "kind": "Content",
16944
+ "text": ";"
15802
16945
  }
15803
16946
  ],
15804
- "isReadonly": true,
15805
16947
  "releaseTag": "Public",
15806
- "name": "spacingHorizontalL",
15807
- "variableTypeTokenRange": {
16948
+ "name": "SpinnerSize",
16949
+ "typeTokenRange": {
15808
16950
  "startIndex": 1,
15809
- "endIndex": 4
16951
+ "endIndex": 5
15810
16952
  }
15811
16953
  },
15812
16954
  {
15813
16955
  "kind": "Variable",
15814
- "canonicalReference": "@fluentui/web-components!spacingHorizontalM:var",
15815
- "docComment": "",
16956
+ "canonicalReference": "@fluentui/web-components!SpinnerSize:var",
16957
+ "docComment": "/**\n * SpinnerSize constants\n *\n * @public\n */\n",
15816
16958
  "excerptTokens": [
15817
16959
  {
15818
16960
  "kind": "Content",
15819
- "text": "spacingHorizontalM: "
15820
- },
15821
- {
15822
- "kind": "Content",
15823
- "text": "import(\"@microsoft/fast-foundation\")."
15824
- },
15825
- {
15826
- "kind": "Reference",
15827
- "text": "CSSDesignToken",
15828
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16961
+ "text": "SpinnerSize: "
15829
16962
  },
15830
16963
  {
15831
16964
  "kind": "Content",
15832
- "text": "<string>"
16965
+ "text": "{\n readonly tiny: \"tiny\";\n readonly extraSmall: \"extra-small\";\n readonly small: \"small\";\n readonly medium: \"medium\";\n readonly large: \"large\";\n readonly extraLarge: \"extra-large\";\n readonly huge: \"huge\";\n}"
15833
16966
  }
15834
16967
  ],
15835
16968
  "isReadonly": true,
15836
16969
  "releaseTag": "Public",
15837
- "name": "spacingHorizontalM",
16970
+ "name": "SpinnerSize",
15838
16971
  "variableTypeTokenRange": {
15839
16972
  "startIndex": 1,
15840
- "endIndex": 4
16973
+ "endIndex": 2
15841
16974
  }
15842
16975
  },
15843
16976
  {
15844
16977
  "kind": "Variable",
15845
- "canonicalReference": "@fluentui/web-components!spacingHorizontalMNudge:var",
16978
+ "canonicalReference": "@fluentui/web-components!SpinnerStyles:var",
15846
16979
  "docComment": "",
15847
16980
  "excerptTokens": [
15848
16981
  {
15849
16982
  "kind": "Content",
15850
- "text": "spacingHorizontalMNudge: "
16983
+ "text": "styles: "
15851
16984
  },
15852
16985
  {
15853
16986
  "kind": "Content",
15854
- "text": "import(\"@microsoft/fast-foundation\")."
16987
+ "text": "import(\"@microsoft/fast-element\")."
15855
16988
  },
15856
16989
  {
15857
16990
  "kind": "Reference",
15858
- "text": "CSSDesignToken",
15859
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
15860
- },
15861
- {
15862
- "kind": "Content",
15863
- "text": "<string>"
16991
+ "text": "ElementStyles",
16992
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
15864
16993
  }
15865
16994
  ],
15866
16995
  "isReadonly": true,
15867
16996
  "releaseTag": "Public",
15868
- "name": "spacingHorizontalMNudge",
16997
+ "name": "SpinnerStyles",
15869
16998
  "variableTypeTokenRange": {
15870
16999
  "startIndex": 1,
15871
- "endIndex": 4
17000
+ "endIndex": 3
15872
17001
  }
15873
17002
  },
15874
17003
  {
15875
17004
  "kind": "Variable",
15876
- "canonicalReference": "@fluentui/web-components!spacingHorizontalNone:var",
17005
+ "canonicalReference": "@fluentui/web-components!SpinnerTemplate:var",
15877
17006
  "docComment": "",
15878
17007
  "excerptTokens": [
15879
17008
  {
15880
17009
  "kind": "Content",
15881
- "text": "spacingHorizontalNone: "
17010
+ "text": "template: "
17011
+ },
17012
+ {
17013
+ "kind": "Reference",
17014
+ "text": "ElementViewTemplate",
17015
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
15882
17016
  },
15883
17017
  {
15884
17018
  "kind": "Content",
15885
- "text": "import(\"@microsoft/fast-foundation\")."
17019
+ "text": "<"
15886
17020
  },
15887
17021
  {
15888
17022
  "kind": "Reference",
15889
- "text": "CSSDesignToken",
15890
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17023
+ "text": "Spinner",
17024
+ "canonicalReference": "@fluentui/web-components!Spinner:class"
15891
17025
  },
15892
17026
  {
15893
17027
  "kind": "Content",
15894
- "text": "<string>"
17028
+ "text": ">"
15895
17029
  }
15896
17030
  ],
15897
17031
  "isReadonly": true,
15898
17032
  "releaseTag": "Public",
15899
- "name": "spacingHorizontalNone",
17033
+ "name": "SpinnerTemplate",
15900
17034
  "variableTypeTokenRange": {
15901
17035
  "startIndex": 1,
15902
- "endIndex": 4
17036
+ "endIndex": 5
15903
17037
  }
15904
17038
  },
15905
17039
  {
15906
17040
  "kind": "Variable",
15907
- "canonicalReference": "@fluentui/web-components!spacingHorizontalS:var",
17041
+ "canonicalReference": "@fluentui/web-components!strokeWidthThick:var",
15908
17042
  "docComment": "",
15909
17043
  "excerptTokens": [
15910
17044
  {
15911
17045
  "kind": "Content",
15912
- "text": "spacingHorizontalS: "
17046
+ "text": "strokeWidthThick: "
15913
17047
  },
15914
17048
  {
15915
17049
  "kind": "Content",
@@ -15927,7 +17061,7 @@
15927
17061
  ],
15928
17062
  "isReadonly": true,
15929
17063
  "releaseTag": "Public",
15930
- "name": "spacingHorizontalS",
17064
+ "name": "strokeWidthThick",
15931
17065
  "variableTypeTokenRange": {
15932
17066
  "startIndex": 1,
15933
17067
  "endIndex": 4
@@ -15935,12 +17069,12 @@
15935
17069
  },
15936
17070
  {
15937
17071
  "kind": "Variable",
15938
- "canonicalReference": "@fluentui/web-components!spacingHorizontalSNudge:var",
17072
+ "canonicalReference": "@fluentui/web-components!strokeWidthThicker:var",
15939
17073
  "docComment": "",
15940
17074
  "excerptTokens": [
15941
17075
  {
15942
17076
  "kind": "Content",
15943
- "text": "spacingHorizontalSNudge: "
17077
+ "text": "strokeWidthThicker: "
15944
17078
  },
15945
17079
  {
15946
17080
  "kind": "Content",
@@ -15958,7 +17092,7 @@
15958
17092
  ],
15959
17093
  "isReadonly": true,
15960
17094
  "releaseTag": "Public",
15961
- "name": "spacingHorizontalSNudge",
17095
+ "name": "strokeWidthThicker",
15962
17096
  "variableTypeTokenRange": {
15963
17097
  "startIndex": 1,
15964
17098
  "endIndex": 4
@@ -15966,12 +17100,12 @@
15966
17100
  },
15967
17101
  {
15968
17102
  "kind": "Variable",
15969
- "canonicalReference": "@fluentui/web-components!spacingHorizontalXL:var",
17103
+ "canonicalReference": "@fluentui/web-components!strokeWidthThickest:var",
15970
17104
  "docComment": "",
15971
17105
  "excerptTokens": [
15972
17106
  {
15973
17107
  "kind": "Content",
15974
- "text": "spacingHorizontalXL: "
17108
+ "text": "strokeWidthThickest: "
15975
17109
  },
15976
17110
  {
15977
17111
  "kind": "Content",
@@ -15989,7 +17123,7 @@
15989
17123
  ],
15990
17124
  "isReadonly": true,
15991
17125
  "releaseTag": "Public",
15992
- "name": "spacingHorizontalXL",
17126
+ "name": "strokeWidthThickest",
15993
17127
  "variableTypeTokenRange": {
15994
17128
  "startIndex": 1,
15995
17129
  "endIndex": 4
@@ -15997,12 +17131,12 @@
15997
17131
  },
15998
17132
  {
15999
17133
  "kind": "Variable",
16000
- "canonicalReference": "@fluentui/web-components!spacingHorizontalXS:var",
17134
+ "canonicalReference": "@fluentui/web-components!strokeWidthThin:var",
16001
17135
  "docComment": "",
16002
17136
  "excerptTokens": [
16003
17137
  {
16004
17138
  "kind": "Content",
16005
- "text": "spacingHorizontalXS: "
17139
+ "text": "strokeWidthThin: "
16006
17140
  },
16007
17141
  {
16008
17142
  "kind": "Content",
@@ -16020,7 +17154,7 @@
16020
17154
  ],
16021
17155
  "isReadonly": true,
16022
17156
  "releaseTag": "Public",
16023
- "name": "spacingHorizontalXS",
17157
+ "name": "strokeWidthThin",
16024
17158
  "variableTypeTokenRange": {
16025
17159
  "startIndex": 1,
16026
17160
  "endIndex": 4
@@ -16028,451 +17162,468 @@
16028
17162
  },
16029
17163
  {
16030
17164
  "kind": "Variable",
16031
- "canonicalReference": "@fluentui/web-components!spacingHorizontalXXL:var",
17165
+ "canonicalReference": "@fluentui/web-components!styles:var",
16032
17166
  "docComment": "",
16033
17167
  "excerptTokens": [
16034
17168
  {
16035
17169
  "kind": "Content",
16036
- "text": "spacingHorizontalXXL: "
17170
+ "text": "styles: "
16037
17171
  },
16038
17172
  {
16039
17173
  "kind": "Content",
16040
- "text": "import(\"@microsoft/fast-foundation\")."
17174
+ "text": "import(\"@microsoft/fast-element\")."
16041
17175
  },
16042
17176
  {
16043
17177
  "kind": "Reference",
16044
- "text": "CSSDesignToken",
16045
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16046
- },
16047
- {
16048
- "kind": "Content",
16049
- "text": "<string>"
17178
+ "text": "ElementStyles",
17179
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
16050
17180
  }
16051
17181
  ],
16052
17182
  "isReadonly": true,
16053
17183
  "releaseTag": "Public",
16054
- "name": "spacingHorizontalXXL",
17184
+ "name": "styles",
16055
17185
  "variableTypeTokenRange": {
16056
17186
  "startIndex": 1,
16057
- "endIndex": 4
17187
+ "endIndex": 3
16058
17188
  }
16059
17189
  },
16060
17190
  {
16061
- "kind": "Variable",
16062
- "canonicalReference": "@fluentui/web-components!spacingHorizontalXXS:var",
17191
+ "kind": "Class",
17192
+ "canonicalReference": "@fluentui/web-components!Switch:class",
16063
17193
  "docComment": "",
16064
17194
  "excerptTokens": [
16065
17195
  {
16066
17196
  "kind": "Content",
16067
- "text": "spacingHorizontalXXS: "
16068
- },
16069
- {
16070
- "kind": "Content",
16071
- "text": "import(\"@microsoft/fast-foundation\")."
17197
+ "text": "export declare class Switch extends "
16072
17198
  },
16073
17199
  {
16074
17200
  "kind": "Reference",
16075
- "text": "CSSDesignToken",
16076
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17201
+ "text": "FASTSwitch",
17202
+ "canonicalReference": "@microsoft/fast-foundation!FASTSwitch:class"
16077
17203
  },
16078
17204
  {
16079
17205
  "kind": "Content",
16080
- "text": "<string>"
17206
+ "text": " "
17207
+ }
17208
+ ],
17209
+ "releaseTag": "Public",
17210
+ "name": "Switch",
17211
+ "preserveMemberOrder": false,
17212
+ "members": [
17213
+ {
17214
+ "kind": "Property",
17215
+ "canonicalReference": "@fluentui/web-components!Switch#labelPosition:member",
17216
+ "docComment": "/**\n * The label position of the switch\n *\n * @default 'after'\n *\n * @remarks\n *\n * HTML Attribute: labelposition\n *\n * @public\n */\n",
17217
+ "excerptTokens": [
17218
+ {
17219
+ "kind": "Content",
17220
+ "text": "labelPosition: "
17221
+ },
17222
+ {
17223
+ "kind": "Reference",
17224
+ "text": "SwitchLabelPosition",
17225
+ "canonicalReference": "@fluentui/web-components!SwitchLabelPosition:type"
17226
+ },
17227
+ {
17228
+ "kind": "Content",
17229
+ "text": " | undefined"
17230
+ },
17231
+ {
17232
+ "kind": "Content",
17233
+ "text": ";"
17234
+ }
17235
+ ],
17236
+ "isReadonly": false,
17237
+ "isOptional": false,
17238
+ "releaseTag": "Public",
17239
+ "name": "labelPosition",
17240
+ "propertyTypeTokenRange": {
17241
+ "startIndex": 1,
17242
+ "endIndex": 3
17243
+ },
17244
+ "isStatic": false,
17245
+ "isProtected": false
16081
17246
  }
16082
17247
  ],
16083
- "isReadonly": true,
16084
- "releaseTag": "Public",
16085
- "name": "spacingHorizontalXXS",
16086
- "variableTypeTokenRange": {
17248
+ "extendsTokenRange": {
16087
17249
  "startIndex": 1,
16088
- "endIndex": 4
16089
- }
17250
+ "endIndex": 2
17251
+ },
17252
+ "implementsTokenRanges": []
16090
17253
  },
16091
17254
  {
16092
- "kind": "Variable",
16093
- "canonicalReference": "@fluentui/web-components!spacingHorizontalXXXL:var",
16094
- "docComment": "",
17255
+ "kind": "TypeAlias",
17256
+ "canonicalReference": "@fluentui/web-components!SwitchLabelPosition:type",
17257
+ "docComment": "/**\n * Applies label position\n *\n * @public\n */\n",
16095
17258
  "excerptTokens": [
16096
17259
  {
16097
17260
  "kind": "Content",
16098
- "text": "spacingHorizontalXXXL: "
17261
+ "text": "export declare type SwitchLabelPosition = "
17262
+ },
17263
+ {
17264
+ "kind": "Reference",
17265
+ "text": "ValuesOf",
17266
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
16099
17267
  },
16100
17268
  {
16101
17269
  "kind": "Content",
16102
- "text": "import(\"@microsoft/fast-foundation\")."
17270
+ "text": "<typeof "
16103
17271
  },
16104
17272
  {
16105
17273
  "kind": "Reference",
16106
- "text": "CSSDesignToken",
16107
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17274
+ "text": "SwitchLabelPosition",
17275
+ "canonicalReference": "@fluentui/web-components!SwitchLabelPosition:var"
16108
17276
  },
16109
17277
  {
16110
17278
  "kind": "Content",
16111
- "text": "<string>"
17279
+ "text": ">"
17280
+ },
17281
+ {
17282
+ "kind": "Content",
17283
+ "text": ";"
16112
17284
  }
16113
17285
  ],
16114
- "isReadonly": true,
16115
17286
  "releaseTag": "Public",
16116
- "name": "spacingHorizontalXXXL",
16117
- "variableTypeTokenRange": {
17287
+ "name": "SwitchLabelPosition",
17288
+ "typeTokenRange": {
16118
17289
  "startIndex": 1,
16119
- "endIndex": 4
17290
+ "endIndex": 5
16120
17291
  }
16121
17292
  },
16122
17293
  {
16123
17294
  "kind": "Variable",
16124
- "canonicalReference": "@fluentui/web-components!spacingVerticalL:var",
16125
- "docComment": "",
17295
+ "canonicalReference": "@fluentui/web-components!SwitchLabelPosition:var",
17296
+ "docComment": "/**\n * SwitchLabelPosition Constants\n *\n * @public\n */\n",
16126
17297
  "excerptTokens": [
16127
17298
  {
16128
17299
  "kind": "Content",
16129
- "text": "spacingVerticalL: "
16130
- },
16131
- {
16132
- "kind": "Content",
16133
- "text": "import(\"@microsoft/fast-foundation\")."
16134
- },
16135
- {
16136
- "kind": "Reference",
16137
- "text": "CSSDesignToken",
16138
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17300
+ "text": "SwitchLabelPosition: "
16139
17301
  },
16140
17302
  {
16141
17303
  "kind": "Content",
16142
- "text": "<string>"
17304
+ "text": "{\n readonly above: \"above\";\n readonly after: \"after\";\n readonly before: \"before\";\n}"
16143
17305
  }
16144
17306
  ],
16145
17307
  "isReadonly": true,
16146
17308
  "releaseTag": "Public",
16147
- "name": "spacingVerticalL",
17309
+ "name": "SwitchLabelPosition",
16148
17310
  "variableTypeTokenRange": {
16149
17311
  "startIndex": 1,
16150
- "endIndex": 4
17312
+ "endIndex": 2
16151
17313
  }
16152
17314
  },
16153
17315
  {
16154
17316
  "kind": "Variable",
16155
- "canonicalReference": "@fluentui/web-components!spacingVerticalM:var",
17317
+ "canonicalReference": "@fluentui/web-components!switchStyles:var",
16156
17318
  "docComment": "",
16157
17319
  "excerptTokens": [
16158
17320
  {
16159
17321
  "kind": "Content",
16160
- "text": "spacingVerticalM: "
17322
+ "text": "styles: "
16161
17323
  },
16162
17324
  {
16163
17325
  "kind": "Content",
16164
- "text": "import(\"@microsoft/fast-foundation\")."
17326
+ "text": "import(\"@microsoft/fast-element\")."
16165
17327
  },
16166
17328
  {
16167
17329
  "kind": "Reference",
16168
- "text": "CSSDesignToken",
16169
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16170
- },
16171
- {
16172
- "kind": "Content",
16173
- "text": "<string>"
17330
+ "text": "ElementStyles",
17331
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
16174
17332
  }
16175
17333
  ],
16176
17334
  "isReadonly": true,
16177
17335
  "releaseTag": "Public",
16178
- "name": "spacingVerticalM",
17336
+ "name": "switchStyles",
16179
17337
  "variableTypeTokenRange": {
16180
17338
  "startIndex": 1,
16181
- "endIndex": 4
17339
+ "endIndex": 3
16182
17340
  }
16183
17341
  },
16184
17342
  {
16185
17343
  "kind": "Variable",
16186
- "canonicalReference": "@fluentui/web-components!spacingVerticalMNudge:var",
17344
+ "canonicalReference": "@fluentui/web-components!switchTemplate:var",
16187
17345
  "docComment": "",
16188
17346
  "excerptTokens": [
16189
17347
  {
16190
17348
  "kind": "Content",
16191
- "text": "spacingVerticalMNudge: "
17349
+ "text": "template: "
17350
+ },
17351
+ {
17352
+ "kind": "Reference",
17353
+ "text": "ElementViewTemplate",
17354
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
16192
17355
  },
16193
17356
  {
16194
17357
  "kind": "Content",
16195
- "text": "import(\"@microsoft/fast-foundation\")."
17358
+ "text": "<"
16196
17359
  },
16197
17360
  {
16198
17361
  "kind": "Reference",
16199
- "text": "CSSDesignToken",
16200
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17362
+ "text": "Switch",
17363
+ "canonicalReference": "@fluentui/web-components!Switch:class"
16201
17364
  },
16202
17365
  {
16203
17366
  "kind": "Content",
16204
- "text": "<string>"
17367
+ "text": ">"
16205
17368
  }
16206
17369
  ],
16207
17370
  "isReadonly": true,
16208
17371
  "releaseTag": "Public",
16209
- "name": "spacingVerticalMNudge",
17372
+ "name": "switchTemplate",
16210
17373
  "variableTypeTokenRange": {
16211
17374
  "startIndex": 1,
16212
- "endIndex": 4
17375
+ "endIndex": 5
16213
17376
  }
16214
17377
  },
16215
17378
  {
16216
- "kind": "Variable",
16217
- "canonicalReference": "@fluentui/web-components!spacingVerticalNone:var",
16218
- "docComment": "",
17379
+ "kind": "Class",
17380
+ "canonicalReference": "@fluentui/web-components!Tab:class",
17381
+ "docComment": "/**\n * Tab extends the FASTTab and is a child of the TabList\n */\n",
16219
17382
  "excerptTokens": [
16220
17383
  {
16221
17384
  "kind": "Content",
16222
- "text": "spacingVerticalNone: "
16223
- },
16224
- {
16225
- "kind": "Content",
16226
- "text": "import(\"@microsoft/fast-foundation\")."
17385
+ "text": "export declare class Tab extends "
16227
17386
  },
16228
17387
  {
16229
17388
  "kind": "Reference",
16230
- "text": "CSSDesignToken",
16231
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17389
+ "text": "FASTTab",
17390
+ "canonicalReference": "@microsoft/fast-foundation!FASTTab:class"
16232
17391
  },
16233
17392
  {
16234
17393
  "kind": "Content",
16235
- "text": "<string>"
17394
+ "text": " "
16236
17395
  }
16237
17396
  ],
16238
- "isReadonly": true,
16239
17397
  "releaseTag": "Public",
16240
- "name": "spacingVerticalNone",
16241
- "variableTypeTokenRange": {
17398
+ "name": "Tab",
17399
+ "preserveMemberOrder": false,
17400
+ "members": [
17401
+ {
17402
+ "kind": "Method",
17403
+ "canonicalReference": "@fluentui/web-components!Tab#connectedCallback:member(1)",
17404
+ "docComment": "",
17405
+ "excerptTokens": [
17406
+ {
17407
+ "kind": "Content",
17408
+ "text": "connectedCallback(): "
17409
+ },
17410
+ {
17411
+ "kind": "Content",
17412
+ "text": "void"
17413
+ },
17414
+ {
17415
+ "kind": "Content",
17416
+ "text": ";"
17417
+ }
17418
+ ],
17419
+ "isStatic": false,
17420
+ "returnTypeTokenRange": {
17421
+ "startIndex": 1,
17422
+ "endIndex": 2
17423
+ },
17424
+ "releaseTag": "Public",
17425
+ "isProtected": false,
17426
+ "overloadIndex": 1,
17427
+ "parameters": [],
17428
+ "isOptional": false,
17429
+ "name": "connectedCallback"
17430
+ }
17431
+ ],
17432
+ "extendsTokenRange": {
16242
17433
  "startIndex": 1,
16243
- "endIndex": 4
16244
- }
17434
+ "endIndex": 2
17435
+ },
17436
+ "implementsTokenRanges": []
16245
17437
  },
16246
17438
  {
16247
17439
  "kind": "Variable",
16248
- "canonicalReference": "@fluentui/web-components!spacingVerticalS:var",
17440
+ "canonicalReference": "@fluentui/web-components!TabDefinition:var",
16249
17441
  "docComment": "",
16250
17442
  "excerptTokens": [
16251
17443
  {
16252
17444
  "kind": "Content",
16253
- "text": "spacingVerticalS: "
17445
+ "text": "definition: "
16254
17446
  },
16255
17447
  {
16256
17448
  "kind": "Content",
16257
- "text": "import(\"@microsoft/fast-foundation\")."
17449
+ "text": "import(\"@microsoft/fast-element\")."
16258
17450
  },
16259
17451
  {
16260
17452
  "kind": "Reference",
16261
- "text": "CSSDesignToken",
16262
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16263
- },
16264
- {
16265
- "kind": "Content",
16266
- "text": "<string>"
16267
- }
16268
- ],
16269
- "isReadonly": true,
16270
- "releaseTag": "Public",
16271
- "name": "spacingVerticalS",
16272
- "variableTypeTokenRange": {
16273
- "startIndex": 1,
16274
- "endIndex": 4
16275
- }
16276
- },
16277
- {
16278
- "kind": "Variable",
16279
- "canonicalReference": "@fluentui/web-components!spacingVerticalSNudge:var",
16280
- "docComment": "",
16281
- "excerptTokens": [
16282
- {
16283
- "kind": "Content",
16284
- "text": "spacingVerticalSNudge: "
17453
+ "text": "FASTElementDefinition",
17454
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
16285
17455
  },
16286
17456
  {
16287
17457
  "kind": "Content",
16288
- "text": "import(\"@microsoft/fast-foundation\")."
17458
+ "text": "<typeof "
16289
17459
  },
16290
17460
  {
16291
17461
  "kind": "Reference",
16292
- "text": "CSSDesignToken",
16293
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17462
+ "text": "Tab",
17463
+ "canonicalReference": "@fluentui/web-components!Tab:class"
16294
17464
  },
16295
17465
  {
16296
17466
  "kind": "Content",
16297
- "text": "<string>"
17467
+ "text": ">"
16298
17468
  }
16299
17469
  ],
16300
17470
  "isReadonly": true,
16301
17471
  "releaseTag": "Public",
16302
- "name": "spacingVerticalSNudge",
17472
+ "name": "TabDefinition",
16303
17473
  "variableTypeTokenRange": {
16304
17474
  "startIndex": 1,
16305
- "endIndex": 4
17475
+ "endIndex": 6
16306
17476
  }
16307
17477
  },
16308
17478
  {
16309
- "kind": "Variable",
16310
- "canonicalReference": "@fluentui/web-components!spacingVerticalXL:var",
17479
+ "kind": "Class",
17480
+ "canonicalReference": "@fluentui/web-components!TabPanel:class",
16311
17481
  "docComment": "",
16312
17482
  "excerptTokens": [
16313
17483
  {
16314
17484
  "kind": "Content",
16315
- "text": "spacingVerticalXL: "
16316
- },
16317
- {
16318
- "kind": "Content",
16319
- "text": "import(\"@microsoft/fast-foundation\")."
17485
+ "text": "export declare class TabPanel extends "
16320
17486
  },
16321
17487
  {
16322
17488
  "kind": "Reference",
16323
- "text": "CSSDesignToken",
16324
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17489
+ "text": "FASTTabPanel",
17490
+ "canonicalReference": "@microsoft/fast-foundation!FASTTabPanel:class"
16325
17491
  },
16326
17492
  {
16327
17493
  "kind": "Content",
16328
- "text": "<string>"
17494
+ "text": " "
16329
17495
  }
16330
17496
  ],
16331
- "isReadonly": true,
16332
17497
  "releaseTag": "Public",
16333
- "name": "spacingVerticalXL",
16334
- "variableTypeTokenRange": {
17498
+ "name": "TabPanel",
17499
+ "preserveMemberOrder": false,
17500
+ "members": [],
17501
+ "extendsTokenRange": {
16335
17502
  "startIndex": 1,
16336
- "endIndex": 4
16337
- }
17503
+ "endIndex": 2
17504
+ },
17505
+ "implementsTokenRanges": []
16338
17506
  },
16339
17507
  {
16340
17508
  "kind": "Variable",
16341
- "canonicalReference": "@fluentui/web-components!spacingVerticalXS:var",
17509
+ "canonicalReference": "@fluentui/web-components!TabPanelDefinition:var",
16342
17510
  "docComment": "",
16343
17511
  "excerptTokens": [
16344
17512
  {
16345
17513
  "kind": "Content",
16346
- "text": "spacingVerticalXS: "
17514
+ "text": "definition: "
16347
17515
  },
16348
17516
  {
16349
17517
  "kind": "Content",
16350
- "text": "import(\"@microsoft/fast-foundation\")."
17518
+ "text": "import(\"@microsoft/fast-element\")."
16351
17519
  },
16352
17520
  {
16353
17521
  "kind": "Reference",
16354
- "text": "CSSDesignToken",
16355
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16356
- },
16357
- {
16358
- "kind": "Content",
16359
- "text": "<string>"
16360
- }
16361
- ],
16362
- "isReadonly": true,
16363
- "releaseTag": "Public",
16364
- "name": "spacingVerticalXS",
16365
- "variableTypeTokenRange": {
16366
- "startIndex": 1,
16367
- "endIndex": 4
16368
- }
16369
- },
16370
- {
16371
- "kind": "Variable",
16372
- "canonicalReference": "@fluentui/web-components!spacingVerticalXXL:var",
16373
- "docComment": "",
16374
- "excerptTokens": [
16375
- {
16376
- "kind": "Content",
16377
- "text": "spacingVerticalXXL: "
17522
+ "text": "FASTElementDefinition",
17523
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
16378
17524
  },
16379
17525
  {
16380
17526
  "kind": "Content",
16381
- "text": "import(\"@microsoft/fast-foundation\")."
17527
+ "text": "<typeof "
16382
17528
  },
16383
17529
  {
16384
17530
  "kind": "Reference",
16385
- "text": "CSSDesignToken",
16386
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17531
+ "text": "TabPanel",
17532
+ "canonicalReference": "@fluentui/web-components!TabPanel:class"
16387
17533
  },
16388
17534
  {
16389
17535
  "kind": "Content",
16390
- "text": "<string>"
17536
+ "text": ">"
16391
17537
  }
16392
17538
  ],
16393
17539
  "isReadonly": true,
16394
17540
  "releaseTag": "Public",
16395
- "name": "spacingVerticalXXL",
17541
+ "name": "TabPanelDefinition",
16396
17542
  "variableTypeTokenRange": {
16397
17543
  "startIndex": 1,
16398
- "endIndex": 4
17544
+ "endIndex": 6
16399
17545
  }
16400
17546
  },
16401
17547
  {
16402
17548
  "kind": "Variable",
16403
- "canonicalReference": "@fluentui/web-components!spacingVerticalXXS:var",
17549
+ "canonicalReference": "@fluentui/web-components!TabPanelStyles:var",
16404
17550
  "docComment": "",
16405
17551
  "excerptTokens": [
16406
17552
  {
16407
17553
  "kind": "Content",
16408
- "text": "spacingVerticalXXS: "
17554
+ "text": "styles: "
16409
17555
  },
16410
17556
  {
16411
17557
  "kind": "Content",
16412
- "text": "import(\"@microsoft/fast-foundation\")."
17558
+ "text": "import(\"@microsoft/fast-element\")."
16413
17559
  },
16414
17560
  {
16415
17561
  "kind": "Reference",
16416
- "text": "CSSDesignToken",
16417
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16418
- },
16419
- {
16420
- "kind": "Content",
16421
- "text": "<string>"
17562
+ "text": "ElementStyles",
17563
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
16422
17564
  }
16423
17565
  ],
16424
17566
  "isReadonly": true,
16425
17567
  "releaseTag": "Public",
16426
- "name": "spacingVerticalXXS",
17568
+ "name": "TabPanelStyles",
16427
17569
  "variableTypeTokenRange": {
16428
17570
  "startIndex": 1,
16429
- "endIndex": 4
17571
+ "endIndex": 3
16430
17572
  }
16431
17573
  },
16432
17574
  {
16433
17575
  "kind": "Variable",
16434
- "canonicalReference": "@fluentui/web-components!spacingVerticalXXXL:var",
17576
+ "canonicalReference": "@fluentui/web-components!TabPanelTemplate:var",
16435
17577
  "docComment": "",
16436
17578
  "excerptTokens": [
16437
17579
  {
16438
17580
  "kind": "Content",
16439
- "text": "spacingVerticalXXXL: "
17581
+ "text": "template: "
16440
17582
  },
16441
17583
  {
16442
17584
  "kind": "Content",
16443
- "text": "import(\"@microsoft/fast-foundation\")."
17585
+ "text": "import(\"@microsoft/fast-element\")."
16444
17586
  },
16445
17587
  {
16446
17588
  "kind": "Reference",
16447
- "text": "CSSDesignToken",
16448
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17589
+ "text": "ElementViewTemplate",
17590
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
16449
17591
  },
16450
17592
  {
16451
17593
  "kind": "Content",
16452
- "text": "<string>"
17594
+ "text": "<import(\"@microsoft/fast-foundation\")."
17595
+ },
17596
+ {
17597
+ "kind": "Reference",
17598
+ "text": "FASTTabPanel",
17599
+ "canonicalReference": "@microsoft/fast-foundation!FASTTabPanel:class"
17600
+ },
17601
+ {
17602
+ "kind": "Content",
17603
+ "text": ", any>"
16453
17604
  }
16454
17605
  ],
16455
17606
  "isReadonly": true,
16456
17607
  "releaseTag": "Public",
16457
- "name": "spacingVerticalXXXL",
17608
+ "name": "TabPanelTemplate",
16458
17609
  "variableTypeTokenRange": {
16459
17610
  "startIndex": 1,
16460
- "endIndex": 4
17611
+ "endIndex": 6
16461
17612
  }
16462
17613
  },
16463
17614
  {
16464
17615
  "kind": "Class",
16465
- "canonicalReference": "@fluentui/web-components!Spinner:class",
16466
- "docComment": "/**\n * The base class used for constructing a fluent-spinner custom element\n *\n * @public\n */\n",
17616
+ "canonicalReference": "@fluentui/web-components!Tabs:class",
17617
+ "docComment": "/**\n * TabList extends FASTTabs and is used for constructing a fluent-tab-list custom html element.\n *\n * @class TabList component\n *\n * @public\n */\n",
16467
17618
  "excerptTokens": [
16468
17619
  {
16469
17620
  "kind": "Content",
16470
- "text": "export declare class Spinner extends "
17621
+ "text": "export declare class Tabs extends "
16471
17622
  },
16472
17623
  {
16473
17624
  "kind": "Reference",
16474
- "text": "FASTProgressRing",
16475
- "canonicalReference": "@microsoft/fast-foundation!FASTProgressRing:class"
17625
+ "text": "FASTTabs",
17626
+ "canonicalReference": "@microsoft/fast-foundation!FASTTabs:class"
16476
17627
  },
16477
17628
  {
16478
17629
  "kind": "Content",
@@ -16480,13 +17631,76 @@
16480
17631
  }
16481
17632
  ],
16482
17633
  "releaseTag": "Public",
16483
- "name": "Spinner",
17634
+ "name": "Tabs",
16484
17635
  "preserveMemberOrder": false,
16485
17636
  "members": [
17637
+ {
17638
+ "kind": "Method",
17639
+ "canonicalReference": "@fluentui/web-components!Tabs#activeidChanged:member(1)",
17640
+ "docComment": "",
17641
+ "excerptTokens": [
17642
+ {
17643
+ "kind": "Content",
17644
+ "text": "activeidChanged(oldValue: "
17645
+ },
17646
+ {
17647
+ "kind": "Content",
17648
+ "text": "string"
17649
+ },
17650
+ {
17651
+ "kind": "Content",
17652
+ "text": ", newValue: "
17653
+ },
17654
+ {
17655
+ "kind": "Content",
17656
+ "text": "string"
17657
+ },
17658
+ {
17659
+ "kind": "Content",
17660
+ "text": "): "
17661
+ },
17662
+ {
17663
+ "kind": "Content",
17664
+ "text": "void"
17665
+ },
17666
+ {
17667
+ "kind": "Content",
17668
+ "text": ";"
17669
+ }
17670
+ ],
17671
+ "isStatic": false,
17672
+ "returnTypeTokenRange": {
17673
+ "startIndex": 5,
17674
+ "endIndex": 6
17675
+ },
17676
+ "releaseTag": "Public",
17677
+ "isProtected": false,
17678
+ "overloadIndex": 1,
17679
+ "parameters": [
17680
+ {
17681
+ "parameterName": "oldValue",
17682
+ "parameterTypeTokenRange": {
17683
+ "startIndex": 1,
17684
+ "endIndex": 2
17685
+ },
17686
+ "isOptional": false
17687
+ },
17688
+ {
17689
+ "parameterName": "newValue",
17690
+ "parameterTypeTokenRange": {
17691
+ "startIndex": 3,
17692
+ "endIndex": 4
17693
+ },
17694
+ "isOptional": false
17695
+ }
17696
+ ],
17697
+ "isOptional": false,
17698
+ "name": "activeidChanged"
17699
+ },
16486
17700
  {
16487
17701
  "kind": "Property",
16488
- "canonicalReference": "@fluentui/web-components!Spinner#appearance:member",
16489
- "docComment": "/**\n * The appearance of the spinner\n *\n * @default 'primary'\n *\n * @remarks\n *\n * HTML Attribute: appearance\n *\n * @public\n */\n",
17702
+ "canonicalReference": "@fluentui/web-components!Tabs#appearance:member",
17703
+ "docComment": "/**\n * appearance There are two modes of appearance: transparent and subtle.\n */\n",
16490
17704
  "excerptTokens": [
16491
17705
  {
16492
17706
  "kind": "Content",
@@ -16494,8 +17708,8 @@
16494
17708
  },
16495
17709
  {
16496
17710
  "kind": "Reference",
16497
- "text": "SpinnerAppearance",
16498
- "canonicalReference": "@fluentui/web-components!SpinnerAppearance:type"
17711
+ "text": "TabsAppearance",
17712
+ "canonicalReference": "@fluentui/web-components!TabsAppearance:type"
16499
17713
  },
16500
17714
  {
16501
17715
  "kind": "Content",
@@ -16515,8 +17729,37 @@
16515
17729
  },
16516
17730
  {
16517
17731
  "kind": "Property",
16518
- "canonicalReference": "@fluentui/web-components!Spinner#size:member",
16519
- "docComment": "/**\n * The size of the spinner\n *\n * @default 'medium'\n *\n * @remarks\n *\n * HTML Attribute: size\n *\n * @public\n */\n",
17732
+ "canonicalReference": "@fluentui/web-components!Tabs#disabled:member",
17733
+ "docComment": "/**\n * disabled Used for disabling all click and keyboard events for the tabs, child tab elements and tab panel elements. UI styling of content and tabs will appear as \"grayed out.\"\n */\n",
17734
+ "excerptTokens": [
17735
+ {
17736
+ "kind": "Content",
17737
+ "text": "disabled?: "
17738
+ },
17739
+ {
17740
+ "kind": "Content",
17741
+ "text": "boolean"
17742
+ },
17743
+ {
17744
+ "kind": "Content",
17745
+ "text": ";"
17746
+ }
17747
+ ],
17748
+ "isReadonly": false,
17749
+ "isOptional": true,
17750
+ "releaseTag": "Public",
17751
+ "name": "disabled",
17752
+ "propertyTypeTokenRange": {
17753
+ "startIndex": 1,
17754
+ "endIndex": 2
17755
+ },
17756
+ "isStatic": false,
17757
+ "isProtected": false
17758
+ },
17759
+ {
17760
+ "kind": "Property",
17761
+ "canonicalReference": "@fluentui/web-components!Tabs#size:member",
17762
+ "docComment": "/**\n * size defaults to medium. Used to set the size of all the tab controls, which effects text size and margins. Three sizes: small, medium and large.\n */\n",
16520
17763
  "excerptTokens": [
16521
17764
  {
16522
17765
  "kind": "Content",
@@ -16524,8 +17767,8 @@
16524
17767
  },
16525
17768
  {
16526
17769
  "kind": "Reference",
16527
- "text": "SpinnerSize",
16528
- "canonicalReference": "@fluentui/web-components!SpinnerSize:type"
17770
+ "text": "TabsSize",
17771
+ "canonicalReference": "@fluentui/web-components!TabsSize:type"
16529
17772
  },
16530
17773
  {
16531
17774
  "kind": "Content",
@@ -16542,123 +17785,52 @@
16542
17785
  },
16543
17786
  "isStatic": false,
16544
17787
  "isProtected": false
16545
- }
16546
- ],
16547
- "extendsTokenRange": {
16548
- "startIndex": 1,
16549
- "endIndex": 2
16550
- },
16551
- "implementsTokenRanges": []
16552
- },
16553
- {
16554
- "kind": "TypeAlias",
16555
- "canonicalReference": "@fluentui/web-components!SpinnerAppearance:type",
16556
- "docComment": "/**\n * A Spinner's appearance can be either primary or inverted\n *\n * @public\n */\n",
16557
- "excerptTokens": [
16558
- {
16559
- "kind": "Content",
16560
- "text": "export declare type SpinnerAppearance = "
16561
- },
16562
- {
16563
- "kind": "Reference",
16564
- "text": "ValuesOf",
16565
- "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
16566
- },
16567
- {
16568
- "kind": "Content",
16569
- "text": "<typeof "
16570
- },
16571
- {
16572
- "kind": "Reference",
16573
- "text": "SpinnerAppearance",
16574
- "canonicalReference": "@fluentui/web-components!SpinnerAppearance:var"
16575
- },
16576
- {
16577
- "kind": "Content",
16578
- "text": ">"
16579
- },
16580
- {
16581
- "kind": "Content",
16582
- "text": ";"
16583
- }
16584
- ],
16585
- "releaseTag": "Public",
16586
- "name": "SpinnerAppearance",
16587
- "typeTokenRange": {
16588
- "startIndex": 1,
16589
- "endIndex": 5
16590
- }
16591
- },
16592
- {
16593
- "kind": "Variable",
16594
- "canonicalReference": "@fluentui/web-components!SpinnerAppearance:var",
16595
- "docComment": "/**\n * SpinnerAppearance constants\n *\n * @public\n */\n",
16596
- "excerptTokens": [
16597
- {
16598
- "kind": "Content",
16599
- "text": "SpinnerAppearance: "
16600
- },
16601
- {
16602
- "kind": "Content",
16603
- "text": "{\n readonly primary: \"primary\";\n readonly inverted: \"inverted\";\n}"
16604
- }
16605
- ],
16606
- "isReadonly": true,
16607
- "releaseTag": "Public",
16608
- "name": "SpinnerAppearance",
16609
- "variableTypeTokenRange": {
16610
- "startIndex": 1,
16611
- "endIndex": 2
16612
- }
16613
- },
16614
- {
16615
- "kind": "Variable",
16616
- "canonicalReference": "@fluentui/web-components!SpinnerDefinition:var",
16617
- "docComment": "/**\n * The Fluent Spinner Element. Implements {@link @microsoft/fast-foundation#ProgressRing}, {@link @microsoft/fast-foundation#progress-ringTemplate}\n *\n * @remarks\n *\n * HTML Element: \\<fluent-spinner\\>\n *\n * @public\n */\n",
16618
- "excerptTokens": [
16619
- {
16620
- "kind": "Content",
16621
- "text": "definition: "
16622
- },
16623
- {
16624
- "kind": "Content",
16625
- "text": "import(\"@microsoft/fast-element\")."
16626
- },
16627
- {
16628
- "kind": "Reference",
16629
- "text": "FASTElementDefinition",
16630
- "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
16631
- },
16632
- {
16633
- "kind": "Content",
16634
- "text": "<typeof "
16635
- },
16636
- {
16637
- "kind": "Reference",
16638
- "text": "Spinner",
16639
- "canonicalReference": "@fluentui/web-components!Spinner:class"
16640
17788
  },
16641
17789
  {
16642
- "kind": "Content",
16643
- "text": ">"
17790
+ "kind": "Method",
17791
+ "canonicalReference": "@fluentui/web-components!Tabs#tabsChanged:member(1)",
17792
+ "docComment": "",
17793
+ "excerptTokens": [
17794
+ {
17795
+ "kind": "Content",
17796
+ "text": "tabsChanged(): "
17797
+ },
17798
+ {
17799
+ "kind": "Content",
17800
+ "text": "void"
17801
+ },
17802
+ {
17803
+ "kind": "Content",
17804
+ "text": ";"
17805
+ }
17806
+ ],
17807
+ "isStatic": false,
17808
+ "returnTypeTokenRange": {
17809
+ "startIndex": 1,
17810
+ "endIndex": 2
17811
+ },
17812
+ "releaseTag": "Public",
17813
+ "isProtected": false,
17814
+ "overloadIndex": 1,
17815
+ "parameters": [],
17816
+ "isOptional": false,
17817
+ "name": "tabsChanged"
16644
17818
  }
16645
17819
  ],
16646
- "isReadonly": true,
16647
- "releaseTag": "Public",
16648
- "name": "SpinnerDefinition",
16649
- "variableTypeTokenRange": {
17820
+ "extendsTokenRange": {
16650
17821
  "startIndex": 1,
16651
- "endIndex": 6
16652
- }
17822
+ "endIndex": 2
17823
+ },
17824
+ "implementsTokenRanges": []
16653
17825
  },
16654
17826
  {
16655
17827
  "kind": "TypeAlias",
16656
- "canonicalReference": "@fluentui/web-components!SpinnerSize:type",
16657
- "docComment": "/**\n * A Spinner's size can be either small, tiny, extra-small, medium, large, extra-large, or huge\n *\n * @public\n */\n",
17828
+ "canonicalReference": "@fluentui/web-components!TabsAppearance:type",
17829
+ "docComment": "",
16658
17830
  "excerptTokens": [
16659
17831
  {
16660
17832
  "kind": "Content",
16661
- "text": "export declare type SpinnerSize = "
17833
+ "text": "export declare type TabsAppearance = "
16662
17834
  },
16663
17835
  {
16664
17836
  "kind": "Reference",
@@ -16671,8 +17843,8 @@
16671
17843
  },
16672
17844
  {
16673
17845
  "kind": "Reference",
16674
- "text": "SpinnerSize",
16675
- "canonicalReference": "@fluentui/web-components!SpinnerSize:var"
17846
+ "text": "TabsAppearance",
17847
+ "canonicalReference": "@fluentui/web-components!TabsAppearance:var"
16676
17848
  },
16677
17849
  {
16678
17850
  "kind": "Content",
@@ -16684,7 +17856,7 @@
16684
17856
  }
16685
17857
  ],
16686
17858
  "releaseTag": "Public",
16687
- "name": "SpinnerSize",
17859
+ "name": "TabsAppearance",
16688
17860
  "typeTokenRange": {
16689
17861
  "startIndex": 1,
16690
17862
  "endIndex": 5
@@ -16692,21 +17864,21 @@
16692
17864
  },
16693
17865
  {
16694
17866
  "kind": "Variable",
16695
- "canonicalReference": "@fluentui/web-components!SpinnerSize:var",
16696
- "docComment": "/**\n * SpinnerSize constants\n *\n * @public\n */\n",
17867
+ "canonicalReference": "@fluentui/web-components!TabsAppearance:var",
17868
+ "docComment": "",
16697
17869
  "excerptTokens": [
16698
17870
  {
16699
17871
  "kind": "Content",
16700
- "text": "SpinnerSize: "
17872
+ "text": "TabsAppearance: "
16701
17873
  },
16702
17874
  {
16703
17875
  "kind": "Content",
16704
- "text": "{\n readonly tiny: \"tiny\";\n readonly extraSmall: \"extra-small\";\n readonly small: \"small\";\n readonly medium: \"medium\";\n readonly large: \"large\";\n readonly extraLarge: \"extra-large\";\n readonly huge: \"huge\";\n}"
17876
+ "text": "{\n readonly subtle: \"subtle\";\n readonly transparent: \"transparent\";\n}"
16705
17877
  }
16706
17878
  ],
16707
17879
  "isReadonly": true,
16708
17880
  "releaseTag": "Public",
16709
- "name": "SpinnerSize",
17881
+ "name": "TabsAppearance",
16710
17882
  "variableTypeTokenRange": {
16711
17883
  "startIndex": 1,
16712
17884
  "endIndex": 2
@@ -16714,12 +17886,12 @@
16714
17886
  },
16715
17887
  {
16716
17888
  "kind": "Variable",
16717
- "canonicalReference": "@fluentui/web-components!SpinnerStyles:var",
17889
+ "canonicalReference": "@fluentui/web-components!TabsDefinition:var",
16718
17890
  "docComment": "",
16719
17891
  "excerptTokens": [
16720
17892
  {
16721
17893
  "kind": "Content",
16722
- "text": "styles: "
17894
+ "text": "definition: "
16723
17895
  },
16724
17896
  {
16725
17897
  "kind": "Content",
@@ -16727,40 +17899,17 @@
16727
17899
  },
16728
17900
  {
16729
17901
  "kind": "Reference",
16730
- "text": "ElementStyles",
16731
- "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
16732
- }
16733
- ],
16734
- "isReadonly": true,
16735
- "releaseTag": "Public",
16736
- "name": "SpinnerStyles",
16737
- "variableTypeTokenRange": {
16738
- "startIndex": 1,
16739
- "endIndex": 3
16740
- }
16741
- },
16742
- {
16743
- "kind": "Variable",
16744
- "canonicalReference": "@fluentui/web-components!SpinnerTemplate:var",
16745
- "docComment": "",
16746
- "excerptTokens": [
16747
- {
16748
- "kind": "Content",
16749
- "text": "template: "
16750
- },
16751
- {
16752
- "kind": "Reference",
16753
- "text": "ElementViewTemplate",
16754
- "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
17902
+ "text": "FASTElementDefinition",
17903
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
16755
17904
  },
16756
17905
  {
16757
17906
  "kind": "Content",
16758
- "text": "<"
17907
+ "text": "<typeof "
16759
17908
  },
16760
17909
  {
16761
17910
  "kind": "Reference",
16762
- "text": "Spinner",
16763
- "canonicalReference": "@fluentui/web-components!Spinner:class"
17911
+ "text": "Tabs",
17912
+ "canonicalReference": "@fluentui/web-components!Tabs:class"
16764
17913
  },
16765
17914
  {
16766
17915
  "kind": "Content",
@@ -16769,264 +17918,143 @@
16769
17918
  ],
16770
17919
  "isReadonly": true,
16771
17920
  "releaseTag": "Public",
16772
- "name": "SpinnerTemplate",
17921
+ "name": "TabsDefinition",
16773
17922
  "variableTypeTokenRange": {
16774
17923
  "startIndex": 1,
16775
- "endIndex": 5
17924
+ "endIndex": 6
16776
17925
  }
16777
17926
  },
16778
17927
  {
16779
- "kind": "Variable",
16780
- "canonicalReference": "@fluentui/web-components!strokeWidthThick:var",
17928
+ "kind": "TypeAlias",
17929
+ "canonicalReference": "@fluentui/web-components!TabsSize:type",
16781
17930
  "docComment": "",
16782
17931
  "excerptTokens": [
16783
17932
  {
16784
17933
  "kind": "Content",
16785
- "text": "strokeWidthThick: "
16786
- },
16787
- {
16788
- "kind": "Content",
16789
- "text": "import(\"@microsoft/fast-foundation\")."
17934
+ "text": "export declare type TabsSize = "
16790
17935
  },
16791
17936
  {
16792
17937
  "kind": "Reference",
16793
- "text": "CSSDesignToken",
16794
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17938
+ "text": "ValuesOf",
17939
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
16795
17940
  },
16796
17941
  {
16797
17942
  "kind": "Content",
16798
- "text": "<string>"
16799
- }
16800
- ],
16801
- "isReadonly": true,
16802
- "releaseTag": "Public",
16803
- "name": "strokeWidthThick",
16804
- "variableTypeTokenRange": {
16805
- "startIndex": 1,
16806
- "endIndex": 4
16807
- }
16808
- },
16809
- {
16810
- "kind": "Variable",
16811
- "canonicalReference": "@fluentui/web-components!strokeWidthThicker:var",
16812
- "docComment": "",
16813
- "excerptTokens": [
16814
- {
16815
- "kind": "Content",
16816
- "text": "strokeWidthThicker: "
17943
+ "text": "<typeof "
16817
17944
  },
16818
17945
  {
16819
- "kind": "Content",
16820
- "text": "import(\"@microsoft/fast-foundation\")."
17946
+ "kind": "Reference",
17947
+ "text": "TabsSize",
17948
+ "canonicalReference": "@fluentui/web-components!TabsSize:var"
16821
17949
  },
16822
17950
  {
16823
- "kind": "Reference",
16824
- "text": "CSSDesignToken",
16825
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17951
+ "kind": "Content",
17952
+ "text": ">"
16826
17953
  },
16827
17954
  {
16828
17955
  "kind": "Content",
16829
- "text": "<string>"
17956
+ "text": ";"
16830
17957
  }
16831
17958
  ],
16832
- "isReadonly": true,
16833
17959
  "releaseTag": "Public",
16834
- "name": "strokeWidthThicker",
16835
- "variableTypeTokenRange": {
17960
+ "name": "TabsSize",
17961
+ "typeTokenRange": {
16836
17962
  "startIndex": 1,
16837
- "endIndex": 4
17963
+ "endIndex": 5
16838
17964
  }
16839
17965
  },
16840
17966
  {
16841
17967
  "kind": "Variable",
16842
- "canonicalReference": "@fluentui/web-components!strokeWidthThickest:var",
17968
+ "canonicalReference": "@fluentui/web-components!TabsSize:var",
16843
17969
  "docComment": "",
16844
17970
  "excerptTokens": [
16845
17971
  {
16846
17972
  "kind": "Content",
16847
- "text": "strokeWidthThickest: "
16848
- },
16849
- {
16850
- "kind": "Content",
16851
- "text": "import(\"@microsoft/fast-foundation\")."
16852
- },
16853
- {
16854
- "kind": "Reference",
16855
- "text": "CSSDesignToken",
16856
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
17973
+ "text": "TabsSize: "
16857
17974
  },
16858
17975
  {
16859
17976
  "kind": "Content",
16860
- "text": "<string>"
17977
+ "text": "{\n readonly small: \"small\";\n readonly medium: \"medium\";\n readonly large: \"large\";\n}"
16861
17978
  }
16862
17979
  ],
16863
17980
  "isReadonly": true,
16864
17981
  "releaseTag": "Public",
16865
- "name": "strokeWidthThickest",
17982
+ "name": "TabsSize",
16866
17983
  "variableTypeTokenRange": {
16867
17984
  "startIndex": 1,
16868
- "endIndex": 4
17985
+ "endIndex": 2
16869
17986
  }
16870
17987
  },
16871
17988
  {
16872
17989
  "kind": "Variable",
16873
- "canonicalReference": "@fluentui/web-components!strokeWidthThin:var",
17990
+ "canonicalReference": "@fluentui/web-components!TabsStyles:var",
16874
17991
  "docComment": "",
16875
17992
  "excerptTokens": [
16876
17993
  {
16877
17994
  "kind": "Content",
16878
- "text": "strokeWidthThin: "
17995
+ "text": "styles: "
16879
17996
  },
16880
17997
  {
16881
17998
  "kind": "Content",
16882
- "text": "import(\"@microsoft/fast-foundation\")."
17999
+ "text": "import(\"@microsoft/fast-element\")."
16883
18000
  },
16884
18001
  {
16885
18002
  "kind": "Reference",
16886
- "text": "CSSDesignToken",
16887
- "canonicalReference": "@microsoft/fast-foundation!CSSDesignToken:class"
16888
- },
16889
- {
16890
- "kind": "Content",
16891
- "text": "<string>"
18003
+ "text": "ElementStyles",
18004
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
16892
18005
  }
16893
18006
  ],
16894
18007
  "isReadonly": true,
16895
18008
  "releaseTag": "Public",
16896
- "name": "strokeWidthThin",
18009
+ "name": "TabsStyles",
16897
18010
  "variableTypeTokenRange": {
16898
18011
  "startIndex": 1,
16899
- "endIndex": 4
18012
+ "endIndex": 3
16900
18013
  }
16901
18014
  },
16902
18015
  {
16903
- "kind": "Class",
16904
- "canonicalReference": "@fluentui/web-components!Switch:class",
18016
+ "kind": "Variable",
18017
+ "canonicalReference": "@fluentui/web-components!TabsTemplate:var",
16905
18018
  "docComment": "",
16906
18019
  "excerptTokens": [
16907
18020
  {
16908
18021
  "kind": "Content",
16909
- "text": "export declare class Switch extends "
16910
- },
16911
- {
16912
- "kind": "Reference",
16913
- "text": "FASTSwitch",
16914
- "canonicalReference": "@microsoft/fast-foundation!FASTSwitch:class"
18022
+ "text": "template: "
16915
18023
  },
16916
18024
  {
16917
18025
  "kind": "Content",
16918
- "text": " "
16919
- }
16920
- ],
16921
- "releaseTag": "Public",
16922
- "name": "Switch",
16923
- "preserveMemberOrder": false,
16924
- "members": [
16925
- {
16926
- "kind": "Property",
16927
- "canonicalReference": "@fluentui/web-components!Switch#labelPosition:member",
16928
- "docComment": "/**\n * The label position of the switch\n *\n * @default 'after'\n *\n * @remarks\n *\n * HTML Attribute: labelposition\n *\n * @public\n */\n",
16929
- "excerptTokens": [
16930
- {
16931
- "kind": "Content",
16932
- "text": "labelPosition: "
16933
- },
16934
- {
16935
- "kind": "Reference",
16936
- "text": "SwitchLabelPosition",
16937
- "canonicalReference": "@fluentui/web-components!SwitchLabelPosition:type"
16938
- },
16939
- {
16940
- "kind": "Content",
16941
- "text": " | undefined"
16942
- },
16943
- {
16944
- "kind": "Content",
16945
- "text": ";"
16946
- }
16947
- ],
16948
- "isReadonly": false,
16949
- "isOptional": false,
16950
- "releaseTag": "Public",
16951
- "name": "labelPosition",
16952
- "propertyTypeTokenRange": {
16953
- "startIndex": 1,
16954
- "endIndex": 3
16955
- },
16956
- "isStatic": false,
16957
- "isProtected": false
16958
- }
16959
- ],
16960
- "extendsTokenRange": {
16961
- "startIndex": 1,
16962
- "endIndex": 2
16963
- },
16964
- "implementsTokenRanges": []
16965
- },
16966
- {
16967
- "kind": "TypeAlias",
16968
- "canonicalReference": "@fluentui/web-components!SwitchLabelPosition:type",
16969
- "docComment": "/**\n * Applies label position\n *\n * @public\n */\n",
16970
- "excerptTokens": [
16971
- {
16972
- "kind": "Content",
16973
- "text": "export declare type SwitchLabelPosition = "
18026
+ "text": "import(\"@microsoft/fast-element\")."
16974
18027
  },
16975
18028
  {
16976
18029
  "kind": "Reference",
16977
- "text": "ValuesOf",
16978
- "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
18030
+ "text": "ElementViewTemplate",
18031
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
16979
18032
  },
16980
18033
  {
16981
18034
  "kind": "Content",
16982
- "text": "<typeof "
18035
+ "text": "<import(\"@microsoft/fast-foundation\")."
16983
18036
  },
16984
18037
  {
16985
18038
  "kind": "Reference",
16986
- "text": "SwitchLabelPosition",
16987
- "canonicalReference": "@fluentui/web-components!SwitchLabelPosition:var"
16988
- },
16989
- {
16990
- "kind": "Content",
16991
- "text": ">"
18039
+ "text": "FASTTabs",
18040
+ "canonicalReference": "@microsoft/fast-foundation!FASTTabs:class"
16992
18041
  },
16993
18042
  {
16994
18043
  "kind": "Content",
16995
- "text": ";"
16996
- }
16997
- ],
16998
- "releaseTag": "Public",
16999
- "name": "SwitchLabelPosition",
17000
- "typeTokenRange": {
17001
- "startIndex": 1,
17002
- "endIndex": 5
17003
- }
17004
- },
17005
- {
17006
- "kind": "Variable",
17007
- "canonicalReference": "@fluentui/web-components!SwitchLabelPosition:var",
17008
- "docComment": "/**\n * SwitchLabelPosition Constants\n *\n * @public\n */\n",
17009
- "excerptTokens": [
17010
- {
17011
- "kind": "Content",
17012
- "text": "SwitchLabelPosition: "
17013
- },
17014
- {
17015
- "kind": "Content",
17016
- "text": "{\n readonly above: \"above\";\n readonly after: \"after\";\n readonly before: \"before\";\n}"
18044
+ "text": ", any>"
17017
18045
  }
17018
18046
  ],
17019
18047
  "isReadonly": true,
17020
18048
  "releaseTag": "Public",
17021
- "name": "SwitchLabelPosition",
18049
+ "name": "TabsTemplate",
17022
18050
  "variableTypeTokenRange": {
17023
18051
  "startIndex": 1,
17024
- "endIndex": 2
18052
+ "endIndex": 6
17025
18053
  }
17026
18054
  },
17027
18055
  {
17028
18056
  "kind": "Variable",
17029
- "canonicalReference": "@fluentui/web-components!switchStyles:var",
18057
+ "canonicalReference": "@fluentui/web-components!TabStyles:var",
17030
18058
  "docComment": "",
17031
18059
  "excerptTokens": [
17032
18060
  {
@@ -17045,7 +18073,7 @@
17045
18073
  ],
17046
18074
  "isReadonly": true,
17047
18075
  "releaseTag": "Public",
17048
- "name": "switchStyles",
18076
+ "name": "TabStyles",
17049
18077
  "variableTypeTokenRange": {
17050
18078
  "startIndex": 1,
17051
18079
  "endIndex": 3
@@ -17053,7 +18081,7 @@
17053
18081
  },
17054
18082
  {
17055
18083
  "kind": "Variable",
17056
- "canonicalReference": "@fluentui/web-components!switchTemplate:var",
18084
+ "canonicalReference": "@fluentui/web-components!TabTemplate:var",
17057
18085
  "docComment": "",
17058
18086
  "excerptTokens": [
17059
18087
  {
@@ -17071,17 +18099,17 @@
17071
18099
  },
17072
18100
  {
17073
18101
  "kind": "Reference",
17074
- "text": "Switch",
17075
- "canonicalReference": "@fluentui/web-components!Switch:class"
18102
+ "text": "FASTTab",
18103
+ "canonicalReference": "@microsoft/fast-foundation!FASTTab:class"
17076
18104
  },
17077
18105
  {
17078
18106
  "kind": "Content",
17079
- "text": ">"
18107
+ "text": ", any>"
17080
18108
  }
17081
18109
  ],
17082
18110
  "isReadonly": true,
17083
18111
  "releaseTag": "Public",
17084
- "name": "switchTemplate",
18112
+ "name": "TabTemplate",
17085
18113
  "variableTypeTokenRange": {
17086
18114
  "startIndex": 1,
17087
18115
  "endIndex": 5