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

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 (109) hide show
  1. package/CHANGELOG.json +45 -1
  2. package/CHANGELOG.md +21 -2
  3. package/dist/dts/index.d.ts +5 -0
  4. package/dist/dts/label/define.d.ts +1 -0
  5. package/dist/dts/label/index.d.ts +4 -0
  6. package/dist/dts/label/label.d.ts +42 -0
  7. package/dist/dts/label/label.definition.d.ts +10 -0
  8. package/dist/dts/label/label.options.d.ts +26 -0
  9. package/dist/dts/label/label.styles.d.ts +4 -0
  10. package/dist/dts/label/label.template.d.ts +8 -0
  11. package/dist/dts/menu-button/define.d.ts +1 -0
  12. package/dist/dts/menu-button/index.d.ts +5 -0
  13. package/dist/dts/menu-button/menu-button.d.ts +7 -0
  14. package/dist/dts/menu-button/menu-button.definition.d.ts +10 -0
  15. package/dist/dts/menu-button/menu-button.options.d.ts +46 -0
  16. package/dist/dts/menu-button/menu-button.template.d.ts +7 -0
  17. package/dist/dts/tab/define.d.ts +1 -0
  18. package/dist/dts/tab/index.d.ts +4 -0
  19. package/dist/dts/tab/tab.d.ts +8 -0
  20. package/dist/dts/tab/tab.definition.d.ts +2 -0
  21. package/dist/dts/tab/tab.styles.d.ts +1 -0
  22. package/dist/dts/tab/tab.template.d.ts +4 -0
  23. package/dist/dts/tab-panel/define.d.ts +1 -0
  24. package/dist/dts/tab-panel/index.d.ts +4 -0
  25. package/dist/dts/tab-panel/tab-panel.d.ts +3 -0
  26. package/dist/dts/tab-panel/tab-panel.definition.d.ts +2 -0
  27. package/dist/dts/tab-panel/tab-panel.styles.d.ts +1 -0
  28. package/dist/dts/tab-panel/tab-panel.template.d.ts +1 -0
  29. package/dist/dts/tabs/define.d.ts +1 -0
  30. package/dist/dts/tabs/index.d.ts +5 -0
  31. package/dist/dts/tabs/tabs.d.ts +88 -0
  32. package/dist/dts/tabs/tabs.definition.d.ts +2 -0
  33. package/dist/dts/tabs/tabs.options.d.ts +14 -0
  34. package/dist/dts/tabs/tabs.styles.d.ts +1 -0
  35. package/dist/dts/tabs/tabs.template.d.ts +1 -0
  36. package/dist/esm/button/button.styles.js +2 -0
  37. package/dist/esm/button/button.styles.js.map +1 -1
  38. package/dist/esm/index.js +5 -0
  39. package/dist/esm/index.js.map +1 -1
  40. package/dist/esm/label/define.js +4 -0
  41. package/dist/esm/label/define.js.map +1 -0
  42. package/dist/esm/label/index.js +5 -0
  43. package/dist/esm/label/index.js.map +1 -0
  44. package/dist/esm/label/label.definition.js +18 -0
  45. package/dist/esm/label/label.definition.js.map +1 -0
  46. package/dist/esm/label/label.js +40 -0
  47. package/dist/esm/label/label.js.map +1 -0
  48. package/dist/esm/label/label.options.js +16 -0
  49. package/dist/esm/label/label.options.js.map +1 -0
  50. package/dist/esm/label/label.styles.js +38 -0
  51. package/dist/esm/label/label.styles.js.map +1 -0
  52. package/dist/esm/label/label.template.js +13 -0
  53. package/dist/esm/label/label.template.js.map +1 -0
  54. package/dist/esm/menu-button/define.js +4 -0
  55. package/dist/esm/menu-button/define.js.map +1 -0
  56. package/dist/esm/menu-button/index.js +6 -0
  57. package/dist/esm/menu-button/index.js.map +1 -0
  58. package/dist/esm/menu-button/menu-button.definition.js +21 -0
  59. package/dist/esm/menu-button/menu-button.definition.js.map +1 -0
  60. package/dist/esm/menu-button/menu-button.js +8 -0
  61. package/dist/esm/menu-button/menu-button.js.map +1 -0
  62. package/dist/esm/menu-button/menu-button.options.js +17 -0
  63. package/dist/esm/menu-button/menu-button.options.js.map +1 -0
  64. package/dist/esm/menu-button/menu-button.template.js +10 -0
  65. package/dist/esm/menu-button/menu-button.template.js.map +1 -0
  66. package/dist/esm/tab/define.js +4 -0
  67. package/dist/esm/tab/define.js.map +1 -0
  68. package/dist/esm/tab/index.js +5 -0
  69. package/dist/esm/tab/index.js.map +1 -0
  70. package/dist/esm/tab/tab.definition.js +10 -0
  71. package/dist/esm/tab/tab.definition.js.map +1 -0
  72. package/dist/esm/tab/tab.js +20 -0
  73. package/dist/esm/tab/tab.js.map +1 -0
  74. package/dist/esm/tab/tab.styles.js +94 -0
  75. package/dist/esm/tab/tab.styles.js.map +1 -0
  76. package/dist/esm/tab/tab.template.js +13 -0
  77. package/dist/esm/tab/tab.template.js.map +1 -0
  78. package/dist/esm/tab-panel/define.js +4 -0
  79. package/dist/esm/tab-panel/define.js.map +1 -0
  80. package/dist/esm/tab-panel/index.js +5 -0
  81. package/dist/esm/tab-panel/index.js.map +1 -0
  82. package/dist/esm/tab-panel/tab-panel.definition.js +10 -0
  83. package/dist/esm/tab-panel/tab-panel.definition.js.map +1 -0
  84. package/dist/esm/tab-panel/tab-panel.js +4 -0
  85. package/dist/esm/tab-panel/tab-panel.js.map +1 -0
  86. package/dist/esm/tab-panel/tab-panel.styles.js +12 -0
  87. package/dist/esm/tab-panel/tab-panel.styles.js.map +1 -0
  88. package/dist/esm/tab-panel/tab-panel.template.js +3 -0
  89. package/dist/esm/tab-panel/tab-panel.template.js.map +1 -0
  90. package/dist/esm/tabs/define.js +4 -0
  91. package/dist/esm/tabs/define.js.map +1 -0
  92. package/dist/esm/tabs/index.js +6 -0
  93. package/dist/esm/tabs/index.js.map +1 -0
  94. package/dist/esm/tabs/tabs.definition.js +10 -0
  95. package/dist/esm/tabs/tabs.definition.js.map +1 -0
  96. package/dist/esm/tabs/tabs.js +158 -0
  97. package/dist/esm/tabs/tabs.js.map +1 -0
  98. package/dist/esm/tabs/tabs.options.js +12 -0
  99. package/dist/esm/tabs/tabs.options.js.map +1 -0
  100. package/dist/esm/tabs/tabs.styles.js +230 -0
  101. package/dist/esm/tabs/tabs.styles.js.map +1 -0
  102. package/dist/esm/tabs/tabs.template.js +3 -0
  103. package/dist/esm/tabs/tabs.template.js.map +1 -0
  104. package/dist/fluent-web-components.api.json +1318 -39
  105. package/dist/web-components.d.ts +302 -2
  106. package/dist/web-components.js +701 -60
  107. package/dist/web-components.min.js +151 -136
  108. package/docs/api-report.md +140 -3
  109. package/package.json +12 -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",
@@ -14308,6 +14281,257 @@
14308
14281
  "endIndex": 5
14309
14282
  }
14310
14283
  },
14284
+ {
14285
+ "kind": "Class",
14286
+ "canonicalReference": "@fluentui/web-components!Label:class",
14287
+ "docComment": "/**\n * The base class used for constructing a fluent-label custom element\n *\n * @public\n */\n",
14288
+ "excerptTokens": [
14289
+ {
14290
+ "kind": "Content",
14291
+ "text": "export declare class Label extends "
14292
+ },
14293
+ {
14294
+ "kind": "Reference",
14295
+ "text": "FASTElement",
14296
+ "canonicalReference": "@microsoft/fast-element!FASTElement:interface"
14297
+ },
14298
+ {
14299
+ "kind": "Content",
14300
+ "text": " "
14301
+ }
14302
+ ],
14303
+ "releaseTag": "Public",
14304
+ "name": "Label",
14305
+ "preserveMemberOrder": false,
14306
+ "members": [
14307
+ {
14308
+ "kind": "Property",
14309
+ "canonicalReference": "@fluentui/web-components!Label#disabled:member",
14310
+ "docComment": "/**\n * Specifies styles for label when associated input is disabled\n *\n * @remarks\n *\n * HTML Attribute: disabled\n *\n * @public\n */\n",
14311
+ "excerptTokens": [
14312
+ {
14313
+ "kind": "Content",
14314
+ "text": "disabled: "
14315
+ },
14316
+ {
14317
+ "kind": "Content",
14318
+ "text": "boolean"
14319
+ },
14320
+ {
14321
+ "kind": "Content",
14322
+ "text": ";"
14323
+ }
14324
+ ],
14325
+ "isReadonly": false,
14326
+ "isOptional": false,
14327
+ "releaseTag": "Public",
14328
+ "name": "disabled",
14329
+ "propertyTypeTokenRange": {
14330
+ "startIndex": 1,
14331
+ "endIndex": 2
14332
+ },
14333
+ "isStatic": false,
14334
+ "isProtected": false
14335
+ },
14336
+ {
14337
+ "kind": "Property",
14338
+ "canonicalReference": "@fluentui/web-components!Label#required:member",
14339
+ "docComment": "/**\n * Specifies styles for label when associated input is a required field\n *\n * @remarks\n *\n * HTML Attribute: required\n *\n * @public\n */\n",
14340
+ "excerptTokens": [
14341
+ {
14342
+ "kind": "Content",
14343
+ "text": "required: "
14344
+ },
14345
+ {
14346
+ "kind": "Content",
14347
+ "text": "boolean"
14348
+ },
14349
+ {
14350
+ "kind": "Content",
14351
+ "text": ";"
14352
+ }
14353
+ ],
14354
+ "isReadonly": false,
14355
+ "isOptional": false,
14356
+ "releaseTag": "Public",
14357
+ "name": "required",
14358
+ "propertyTypeTokenRange": {
14359
+ "startIndex": 1,
14360
+ "endIndex": 2
14361
+ },
14362
+ "isStatic": false,
14363
+ "isProtected": false
14364
+ },
14365
+ {
14366
+ "kind": "Property",
14367
+ "canonicalReference": "@fluentui/web-components!Label#size:member",
14368
+ "docComment": "/**\n * Specifies font size of a label\n *\n * @default 'medium'\n *\n * @remarks\n *\n * HTML Attribute: size\n *\n * @public\n */\n",
14369
+ "excerptTokens": [
14370
+ {
14371
+ "kind": "Content",
14372
+ "text": "size?: "
14373
+ },
14374
+ {
14375
+ "kind": "Reference",
14376
+ "text": "LabelSize",
14377
+ "canonicalReference": "@fluentui/web-components!~LabelSize:type"
14378
+ },
14379
+ {
14380
+ "kind": "Content",
14381
+ "text": ";"
14382
+ }
14383
+ ],
14384
+ "isReadonly": false,
14385
+ "isOptional": true,
14386
+ "releaseTag": "Public",
14387
+ "name": "size",
14388
+ "propertyTypeTokenRange": {
14389
+ "startIndex": 1,
14390
+ "endIndex": 2
14391
+ },
14392
+ "isStatic": false,
14393
+ "isProtected": false
14394
+ },
14395
+ {
14396
+ "kind": "Property",
14397
+ "canonicalReference": "@fluentui/web-components!Label#weight:member",
14398
+ "docComment": "/**\n * Specifies font weight of a label\n *\n * @default 'regular'\n *\n * @remarks\n *\n * HTML Attribute: weight\n *\n * @public\n */\n",
14399
+ "excerptTokens": [
14400
+ {
14401
+ "kind": "Content",
14402
+ "text": "weight?: "
14403
+ },
14404
+ {
14405
+ "kind": "Reference",
14406
+ "text": "LabelWeight",
14407
+ "canonicalReference": "@fluentui/web-components!~LabelWeight:type"
14408
+ },
14409
+ {
14410
+ "kind": "Content",
14411
+ "text": ";"
14412
+ }
14413
+ ],
14414
+ "isReadonly": false,
14415
+ "isOptional": true,
14416
+ "releaseTag": "Public",
14417
+ "name": "weight",
14418
+ "propertyTypeTokenRange": {
14419
+ "startIndex": 1,
14420
+ "endIndex": 2
14421
+ },
14422
+ "isStatic": false,
14423
+ "isProtected": false
14424
+ }
14425
+ ],
14426
+ "extendsTokenRange": {
14427
+ "startIndex": 1,
14428
+ "endIndex": 2
14429
+ },
14430
+ "implementsTokenRanges": []
14431
+ },
14432
+ {
14433
+ "kind": "Variable",
14434
+ "canonicalReference": "@fluentui/web-components!LabelDefinition:var",
14435
+ "docComment": "/**\n * The Fluent Label Element.\n *\n * @remarks\n *\n * HTML Element: \\<fluent-label\\>\n *\n * @public\n */\n",
14436
+ "excerptTokens": [
14437
+ {
14438
+ "kind": "Content",
14439
+ "text": "definition: "
14440
+ },
14441
+ {
14442
+ "kind": "Content",
14443
+ "text": "import(\"@microsoft/fast-element\")."
14444
+ },
14445
+ {
14446
+ "kind": "Reference",
14447
+ "text": "FASTElementDefinition",
14448
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
14449
+ },
14450
+ {
14451
+ "kind": "Content",
14452
+ "text": "<typeof "
14453
+ },
14454
+ {
14455
+ "kind": "Reference",
14456
+ "text": "Label",
14457
+ "canonicalReference": "@fluentui/web-components!Label:class"
14458
+ },
14459
+ {
14460
+ "kind": "Content",
14461
+ "text": ">"
14462
+ }
14463
+ ],
14464
+ "isReadonly": true,
14465
+ "releaseTag": "Public",
14466
+ "name": "LabelDefinition",
14467
+ "variableTypeTokenRange": {
14468
+ "startIndex": 1,
14469
+ "endIndex": 6
14470
+ }
14471
+ },
14472
+ {
14473
+ "kind": "Variable",
14474
+ "canonicalReference": "@fluentui/web-components!LabelStyles:var",
14475
+ "docComment": "/**\n * Label styles\n *\n * @public\n */\n",
14476
+ "excerptTokens": [
14477
+ {
14478
+ "kind": "Content",
14479
+ "text": "styles: "
14480
+ },
14481
+ {
14482
+ "kind": "Content",
14483
+ "text": "import(\"@microsoft/fast-element\")."
14484
+ },
14485
+ {
14486
+ "kind": "Reference",
14487
+ "text": "ElementStyles",
14488
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
14489
+ }
14490
+ ],
14491
+ "isReadonly": true,
14492
+ "releaseTag": "Public",
14493
+ "name": "LabelStyles",
14494
+ "variableTypeTokenRange": {
14495
+ "startIndex": 1,
14496
+ "endIndex": 3
14497
+ }
14498
+ },
14499
+ {
14500
+ "kind": "Variable",
14501
+ "canonicalReference": "@fluentui/web-components!LabelTemplate:var",
14502
+ "docComment": "",
14503
+ "excerptTokens": [
14504
+ {
14505
+ "kind": "Content",
14506
+ "text": "template: "
14507
+ },
14508
+ {
14509
+ "kind": "Reference",
14510
+ "text": "ElementViewTemplate",
14511
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
14512
+ },
14513
+ {
14514
+ "kind": "Content",
14515
+ "text": "<"
14516
+ },
14517
+ {
14518
+ "kind": "Reference",
14519
+ "text": "Label",
14520
+ "canonicalReference": "@fluentui/web-components!Label:class"
14521
+ },
14522
+ {
14523
+ "kind": "Content",
14524
+ "text": ">"
14525
+ }
14526
+ ],
14527
+ "isReadonly": true,
14528
+ "releaseTag": "Public",
14529
+ "name": "LabelTemplate",
14530
+ "variableTypeTokenRange": {
14531
+ "startIndex": 1,
14532
+ "endIndex": 5
14533
+ }
14534
+ },
14311
14535
  {
14312
14536
  "kind": "Variable",
14313
14537
  "canonicalReference": "@fluentui/web-components!lineHeightBase100:var",
@@ -14620,17 +14844,17 @@
14620
14844
  },
14621
14845
  {
14622
14846
  "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",
14847
+ "canonicalReference": "@fluentui/web-components!MenuButton:class",
14848
+ "docComment": "/**\n * The base class used for constructing a fluent-menu-button custom element\n *\n * @public\n */\n",
14625
14849
  "excerptTokens": [
14626
14850
  {
14627
14851
  "kind": "Content",
14628
- "text": "export declare class ProgressBar extends "
14852
+ "text": "export declare class MenuButton extends "
14629
14853
  },
14630
14854
  {
14631
14855
  "kind": "Reference",
14632
- "text": "FASTProgress",
14633
- "canonicalReference": "@microsoft/fast-foundation!FASTProgress:class"
14856
+ "text": "Button",
14857
+ "canonicalReference": "@fluentui/web-components!Button:class"
14634
14858
  },
14635
14859
  {
14636
14860
  "kind": "Content",
@@ -14638,12 +14862,300 @@
14638
14862
  }
14639
14863
  ],
14640
14864
  "releaseTag": "Public",
14641
- "name": "ProgressBar_2",
14865
+ "name": "MenuButton",
14642
14866
  "preserveMemberOrder": false,
14643
- "members": [
14644
- {
14645
- "kind": "Property",
14646
- "canonicalReference": "@fluentui/web-components!ProgressBar_2#shape:member",
14867
+ "members": [],
14868
+ "extendsTokenRange": {
14869
+ "startIndex": 1,
14870
+ "endIndex": 2
14871
+ },
14872
+ "implementsTokenRanges": []
14873
+ },
14874
+ {
14875
+ "kind": "TypeAlias",
14876
+ "canonicalReference": "@fluentui/web-components!MenuButtonAppearance:type",
14877
+ "docComment": "/**\n * A Menu Button can be secondary, primary, outline, subtle, transparent\n *\n * @public\n */\n",
14878
+ "excerptTokens": [
14879
+ {
14880
+ "kind": "Content",
14881
+ "text": "export declare type MenuButtonAppearance = "
14882
+ },
14883
+ {
14884
+ "kind": "Reference",
14885
+ "text": "ValuesOf",
14886
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
14887
+ },
14888
+ {
14889
+ "kind": "Content",
14890
+ "text": "<typeof "
14891
+ },
14892
+ {
14893
+ "kind": "Reference",
14894
+ "text": "MenuButtonAppearance",
14895
+ "canonicalReference": "@fluentui/web-components!MenuButtonAppearance:var"
14896
+ },
14897
+ {
14898
+ "kind": "Content",
14899
+ "text": ">"
14900
+ },
14901
+ {
14902
+ "kind": "Content",
14903
+ "text": ";"
14904
+ }
14905
+ ],
14906
+ "releaseTag": "Public",
14907
+ "name": "MenuButtonAppearance",
14908
+ "typeTokenRange": {
14909
+ "startIndex": 1,
14910
+ "endIndex": 5
14911
+ }
14912
+ },
14913
+ {
14914
+ "kind": "Variable",
14915
+ "canonicalReference": "@fluentui/web-components!MenuButtonAppearance:var",
14916
+ "docComment": "/**\n * Menu Button Appearance constants\n *\n * @public\n */\n",
14917
+ "excerptTokens": [
14918
+ {
14919
+ "kind": "Content",
14920
+ "text": "MenuButtonAppearance: "
14921
+ },
14922
+ {
14923
+ "kind": "Content",
14924
+ "text": "{\n readonly primary: \"primary\";\n readonly outline: \"outline\";\n readonly subtle: \"subtle\";\n readonly secondary: \"secondary\";\n readonly transparent: \"transparent\";\n}"
14925
+ }
14926
+ ],
14927
+ "isReadonly": true,
14928
+ "releaseTag": "Public",
14929
+ "name": "MenuButtonAppearance",
14930
+ "variableTypeTokenRange": {
14931
+ "startIndex": 1,
14932
+ "endIndex": 2
14933
+ }
14934
+ },
14935
+ {
14936
+ "kind": "Variable",
14937
+ "canonicalReference": "@fluentui/web-components!MenuButtonDefinition:var",
14938
+ "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",
14939
+ "excerptTokens": [
14940
+ {
14941
+ "kind": "Content",
14942
+ "text": "definition: "
14943
+ },
14944
+ {
14945
+ "kind": "Content",
14946
+ "text": "import(\"@microsoft/fast-element\")."
14947
+ },
14948
+ {
14949
+ "kind": "Reference",
14950
+ "text": "FASTElementDefinition",
14951
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
14952
+ },
14953
+ {
14954
+ "kind": "Content",
14955
+ "text": "<typeof "
14956
+ },
14957
+ {
14958
+ "kind": "Reference",
14959
+ "text": "MenuButton",
14960
+ "canonicalReference": "@fluentui/web-components!MenuButton:class"
14961
+ },
14962
+ {
14963
+ "kind": "Content",
14964
+ "text": ">"
14965
+ }
14966
+ ],
14967
+ "isReadonly": true,
14968
+ "releaseTag": "Public",
14969
+ "name": "MenuButtonDefinition",
14970
+ "variableTypeTokenRange": {
14971
+ "startIndex": 1,
14972
+ "endIndex": 6
14973
+ }
14974
+ },
14975
+ {
14976
+ "kind": "TypeAlias",
14977
+ "canonicalReference": "@fluentui/web-components!MenuButtonShape:type",
14978
+ "docComment": "/**\n * A Menu Button can be square, circular or rounded\n *\n * @public\n */\n",
14979
+ "excerptTokens": [
14980
+ {
14981
+ "kind": "Content",
14982
+ "text": "export declare type MenuButtonShape = "
14983
+ },
14984
+ {
14985
+ "kind": "Reference",
14986
+ "text": "ValuesOf",
14987
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
14988
+ },
14989
+ {
14990
+ "kind": "Content",
14991
+ "text": "<typeof "
14992
+ },
14993
+ {
14994
+ "kind": "Reference",
14995
+ "text": "MenuButtonShape",
14996
+ "canonicalReference": "@fluentui/web-components!MenuButtonShape:var"
14997
+ },
14998
+ {
14999
+ "kind": "Content",
15000
+ "text": ">"
15001
+ },
15002
+ {
15003
+ "kind": "Content",
15004
+ "text": ";"
15005
+ }
15006
+ ],
15007
+ "releaseTag": "Public",
15008
+ "name": "MenuButtonShape",
15009
+ "typeTokenRange": {
15010
+ "startIndex": 1,
15011
+ "endIndex": 5
15012
+ }
15013
+ },
15014
+ {
15015
+ "kind": "Variable",
15016
+ "canonicalReference": "@fluentui/web-components!MenuButtonShape:var",
15017
+ "docComment": "/**\n * A Menu Button can be square, circular or rounded.\n *\n * @public\n */\n",
15018
+ "excerptTokens": [
15019
+ {
15020
+ "kind": "Content",
15021
+ "text": "MenuButtonShape: "
15022
+ },
15023
+ {
15024
+ "kind": "Content",
15025
+ "text": "{\n readonly circular: \"circular\";\n readonly rounded: \"rounded\";\n readonly square: \"square\";\n}"
15026
+ }
15027
+ ],
15028
+ "isReadonly": true,
15029
+ "releaseTag": "Public",
15030
+ "name": "MenuButtonShape",
15031
+ "variableTypeTokenRange": {
15032
+ "startIndex": 1,
15033
+ "endIndex": 2
15034
+ }
15035
+ },
15036
+ {
15037
+ "kind": "TypeAlias",
15038
+ "canonicalReference": "@fluentui/web-components!MenuButtonSize:type",
15039
+ "docComment": "/**\n * A Menu Button can be on of several preset sizes.\n *\n * @public\n */\n",
15040
+ "excerptTokens": [
15041
+ {
15042
+ "kind": "Content",
15043
+ "text": "export declare type MenuButtonSize = "
15044
+ },
15045
+ {
15046
+ "kind": "Reference",
15047
+ "text": "ValuesOf",
15048
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
15049
+ },
15050
+ {
15051
+ "kind": "Content",
15052
+ "text": "<typeof "
15053
+ },
15054
+ {
15055
+ "kind": "Reference",
15056
+ "text": "MenuButtonSize",
15057
+ "canonicalReference": "@fluentui/web-components!MenuButtonSize:var"
15058
+ },
15059
+ {
15060
+ "kind": "Content",
15061
+ "text": ">"
15062
+ },
15063
+ {
15064
+ "kind": "Content",
15065
+ "text": ";"
15066
+ }
15067
+ ],
15068
+ "releaseTag": "Public",
15069
+ "name": "MenuButtonSize",
15070
+ "typeTokenRange": {
15071
+ "startIndex": 1,
15072
+ "endIndex": 5
15073
+ }
15074
+ },
15075
+ {
15076
+ "kind": "Variable",
15077
+ "canonicalReference": "@fluentui/web-components!MenuButtonSize:var",
15078
+ "docComment": "/**\n * A Menu Button can be a size of small, medium or large.\n *\n * @public\n */\n",
15079
+ "excerptTokens": [
15080
+ {
15081
+ "kind": "Content",
15082
+ "text": "MenuButtonSize: "
15083
+ },
15084
+ {
15085
+ "kind": "Content",
15086
+ "text": "{\n readonly small: \"small\";\n readonly medium: \"medium\";\n readonly large: \"large\";\n}"
15087
+ }
15088
+ ],
15089
+ "isReadonly": true,
15090
+ "releaseTag": "Public",
15091
+ "name": "MenuButtonSize",
15092
+ "variableTypeTokenRange": {
15093
+ "startIndex": 1,
15094
+ "endIndex": 2
15095
+ }
15096
+ },
15097
+ {
15098
+ "kind": "Variable",
15099
+ "canonicalReference": "@fluentui/web-components!MenuButtonTemplate:var",
15100
+ "docComment": "/**\n * The template for the Button component.\n *\n * @public\n */\n",
15101
+ "excerptTokens": [
15102
+ {
15103
+ "kind": "Content",
15104
+ "text": "template: "
15105
+ },
15106
+ {
15107
+ "kind": "Reference",
15108
+ "text": "ElementViewTemplate",
15109
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
15110
+ },
15111
+ {
15112
+ "kind": "Content",
15113
+ "text": "<"
15114
+ },
15115
+ {
15116
+ "kind": "Reference",
15117
+ "text": "MenuButton",
15118
+ "canonicalReference": "@fluentui/web-components!MenuButton:class"
15119
+ },
15120
+ {
15121
+ "kind": "Content",
15122
+ "text": ">"
15123
+ }
15124
+ ],
15125
+ "isReadonly": true,
15126
+ "releaseTag": "Public",
15127
+ "name": "MenuButtonTemplate",
15128
+ "variableTypeTokenRange": {
15129
+ "startIndex": 1,
15130
+ "endIndex": 5
15131
+ }
15132
+ },
15133
+ {
15134
+ "kind": "Class",
15135
+ "canonicalReference": "@fluentui/web-components!ProgressBar_2:class",
15136
+ "docComment": "/**\n * The base class used for constructing a fluent-progress-bar custom element\n *\n * @public\n */\n",
15137
+ "excerptTokens": [
15138
+ {
15139
+ "kind": "Content",
15140
+ "text": "export declare class ProgressBar extends "
15141
+ },
15142
+ {
15143
+ "kind": "Reference",
15144
+ "text": "FASTProgress",
15145
+ "canonicalReference": "@microsoft/fast-foundation!FASTProgress:class"
15146
+ },
15147
+ {
15148
+ "kind": "Content",
15149
+ "text": " "
15150
+ }
15151
+ ],
15152
+ "releaseTag": "Public",
15153
+ "name": "ProgressBar_2",
15154
+ "preserveMemberOrder": false,
15155
+ "members": [
15156
+ {
15157
+ "kind": "Property",
15158
+ "canonicalReference": "@fluentui/web-components!ProgressBar_2#shape:member",
14647
15159
  "docComment": "/**\n * The shape of the progress bar\n *\n * @remarks\n *\n * HTML Attribute: shape\n *\n * @public\n */\n",
14648
15160
  "excerptTokens": [
14649
15161
  {
@@ -16900,8 +17412,35 @@
16900
17412
  }
16901
17413
  },
16902
17414
  {
16903
- "kind": "Class",
16904
- "canonicalReference": "@fluentui/web-components!Switch:class",
17415
+ "kind": "Variable",
17416
+ "canonicalReference": "@fluentui/web-components!styles:var",
17417
+ "docComment": "",
17418
+ "excerptTokens": [
17419
+ {
17420
+ "kind": "Content",
17421
+ "text": "styles: "
17422
+ },
17423
+ {
17424
+ "kind": "Content",
17425
+ "text": "import(\"@microsoft/fast-element\")."
17426
+ },
17427
+ {
17428
+ "kind": "Reference",
17429
+ "text": "ElementStyles",
17430
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
17431
+ }
17432
+ ],
17433
+ "isReadonly": true,
17434
+ "releaseTag": "Public",
17435
+ "name": "styles",
17436
+ "variableTypeTokenRange": {
17437
+ "startIndex": 1,
17438
+ "endIndex": 3
17439
+ }
17440
+ },
17441
+ {
17442
+ "kind": "Class",
17443
+ "canonicalReference": "@fluentui/web-components!Switch:class",
16905
17444
  "docComment": "",
16906
17445
  "excerptTokens": [
16907
17446
  {
@@ -17087,6 +17626,746 @@
17087
17626
  "endIndex": 5
17088
17627
  }
17089
17628
  },
17629
+ {
17630
+ "kind": "Class",
17631
+ "canonicalReference": "@fluentui/web-components!Tab:class",
17632
+ "docComment": "/**\n * Tab extends the FASTTab and is a child of the TabList\n */\n",
17633
+ "excerptTokens": [
17634
+ {
17635
+ "kind": "Content",
17636
+ "text": "export declare class Tab extends "
17637
+ },
17638
+ {
17639
+ "kind": "Reference",
17640
+ "text": "FASTTab",
17641
+ "canonicalReference": "@microsoft/fast-foundation!FASTTab:class"
17642
+ },
17643
+ {
17644
+ "kind": "Content",
17645
+ "text": " "
17646
+ }
17647
+ ],
17648
+ "releaseTag": "Public",
17649
+ "name": "Tab",
17650
+ "preserveMemberOrder": false,
17651
+ "members": [
17652
+ {
17653
+ "kind": "Method",
17654
+ "canonicalReference": "@fluentui/web-components!Tab#connectedCallback:member(1)",
17655
+ "docComment": "",
17656
+ "excerptTokens": [
17657
+ {
17658
+ "kind": "Content",
17659
+ "text": "connectedCallback(): "
17660
+ },
17661
+ {
17662
+ "kind": "Content",
17663
+ "text": "void"
17664
+ },
17665
+ {
17666
+ "kind": "Content",
17667
+ "text": ";"
17668
+ }
17669
+ ],
17670
+ "isStatic": false,
17671
+ "returnTypeTokenRange": {
17672
+ "startIndex": 1,
17673
+ "endIndex": 2
17674
+ },
17675
+ "releaseTag": "Public",
17676
+ "isProtected": false,
17677
+ "overloadIndex": 1,
17678
+ "parameters": [],
17679
+ "isOptional": false,
17680
+ "name": "connectedCallback"
17681
+ }
17682
+ ],
17683
+ "extendsTokenRange": {
17684
+ "startIndex": 1,
17685
+ "endIndex": 2
17686
+ },
17687
+ "implementsTokenRanges": []
17688
+ },
17689
+ {
17690
+ "kind": "Variable",
17691
+ "canonicalReference": "@fluentui/web-components!TabDefinition:var",
17692
+ "docComment": "",
17693
+ "excerptTokens": [
17694
+ {
17695
+ "kind": "Content",
17696
+ "text": "definition: "
17697
+ },
17698
+ {
17699
+ "kind": "Content",
17700
+ "text": "import(\"@microsoft/fast-element\")."
17701
+ },
17702
+ {
17703
+ "kind": "Reference",
17704
+ "text": "FASTElementDefinition",
17705
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
17706
+ },
17707
+ {
17708
+ "kind": "Content",
17709
+ "text": "<typeof "
17710
+ },
17711
+ {
17712
+ "kind": "Reference",
17713
+ "text": "Tab",
17714
+ "canonicalReference": "@fluentui/web-components!Tab:class"
17715
+ },
17716
+ {
17717
+ "kind": "Content",
17718
+ "text": ">"
17719
+ }
17720
+ ],
17721
+ "isReadonly": true,
17722
+ "releaseTag": "Public",
17723
+ "name": "TabDefinition",
17724
+ "variableTypeTokenRange": {
17725
+ "startIndex": 1,
17726
+ "endIndex": 6
17727
+ }
17728
+ },
17729
+ {
17730
+ "kind": "Class",
17731
+ "canonicalReference": "@fluentui/web-components!TabPanel:class",
17732
+ "docComment": "",
17733
+ "excerptTokens": [
17734
+ {
17735
+ "kind": "Content",
17736
+ "text": "export declare class TabPanel extends "
17737
+ },
17738
+ {
17739
+ "kind": "Reference",
17740
+ "text": "FASTTabPanel",
17741
+ "canonicalReference": "@microsoft/fast-foundation!FASTTabPanel:class"
17742
+ },
17743
+ {
17744
+ "kind": "Content",
17745
+ "text": " "
17746
+ }
17747
+ ],
17748
+ "releaseTag": "Public",
17749
+ "name": "TabPanel",
17750
+ "preserveMemberOrder": false,
17751
+ "members": [],
17752
+ "extendsTokenRange": {
17753
+ "startIndex": 1,
17754
+ "endIndex": 2
17755
+ },
17756
+ "implementsTokenRanges": []
17757
+ },
17758
+ {
17759
+ "kind": "Variable",
17760
+ "canonicalReference": "@fluentui/web-components!TabPanelDefinition:var",
17761
+ "docComment": "",
17762
+ "excerptTokens": [
17763
+ {
17764
+ "kind": "Content",
17765
+ "text": "definition: "
17766
+ },
17767
+ {
17768
+ "kind": "Content",
17769
+ "text": "import(\"@microsoft/fast-element\")."
17770
+ },
17771
+ {
17772
+ "kind": "Reference",
17773
+ "text": "FASTElementDefinition",
17774
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
17775
+ },
17776
+ {
17777
+ "kind": "Content",
17778
+ "text": "<typeof "
17779
+ },
17780
+ {
17781
+ "kind": "Reference",
17782
+ "text": "TabPanel",
17783
+ "canonicalReference": "@fluentui/web-components!TabPanel:class"
17784
+ },
17785
+ {
17786
+ "kind": "Content",
17787
+ "text": ">"
17788
+ }
17789
+ ],
17790
+ "isReadonly": true,
17791
+ "releaseTag": "Public",
17792
+ "name": "TabPanelDefinition",
17793
+ "variableTypeTokenRange": {
17794
+ "startIndex": 1,
17795
+ "endIndex": 6
17796
+ }
17797
+ },
17798
+ {
17799
+ "kind": "Variable",
17800
+ "canonicalReference": "@fluentui/web-components!TabPanelStyles:var",
17801
+ "docComment": "",
17802
+ "excerptTokens": [
17803
+ {
17804
+ "kind": "Content",
17805
+ "text": "styles: "
17806
+ },
17807
+ {
17808
+ "kind": "Content",
17809
+ "text": "import(\"@microsoft/fast-element\")."
17810
+ },
17811
+ {
17812
+ "kind": "Reference",
17813
+ "text": "ElementStyles",
17814
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
17815
+ }
17816
+ ],
17817
+ "isReadonly": true,
17818
+ "releaseTag": "Public",
17819
+ "name": "TabPanelStyles",
17820
+ "variableTypeTokenRange": {
17821
+ "startIndex": 1,
17822
+ "endIndex": 3
17823
+ }
17824
+ },
17825
+ {
17826
+ "kind": "Variable",
17827
+ "canonicalReference": "@fluentui/web-components!TabPanelTemplate:var",
17828
+ "docComment": "",
17829
+ "excerptTokens": [
17830
+ {
17831
+ "kind": "Content",
17832
+ "text": "template: "
17833
+ },
17834
+ {
17835
+ "kind": "Content",
17836
+ "text": "import(\"@microsoft/fast-element\")."
17837
+ },
17838
+ {
17839
+ "kind": "Reference",
17840
+ "text": "ElementViewTemplate",
17841
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
17842
+ },
17843
+ {
17844
+ "kind": "Content",
17845
+ "text": "<import(\"@microsoft/fast-foundation\")."
17846
+ },
17847
+ {
17848
+ "kind": "Reference",
17849
+ "text": "FASTTabPanel",
17850
+ "canonicalReference": "@microsoft/fast-foundation!FASTTabPanel:class"
17851
+ },
17852
+ {
17853
+ "kind": "Content",
17854
+ "text": ", any>"
17855
+ }
17856
+ ],
17857
+ "isReadonly": true,
17858
+ "releaseTag": "Public",
17859
+ "name": "TabPanelTemplate",
17860
+ "variableTypeTokenRange": {
17861
+ "startIndex": 1,
17862
+ "endIndex": 6
17863
+ }
17864
+ },
17865
+ {
17866
+ "kind": "Class",
17867
+ "canonicalReference": "@fluentui/web-components!Tabs:class",
17868
+ "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",
17869
+ "excerptTokens": [
17870
+ {
17871
+ "kind": "Content",
17872
+ "text": "export declare class Tabs extends "
17873
+ },
17874
+ {
17875
+ "kind": "Reference",
17876
+ "text": "FASTTabs",
17877
+ "canonicalReference": "@microsoft/fast-foundation!FASTTabs:class"
17878
+ },
17879
+ {
17880
+ "kind": "Content",
17881
+ "text": " "
17882
+ }
17883
+ ],
17884
+ "releaseTag": "Public",
17885
+ "name": "Tabs",
17886
+ "preserveMemberOrder": false,
17887
+ "members": [
17888
+ {
17889
+ "kind": "Method",
17890
+ "canonicalReference": "@fluentui/web-components!Tabs#activeidChanged:member(1)",
17891
+ "docComment": "",
17892
+ "excerptTokens": [
17893
+ {
17894
+ "kind": "Content",
17895
+ "text": "activeidChanged(oldValue: "
17896
+ },
17897
+ {
17898
+ "kind": "Content",
17899
+ "text": "string"
17900
+ },
17901
+ {
17902
+ "kind": "Content",
17903
+ "text": ", newValue: "
17904
+ },
17905
+ {
17906
+ "kind": "Content",
17907
+ "text": "string"
17908
+ },
17909
+ {
17910
+ "kind": "Content",
17911
+ "text": "): "
17912
+ },
17913
+ {
17914
+ "kind": "Content",
17915
+ "text": "void"
17916
+ },
17917
+ {
17918
+ "kind": "Content",
17919
+ "text": ";"
17920
+ }
17921
+ ],
17922
+ "isStatic": false,
17923
+ "returnTypeTokenRange": {
17924
+ "startIndex": 5,
17925
+ "endIndex": 6
17926
+ },
17927
+ "releaseTag": "Public",
17928
+ "isProtected": false,
17929
+ "overloadIndex": 1,
17930
+ "parameters": [
17931
+ {
17932
+ "parameterName": "oldValue",
17933
+ "parameterTypeTokenRange": {
17934
+ "startIndex": 1,
17935
+ "endIndex": 2
17936
+ },
17937
+ "isOptional": false
17938
+ },
17939
+ {
17940
+ "parameterName": "newValue",
17941
+ "parameterTypeTokenRange": {
17942
+ "startIndex": 3,
17943
+ "endIndex": 4
17944
+ },
17945
+ "isOptional": false
17946
+ }
17947
+ ],
17948
+ "isOptional": false,
17949
+ "name": "activeidChanged"
17950
+ },
17951
+ {
17952
+ "kind": "Property",
17953
+ "canonicalReference": "@fluentui/web-components!Tabs#appearance:member",
17954
+ "docComment": "/**\n * appearance There are two modes of appearance: transparent and subtle.\n */\n",
17955
+ "excerptTokens": [
17956
+ {
17957
+ "kind": "Content",
17958
+ "text": "appearance?: "
17959
+ },
17960
+ {
17961
+ "kind": "Reference",
17962
+ "text": "TabsAppearance",
17963
+ "canonicalReference": "@fluentui/web-components!TabsAppearance:type"
17964
+ },
17965
+ {
17966
+ "kind": "Content",
17967
+ "text": ";"
17968
+ }
17969
+ ],
17970
+ "isReadonly": false,
17971
+ "isOptional": true,
17972
+ "releaseTag": "Public",
17973
+ "name": "appearance",
17974
+ "propertyTypeTokenRange": {
17975
+ "startIndex": 1,
17976
+ "endIndex": 2
17977
+ },
17978
+ "isStatic": false,
17979
+ "isProtected": false
17980
+ },
17981
+ {
17982
+ "kind": "Property",
17983
+ "canonicalReference": "@fluentui/web-components!Tabs#disabled:member",
17984
+ "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",
17985
+ "excerptTokens": [
17986
+ {
17987
+ "kind": "Content",
17988
+ "text": "disabled?: "
17989
+ },
17990
+ {
17991
+ "kind": "Content",
17992
+ "text": "boolean"
17993
+ },
17994
+ {
17995
+ "kind": "Content",
17996
+ "text": ";"
17997
+ }
17998
+ ],
17999
+ "isReadonly": false,
18000
+ "isOptional": true,
18001
+ "releaseTag": "Public",
18002
+ "name": "disabled",
18003
+ "propertyTypeTokenRange": {
18004
+ "startIndex": 1,
18005
+ "endIndex": 2
18006
+ },
18007
+ "isStatic": false,
18008
+ "isProtected": false
18009
+ },
18010
+ {
18011
+ "kind": "Property",
18012
+ "canonicalReference": "@fluentui/web-components!Tabs#size:member",
18013
+ "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",
18014
+ "excerptTokens": [
18015
+ {
18016
+ "kind": "Content",
18017
+ "text": "size?: "
18018
+ },
18019
+ {
18020
+ "kind": "Reference",
18021
+ "text": "TabsSize",
18022
+ "canonicalReference": "@fluentui/web-components!TabsSize:type"
18023
+ },
18024
+ {
18025
+ "kind": "Content",
18026
+ "text": ";"
18027
+ }
18028
+ ],
18029
+ "isReadonly": false,
18030
+ "isOptional": true,
18031
+ "releaseTag": "Public",
18032
+ "name": "size",
18033
+ "propertyTypeTokenRange": {
18034
+ "startIndex": 1,
18035
+ "endIndex": 2
18036
+ },
18037
+ "isStatic": false,
18038
+ "isProtected": false
18039
+ },
18040
+ {
18041
+ "kind": "Method",
18042
+ "canonicalReference": "@fluentui/web-components!Tabs#tabsChanged:member(1)",
18043
+ "docComment": "",
18044
+ "excerptTokens": [
18045
+ {
18046
+ "kind": "Content",
18047
+ "text": "tabsChanged(): "
18048
+ },
18049
+ {
18050
+ "kind": "Content",
18051
+ "text": "void"
18052
+ },
18053
+ {
18054
+ "kind": "Content",
18055
+ "text": ";"
18056
+ }
18057
+ ],
18058
+ "isStatic": false,
18059
+ "returnTypeTokenRange": {
18060
+ "startIndex": 1,
18061
+ "endIndex": 2
18062
+ },
18063
+ "releaseTag": "Public",
18064
+ "isProtected": false,
18065
+ "overloadIndex": 1,
18066
+ "parameters": [],
18067
+ "isOptional": false,
18068
+ "name": "tabsChanged"
18069
+ }
18070
+ ],
18071
+ "extendsTokenRange": {
18072
+ "startIndex": 1,
18073
+ "endIndex": 2
18074
+ },
18075
+ "implementsTokenRanges": []
18076
+ },
18077
+ {
18078
+ "kind": "TypeAlias",
18079
+ "canonicalReference": "@fluentui/web-components!TabsAppearance:type",
18080
+ "docComment": "",
18081
+ "excerptTokens": [
18082
+ {
18083
+ "kind": "Content",
18084
+ "text": "export declare type TabsAppearance = "
18085
+ },
18086
+ {
18087
+ "kind": "Reference",
18088
+ "text": "ValuesOf",
18089
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
18090
+ },
18091
+ {
18092
+ "kind": "Content",
18093
+ "text": "<typeof "
18094
+ },
18095
+ {
18096
+ "kind": "Reference",
18097
+ "text": "TabsAppearance",
18098
+ "canonicalReference": "@fluentui/web-components!TabsAppearance:var"
18099
+ },
18100
+ {
18101
+ "kind": "Content",
18102
+ "text": ">"
18103
+ },
18104
+ {
18105
+ "kind": "Content",
18106
+ "text": ";"
18107
+ }
18108
+ ],
18109
+ "releaseTag": "Public",
18110
+ "name": "TabsAppearance",
18111
+ "typeTokenRange": {
18112
+ "startIndex": 1,
18113
+ "endIndex": 5
18114
+ }
18115
+ },
18116
+ {
18117
+ "kind": "Variable",
18118
+ "canonicalReference": "@fluentui/web-components!TabsAppearance:var",
18119
+ "docComment": "",
18120
+ "excerptTokens": [
18121
+ {
18122
+ "kind": "Content",
18123
+ "text": "TabsAppearance: "
18124
+ },
18125
+ {
18126
+ "kind": "Content",
18127
+ "text": "{\n readonly subtle: \"subtle\";\n readonly transparent: \"transparent\";\n}"
18128
+ }
18129
+ ],
18130
+ "isReadonly": true,
18131
+ "releaseTag": "Public",
18132
+ "name": "TabsAppearance",
18133
+ "variableTypeTokenRange": {
18134
+ "startIndex": 1,
18135
+ "endIndex": 2
18136
+ }
18137
+ },
18138
+ {
18139
+ "kind": "Variable",
18140
+ "canonicalReference": "@fluentui/web-components!TabsDefinition:var",
18141
+ "docComment": "",
18142
+ "excerptTokens": [
18143
+ {
18144
+ "kind": "Content",
18145
+ "text": "definition: "
18146
+ },
18147
+ {
18148
+ "kind": "Content",
18149
+ "text": "import(\"@microsoft/fast-element\")."
18150
+ },
18151
+ {
18152
+ "kind": "Reference",
18153
+ "text": "FASTElementDefinition",
18154
+ "canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
18155
+ },
18156
+ {
18157
+ "kind": "Content",
18158
+ "text": "<typeof "
18159
+ },
18160
+ {
18161
+ "kind": "Reference",
18162
+ "text": "Tabs",
18163
+ "canonicalReference": "@fluentui/web-components!Tabs:class"
18164
+ },
18165
+ {
18166
+ "kind": "Content",
18167
+ "text": ">"
18168
+ }
18169
+ ],
18170
+ "isReadonly": true,
18171
+ "releaseTag": "Public",
18172
+ "name": "TabsDefinition",
18173
+ "variableTypeTokenRange": {
18174
+ "startIndex": 1,
18175
+ "endIndex": 6
18176
+ }
18177
+ },
18178
+ {
18179
+ "kind": "TypeAlias",
18180
+ "canonicalReference": "@fluentui/web-components!TabsSize:type",
18181
+ "docComment": "",
18182
+ "excerptTokens": [
18183
+ {
18184
+ "kind": "Content",
18185
+ "text": "export declare type TabsSize = "
18186
+ },
18187
+ {
18188
+ "kind": "Reference",
18189
+ "text": "ValuesOf",
18190
+ "canonicalReference": "@microsoft/fast-foundation!ValuesOf:type"
18191
+ },
18192
+ {
18193
+ "kind": "Content",
18194
+ "text": "<typeof "
18195
+ },
18196
+ {
18197
+ "kind": "Reference",
18198
+ "text": "TabsSize",
18199
+ "canonicalReference": "@fluentui/web-components!TabsSize:var"
18200
+ },
18201
+ {
18202
+ "kind": "Content",
18203
+ "text": ">"
18204
+ },
18205
+ {
18206
+ "kind": "Content",
18207
+ "text": ";"
18208
+ }
18209
+ ],
18210
+ "releaseTag": "Public",
18211
+ "name": "TabsSize",
18212
+ "typeTokenRange": {
18213
+ "startIndex": 1,
18214
+ "endIndex": 5
18215
+ }
18216
+ },
18217
+ {
18218
+ "kind": "Variable",
18219
+ "canonicalReference": "@fluentui/web-components!TabsSize:var",
18220
+ "docComment": "",
18221
+ "excerptTokens": [
18222
+ {
18223
+ "kind": "Content",
18224
+ "text": "TabsSize: "
18225
+ },
18226
+ {
18227
+ "kind": "Content",
18228
+ "text": "{\n readonly small: \"small\";\n readonly medium: \"medium\";\n readonly large: \"large\";\n}"
18229
+ }
18230
+ ],
18231
+ "isReadonly": true,
18232
+ "releaseTag": "Public",
18233
+ "name": "TabsSize",
18234
+ "variableTypeTokenRange": {
18235
+ "startIndex": 1,
18236
+ "endIndex": 2
18237
+ }
18238
+ },
18239
+ {
18240
+ "kind": "Variable",
18241
+ "canonicalReference": "@fluentui/web-components!TabsStyles:var",
18242
+ "docComment": "",
18243
+ "excerptTokens": [
18244
+ {
18245
+ "kind": "Content",
18246
+ "text": "styles: "
18247
+ },
18248
+ {
18249
+ "kind": "Content",
18250
+ "text": "import(\"@microsoft/fast-element\")."
18251
+ },
18252
+ {
18253
+ "kind": "Reference",
18254
+ "text": "ElementStyles",
18255
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
18256
+ }
18257
+ ],
18258
+ "isReadonly": true,
18259
+ "releaseTag": "Public",
18260
+ "name": "TabsStyles",
18261
+ "variableTypeTokenRange": {
18262
+ "startIndex": 1,
18263
+ "endIndex": 3
18264
+ }
18265
+ },
18266
+ {
18267
+ "kind": "Variable",
18268
+ "canonicalReference": "@fluentui/web-components!TabsTemplate:var",
18269
+ "docComment": "",
18270
+ "excerptTokens": [
18271
+ {
18272
+ "kind": "Content",
18273
+ "text": "template: "
18274
+ },
18275
+ {
18276
+ "kind": "Content",
18277
+ "text": "import(\"@microsoft/fast-element\")."
18278
+ },
18279
+ {
18280
+ "kind": "Reference",
18281
+ "text": "ElementViewTemplate",
18282
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
18283
+ },
18284
+ {
18285
+ "kind": "Content",
18286
+ "text": "<import(\"@microsoft/fast-foundation\")."
18287
+ },
18288
+ {
18289
+ "kind": "Reference",
18290
+ "text": "FASTTabs",
18291
+ "canonicalReference": "@microsoft/fast-foundation!FASTTabs:class"
18292
+ },
18293
+ {
18294
+ "kind": "Content",
18295
+ "text": ", any>"
18296
+ }
18297
+ ],
18298
+ "isReadonly": true,
18299
+ "releaseTag": "Public",
18300
+ "name": "TabsTemplate",
18301
+ "variableTypeTokenRange": {
18302
+ "startIndex": 1,
18303
+ "endIndex": 6
18304
+ }
18305
+ },
18306
+ {
18307
+ "kind": "Variable",
18308
+ "canonicalReference": "@fluentui/web-components!TabStyles:var",
18309
+ "docComment": "",
18310
+ "excerptTokens": [
18311
+ {
18312
+ "kind": "Content",
18313
+ "text": "styles: "
18314
+ },
18315
+ {
18316
+ "kind": "Content",
18317
+ "text": "import(\"@microsoft/fast-element\")."
18318
+ },
18319
+ {
18320
+ "kind": "Reference",
18321
+ "text": "ElementStyles",
18322
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
18323
+ }
18324
+ ],
18325
+ "isReadonly": true,
18326
+ "releaseTag": "Public",
18327
+ "name": "TabStyles",
18328
+ "variableTypeTokenRange": {
18329
+ "startIndex": 1,
18330
+ "endIndex": 3
18331
+ }
18332
+ },
18333
+ {
18334
+ "kind": "Variable",
18335
+ "canonicalReference": "@fluentui/web-components!TabTemplate:var",
18336
+ "docComment": "",
18337
+ "excerptTokens": [
18338
+ {
18339
+ "kind": "Content",
18340
+ "text": "template: "
18341
+ },
18342
+ {
18343
+ "kind": "Reference",
18344
+ "text": "ElementViewTemplate",
18345
+ "canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
18346
+ },
18347
+ {
18348
+ "kind": "Content",
18349
+ "text": "<"
18350
+ },
18351
+ {
18352
+ "kind": "Reference",
18353
+ "text": "FASTTab",
18354
+ "canonicalReference": "@microsoft/fast-foundation!FASTTab:class"
18355
+ },
18356
+ {
18357
+ "kind": "Content",
18358
+ "text": ", any>"
18359
+ }
18360
+ ],
18361
+ "isReadonly": true,
18362
+ "releaseTag": "Public",
18363
+ "name": "TabTemplate",
18364
+ "variableTypeTokenRange": {
18365
+ "startIndex": 1,
18366
+ "endIndex": 5
18367
+ }
18368
+ },
17090
18369
  {
17091
18370
  "kind": "Class",
17092
18371
  "canonicalReference": "@fluentui/web-components!Text_2:class",