@genesislcap/foundation-ui 14.183.7 → 14.183.8-alpha-b447c11.0

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 (2) hide show
  1. package/dist/custom-elements.json +1405 -1405
  2. package/package.json +16 -16
@@ -4550,125 +4550,181 @@
4550
4550
  },
4551
4551
  {
4552
4552
  "kind": "javascript-module",
4553
- "path": "src/banner/banner.styles.ts",
4553
+ "path": "src/badge/badge.styles.ts",
4554
4554
  "declarations": [
4555
4555
  {
4556
- "kind": "variable",
4557
- "name": "foundationBannerStyles",
4558
- "type": {
4559
- "text": "ElementStyles"
4556
+ "kind": "function",
4557
+ "name": "foundationBadgeStyles",
4558
+ "return": {
4559
+ "type": {
4560
+ "text": "ElementStyles"
4561
+ }
4560
4562
  },
4561
- "default": "css`\n @keyframes delete-animate {\n from {\n height: 100px;\n opacity: 100%;\n }\n\n to {\n height: 0;\n opacity: 0%;\n }\n }\n\n @keyframes append-animate {\n from {\n height: 0;\n opacity: 0%;\n }\n\n to {\n height: var(--banner-height);\n opacity: 100%;\n }\n }\n\n :host {\n --banner-width: 100%;\n --banner-height: 65px;\n --flow: row;\n }\n\n @media screen and (max-width: 640px) {\n :host {\n --flow: column;\n --banner-height: 100px;\n }\n }\n\n .banner {\n animation: append-animate 0.3s linear;\n width: var(--banner-width);\n height: var(--banner-height);\n background-color: var(--fill-color);\n display: flex;\n flex-direction: var(--flow);\n padding: 5px 8px;\n box-sizing: border-box;\n overflow: hidden;\n }\n\n .banner-delete {\n animation: delete-animate 0.3s linear;\n opacity: 0%;\n }\n\n .content {\n display: flex;\n align-items: center;\n flex: 2;\n font-size: 12px;\n overflow: hidden;\n }\n\n .action {\n display: flex;\n flex-direction: row-reverse;\n align-items: center;\n gap: 10px;\n flex: 1;\n overflow: hidden;\n }\n`"
4563
+ "parameters": [
4564
+ {
4565
+ "name": "context",
4566
+ "type": {
4567
+ "text": "ElementDefinitionContext"
4568
+ }
4569
+ },
4570
+ {
4571
+ "name": "definition",
4572
+ "type": {
4573
+ "text": "FoundationElementDefinition"
4574
+ }
4575
+ }
4576
+ ]
4562
4577
  }
4563
4578
  ],
4564
4579
  "exports": [
4565
4580
  {
4566
4581
  "kind": "js",
4567
- "name": "foundationBannerStyles",
4582
+ "name": "foundationBadgeStyles",
4568
4583
  "declaration": {
4569
- "name": "foundationBannerStyles",
4570
- "module": "src/banner/banner.styles.ts"
4584
+ "name": "foundationBadgeStyles",
4585
+ "module": "src/badge/badge.styles.ts"
4571
4586
  }
4572
4587
  }
4573
4588
  ]
4574
4589
  },
4575
4590
  {
4576
4591
  "kind": "javascript-module",
4577
- "path": "src/banner/banner.template.ts",
4592
+ "path": "src/badge/badge.template.ts",
4578
4593
  "declarations": [
4579
4594
  {
4580
4595
  "kind": "function",
4581
- "name": "getBannerTemplate",
4596
+ "name": "foundationBadgeTemplate",
4597
+ "return": {
4598
+ "type": {
4599
+ "text": "ViewTemplate<Badge>"
4600
+ }
4601
+ },
4582
4602
  "parameters": [
4583
4603
  {
4584
- "name": "prefix",
4604
+ "name": "context",
4585
4605
  "type": {
4586
- "text": "string"
4606
+ "text": "ElementDefinitionContext"
4607
+ }
4608
+ },
4609
+ {
4610
+ "name": "definition",
4611
+ "type": {
4612
+ "text": "FoundationElementDefinition"
4587
4613
  }
4588
4614
  }
4589
4615
  ]
4590
- },
4591
- {
4592
- "kind": "variable",
4593
- "name": "foundationBannerTemplate",
4594
- "default": "html<Banner>`\n ${(x) => getBannerTemplate(getPrefix(x))}\n`"
4595
4616
  }
4596
4617
  ],
4597
4618
  "exports": [
4598
4619
  {
4599
4620
  "kind": "js",
4600
- "name": "getBannerTemplate",
4601
- "declaration": {
4602
- "name": "getBannerTemplate",
4603
- "module": "src/banner/banner.template.ts"
4604
- }
4605
- },
4606
- {
4607
- "kind": "js",
4608
- "name": "foundationBannerTemplate",
4621
+ "name": "foundationBadgeTemplate",
4609
4622
  "declaration": {
4610
- "name": "foundationBannerTemplate",
4611
- "module": "src/banner/banner.template.ts"
4623
+ "name": "foundationBadgeTemplate",
4624
+ "module": "src/badge/badge.template.ts"
4612
4625
  }
4613
4626
  }
4614
4627
  ]
4615
4628
  },
4616
4629
  {
4617
4630
  "kind": "javascript-module",
4618
- "path": "src/banner/banner.ts",
4631
+ "path": "src/badge/badge.ts",
4619
4632
  "declarations": [
4620
- {
4621
- "kind": "variable",
4622
- "name": "foundationBannerShadowOptions",
4623
- "type": {
4624
- "text": "ShadowRootInit"
4625
- },
4626
- "default": "{\n mode: 'open',\n delegatesFocus: true,\n}"
4627
- },
4628
4633
  {
4629
4634
  "kind": "class",
4630
4635
  "description": "",
4631
- "name": "Banner",
4632
- "members": [
4636
+ "name": "Badge",
4637
+ "superclass": {
4638
+ "name": "FASTBadge",
4639
+ "package": "@microsoft/fast-components"
4640
+ },
4641
+ "tagName": "%%prefix%%-badge",
4642
+ "customElement": true,
4643
+ "attributes": [
4633
4644
  {
4634
- "kind": "field",
4635
- "name": "banner",
4645
+ "name": "fill",
4636
4646
  "type": {
4637
- "text": "HTMLElement"
4647
+ "text": "string"
4638
4648
  },
4639
- "privacy": "public"
4649
+ "description": "Indicates the badge should have a filled style.",
4650
+ "fieldName": "fill",
4651
+ "inheritedFrom": {
4652
+ "name": "Badge",
4653
+ "module": "src/badge/badge.ts"
4654
+ }
4640
4655
  },
4641
4656
  {
4642
- "kind": "field",
4643
- "name": "dismissAnimation",
4657
+ "name": "color",
4644
4658
  "type": {
4645
- "text": "'banner-delete' | ''"
4659
+ "text": "string"
4646
4660
  },
4647
- "default": "''"
4661
+ "description": "Indicates the badge should have a filled style.",
4662
+ "fieldName": "color",
4663
+ "inheritedFrom": {
4664
+ "name": "Badge",
4665
+ "module": "src/badge/badge.ts"
4666
+ }
4648
4667
  },
4668
+ {
4669
+ "type": {
4670
+ "text": "boolean"
4671
+ },
4672
+ "description": "Indicates the element should be circular",
4673
+ "fieldName": "circular",
4674
+ "inheritedFrom": {
4675
+ "name": "Badge",
4676
+ "module": "src/badge/badge.ts"
4677
+ }
4678
+ }
4679
+ ],
4680
+ "members": [
4649
4681
  {
4650
4682
  "kind": "field",
4651
- "name": "notification",
4683
+ "name": "fill",
4652
4684
  "type": {
4653
- "text": "NotificationStructure"
4685
+ "text": "string"
4686
+ },
4687
+ "privacy": "public",
4688
+ "description": "Indicates the badge should have a filled style.",
4689
+ "inheritedFrom": {
4690
+ "name": "Badge",
4691
+ "module": "src/badge/badge.ts"
4654
4692
  }
4655
4693
  },
4656
4694
  {
4657
- "kind": "method",
4658
- "name": "dismiss",
4695
+ "kind": "field",
4696
+ "name": "color",
4697
+ "type": {
4698
+ "text": "string"
4699
+ },
4659
4700
  "privacy": "public",
4660
- "return": {
4661
- "type": {
4662
- "text": "Promise<void>"
4663
- }
4701
+ "description": "Indicates the badge should have a filled style.",
4702
+ "inheritedFrom": {
4703
+ "name": "Badge",
4704
+ "module": "src/badge/badge.ts"
4705
+ }
4706
+ },
4707
+ {
4708
+ "kind": "field",
4709
+ "name": "circular",
4710
+ "type": {
4711
+ "text": "boolean"
4664
4712
  },
4665
- "description": "Dismiss the Banner from display."
4713
+ "privacy": "public",
4714
+ "description": "Indicates the element should be circular",
4715
+ "inheritedFrom": {
4716
+ "name": "Badge",
4717
+ "module": "src/badge/badge.ts"
4718
+ }
4666
4719
  },
4667
4720
  {
4668
- "kind": "method",
4669
- "name": "dismissNotification",
4721
+ "kind": "field",
4722
+ "name": "generateBadgeStyle",
4670
4723
  "privacy": "public",
4671
- "description": "Dismiss the Banner (NotificationStructure) from display."
4724
+ "inheritedFrom": {
4725
+ "name": "Badge",
4726
+ "module": "src/badge/badge.ts"
4727
+ }
4672
4728
  },
4673
4729
  {
4674
4730
  "kind": "field",
@@ -4781,51 +4837,69 @@
4781
4837
  "module": "src/foundation-element/foundation-element.ts"
4782
4838
  }
4783
4839
  }
4784
- ],
4785
- "superclass": {
4786
- "name": "FoundationElement",
4787
- "package": "@microsoft/fast-foundation"
4840
+ ]
4841
+ },
4842
+ {
4843
+ "kind": "variable",
4844
+ "name": "foundationBadgeShadowOptions",
4845
+ "type": {
4846
+ "text": "ShadowRootInit"
4788
4847
  },
4789
- "tagName": "%%prefix%%-banner",
4790
- "customElement": true
4848
+ "default": "undefined"
4791
4849
  },
4792
4850
  {
4793
4851
  "kind": "variable",
4794
- "name": "foundationBanner",
4795
- "description": "The Foundation Banner",
4852
+ "name": "defaultBadgeConfig",
4853
+ "type": {
4854
+ "text": "object"
4855
+ },
4856
+ "default": "{}"
4857
+ },
4858
+ {
4859
+ "kind": "variable",
4860
+ "name": "foundationBadge",
4861
+ "description": "The Foundation Badge",
4796
4862
  "privacy": "public"
4797
4863
  }
4798
4864
  ],
4799
4865
  "exports": [
4800
4866
  {
4801
4867
  "kind": "js",
4802
- "name": "foundationBannerShadowOptions",
4868
+ "name": "Badge",
4803
4869
  "declaration": {
4804
- "name": "foundationBannerShadowOptions",
4805
- "module": "src/banner/banner.ts"
4870
+ "name": "Badge",
4871
+ "module": "src/badge/badge.ts"
4806
4872
  }
4807
4873
  },
4808
4874
  {
4809
4875
  "kind": "js",
4810
- "name": "Banner",
4876
+ "name": "foundationBadgeShadowOptions",
4811
4877
  "declaration": {
4812
- "name": "Banner",
4813
- "module": "src/banner/banner.ts"
4878
+ "name": "foundationBadgeShadowOptions",
4879
+ "module": "src/badge/badge.ts"
4814
4880
  }
4815
4881
  },
4816
4882
  {
4817
4883
  "kind": "js",
4818
- "name": "foundationBanner",
4884
+ "name": "defaultBadgeConfig",
4819
4885
  "declaration": {
4820
- "name": "foundationBanner",
4821
- "module": "src/banner/banner.ts"
4886
+ "name": "defaultBadgeConfig",
4887
+ "module": "src/badge/badge.ts"
4888
+ }
4889
+ },
4890
+ {
4891
+ "kind": "js",
4892
+ "name": "foundationBadge",
4893
+ "declaration": {
4894
+ "name": "foundationBadge",
4895
+ "module": "src/badge/badge.ts"
4822
4896
  }
4823
4897
  }
4824
4898
  ]
4825
4899
  },
4826
4900
  {
4827
4901
  "kind": "javascript-module",
4828
- "path": "src/banner/index.ts",
4902
+ "path": "src/badge/index.ts",
4829
4903
  "declarations": [],
4830
4904
  "exports": [
4831
4905
  {
@@ -4833,7 +4907,7 @@
4833
4907
  "name": "*",
4834
4908
  "declaration": {
4835
4909
  "name": "*",
4836
- "package": "./banner.styles"
4910
+ "package": "./badge.template"
4837
4911
  }
4838
4912
  },
4839
4913
  {
@@ -4841,7 +4915,7 @@
4841
4915
  "name": "*",
4842
4916
  "declaration": {
4843
4917
  "name": "*",
4844
- "package": "./banner.template"
4918
+ "package": "./badge.styles"
4845
4919
  }
4846
4920
  },
4847
4921
  {
@@ -4849,188 +4923,132 @@
4849
4923
  "name": "*",
4850
4924
  "declaration": {
4851
4925
  "name": "*",
4852
- "package": "./banner"
4926
+ "package": "./badge"
4853
4927
  }
4854
4928
  }
4855
4929
  ]
4856
4930
  },
4857
4931
  {
4858
4932
  "kind": "javascript-module",
4859
- "path": "src/badge/badge.styles.ts",
4933
+ "path": "src/banner/banner.styles.ts",
4860
4934
  "declarations": [
4861
4935
  {
4862
- "kind": "function",
4863
- "name": "foundationBadgeStyles",
4864
- "return": {
4865
- "type": {
4866
- "text": "ElementStyles"
4867
- }
4936
+ "kind": "variable",
4937
+ "name": "foundationBannerStyles",
4938
+ "type": {
4939
+ "text": "ElementStyles"
4868
4940
  },
4869
- "parameters": [
4870
- {
4871
- "name": "context",
4872
- "type": {
4873
- "text": "ElementDefinitionContext"
4874
- }
4875
- },
4876
- {
4877
- "name": "definition",
4878
- "type": {
4879
- "text": "FoundationElementDefinition"
4880
- }
4881
- }
4882
- ]
4941
+ "default": "css`\n @keyframes delete-animate {\n from {\n height: 100px;\n opacity: 100%;\n }\n\n to {\n height: 0;\n opacity: 0%;\n }\n }\n\n @keyframes append-animate {\n from {\n height: 0;\n opacity: 0%;\n }\n\n to {\n height: var(--banner-height);\n opacity: 100%;\n }\n }\n\n :host {\n --banner-width: 100%;\n --banner-height: 65px;\n --flow: row;\n }\n\n @media screen and (max-width: 640px) {\n :host {\n --flow: column;\n --banner-height: 100px;\n }\n }\n\n .banner {\n animation: append-animate 0.3s linear;\n width: var(--banner-width);\n height: var(--banner-height);\n background-color: var(--fill-color);\n display: flex;\n flex-direction: var(--flow);\n padding: 5px 8px;\n box-sizing: border-box;\n overflow: hidden;\n }\n\n .banner-delete {\n animation: delete-animate 0.3s linear;\n opacity: 0%;\n }\n\n .content {\n display: flex;\n align-items: center;\n flex: 2;\n font-size: 12px;\n overflow: hidden;\n }\n\n .action {\n display: flex;\n flex-direction: row-reverse;\n align-items: center;\n gap: 10px;\n flex: 1;\n overflow: hidden;\n }\n`"
4883
4942
  }
4884
4943
  ],
4885
4944
  "exports": [
4886
4945
  {
4887
4946
  "kind": "js",
4888
- "name": "foundationBadgeStyles",
4947
+ "name": "foundationBannerStyles",
4889
4948
  "declaration": {
4890
- "name": "foundationBadgeStyles",
4891
- "module": "src/badge/badge.styles.ts"
4949
+ "name": "foundationBannerStyles",
4950
+ "module": "src/banner/banner.styles.ts"
4892
4951
  }
4893
4952
  }
4894
4953
  ]
4895
4954
  },
4896
4955
  {
4897
4956
  "kind": "javascript-module",
4898
- "path": "src/badge/badge.template.ts",
4957
+ "path": "src/banner/banner.template.ts",
4899
4958
  "declarations": [
4900
4959
  {
4901
4960
  "kind": "function",
4902
- "name": "foundationBadgeTemplate",
4903
- "return": {
4904
- "type": {
4905
- "text": "ViewTemplate<Badge>"
4906
- }
4907
- },
4961
+ "name": "getBannerTemplate",
4908
4962
  "parameters": [
4909
4963
  {
4910
- "name": "context",
4911
- "type": {
4912
- "text": "ElementDefinitionContext"
4913
- }
4914
- },
4915
- {
4916
- "name": "definition",
4964
+ "name": "prefix",
4917
4965
  "type": {
4918
- "text": "FoundationElementDefinition"
4966
+ "text": "string"
4919
4967
  }
4920
4968
  }
4921
4969
  ]
4970
+ },
4971
+ {
4972
+ "kind": "variable",
4973
+ "name": "foundationBannerTemplate",
4974
+ "default": "html<Banner>`\n ${(x) => getBannerTemplate(getPrefix(x))}\n`"
4922
4975
  }
4923
4976
  ],
4924
4977
  "exports": [
4925
4978
  {
4926
4979
  "kind": "js",
4927
- "name": "foundationBadgeTemplate",
4980
+ "name": "getBannerTemplate",
4928
4981
  "declaration": {
4929
- "name": "foundationBadgeTemplate",
4930
- "module": "src/badge/badge.template.ts"
4982
+ "name": "getBannerTemplate",
4983
+ "module": "src/banner/banner.template.ts"
4984
+ }
4985
+ },
4986
+ {
4987
+ "kind": "js",
4988
+ "name": "foundationBannerTemplate",
4989
+ "declaration": {
4990
+ "name": "foundationBannerTemplate",
4991
+ "module": "src/banner/banner.template.ts"
4931
4992
  }
4932
4993
  }
4933
4994
  ]
4934
4995
  },
4935
4996
  {
4936
4997
  "kind": "javascript-module",
4937
- "path": "src/badge/badge.ts",
4998
+ "path": "src/banner/banner.ts",
4938
4999
  "declarations": [
5000
+ {
5001
+ "kind": "variable",
5002
+ "name": "foundationBannerShadowOptions",
5003
+ "type": {
5004
+ "text": "ShadowRootInit"
5005
+ },
5006
+ "default": "{\n mode: 'open',\n delegatesFocus: true,\n}"
5007
+ },
4939
5008
  {
4940
5009
  "kind": "class",
4941
5010
  "description": "",
4942
- "name": "Badge",
4943
- "superclass": {
4944
- "name": "FASTBadge",
4945
- "package": "@microsoft/fast-components"
4946
- },
4947
- "tagName": "%%prefix%%-badge",
4948
- "customElement": true,
4949
- "attributes": [
4950
- {
4951
- "name": "fill",
4952
- "type": {
4953
- "text": "string"
4954
- },
4955
- "description": "Indicates the badge should have a filled style.",
4956
- "fieldName": "fill",
4957
- "inheritedFrom": {
4958
- "name": "Badge",
4959
- "module": "src/badge/badge.ts"
4960
- }
4961
- },
5011
+ "name": "Banner",
5012
+ "members": [
4962
5013
  {
4963
- "name": "color",
5014
+ "kind": "field",
5015
+ "name": "banner",
4964
5016
  "type": {
4965
- "text": "string"
5017
+ "text": "HTMLElement"
4966
5018
  },
4967
- "description": "Indicates the badge should have a filled style.",
4968
- "fieldName": "color",
4969
- "inheritedFrom": {
4970
- "name": "Badge",
4971
- "module": "src/badge/badge.ts"
4972
- }
5019
+ "privacy": "public"
4973
5020
  },
4974
- {
4975
- "type": {
4976
- "text": "boolean"
4977
- },
4978
- "description": "Indicates the element should be circular",
4979
- "fieldName": "circular",
4980
- "inheritedFrom": {
4981
- "name": "Badge",
4982
- "module": "src/badge/badge.ts"
4983
- }
4984
- }
4985
- ],
4986
- "members": [
4987
5021
  {
4988
5022
  "kind": "field",
4989
- "name": "fill",
5023
+ "name": "dismissAnimation",
4990
5024
  "type": {
4991
- "text": "string"
5025
+ "text": "'banner-delete' | ''"
4992
5026
  },
4993
- "privacy": "public",
4994
- "description": "Indicates the badge should have a filled style.",
4995
- "inheritedFrom": {
4996
- "name": "Badge",
4997
- "module": "src/badge/badge.ts"
4998
- }
5027
+ "default": "''"
4999
5028
  },
5000
5029
  {
5001
5030
  "kind": "field",
5002
- "name": "color",
5031
+ "name": "notification",
5003
5032
  "type": {
5004
- "text": "string"
5005
- },
5006
- "privacy": "public",
5007
- "description": "Indicates the badge should have a filled style.",
5008
- "inheritedFrom": {
5009
- "name": "Badge",
5010
- "module": "src/badge/badge.ts"
5033
+ "text": "NotificationStructure"
5011
5034
  }
5012
5035
  },
5013
5036
  {
5014
- "kind": "field",
5015
- "name": "circular",
5016
- "type": {
5017
- "text": "boolean"
5018
- },
5037
+ "kind": "method",
5038
+ "name": "dismiss",
5019
5039
  "privacy": "public",
5020
- "description": "Indicates the element should be circular",
5021
- "inheritedFrom": {
5022
- "name": "Badge",
5023
- "module": "src/badge/badge.ts"
5024
- }
5040
+ "return": {
5041
+ "type": {
5042
+ "text": "Promise<void>"
5043
+ }
5044
+ },
5045
+ "description": "Dismiss the Banner from display."
5025
5046
  },
5026
5047
  {
5027
- "kind": "field",
5028
- "name": "generateBadgeStyle",
5048
+ "kind": "method",
5049
+ "name": "dismissNotification",
5029
5050
  "privacy": "public",
5030
- "inheritedFrom": {
5031
- "name": "Badge",
5032
- "module": "src/badge/badge.ts"
5033
- }
5051
+ "description": "Dismiss the Banner (NotificationStructure) from display."
5034
5052
  },
5035
5053
  {
5036
5054
  "kind": "field",
@@ -5143,69 +5161,51 @@
5143
5161
  "module": "src/foundation-element/foundation-element.ts"
5144
5162
  }
5145
5163
  }
5146
- ]
5147
- },
5148
- {
5149
- "kind": "variable",
5150
- "name": "foundationBadgeShadowOptions",
5151
- "type": {
5152
- "text": "ShadowRootInit"
5153
- },
5154
- "default": "undefined"
5155
- },
5156
- {
5157
- "kind": "variable",
5158
- "name": "defaultBadgeConfig",
5159
- "type": {
5160
- "text": "object"
5164
+ ],
5165
+ "superclass": {
5166
+ "name": "FoundationElement",
5167
+ "package": "@microsoft/fast-foundation"
5161
5168
  },
5162
- "default": "{}"
5169
+ "tagName": "%%prefix%%-banner",
5170
+ "customElement": true
5163
5171
  },
5164
5172
  {
5165
5173
  "kind": "variable",
5166
- "name": "foundationBadge",
5167
- "description": "The Foundation Badge",
5174
+ "name": "foundationBanner",
5175
+ "description": "The Foundation Banner",
5168
5176
  "privacy": "public"
5169
5177
  }
5170
5178
  ],
5171
5179
  "exports": [
5172
5180
  {
5173
5181
  "kind": "js",
5174
- "name": "Badge",
5175
- "declaration": {
5176
- "name": "Badge",
5177
- "module": "src/badge/badge.ts"
5178
- }
5179
- },
5180
- {
5181
- "kind": "js",
5182
- "name": "foundationBadgeShadowOptions",
5182
+ "name": "foundationBannerShadowOptions",
5183
5183
  "declaration": {
5184
- "name": "foundationBadgeShadowOptions",
5185
- "module": "src/badge/badge.ts"
5184
+ "name": "foundationBannerShadowOptions",
5185
+ "module": "src/banner/banner.ts"
5186
5186
  }
5187
5187
  },
5188
5188
  {
5189
5189
  "kind": "js",
5190
- "name": "defaultBadgeConfig",
5190
+ "name": "Banner",
5191
5191
  "declaration": {
5192
- "name": "defaultBadgeConfig",
5193
- "module": "src/badge/badge.ts"
5192
+ "name": "Banner",
5193
+ "module": "src/banner/banner.ts"
5194
5194
  }
5195
5195
  },
5196
5196
  {
5197
5197
  "kind": "js",
5198
- "name": "foundationBadge",
5198
+ "name": "foundationBanner",
5199
5199
  "declaration": {
5200
- "name": "foundationBadge",
5201
- "module": "src/badge/badge.ts"
5200
+ "name": "foundationBanner",
5201
+ "module": "src/banner/banner.ts"
5202
5202
  }
5203
5203
  }
5204
5204
  ]
5205
5205
  },
5206
5206
  {
5207
5207
  "kind": "javascript-module",
5208
- "path": "src/badge/index.ts",
5208
+ "path": "src/banner/index.ts",
5209
5209
  "declarations": [],
5210
5210
  "exports": [
5211
5211
  {
@@ -5213,7 +5213,7 @@
5213
5213
  "name": "*",
5214
5214
  "declaration": {
5215
5215
  "name": "*",
5216
- "package": "./badge.template"
5216
+ "package": "./banner.styles"
5217
5217
  }
5218
5218
  },
5219
5219
  {
@@ -5221,7 +5221,7 @@
5221
5221
  "name": "*",
5222
5222
  "declaration": {
5223
5223
  "name": "*",
5224
- "package": "./badge.styles"
5224
+ "package": "./banner.template"
5225
5225
  }
5226
5226
  },
5227
5227
  {
@@ -5229,7 +5229,7 @@
5229
5229
  "name": "*",
5230
5230
  "declaration": {
5231
5231
  "name": "*",
5232
- "package": "./badge"
5232
+ "package": "./banner"
5233
5233
  }
5234
5234
  }
5235
5235
  ]
@@ -35702,7 +35702,7 @@
35702
35702
  },
35703
35703
  {
35704
35704
  "kind": "javascript-module",
35705
- "path": "src/tab/index.ts",
35705
+ "path": "src/switch/index.ts",
35706
35706
  "declarations": [],
35707
35707
  "exports": [
35708
35708
  {
@@ -35710,7 +35710,7 @@
35710
35710
  "name": "*",
35711
35711
  "declaration": {
35712
35712
  "name": "*",
35713
- "package": "./tab.template"
35713
+ "package": "./switch.template"
35714
35714
  }
35715
35715
  },
35716
35716
  {
@@ -35718,7 +35718,7 @@
35718
35718
  "name": "*",
35719
35719
  "declaration": {
35720
35720
  "name": "*",
35721
- "package": "./tab.styles"
35721
+ "package": "./switch.styles"
35722
35722
  }
35723
35723
  },
35724
35724
  {
@@ -35726,18 +35726,18 @@
35726
35726
  "name": "*",
35727
35727
  "declaration": {
35728
35728
  "name": "*",
35729
- "package": "./tab"
35729
+ "package": "./switch"
35730
35730
  }
35731
35731
  }
35732
35732
  ]
35733
35733
  },
35734
35734
  {
35735
35735
  "kind": "javascript-module",
35736
- "path": "src/tab/tab.styles.ts",
35736
+ "path": "src/switch/switch.styles.ts",
35737
35737
  "declarations": [
35738
35738
  {
35739
35739
  "kind": "function",
35740
- "name": "foundationTabStyles",
35740
+ "name": "foundationSwitchStyles",
35741
35741
  "return": {
35742
35742
  "type": {
35743
35743
  "text": "ElementStyles"
@@ -35753,7 +35753,7 @@
35753
35753
  {
35754
35754
  "name": "definition",
35755
35755
  "type": {
35756
- "text": "FoundationElementDefinition"
35756
+ "text": "SwitchOptions"
35757
35757
  }
35758
35758
  }
35759
35759
  ]
@@ -35762,24 +35762,24 @@
35762
35762
  "exports": [
35763
35763
  {
35764
35764
  "kind": "js",
35765
- "name": "foundationTabStyles",
35765
+ "name": "foundationSwitchStyles",
35766
35766
  "declaration": {
35767
- "name": "foundationTabStyles",
35768
- "module": "src/tab/tab.styles.ts"
35767
+ "name": "foundationSwitchStyles",
35768
+ "module": "src/switch/switch.styles.ts"
35769
35769
  }
35770
35770
  }
35771
35771
  ]
35772
35772
  },
35773
35773
  {
35774
35774
  "kind": "javascript-module",
35775
- "path": "src/tab/tab.template.ts",
35775
+ "path": "src/switch/switch.template.ts",
35776
35776
  "declarations": [
35777
35777
  {
35778
35778
  "kind": "function",
35779
- "name": "foundationTabTemplate",
35779
+ "name": "foundationSwitchTemplate",
35780
35780
  "return": {
35781
35781
  "type": {
35782
- "text": "ViewTemplate<Tab>"
35782
+ "text": "ViewTemplate<Switch>"
35783
35783
  }
35784
35784
  },
35785
35785
  "parameters": [
@@ -35801,53 +35801,76 @@
35801
35801
  "exports": [
35802
35802
  {
35803
35803
  "kind": "js",
35804
- "name": "foundationTabTemplate",
35804
+ "name": "foundationSwitchTemplate",
35805
35805
  "declaration": {
35806
- "name": "foundationTabTemplate",
35807
- "module": "src/tab/tab.template.ts"
35806
+ "name": "foundationSwitchTemplate",
35807
+ "module": "src/switch/switch.template.ts"
35808
35808
  }
35809
35809
  }
35810
35810
  ]
35811
35811
  },
35812
35812
  {
35813
35813
  "kind": "javascript-module",
35814
- "path": "src/tab/tab.ts",
35814
+ "path": "src/switch/switch.ts",
35815
35815
  "declarations": [
35816
35816
  {
35817
35817
  "kind": "class",
35818
35818
  "description": "",
35819
- "name": "Tab",
35819
+ "name": "Switch",
35820
35820
  "superclass": {
35821
- "name": "FASTTab",
35821
+ "name": "FASTSwitch",
35822
35822
  "package": "@microsoft/fast-components"
35823
35823
  },
35824
- "tagName": "%%prefix%%-tab",
35824
+ "tagName": "%%prefix%%-switch",
35825
35825
  "customElement": true,
35826
35826
  "attributes": [
35827
35827
  {
35828
+ "name": "readonly",
35828
35829
  "type": {
35829
35830
  "text": "boolean"
35830
35831
  },
35831
- "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute for more information.",
35832
- "fieldName": "disabled",
35832
+ "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
35833
+ "fieldName": "readOnly",
35833
35834
  "inheritedFrom": {
35834
- "name": "Tab",
35835
- "module": "src/tab/tab.ts"
35835
+ "name": "Switch",
35836
+ "module": "src/switch/switch.ts"
35836
35837
  }
35837
35838
  }
35838
35839
  ],
35839
35840
  "members": [
35840
35841
  {
35841
35842
  "kind": "field",
35842
- "name": "disabled",
35843
+ "name": "readOnly",
35843
35844
  "type": {
35844
35845
  "text": "boolean"
35845
35846
  },
35846
35847
  "privacy": "public",
35847
- "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute} for more information.",
35848
+ "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute} for more information.",
35848
35849
  "inheritedFrom": {
35849
- "name": "Tab",
35850
- "module": "src/tab/tab.ts"
35850
+ "name": "Switch",
35851
+ "module": "src/switch/switch.ts"
35852
+ }
35853
+ },
35854
+ {
35855
+ "kind": "method",
35856
+ "name": "readOnlyChanged",
35857
+ "privacy": "private",
35858
+ "return": {
35859
+ "type": {
35860
+ "text": "void"
35861
+ }
35862
+ },
35863
+ "inheritedFrom": {
35864
+ "name": "Switch",
35865
+ "module": "src/switch/switch.ts"
35866
+ }
35867
+ },
35868
+ {
35869
+ "kind": "field",
35870
+ "name": "proxy",
35871
+ "inheritedFrom": {
35872
+ "name": "Switch",
35873
+ "module": "src/switch/switch.ts"
35851
35874
  }
35852
35875
  },
35853
35876
  {
@@ -35859,8 +35882,8 @@
35859
35882
  "privacy": "private",
35860
35883
  "default": "void 0",
35861
35884
  "inheritedFrom": {
35862
- "name": "FoundationElement",
35863
- "module": "src/foundation-element/foundation-element.ts"
35885
+ "name": "Switch",
35886
+ "module": "src/switch/switch.ts"
35864
35887
  }
35865
35888
  },
35866
35889
  {
@@ -35872,8 +35895,8 @@
35872
35895
  "privacy": "public",
35873
35896
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
35874
35897
  "inheritedFrom": {
35875
- "name": "FoundationElement",
35876
- "module": "src/foundation-element/foundation-element.ts"
35898
+ "name": "Switch",
35899
+ "module": "src/switch/switch.ts"
35877
35900
  }
35878
35901
  },
35879
35902
  {
@@ -35885,8 +35908,8 @@
35885
35908
  "privacy": "public",
35886
35909
  "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
35887
35910
  "inheritedFrom": {
35888
- "name": "FoundationElement",
35889
- "module": "src/foundation-element/foundation-element.ts"
35911
+ "name": "Switch",
35912
+ "module": "src/switch/switch.ts"
35890
35913
  }
35891
35914
  },
35892
35915
  {
@@ -35899,8 +35922,8 @@
35899
35922
  }
35900
35923
  },
35901
35924
  "inheritedFrom": {
35902
- "name": "FoundationElement",
35903
- "module": "src/foundation-element/foundation-element.ts"
35925
+ "name": "Switch",
35926
+ "module": "src/switch/switch.ts"
35904
35927
  }
35905
35928
  },
35906
35929
  {
@@ -35912,8 +35935,8 @@
35912
35935
  "privacy": "public",
35913
35936
  "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
35914
35937
  "inheritedFrom": {
35915
- "name": "FoundationElement",
35916
- "module": "src/foundation-element/foundation-element.ts"
35938
+ "name": "Switch",
35939
+ "module": "src/switch/switch.ts"
35917
35940
  }
35918
35941
  },
35919
35942
  {
@@ -35926,8 +35949,8 @@
35926
35949
  }
35927
35950
  },
35928
35951
  "inheritedFrom": {
35929
- "name": "FoundationElement",
35930
- "module": "src/foundation-element/foundation-element.ts"
35952
+ "name": "Switch",
35953
+ "module": "src/switch/switch.ts"
35931
35954
  }
35932
35955
  },
35933
35956
  {
@@ -35957,15 +35980,25 @@
35957
35980
  ],
35958
35981
  "description": "Defines an element registry function with a set of element definition defaults.",
35959
35982
  "inheritedFrom": {
35960
- "name": "FoundationElement",
35961
- "module": "src/foundation-element/foundation-element.ts"
35983
+ "name": "Switch",
35984
+ "module": "src/switch/switch.ts"
35985
+ }
35986
+ }
35987
+ ],
35988
+ "events": [
35989
+ {
35990
+ "description": "Emits a custom change event when the checked state changes",
35991
+ "name": "change",
35992
+ "inheritedFrom": {
35993
+ "name": "Switch",
35994
+ "module": "src/switch/switch.ts"
35962
35995
  }
35963
35996
  }
35964
35997
  ]
35965
35998
  },
35966
35999
  {
35967
36000
  "kind": "variable",
35968
- "name": "foundationTabShadowOptions",
36001
+ "name": "foundationSwitchShadowOptions",
35969
36002
  "type": {
35970
36003
  "text": "ShadowRootInit"
35971
36004
  },
@@ -35973,57 +36006,57 @@
35973
36006
  },
35974
36007
  {
35975
36008
  "kind": "variable",
35976
- "name": "defaultTabConfig",
36009
+ "name": "defaultSwitchConfig",
35977
36010
  "type": {
35978
36011
  "text": "object"
35979
36012
  },
35980
- "default": "{}"
36013
+ "default": "{\n switch: `<div class=\"checked-indicator\" part=\"checked-indicator\"></div>`,\n}"
35981
36014
  },
35982
36015
  {
35983
36016
  "kind": "variable",
35984
- "name": "foundationTab",
35985
- "description": "The Foundation Tab",
36017
+ "name": "foundationSwitch",
36018
+ "description": "The Foundation Switch",
35986
36019
  "privacy": "public"
35987
36020
  }
35988
36021
  ],
35989
36022
  "exports": [
35990
36023
  {
35991
36024
  "kind": "js",
35992
- "name": "Tab",
36025
+ "name": "Switch",
35993
36026
  "declaration": {
35994
- "name": "Tab",
35995
- "module": "src/tab/tab.ts"
36027
+ "name": "Switch",
36028
+ "module": "src/switch/switch.ts"
35996
36029
  }
35997
36030
  },
35998
36031
  {
35999
36032
  "kind": "js",
36000
- "name": "foundationTabShadowOptions",
36033
+ "name": "foundationSwitchShadowOptions",
36001
36034
  "declaration": {
36002
- "name": "foundationTabShadowOptions",
36003
- "module": "src/tab/tab.ts"
36035
+ "name": "foundationSwitchShadowOptions",
36036
+ "module": "src/switch/switch.ts"
36004
36037
  }
36005
36038
  },
36006
36039
  {
36007
36040
  "kind": "js",
36008
- "name": "defaultTabConfig",
36041
+ "name": "defaultSwitchConfig",
36009
36042
  "declaration": {
36010
- "name": "defaultTabConfig",
36011
- "module": "src/tab/tab.ts"
36043
+ "name": "defaultSwitchConfig",
36044
+ "module": "src/switch/switch.ts"
36012
36045
  }
36013
36046
  },
36014
36047
  {
36015
36048
  "kind": "js",
36016
- "name": "foundationTab",
36049
+ "name": "foundationSwitch",
36017
36050
  "declaration": {
36018
- "name": "foundationTab",
36019
- "module": "src/tab/tab.ts"
36051
+ "name": "foundationSwitch",
36052
+ "module": "src/switch/switch.ts"
36020
36053
  }
36021
36054
  }
36022
36055
  ]
36023
36056
  },
36024
36057
  {
36025
36058
  "kind": "javascript-module",
36026
- "path": "src/tab-panel/index.ts",
36059
+ "path": "src/tab/index.ts",
36027
36060
  "declarations": [],
36028
36061
  "exports": [
36029
36062
  {
@@ -36031,7 +36064,7 @@
36031
36064
  "name": "*",
36032
36065
  "declaration": {
36033
36066
  "name": "*",
36034
- "package": "./tab-panel.template"
36067
+ "package": "./tab.template"
36035
36068
  }
36036
36069
  },
36037
36070
  {
@@ -36039,7 +36072,7 @@
36039
36072
  "name": "*",
36040
36073
  "declaration": {
36041
36074
  "name": "*",
36042
- "package": "./tab-panel.styles"
36075
+ "package": "./tab.styles"
36043
36076
  }
36044
36077
  },
36045
36078
  {
@@ -36047,18 +36080,18 @@
36047
36080
  "name": "*",
36048
36081
  "declaration": {
36049
36082
  "name": "*",
36050
- "package": "./tab-panel"
36083
+ "package": "./tab"
36051
36084
  }
36052
36085
  }
36053
36086
  ]
36054
36087
  },
36055
36088
  {
36056
36089
  "kind": "javascript-module",
36057
- "path": "src/tab-panel/tab-panel.styles.ts",
36090
+ "path": "src/tab/tab.styles.ts",
36058
36091
  "declarations": [
36059
36092
  {
36060
36093
  "kind": "function",
36061
- "name": "foundationTabPanelStyles",
36094
+ "name": "foundationTabStyles",
36062
36095
  "return": {
36063
36096
  "type": {
36064
36097
  "text": "ElementStyles"
@@ -36083,24 +36116,24 @@
36083
36116
  "exports": [
36084
36117
  {
36085
36118
  "kind": "js",
36086
- "name": "foundationTabPanelStyles",
36119
+ "name": "foundationTabStyles",
36087
36120
  "declaration": {
36088
- "name": "foundationTabPanelStyles",
36089
- "module": "src/tab-panel/tab-panel.styles.ts"
36121
+ "name": "foundationTabStyles",
36122
+ "module": "src/tab/tab.styles.ts"
36090
36123
  }
36091
36124
  }
36092
36125
  ]
36093
36126
  },
36094
36127
  {
36095
36128
  "kind": "javascript-module",
36096
- "path": "src/tab-panel/tab-panel.template.ts",
36129
+ "path": "src/tab/tab.template.ts",
36097
36130
  "declarations": [
36098
36131
  {
36099
36132
  "kind": "function",
36100
- "name": "foundationTabPanelTemplate",
36133
+ "name": "foundationTabTemplate",
36101
36134
  "return": {
36102
36135
  "type": {
36103
- "text": "ViewTemplate<TabPanel>"
36136
+ "text": "ViewTemplate<Tab>"
36104
36137
  }
36105
36138
  },
36106
36139
  "parameters": [
@@ -36122,29 +36155,55 @@
36122
36155
  "exports": [
36123
36156
  {
36124
36157
  "kind": "js",
36125
- "name": "foundationTabPanelTemplate",
36158
+ "name": "foundationTabTemplate",
36126
36159
  "declaration": {
36127
- "name": "foundationTabPanelTemplate",
36128
- "module": "src/tab-panel/tab-panel.template.ts"
36160
+ "name": "foundationTabTemplate",
36161
+ "module": "src/tab/tab.template.ts"
36129
36162
  }
36130
36163
  }
36131
36164
  ]
36132
36165
  },
36133
36166
  {
36134
36167
  "kind": "javascript-module",
36135
- "path": "src/tab-panel/tab-panel.ts",
36168
+ "path": "src/tab/tab.ts",
36136
36169
  "declarations": [
36137
36170
  {
36138
36171
  "kind": "class",
36139
36172
  "description": "",
36140
- "name": "TabPanel",
36173
+ "name": "Tab",
36141
36174
  "superclass": {
36142
- "name": "FASTTabPanel",
36175
+ "name": "FASTTab",
36143
36176
  "package": "@microsoft/fast-components"
36144
36177
  },
36145
- "tagName": "%%prefix%%-tab-panel",
36178
+ "tagName": "%%prefix%%-tab",
36146
36179
  "customElement": true,
36180
+ "attributes": [
36181
+ {
36182
+ "type": {
36183
+ "text": "boolean"
36184
+ },
36185
+ "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute for more information.",
36186
+ "fieldName": "disabled",
36187
+ "inheritedFrom": {
36188
+ "name": "Tab",
36189
+ "module": "src/tab/tab.ts"
36190
+ }
36191
+ }
36192
+ ],
36147
36193
  "members": [
36194
+ {
36195
+ "kind": "field",
36196
+ "name": "disabled",
36197
+ "type": {
36198
+ "text": "boolean"
36199
+ },
36200
+ "privacy": "public",
36201
+ "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled | disabled HTML attribute} for more information.",
36202
+ "inheritedFrom": {
36203
+ "name": "Tab",
36204
+ "module": "src/tab/tab.ts"
36205
+ }
36206
+ },
36148
36207
  {
36149
36208
  "kind": "field",
36150
36209
  "name": "_presentation",
@@ -36260,7 +36319,7 @@
36260
36319
  },
36261
36320
  {
36262
36321
  "kind": "variable",
36263
- "name": "foundationTabPanelShadowOptions",
36322
+ "name": "foundationTabShadowOptions",
36264
36323
  "type": {
36265
36324
  "text": "ShadowRootInit"
36266
36325
  },
@@ -36268,7 +36327,7 @@
36268
36327
  },
36269
36328
  {
36270
36329
  "kind": "variable",
36271
- "name": "defaultTabPanelConfig",
36330
+ "name": "defaultTabConfig",
36272
36331
  "type": {
36273
36332
  "text": "object"
36274
36333
  },
@@ -36276,49 +36335,49 @@
36276
36335
  },
36277
36336
  {
36278
36337
  "kind": "variable",
36279
- "name": "foundationTabPanel",
36280
- "description": "The Foundation Tab Panel",
36338
+ "name": "foundationTab",
36339
+ "description": "The Foundation Tab",
36281
36340
  "privacy": "public"
36282
36341
  }
36283
36342
  ],
36284
36343
  "exports": [
36285
36344
  {
36286
36345
  "kind": "js",
36287
- "name": "TabPanel",
36346
+ "name": "Tab",
36288
36347
  "declaration": {
36289
- "name": "TabPanel",
36290
- "module": "src/tab-panel/tab-panel.ts"
36348
+ "name": "Tab",
36349
+ "module": "src/tab/tab.ts"
36291
36350
  }
36292
36351
  },
36293
36352
  {
36294
36353
  "kind": "js",
36295
- "name": "foundationTabPanelShadowOptions",
36354
+ "name": "foundationTabShadowOptions",
36296
36355
  "declaration": {
36297
- "name": "foundationTabPanelShadowOptions",
36298
- "module": "src/tab-panel/tab-panel.ts"
36356
+ "name": "foundationTabShadowOptions",
36357
+ "module": "src/tab/tab.ts"
36299
36358
  }
36300
36359
  },
36301
36360
  {
36302
36361
  "kind": "js",
36303
- "name": "defaultTabPanelConfig",
36362
+ "name": "defaultTabConfig",
36304
36363
  "declaration": {
36305
- "name": "defaultTabPanelConfig",
36306
- "module": "src/tab-panel/tab-panel.ts"
36364
+ "name": "defaultTabConfig",
36365
+ "module": "src/tab/tab.ts"
36307
36366
  }
36308
36367
  },
36309
36368
  {
36310
36369
  "kind": "js",
36311
- "name": "foundationTabPanel",
36370
+ "name": "foundationTab",
36312
36371
  "declaration": {
36313
- "name": "foundationTabPanel",
36314
- "module": "src/tab-panel/tab-panel.ts"
36372
+ "name": "foundationTab",
36373
+ "module": "src/tab/tab.ts"
36315
36374
  }
36316
36375
  }
36317
36376
  ]
36318
36377
  },
36319
36378
  {
36320
36379
  "kind": "javascript-module",
36321
- "path": "src/switch/index.ts",
36380
+ "path": "src/tab-panel/index.ts",
36322
36381
  "declarations": [],
36323
36382
  "exports": [
36324
36383
  {
@@ -36326,7 +36385,7 @@
36326
36385
  "name": "*",
36327
36386
  "declaration": {
36328
36387
  "name": "*",
36329
- "package": "./switch.template"
36388
+ "package": "./tab-panel.template"
36330
36389
  }
36331
36390
  },
36332
36391
  {
@@ -36334,7 +36393,7 @@
36334
36393
  "name": "*",
36335
36394
  "declaration": {
36336
36395
  "name": "*",
36337
- "package": "./switch.styles"
36396
+ "package": "./tab-panel.styles"
36338
36397
  }
36339
36398
  },
36340
36399
  {
@@ -36342,18 +36401,18 @@
36342
36401
  "name": "*",
36343
36402
  "declaration": {
36344
36403
  "name": "*",
36345
- "package": "./switch"
36404
+ "package": "./tab-panel"
36346
36405
  }
36347
36406
  }
36348
36407
  ]
36349
36408
  },
36350
36409
  {
36351
36410
  "kind": "javascript-module",
36352
- "path": "src/switch/switch.styles.ts",
36411
+ "path": "src/tab-panel/tab-panel.styles.ts",
36353
36412
  "declarations": [
36354
36413
  {
36355
36414
  "kind": "function",
36356
- "name": "foundationSwitchStyles",
36415
+ "name": "foundationTabPanelStyles",
36357
36416
  "return": {
36358
36417
  "type": {
36359
36418
  "text": "ElementStyles"
@@ -36369,7 +36428,7 @@
36369
36428
  {
36370
36429
  "name": "definition",
36371
36430
  "type": {
36372
- "text": "SwitchOptions"
36431
+ "text": "FoundationElementDefinition"
36373
36432
  }
36374
36433
  }
36375
36434
  ]
@@ -36378,24 +36437,24 @@
36378
36437
  "exports": [
36379
36438
  {
36380
36439
  "kind": "js",
36381
- "name": "foundationSwitchStyles",
36440
+ "name": "foundationTabPanelStyles",
36382
36441
  "declaration": {
36383
- "name": "foundationSwitchStyles",
36384
- "module": "src/switch/switch.styles.ts"
36442
+ "name": "foundationTabPanelStyles",
36443
+ "module": "src/tab-panel/tab-panel.styles.ts"
36385
36444
  }
36386
36445
  }
36387
36446
  ]
36388
36447
  },
36389
36448
  {
36390
36449
  "kind": "javascript-module",
36391
- "path": "src/switch/switch.template.ts",
36450
+ "path": "src/tab-panel/tab-panel.template.ts",
36392
36451
  "declarations": [
36393
36452
  {
36394
36453
  "kind": "function",
36395
- "name": "foundationSwitchTemplate",
36454
+ "name": "foundationTabPanelTemplate",
36396
36455
  "return": {
36397
36456
  "type": {
36398
- "text": "ViewTemplate<Switch>"
36457
+ "text": "ViewTemplate<TabPanel>"
36399
36458
  }
36400
36459
  },
36401
36460
  "parameters": [
@@ -36417,78 +36476,29 @@
36417
36476
  "exports": [
36418
36477
  {
36419
36478
  "kind": "js",
36420
- "name": "foundationSwitchTemplate",
36479
+ "name": "foundationTabPanelTemplate",
36421
36480
  "declaration": {
36422
- "name": "foundationSwitchTemplate",
36423
- "module": "src/switch/switch.template.ts"
36481
+ "name": "foundationTabPanelTemplate",
36482
+ "module": "src/tab-panel/tab-panel.template.ts"
36424
36483
  }
36425
36484
  }
36426
36485
  ]
36427
36486
  },
36428
36487
  {
36429
36488
  "kind": "javascript-module",
36430
- "path": "src/switch/switch.ts",
36489
+ "path": "src/tab-panel/tab-panel.ts",
36431
36490
  "declarations": [
36432
36491
  {
36433
36492
  "kind": "class",
36434
36493
  "description": "",
36435
- "name": "Switch",
36494
+ "name": "TabPanel",
36436
36495
  "superclass": {
36437
- "name": "FASTSwitch",
36496
+ "name": "FASTTabPanel",
36438
36497
  "package": "@microsoft/fast-components"
36439
36498
  },
36440
- "tagName": "%%prefix%%-switch",
36499
+ "tagName": "%%prefix%%-tab-panel",
36441
36500
  "customElement": true,
36442
- "attributes": [
36443
- {
36444
- "name": "readonly",
36445
- "type": {
36446
- "text": "boolean"
36447
- },
36448
- "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
36449
- "fieldName": "readOnly",
36450
- "inheritedFrom": {
36451
- "name": "Switch",
36452
- "module": "src/switch/switch.ts"
36453
- }
36454
- }
36455
- ],
36456
36501
  "members": [
36457
- {
36458
- "kind": "field",
36459
- "name": "readOnly",
36460
- "type": {
36461
- "text": "boolean"
36462
- },
36463
- "privacy": "public",
36464
- "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute} for more information.",
36465
- "inheritedFrom": {
36466
- "name": "Switch",
36467
- "module": "src/switch/switch.ts"
36468
- }
36469
- },
36470
- {
36471
- "kind": "method",
36472
- "name": "readOnlyChanged",
36473
- "privacy": "private",
36474
- "return": {
36475
- "type": {
36476
- "text": "void"
36477
- }
36478
- },
36479
- "inheritedFrom": {
36480
- "name": "Switch",
36481
- "module": "src/switch/switch.ts"
36482
- }
36483
- },
36484
- {
36485
- "kind": "field",
36486
- "name": "proxy",
36487
- "inheritedFrom": {
36488
- "name": "Switch",
36489
- "module": "src/switch/switch.ts"
36490
- }
36491
- },
36492
36502
  {
36493
36503
  "kind": "field",
36494
36504
  "name": "_presentation",
@@ -36498,8 +36508,8 @@
36498
36508
  "privacy": "private",
36499
36509
  "default": "void 0",
36500
36510
  "inheritedFrom": {
36501
- "name": "Switch",
36502
- "module": "src/switch/switch.ts"
36511
+ "name": "FoundationElement",
36512
+ "module": "src/foundation-element/foundation-element.ts"
36503
36513
  }
36504
36514
  },
36505
36515
  {
@@ -36511,8 +36521,8 @@
36511
36521
  "privacy": "public",
36512
36522
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
36513
36523
  "inheritedFrom": {
36514
- "name": "Switch",
36515
- "module": "src/switch/switch.ts"
36524
+ "name": "FoundationElement",
36525
+ "module": "src/foundation-element/foundation-element.ts"
36516
36526
  }
36517
36527
  },
36518
36528
  {
@@ -36524,8 +36534,8 @@
36524
36534
  "privacy": "public",
36525
36535
  "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
36526
36536
  "inheritedFrom": {
36527
- "name": "Switch",
36528
- "module": "src/switch/switch.ts"
36537
+ "name": "FoundationElement",
36538
+ "module": "src/foundation-element/foundation-element.ts"
36529
36539
  }
36530
36540
  },
36531
36541
  {
@@ -36538,8 +36548,8 @@
36538
36548
  }
36539
36549
  },
36540
36550
  "inheritedFrom": {
36541
- "name": "Switch",
36542
- "module": "src/switch/switch.ts"
36551
+ "name": "FoundationElement",
36552
+ "module": "src/foundation-element/foundation-element.ts"
36543
36553
  }
36544
36554
  },
36545
36555
  {
@@ -36551,8 +36561,8 @@
36551
36561
  "privacy": "public",
36552
36562
  "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
36553
36563
  "inheritedFrom": {
36554
- "name": "Switch",
36555
- "module": "src/switch/switch.ts"
36564
+ "name": "FoundationElement",
36565
+ "module": "src/foundation-element/foundation-element.ts"
36556
36566
  }
36557
36567
  },
36558
36568
  {
@@ -36565,8 +36575,8 @@
36565
36575
  }
36566
36576
  },
36567
36577
  "inheritedFrom": {
36568
- "name": "Switch",
36569
- "module": "src/switch/switch.ts"
36578
+ "name": "FoundationElement",
36579
+ "module": "src/foundation-element/foundation-element.ts"
36570
36580
  }
36571
36581
  },
36572
36582
  {
@@ -36596,25 +36606,15 @@
36596
36606
  ],
36597
36607
  "description": "Defines an element registry function with a set of element definition defaults.",
36598
36608
  "inheritedFrom": {
36599
- "name": "Switch",
36600
- "module": "src/switch/switch.ts"
36601
- }
36602
- }
36603
- ],
36604
- "events": [
36605
- {
36606
- "description": "Emits a custom change event when the checked state changes",
36607
- "name": "change",
36608
- "inheritedFrom": {
36609
- "name": "Switch",
36610
- "module": "src/switch/switch.ts"
36609
+ "name": "FoundationElement",
36610
+ "module": "src/foundation-element/foundation-element.ts"
36611
36611
  }
36612
36612
  }
36613
36613
  ]
36614
36614
  },
36615
36615
  {
36616
36616
  "kind": "variable",
36617
- "name": "foundationSwitchShadowOptions",
36617
+ "name": "foundationTabPanelShadowOptions",
36618
36618
  "type": {
36619
36619
  "text": "ShadowRootInit"
36620
36620
  },
@@ -36622,57 +36622,57 @@
36622
36622
  },
36623
36623
  {
36624
36624
  "kind": "variable",
36625
- "name": "defaultSwitchConfig",
36625
+ "name": "defaultTabPanelConfig",
36626
36626
  "type": {
36627
36627
  "text": "object"
36628
36628
  },
36629
- "default": "{\n switch: `<div class=\"checked-indicator\" part=\"checked-indicator\"></div>`,\n}"
36629
+ "default": "{}"
36630
36630
  },
36631
36631
  {
36632
36632
  "kind": "variable",
36633
- "name": "foundationSwitch",
36634
- "description": "The Foundation Switch",
36633
+ "name": "foundationTabPanel",
36634
+ "description": "The Foundation Tab Panel",
36635
36635
  "privacy": "public"
36636
36636
  }
36637
36637
  ],
36638
36638
  "exports": [
36639
36639
  {
36640
36640
  "kind": "js",
36641
- "name": "Switch",
36641
+ "name": "TabPanel",
36642
36642
  "declaration": {
36643
- "name": "Switch",
36644
- "module": "src/switch/switch.ts"
36643
+ "name": "TabPanel",
36644
+ "module": "src/tab-panel/tab-panel.ts"
36645
36645
  }
36646
36646
  },
36647
36647
  {
36648
36648
  "kind": "js",
36649
- "name": "foundationSwitchShadowOptions",
36649
+ "name": "foundationTabPanelShadowOptions",
36650
36650
  "declaration": {
36651
- "name": "foundationSwitchShadowOptions",
36652
- "module": "src/switch/switch.ts"
36651
+ "name": "foundationTabPanelShadowOptions",
36652
+ "module": "src/tab-panel/tab-panel.ts"
36653
36653
  }
36654
36654
  },
36655
36655
  {
36656
36656
  "kind": "js",
36657
- "name": "defaultSwitchConfig",
36657
+ "name": "defaultTabPanelConfig",
36658
36658
  "declaration": {
36659
- "name": "defaultSwitchConfig",
36660
- "module": "src/switch/switch.ts"
36659
+ "name": "defaultTabPanelConfig",
36660
+ "module": "src/tab-panel/tab-panel.ts"
36661
36661
  }
36662
36662
  },
36663
36663
  {
36664
36664
  "kind": "js",
36665
- "name": "foundationSwitch",
36665
+ "name": "foundationTabPanel",
36666
36666
  "declaration": {
36667
- "name": "foundationSwitch",
36668
- "module": "src/switch/switch.ts"
36667
+ "name": "foundationTabPanel",
36668
+ "module": "src/tab-panel/tab-panel.ts"
36669
36669
  }
36670
36670
  }
36671
36671
  ]
36672
36672
  },
36673
36673
  {
36674
36674
  "kind": "javascript-module",
36675
- "path": "src/text-area/index.ts",
36675
+ "path": "src/tabs/index.ts",
36676
36676
  "declarations": [],
36677
36677
  "exports": [
36678
36678
  {
@@ -36680,7 +36680,7 @@
36680
36680
  "name": "*",
36681
36681
  "declaration": {
36682
36682
  "name": "*",
36683
- "package": "./text-area.template"
36683
+ "package": "./tabs.template"
36684
36684
  }
36685
36685
  },
36686
36686
  {
@@ -36688,7 +36688,7 @@
36688
36688
  "name": "*",
36689
36689
  "declaration": {
36690
36690
  "name": "*",
36691
- "package": "./text-area.styles"
36691
+ "package": "./tabs.styles"
36692
36692
  }
36693
36693
  },
36694
36694
  {
@@ -36696,18 +36696,18 @@
36696
36696
  "name": "*",
36697
36697
  "declaration": {
36698
36698
  "name": "*",
36699
- "package": "./text-area"
36699
+ "package": "./tabs"
36700
36700
  }
36701
36701
  }
36702
36702
  ]
36703
36703
  },
36704
36704
  {
36705
36705
  "kind": "javascript-module",
36706
- "path": "src/text-area/text-area.styles.ts",
36706
+ "path": "src/tabs/tabs.styles.ts",
36707
36707
  "declarations": [
36708
36708
  {
36709
36709
  "kind": "function",
36710
- "name": "foundationTextAreaStyles",
36710
+ "name": "foundationTabsStyles",
36711
36711
  "return": {
36712
36712
  "type": {
36713
36713
  "text": "ElementStyles"
@@ -36732,24 +36732,24 @@
36732
36732
  "exports": [
36733
36733
  {
36734
36734
  "kind": "js",
36735
- "name": "foundationTextAreaStyles",
36735
+ "name": "foundationTabsStyles",
36736
36736
  "declaration": {
36737
- "name": "foundationTextAreaStyles",
36738
- "module": "src/text-area/text-area.styles.ts"
36737
+ "name": "foundationTabsStyles",
36738
+ "module": "src/tabs/tabs.styles.ts"
36739
36739
  }
36740
36740
  }
36741
36741
  ]
36742
36742
  },
36743
36743
  {
36744
36744
  "kind": "javascript-module",
36745
- "path": "src/text-area/text-area.template.ts",
36745
+ "path": "src/tabs/tabs.template.ts",
36746
36746
  "declarations": [
36747
36747
  {
36748
36748
  "kind": "function",
36749
- "name": "foundationTextAreaTemplate",
36749
+ "name": "foundationTabsTemplate",
36750
36750
  "return": {
36751
36751
  "type": {
36752
- "text": "ViewTemplate<TextArea>"
36752
+ "text": "ViewTemplate<Tabs>"
36753
36753
  }
36754
36754
  },
36755
36755
  "parameters": [
@@ -36771,380 +36771,410 @@
36771
36771
  "exports": [
36772
36772
  {
36773
36773
  "kind": "js",
36774
- "name": "foundationTextAreaTemplate",
36774
+ "name": "foundationTabsTemplate",
36775
36775
  "declaration": {
36776
- "name": "foundationTextAreaTemplate",
36777
- "module": "src/text-area/text-area.template.ts"
36776
+ "name": "foundationTabsTemplate",
36777
+ "module": "src/tabs/tabs.template.ts"
36778
36778
  }
36779
36779
  }
36780
36780
  ]
36781
36781
  },
36782
36782
  {
36783
36783
  "kind": "javascript-module",
36784
- "path": "src/text-area/text-area.ts",
36784
+ "path": "src/tabs/tabs.ts",
36785
36785
  "declarations": [
36786
36786
  {
36787
36787
  "kind": "class",
36788
36788
  "description": "",
36789
- "name": "TextArea",
36789
+ "name": "Tabs",
36790
36790
  "superclass": {
36791
- "name": "FASTTextArea",
36791
+ "name": "FASTTabs",
36792
36792
  "package": "@microsoft/fast-components"
36793
36793
  },
36794
- "tagName": "%%prefix%%-text-area",
36794
+ "tagName": "%%prefix%%-tabs",
36795
36795
  "customElement": true,
36796
36796
  "attributes": [
36797
36797
  {
36798
+ "name": "orientation",
36798
36799
  "type": {
36799
- "text": "boolean"
36800
+ "text": "TabsOrientation"
36800
36801
  },
36801
- "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
36802
- "fieldName": "readOnly",
36803
- "default": "20",
36802
+ "description": "The orientation",
36803
+ "fieldName": "orientation",
36804
36804
  "inheritedFrom": {
36805
- "name": "TextArea",
36806
- "module": "src/text-area/text-area.ts"
36805
+ "name": "Tabs",
36806
+ "module": "src/tabs/tabs.ts"
36807
36807
  }
36808
36808
  },
36809
36809
  {
36810
- "name": "resize",
36810
+ "name": "activeid",
36811
36811
  "type": {
36812
- "text": "TextAreaResize"
36812
+ "text": "string"
36813
36813
  },
36814
- "description": "The resize mode of the element.",
36815
- "fieldName": "resize",
36814
+ "description": "The id of the active tab",
36815
+ "fieldName": "activeid",
36816
36816
  "inheritedFrom": {
36817
- "name": "TextArea",
36818
- "module": "src/text-area/text-area.ts"
36817
+ "name": "Tabs",
36818
+ "module": "src/tabs/tabs.ts"
36819
36819
  }
36820
36820
  },
36821
36821
  {
36822
- "name": "form",
36823
36822
  "type": {
36824
- "text": "string"
36823
+ "text": "boolean"
36825
36824
  },
36826
- "description": "The https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id | id of the https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form | form the element is associated to",
36827
- "fieldName": "formId",
36825
+ "default": "true",
36826
+ "description": "Whether or not to show the active indicator",
36827
+ "fieldName": "activeindicator",
36828
36828
  "inheritedFrom": {
36829
- "name": "TextArea",
36830
- "module": "src/text-area/text-area.ts"
36829
+ "name": "Tabs",
36830
+ "module": "src/tabs/tabs.ts"
36831
36831
  }
36832
- },
36832
+ }
36833
+ ],
36834
+ "members": [
36833
36835
  {
36834
- "name": "list",
36836
+ "kind": "field",
36837
+ "name": "orientation",
36835
36838
  "type": {
36836
- "text": "string"
36839
+ "text": "TabsOrientation"
36837
36840
  },
36838
- "description": "Allows associating a https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist to the element by https://developer.mozilla.org/en-US/docs/Web/API/Element/id.",
36839
- "fieldName": "list",
36841
+ "privacy": "public",
36842
+ "description": "The orientation",
36840
36843
  "inheritedFrom": {
36841
- "name": "TextArea",
36842
- "module": "src/text-area/text-area.ts"
36844
+ "name": "Tabs",
36845
+ "module": "src/tabs/tabs.ts"
36843
36846
  }
36844
36847
  },
36845
36848
  {
36846
- "name": "name",
36849
+ "kind": "field",
36850
+ "name": "activeid",
36847
36851
  "type": {
36848
36852
  "text": "string"
36849
36853
  },
36850
- "description": "The name of the element.",
36851
- "fieldName": "name",
36854
+ "privacy": "public",
36855
+ "description": "The id of the active tab",
36852
36856
  "inheritedFrom": {
36853
- "name": "TextArea",
36854
- "module": "src/text-area/text-area.ts"
36857
+ "name": "Tabs",
36858
+ "module": "src/tabs/tabs.ts"
36855
36859
  }
36856
36860
  },
36857
36861
  {
36858
- "name": "placeholder",
36862
+ "kind": "field",
36863
+ "name": "activeindicator",
36859
36864
  "type": {
36860
- "text": "string"
36865
+ "text": "boolean"
36861
36866
  },
36862
- "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
36863
- "fieldName": "placeholder",
36867
+ "privacy": "public",
36868
+ "default": "true",
36869
+ "description": "Whether or not to show the active indicator",
36864
36870
  "inheritedFrom": {
36865
- "name": "TextArea",
36866
- "module": "src/text-area/text-area.ts"
36871
+ "name": "Tabs",
36872
+ "module": "src/tabs/tabs.ts"
36867
36873
  }
36868
- }
36869
- ],
36870
- "members": [
36874
+ },
36871
36875
  {
36872
36876
  "kind": "field",
36873
- "name": "readOnly",
36877
+ "name": "activetab",
36874
36878
  "type": {
36875
- "text": "boolean"
36879
+ "text": "HTMLElement"
36876
36880
  },
36877
36881
  "privacy": "public",
36878
- "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute} for more information.",
36882
+ "description": "A reference to the active tab",
36879
36883
  "inheritedFrom": {
36880
- "name": "TextArea",
36881
- "module": "src/text-area/text-area.ts"
36884
+ "name": "Tabs",
36885
+ "module": "src/tabs/tabs.ts"
36882
36886
  }
36883
36887
  },
36884
36888
  {
36885
- "kind": "method",
36886
- "name": "readOnlyChanged",
36887
- "privacy": "private",
36888
- "return": {
36889
- "type": {
36890
- "text": "void"
36891
- }
36889
+ "kind": "field",
36890
+ "name": "prevActiveTabIndex",
36891
+ "type": {
36892
+ "text": "number"
36892
36893
  },
36894
+ "privacy": "private",
36895
+ "default": "0",
36893
36896
  "inheritedFrom": {
36894
- "name": "TextArea",
36895
- "module": "src/text-area/text-area.ts"
36897
+ "name": "Tabs",
36898
+ "module": "src/tabs/tabs.ts"
36896
36899
  }
36897
36900
  },
36898
36901
  {
36899
36902
  "kind": "field",
36900
- "name": "resize",
36903
+ "name": "activeTabIndex",
36901
36904
  "type": {
36902
- "text": "TextAreaResize"
36905
+ "text": "number"
36903
36906
  },
36904
- "privacy": "public",
36905
- "description": "The resize mode of the element.",
36907
+ "privacy": "private",
36908
+ "default": "0",
36906
36909
  "inheritedFrom": {
36907
- "name": "TextArea",
36908
- "module": "src/text-area/text-area.ts"
36910
+ "name": "Tabs",
36911
+ "module": "src/tabs/tabs.ts"
36909
36912
  }
36910
36913
  },
36911
36914
  {
36912
36915
  "kind": "field",
36913
- "name": "autofocus",
36916
+ "name": "ticking",
36914
36917
  "type": {
36915
36918
  "text": "boolean"
36916
36919
  },
36917
- "privacy": "public",
36918
- "description": "Indicates that this element should get focus after the page finishes loading.",
36920
+ "privacy": "private",
36921
+ "default": "false",
36919
36922
  "inheritedFrom": {
36920
- "name": "TextArea",
36921
- "module": "src/text-area/text-area.ts"
36923
+ "name": "Tabs",
36924
+ "module": "src/tabs/tabs.ts"
36922
36925
  }
36923
36926
  },
36924
36927
  {
36925
- "kind": "method",
36926
- "name": "autofocusChanged",
36927
- "privacy": "private",
36928
- "return": {
36929
- "type": {
36930
- "text": "void"
36931
- }
36928
+ "kind": "field",
36929
+ "name": "tabIds",
36930
+ "type": {
36931
+ "text": "Array<string>"
36932
36932
  },
36933
+ "privacy": "private",
36933
36934
  "inheritedFrom": {
36934
- "name": "TextArea",
36935
- "module": "src/text-area/text-area.ts"
36935
+ "name": "Tabs",
36936
+ "module": "src/tabs/tabs.ts"
36936
36937
  }
36937
36938
  },
36938
36939
  {
36939
36940
  "kind": "field",
36940
- "name": "formId",
36941
+ "name": "tabpanelIds",
36941
36942
  "type": {
36942
- "text": "string"
36943
+ "text": "Array<string>"
36943
36944
  },
36944
- "privacy": "public",
36945
- "description": "The {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id | id} of the {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form | form} the element is associated to",
36945
+ "privacy": "private",
36946
36946
  "inheritedFrom": {
36947
- "name": "TextArea",
36948
- "module": "src/text-area/text-area.ts"
36947
+ "name": "Tabs",
36948
+ "module": "src/tabs/tabs.ts"
36949
36949
  }
36950
36950
  },
36951
36951
  {
36952
36952
  "kind": "field",
36953
- "name": "list",
36954
- "type": {
36955
- "text": "string"
36956
- },
36957
- "privacy": "public",
36958
- "description": "Allows associating a {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist} to the element by {@link https://developer.mozilla.org/en-US/docs/Web/API/Element/id}.",
36953
+ "name": "change",
36954
+ "privacy": "private",
36959
36955
  "inheritedFrom": {
36960
- "name": "TextArea",
36961
- "module": "src/text-area/text-area.ts"
36956
+ "name": "Tabs",
36957
+ "module": "src/tabs/tabs.ts"
36962
36958
  }
36963
36959
  },
36964
36960
  {
36965
- "kind": "method",
36966
- "name": "listChanged",
36961
+ "kind": "field",
36962
+ "name": "isDisabledElement",
36967
36963
  "privacy": "private",
36968
- "return": {
36969
- "type": {
36970
- "text": "void"
36971
- }
36972
- },
36973
36964
  "inheritedFrom": {
36974
- "name": "TextArea",
36975
- "module": "src/text-area/text-area.ts"
36965
+ "name": "Tabs",
36966
+ "module": "src/tabs/tabs.ts"
36976
36967
  }
36977
36968
  },
36978
36969
  {
36979
36970
  "kind": "field",
36980
- "name": "maxlength",
36981
- "type": {
36982
- "text": "number"
36983
- },
36984
- "privacy": "public",
36985
- "description": "The maximum number of characters a user can enter.",
36971
+ "name": "isHiddenElement",
36972
+ "privacy": "private",
36986
36973
  "inheritedFrom": {
36987
- "name": "TextArea",
36988
- "module": "src/text-area/text-area.ts"
36974
+ "name": "Tabs",
36975
+ "module": "src/tabs/tabs.ts"
36976
+ }
36977
+ },
36978
+ {
36979
+ "kind": "field",
36980
+ "name": "isFocusableElement",
36981
+ "privacy": "private",
36982
+ "inheritedFrom": {
36983
+ "name": "Tabs",
36984
+ "module": "src/tabs/tabs.ts"
36989
36985
  }
36990
36986
  },
36991
36987
  {
36992
36988
  "kind": "method",
36993
- "name": "maxlengthChanged",
36989
+ "name": "getActiveIndex",
36994
36990
  "privacy": "private",
36995
36991
  "return": {
36996
36992
  "type": {
36997
- "text": "void"
36993
+ "text": "number"
36998
36994
  }
36999
36995
  },
37000
36996
  "inheritedFrom": {
37001
- "name": "TextArea",
37002
- "module": "src/text-area/text-area.ts"
36997
+ "name": "Tabs",
36998
+ "module": "src/tabs/tabs.ts"
37003
36999
  }
37004
37000
  },
37005
37001
  {
37006
37002
  "kind": "field",
37007
- "name": "minlength",
37008
- "type": {
37009
- "text": "number"
37010
- },
37011
- "privacy": "public",
37012
- "description": "The minimum number of characters a user can enter.",
37003
+ "name": "setTabs",
37004
+ "privacy": "private",
37013
37005
  "inheritedFrom": {
37014
- "name": "TextArea",
37015
- "module": "src/text-area/text-area.ts"
37006
+ "name": "Tabs",
37007
+ "module": "src/tabs/tabs.ts"
37008
+ }
37009
+ },
37010
+ {
37011
+ "kind": "field",
37012
+ "name": "setTabPanels",
37013
+ "privacy": "private",
37014
+ "inheritedFrom": {
37015
+ "name": "Tabs",
37016
+ "module": "src/tabs/tabs.ts"
37016
37017
  }
37017
37018
  },
37018
37019
  {
37019
37020
  "kind": "method",
37020
- "name": "minlengthChanged",
37021
+ "name": "getTabIds",
37021
37022
  "privacy": "private",
37022
37023
  "return": {
37023
37024
  "type": {
37024
- "text": "void"
37025
+ "text": "Array<string>"
37025
37026
  }
37026
37027
  },
37027
37028
  "inheritedFrom": {
37028
- "name": "TextArea",
37029
- "module": "src/text-area/text-area.ts"
37029
+ "name": "Tabs",
37030
+ "module": "src/tabs/tabs.ts"
37030
37031
  }
37031
37032
  },
37032
37033
  {
37033
- "kind": "field",
37034
- "name": "name",
37035
- "type": {
37036
- "text": "string"
37034
+ "kind": "method",
37035
+ "name": "getTabPanelIds",
37036
+ "privacy": "private",
37037
+ "return": {
37038
+ "type": {
37039
+ "text": "Array<string>"
37040
+ }
37037
37041
  },
37038
- "privacy": "public",
37039
- "description": "The name of the element.",
37040
37042
  "inheritedFrom": {
37041
- "name": "TextArea",
37042
- "module": "src/text-area/text-area.ts"
37043
+ "name": "Tabs",
37044
+ "module": "src/tabs/tabs.ts"
37043
37045
  }
37044
37046
  },
37045
37047
  {
37046
- "kind": "field",
37047
- "name": "placeholder",
37048
- "type": {
37049
- "text": "string"
37048
+ "kind": "method",
37049
+ "name": "setComponent",
37050
+ "privacy": "private",
37051
+ "return": {
37052
+ "type": {
37053
+ "text": "void"
37054
+ }
37050
37055
  },
37051
- "privacy": "public",
37052
- "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
37053
37056
  "inheritedFrom": {
37054
- "name": "TextArea",
37055
- "module": "src/text-area/text-area.ts"
37057
+ "name": "Tabs",
37058
+ "module": "src/tabs/tabs.ts"
37056
37059
  }
37057
37060
  },
37058
37061
  {
37059
37062
  "kind": "field",
37060
- "name": "cols",
37061
- "type": {
37062
- "text": "number"
37063
- },
37064
- "privacy": "public",
37065
- "default": "20",
37066
- "description": "Sizes the element horizontally by a number of character columns.",
37063
+ "name": "handleTabClick",
37064
+ "privacy": "private",
37067
37065
  "inheritedFrom": {
37068
- "name": "TextArea",
37069
- "module": "src/text-area/text-area.ts"
37066
+ "name": "Tabs",
37067
+ "module": "src/tabs/tabs.ts"
37070
37068
  }
37071
37069
  },
37072
37070
  {
37073
- "kind": "field",
37074
- "name": "rows",
37075
- "type": {
37076
- "text": "number"
37071
+ "kind": "method",
37072
+ "name": "isHorizontal",
37073
+ "privacy": "private",
37074
+ "return": {
37075
+ "type": {
37076
+ "text": "boolean"
37077
+ }
37077
37078
  },
37078
- "privacy": "public",
37079
- "description": "Sizes the element vertically by a number of character rows.",
37080
37079
  "inheritedFrom": {
37081
- "name": "TextArea",
37082
- "module": "src/text-area/text-area.ts"
37080
+ "name": "Tabs",
37081
+ "module": "src/tabs/tabs.ts"
37083
37082
  }
37084
37083
  },
37085
37084
  {
37086
37085
  "kind": "field",
37087
- "name": "spellcheck",
37088
- "type": {
37089
- "text": "boolean"
37090
- },
37091
- "privacy": "public",
37092
- "description": "Sets if the element is eligible for spell checking\nbut the UA.",
37086
+ "name": "handleTabKeyDown",
37087
+ "privacy": "private",
37093
37088
  "inheritedFrom": {
37094
- "name": "TextArea",
37095
- "module": "src/text-area/text-area.ts"
37089
+ "name": "Tabs",
37090
+ "module": "src/tabs/tabs.ts"
37096
37091
  }
37097
37092
  },
37098
37093
  {
37099
37094
  "kind": "method",
37100
- "name": "spellcheckChanged",
37095
+ "name": "handleActiveIndicatorPosition",
37101
37096
  "privacy": "private",
37102
- "return": {
37103
- "type": {
37104
- "text": "void"
37105
- }
37106
- },
37107
37097
  "inheritedFrom": {
37108
- "name": "TextArea",
37109
- "module": "src/text-area/text-area.ts"
37098
+ "name": "Tabs",
37099
+ "module": "src/tabs/tabs.ts"
37110
37100
  }
37111
37101
  },
37112
37102
  {
37113
37103
  "kind": "method",
37114
- "name": "select",
37115
- "privacy": "public",
37104
+ "name": "animateActiveIndicator",
37105
+ "privacy": "private",
37116
37106
  "return": {
37117
37107
  "type": {
37118
37108
  "text": "void"
37119
37109
  }
37120
37110
  },
37121
- "description": "Selects all the text in the text area",
37122
37111
  "inheritedFrom": {
37123
- "name": "TextArea",
37124
- "module": "src/text-area/text-area.ts"
37112
+ "name": "Tabs",
37113
+ "module": "src/tabs/tabs.ts"
37125
37114
  }
37126
37115
  },
37127
37116
  {
37128
37117
  "kind": "method",
37129
- "name": "validate",
37118
+ "name": "adjust",
37130
37119
  "privacy": "public",
37131
37120
  "return": {
37132
37121
  "type": {
37133
37122
  "text": "void"
37134
37123
  }
37135
37124
  },
37136
- "description": "{@inheritDoc (FormAssociated:interface).validate}",
37125
+ "parameters": [
37126
+ {
37127
+ "name": "adjustment",
37128
+ "type": {
37129
+ "text": "number"
37130
+ }
37131
+ }
37132
+ ],
37133
+ "description": "The adjust method for FASTTabs",
37137
37134
  "inheritedFrom": {
37138
- "name": "TextArea",
37139
- "module": "src/text-area/text-area.ts"
37135
+ "name": "Tabs",
37136
+ "module": "src/tabs/tabs.ts"
37140
37137
  }
37141
37138
  },
37142
37139
  {
37143
37140
  "kind": "field",
37144
- "name": "proxy",
37141
+ "name": "adjustForward",
37142
+ "privacy": "private",
37145
37143
  "inheritedFrom": {
37146
- "name": "TextArea",
37147
- "module": "src/text-area/text-area.ts"
37144
+ "name": "Tabs",
37145
+ "module": "src/tabs/tabs.ts"
37146
+ }
37147
+ },
37148
+ {
37149
+ "kind": "field",
37150
+ "name": "adjustBackward",
37151
+ "privacy": "private",
37152
+ "inheritedFrom": {
37153
+ "name": "Tabs",
37154
+ "module": "src/tabs/tabs.ts"
37155
+ }
37156
+ },
37157
+ {
37158
+ "kind": "field",
37159
+ "name": "moveToTabByIndex",
37160
+ "privacy": "private",
37161
+ "inheritedFrom": {
37162
+ "name": "Tabs",
37163
+ "module": "src/tabs/tabs.ts"
37164
+ }
37165
+ },
37166
+ {
37167
+ "kind": "method",
37168
+ "name": "focusTab",
37169
+ "privacy": "private",
37170
+ "return": {
37171
+ "type": {
37172
+ "text": "void"
37173
+ }
37174
+ },
37175
+ "inheritedFrom": {
37176
+ "name": "Tabs",
37177
+ "module": "src/tabs/tabs.ts"
37148
37178
  }
37149
37179
  },
37150
37180
  {
@@ -37156,8 +37186,8 @@
37156
37186
  "privacy": "private",
37157
37187
  "default": "void 0",
37158
37188
  "inheritedFrom": {
37159
- "name": "TextArea",
37160
- "module": "src/text-area/text-area.ts"
37189
+ "name": "FoundationElement",
37190
+ "module": "src/foundation-element/foundation-element.ts"
37161
37191
  }
37162
37192
  },
37163
37193
  {
@@ -37169,8 +37199,8 @@
37169
37199
  "privacy": "public",
37170
37200
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
37171
37201
  "inheritedFrom": {
37172
- "name": "TextArea",
37173
- "module": "src/text-area/text-area.ts"
37202
+ "name": "FoundationElement",
37203
+ "module": "src/foundation-element/foundation-element.ts"
37174
37204
  }
37175
37205
  },
37176
37206
  {
@@ -37182,8 +37212,8 @@
37182
37212
  "privacy": "public",
37183
37213
  "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
37184
37214
  "inheritedFrom": {
37185
- "name": "TextArea",
37186
- "module": "src/text-area/text-area.ts"
37215
+ "name": "FoundationElement",
37216
+ "module": "src/foundation-element/foundation-element.ts"
37187
37217
  }
37188
37218
  },
37189
37219
  {
@@ -37196,8 +37226,8 @@
37196
37226
  }
37197
37227
  },
37198
37228
  "inheritedFrom": {
37199
- "name": "TextArea",
37200
- "module": "src/text-area/text-area.ts"
37229
+ "name": "FoundationElement",
37230
+ "module": "src/foundation-element/foundation-element.ts"
37201
37231
  }
37202
37232
  },
37203
37233
  {
@@ -37209,8 +37239,8 @@
37209
37239
  "privacy": "public",
37210
37240
  "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
37211
37241
  "inheritedFrom": {
37212
- "name": "TextArea",
37213
- "module": "src/text-area/text-area.ts"
37242
+ "name": "FoundationElement",
37243
+ "module": "src/foundation-element/foundation-element.ts"
37214
37244
  }
37215
37245
  },
37216
37246
  {
@@ -37223,8 +37253,8 @@
37223
37253
  }
37224
37254
  },
37225
37255
  "inheritedFrom": {
37226
- "name": "TextArea",
37227
- "module": "src/text-area/text-area.ts"
37256
+ "name": "FoundationElement",
37257
+ "module": "src/foundation-element/foundation-element.ts"
37228
37258
  }
37229
37259
  },
37230
37260
  {
@@ -37254,25 +37284,25 @@
37254
37284
  ],
37255
37285
  "description": "Defines an element registry function with a set of element definition defaults.",
37256
37286
  "inheritedFrom": {
37257
- "name": "TextArea",
37258
- "module": "src/text-area/text-area.ts"
37287
+ "name": "FoundationElement",
37288
+ "module": "src/foundation-element/foundation-element.ts"
37259
37289
  }
37260
37290
  }
37261
37291
  ],
37262
37292
  "events": [
37263
37293
  {
37264
- "description": "Emits a custom 'change' event when the textarea emits a change event",
37294
+ "description": "Fires a custom 'change' event when a tab is clicked or during keyboard navigation",
37265
37295
  "name": "change",
37266
37296
  "inheritedFrom": {
37267
- "name": "TextArea",
37268
- "module": "src/text-area/text-area.ts"
37297
+ "name": "Tabs",
37298
+ "module": "src/tabs/tabs.ts"
37269
37299
  }
37270
37300
  }
37271
37301
  ]
37272
37302
  },
37273
37303
  {
37274
37304
  "kind": "variable",
37275
- "name": "foundationTextAreaShadowOptions",
37305
+ "name": "foundationTabsShadowOptions",
37276
37306
  "type": {
37277
37307
  "text": "ShadowRootInit"
37278
37308
  },
@@ -37280,7 +37310,7 @@
37280
37310
  },
37281
37311
  {
37282
37312
  "kind": "variable",
37283
- "name": "defaultTextAreaConfig",
37313
+ "name": "defaultTabsConfig",
37284
37314
  "type": {
37285
37315
  "text": "object"
37286
37316
  },
@@ -37288,49 +37318,49 @@
37288
37318
  },
37289
37319
  {
37290
37320
  "kind": "variable",
37291
- "name": "foundationTextArea",
37292
- "description": "The Foundation Text Area",
37321
+ "name": "foundationTabs",
37322
+ "description": "The Foundation Tabs",
37293
37323
  "privacy": "public"
37294
37324
  }
37295
37325
  ],
37296
37326
  "exports": [
37297
37327
  {
37298
37328
  "kind": "js",
37299
- "name": "TextArea",
37329
+ "name": "Tabs",
37300
37330
  "declaration": {
37301
- "name": "TextArea",
37302
- "module": "src/text-area/text-area.ts"
37331
+ "name": "Tabs",
37332
+ "module": "src/tabs/tabs.ts"
37303
37333
  }
37304
37334
  },
37305
37335
  {
37306
37336
  "kind": "js",
37307
- "name": "foundationTextAreaShadowOptions",
37337
+ "name": "foundationTabsShadowOptions",
37308
37338
  "declaration": {
37309
- "name": "foundationTextAreaShadowOptions",
37310
- "module": "src/text-area/text-area.ts"
37339
+ "name": "foundationTabsShadowOptions",
37340
+ "module": "src/tabs/tabs.ts"
37311
37341
  }
37312
37342
  },
37313
37343
  {
37314
37344
  "kind": "js",
37315
- "name": "defaultTextAreaConfig",
37345
+ "name": "defaultTabsConfig",
37316
37346
  "declaration": {
37317
- "name": "defaultTextAreaConfig",
37318
- "module": "src/text-area/text-area.ts"
37347
+ "name": "defaultTabsConfig",
37348
+ "module": "src/tabs/tabs.ts"
37319
37349
  }
37320
37350
  },
37321
37351
  {
37322
37352
  "kind": "js",
37323
- "name": "foundationTextArea",
37353
+ "name": "foundationTabs",
37324
37354
  "declaration": {
37325
- "name": "foundationTextArea",
37326
- "module": "src/text-area/text-area.ts"
37355
+ "name": "foundationTabs",
37356
+ "module": "src/tabs/tabs.ts"
37327
37357
  }
37328
37358
  }
37329
37359
  ]
37330
37360
  },
37331
37361
  {
37332
37362
  "kind": "javascript-module",
37333
- "path": "src/text-field/index.ts",
37363
+ "path": "src/text-area/index.ts",
37334
37364
  "declarations": [],
37335
37365
  "exports": [
37336
37366
  {
@@ -37338,7 +37368,7 @@
37338
37368
  "name": "*",
37339
37369
  "declaration": {
37340
37370
  "name": "*",
37341
- "package": "./text-field.template"
37371
+ "package": "./text-area.template"
37342
37372
  }
37343
37373
  },
37344
37374
  {
@@ -37346,7 +37376,7 @@
37346
37376
  "name": "*",
37347
37377
  "declaration": {
37348
37378
  "name": "*",
37349
- "package": "./text-field.styles"
37379
+ "package": "./text-area.styles"
37350
37380
  }
37351
37381
  },
37352
37382
  {
@@ -37354,18 +37384,18 @@
37354
37384
  "name": "*",
37355
37385
  "declaration": {
37356
37386
  "name": "*",
37357
- "package": "./text-field"
37387
+ "package": "./text-area"
37358
37388
  }
37359
37389
  }
37360
37390
  ]
37361
37391
  },
37362
37392
  {
37363
37393
  "kind": "javascript-module",
37364
- "path": "src/text-field/text-field.styles.ts",
37394
+ "path": "src/text-area/text-area.styles.ts",
37365
37395
  "declarations": [
37366
37396
  {
37367
37397
  "kind": "function",
37368
- "name": "foundationTextFieldStyles",
37398
+ "name": "foundationTextAreaStyles",
37369
37399
  "return": {
37370
37400
  "type": {
37371
37401
  "text": "ElementStyles"
@@ -37390,27 +37420,38 @@
37390
37420
  "exports": [
37391
37421
  {
37392
37422
  "kind": "js",
37393
- "name": "foundationTextFieldStyles",
37423
+ "name": "foundationTextAreaStyles",
37394
37424
  "declaration": {
37395
- "name": "foundationTextFieldStyles",
37396
- "module": "src/text-field/text-field.styles.ts"
37425
+ "name": "foundationTextAreaStyles",
37426
+ "module": "src/text-area/text-area.styles.ts"
37397
37427
  }
37398
37428
  }
37399
37429
  ]
37400
37430
  },
37401
37431
  {
37402
37432
  "kind": "javascript-module",
37403
- "path": "src/text-field/text-field.template.ts",
37433
+ "path": "src/text-area/text-area.template.ts",
37404
37434
  "declarations": [
37405
37435
  {
37406
37436
  "kind": "function",
37407
- "name": "foundationTextFieldTemplate",
37437
+ "name": "foundationTextAreaTemplate",
37438
+ "return": {
37439
+ "type": {
37440
+ "text": "ViewTemplate<TextArea>"
37441
+ }
37442
+ },
37408
37443
  "parameters": [
37409
37444
  {
37410
- "name": "context"
37445
+ "name": "context",
37446
+ "type": {
37447
+ "text": "ElementDefinitionContext"
37448
+ }
37411
37449
  },
37412
37450
  {
37413
- "name": "definition"
37451
+ "name": "definition",
37452
+ "type": {
37453
+ "text": "FoundationElementDefinition"
37454
+ }
37414
37455
  }
37415
37456
  ]
37416
37457
  }
@@ -37418,55 +37459,103 @@
37418
37459
  "exports": [
37419
37460
  {
37420
37461
  "kind": "js",
37421
- "name": "foundationTextFieldTemplate",
37462
+ "name": "foundationTextAreaTemplate",
37422
37463
  "declaration": {
37423
- "name": "foundationTextFieldTemplate",
37424
- "module": "src/text-field/text-field.template.ts"
37464
+ "name": "foundationTextAreaTemplate",
37465
+ "module": "src/text-area/text-area.template.ts"
37425
37466
  }
37426
37467
  }
37427
37468
  ]
37428
37469
  },
37429
37470
  {
37430
37471
  "kind": "javascript-module",
37431
- "path": "src/text-field/text-field.ts",
37472
+ "path": "src/text-area/text-area.ts",
37432
37473
  "declarations": [
37433
37474
  {
37434
37475
  "kind": "class",
37435
37476
  "description": "",
37436
- "name": "TextField",
37437
- "members": [
37477
+ "name": "TextArea",
37478
+ "superclass": {
37479
+ "name": "FASTTextArea",
37480
+ "package": "@microsoft/fast-components"
37481
+ },
37482
+ "tagName": "%%prefix%%-text-area",
37483
+ "customElement": true,
37484
+ "attributes": [
37438
37485
  {
37439
- "kind": "field",
37440
- "name": "autocomplete",
37441
37486
  "type": {
37442
- "text": "string"
37487
+ "text": "boolean"
37488
+ },
37489
+ "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
37490
+ "fieldName": "readOnly",
37491
+ "default": "20",
37492
+ "inheritedFrom": {
37493
+ "name": "TextArea",
37494
+ "module": "src/text-area/text-area.ts"
37443
37495
  }
37444
37496
  },
37445
37497
  {
37446
- "kind": "method",
37447
- "name": "autocompleteChanged",
37448
- "privacy": "private"
37498
+ "name": "resize",
37499
+ "type": {
37500
+ "text": "TextAreaResize"
37501
+ },
37502
+ "description": "The resize mode of the element.",
37503
+ "fieldName": "resize",
37504
+ "inheritedFrom": {
37505
+ "name": "TextArea",
37506
+ "module": "src/text-area/text-area.ts"
37507
+ }
37449
37508
  },
37450
37509
  {
37451
- "kind": "field",
37452
- "name": "autocapitalize",
37510
+ "name": "form",
37453
37511
  "type": {
37454
37512
  "text": "string"
37455
37513
  },
37456
- "default": "'off'"
37514
+ "description": "The https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id | id of the https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form | form the element is associated to",
37515
+ "fieldName": "formId",
37516
+ "inheritedFrom": {
37517
+ "name": "TextArea",
37518
+ "module": "src/text-area/text-area.ts"
37519
+ }
37457
37520
  },
37458
37521
  {
37459
- "kind": "method",
37460
- "name": "autocapitalizeChanged",
37461
- "privacy": "private"
37522
+ "name": "list",
37523
+ "type": {
37524
+ "text": "string"
37525
+ },
37526
+ "description": "Allows associating a https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist to the element by https://developer.mozilla.org/en-US/docs/Web/API/Element/id.",
37527
+ "fieldName": "list",
37528
+ "inheritedFrom": {
37529
+ "name": "TextArea",
37530
+ "module": "src/text-area/text-area.ts"
37531
+ }
37462
37532
  },
37463
37533
  {
37464
- "kind": "field",
37465
- "name": "step",
37534
+ "name": "name",
37466
37535
  "type": {
37467
- "text": "number"
37536
+ "text": "string"
37537
+ },
37538
+ "description": "The name of the element.",
37539
+ "fieldName": "name",
37540
+ "inheritedFrom": {
37541
+ "name": "TextArea",
37542
+ "module": "src/text-area/text-area.ts"
37468
37543
  }
37469
37544
  },
37545
+ {
37546
+ "name": "placeholder",
37547
+ "type": {
37548
+ "text": "string"
37549
+ },
37550
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
37551
+ "fieldName": "placeholder",
37552
+ "inheritedFrom": {
37553
+ "name": "TextArea",
37554
+ "module": "src/text-area/text-area.ts"
37555
+ }
37556
+ }
37557
+ ],
37558
+ "members": [
37470
37559
  {
37471
37560
  "kind": "field",
37472
37561
  "name": "readOnly",
@@ -37476,8 +37565,8 @@
37476
37565
  "privacy": "public",
37477
37566
  "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute} for more information.",
37478
37567
  "inheritedFrom": {
37479
- "name": "TextField",
37480
- "module": "src/text-field/text-field.ts"
37568
+ "name": "TextArea",
37569
+ "module": "src/text-area/text-area.ts"
37481
37570
  }
37482
37571
  },
37483
37572
  {
@@ -37490,53 +37579,39 @@
37490
37579
  }
37491
37580
  },
37492
37581
  "inheritedFrom": {
37493
- "name": "TextField",
37494
- "module": "src/text-field/text-field.ts"
37582
+ "name": "TextArea",
37583
+ "module": "src/text-area/text-area.ts"
37495
37584
  }
37496
37585
  },
37497
37586
  {
37498
37587
  "kind": "field",
37499
- "name": "autofocus",
37588
+ "name": "resize",
37500
37589
  "type": {
37501
- "text": "boolean"
37590
+ "text": "TextAreaResize"
37502
37591
  },
37503
37592
  "privacy": "public",
37504
- "description": "Indicates that this element should get focus after the page finishes loading. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautofocus | autofocus HTML attribute} for more information.",
37505
- "inheritedFrom": {
37506
- "name": "TextField",
37507
- "module": "src/text-field/text-field.ts"
37508
- }
37509
- },
37510
- {
37511
- "kind": "method",
37512
- "name": "autofocusChanged",
37513
- "privacy": "private",
37514
- "return": {
37515
- "type": {
37516
- "text": "void"
37517
- }
37518
- },
37593
+ "description": "The resize mode of the element.",
37519
37594
  "inheritedFrom": {
37520
- "name": "TextField",
37521
- "module": "src/text-field/text-field.ts"
37595
+ "name": "TextArea",
37596
+ "module": "src/text-area/text-area.ts"
37522
37597
  }
37523
37598
  },
37524
37599
  {
37525
37600
  "kind": "field",
37526
- "name": "placeholder",
37601
+ "name": "autofocus",
37527
37602
  "type": {
37528
- "text": "string"
37603
+ "text": "boolean"
37529
37604
  },
37530
37605
  "privacy": "public",
37531
- "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
37606
+ "description": "Indicates that this element should get focus after the page finishes loading.",
37532
37607
  "inheritedFrom": {
37533
- "name": "TextField",
37534
- "module": "src/text-field/text-field.ts"
37608
+ "name": "TextArea",
37609
+ "module": "src/text-area/text-area.ts"
37535
37610
  }
37536
37611
  },
37537
37612
  {
37538
37613
  "kind": "method",
37539
- "name": "placeholderChanged",
37614
+ "name": "autofocusChanged",
37540
37615
  "privacy": "private",
37541
37616
  "return": {
37542
37617
  "type": {
@@ -37544,35 +37619,21 @@
37544
37619
  }
37545
37620
  },
37546
37621
  "inheritedFrom": {
37547
- "name": "TextField",
37548
- "module": "src/text-field/text-field.ts"
37622
+ "name": "TextArea",
37623
+ "module": "src/text-area/text-area.ts"
37549
37624
  }
37550
37625
  },
37551
37626
  {
37552
37627
  "kind": "field",
37553
- "name": "type",
37628
+ "name": "formId",
37554
37629
  "type": {
37555
- "text": "TextFieldType"
37630
+ "text": "string"
37556
37631
  },
37557
37632
  "privacy": "public",
37558
- "description": "Allows setting a type or mode of text.",
37559
- "inheritedFrom": {
37560
- "name": "TextField",
37561
- "module": "src/text-field/text-field.ts"
37562
- }
37563
- },
37564
- {
37565
- "kind": "method",
37566
- "name": "typeChanged",
37567
- "privacy": "private",
37568
- "return": {
37569
- "type": {
37570
- "text": "void"
37571
- }
37572
- },
37633
+ "description": "The {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id | id} of the {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form | form} the element is associated to",
37573
37634
  "inheritedFrom": {
37574
- "name": "TextField",
37575
- "module": "src/text-field/text-field.ts"
37635
+ "name": "TextArea",
37636
+ "module": "src/text-area/text-area.ts"
37576
37637
  }
37577
37638
  },
37578
37639
  {
@@ -37584,8 +37645,8 @@
37584
37645
  "privacy": "public",
37585
37646
  "description": "Allows associating a {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist} to the element by {@link https://developer.mozilla.org/en-US/docs/Web/API/Element/id}.",
37586
37647
  "inheritedFrom": {
37587
- "name": "TextField",
37588
- "module": "src/text-field/text-field.ts"
37648
+ "name": "TextArea",
37649
+ "module": "src/text-area/text-area.ts"
37589
37650
  }
37590
37651
  },
37591
37652
  {
@@ -37598,8 +37659,8 @@
37598
37659
  }
37599
37660
  },
37600
37661
  "inheritedFrom": {
37601
- "name": "TextField",
37602
- "module": "src/text-field/text-field.ts"
37662
+ "name": "TextArea",
37663
+ "module": "src/text-area/text-area.ts"
37603
37664
  }
37604
37665
  },
37605
37666
  {
@@ -37611,8 +37672,8 @@
37611
37672
  "privacy": "public",
37612
37673
  "description": "The maximum number of characters a user can enter.",
37613
37674
  "inheritedFrom": {
37614
- "name": "TextField",
37615
- "module": "src/text-field/text-field.ts"
37675
+ "name": "TextArea",
37676
+ "module": "src/text-area/text-area.ts"
37616
37677
  }
37617
37678
  },
37618
37679
  {
@@ -37625,8 +37686,8 @@
37625
37686
  }
37626
37687
  },
37627
37688
  "inheritedFrom": {
37628
- "name": "TextField",
37629
- "module": "src/text-field/text-field.ts"
37689
+ "name": "TextArea",
37690
+ "module": "src/text-area/text-area.ts"
37630
37691
  }
37631
37692
  },
37632
37693
  {
@@ -37638,8 +37699,8 @@
37638
37699
  "privacy": "public",
37639
37700
  "description": "The minimum number of characters a user can enter.",
37640
37701
  "inheritedFrom": {
37641
- "name": "TextField",
37642
- "module": "src/text-field/text-field.ts"
37702
+ "name": "TextArea",
37703
+ "module": "src/text-area/text-area.ts"
37643
37704
  }
37644
37705
  },
37645
37706
  {
@@ -37652,62 +37713,61 @@
37652
37713
  }
37653
37714
  },
37654
37715
  "inheritedFrom": {
37655
- "name": "TextField",
37656
- "module": "src/text-field/text-field.ts"
37716
+ "name": "TextArea",
37717
+ "module": "src/text-area/text-area.ts"
37657
37718
  }
37658
37719
  },
37659
37720
  {
37660
37721
  "kind": "field",
37661
- "name": "pattern",
37722
+ "name": "name",
37662
37723
  "type": {
37663
37724
  "text": "string"
37664
37725
  },
37665
37726
  "privacy": "public",
37666
- "description": "A regular expression that the value must match to pass validation.",
37727
+ "description": "The name of the element.",
37667
37728
  "inheritedFrom": {
37668
- "name": "TextField",
37669
- "module": "src/text-field/text-field.ts"
37729
+ "name": "TextArea",
37730
+ "module": "src/text-area/text-area.ts"
37670
37731
  }
37671
37732
  },
37672
37733
  {
37673
- "kind": "method",
37674
- "name": "patternChanged",
37675
- "privacy": "private",
37676
- "return": {
37677
- "type": {
37678
- "text": "void"
37679
- }
37734
+ "kind": "field",
37735
+ "name": "placeholder",
37736
+ "type": {
37737
+ "text": "string"
37680
37738
  },
37739
+ "privacy": "public",
37740
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
37681
37741
  "inheritedFrom": {
37682
- "name": "TextField",
37683
- "module": "src/text-field/text-field.ts"
37742
+ "name": "TextArea",
37743
+ "module": "src/text-area/text-area.ts"
37684
37744
  }
37685
37745
  },
37686
37746
  {
37687
37747
  "kind": "field",
37688
- "name": "size",
37748
+ "name": "cols",
37689
37749
  "type": {
37690
37750
  "text": "number"
37691
37751
  },
37692
37752
  "privacy": "public",
37693
- "description": "Sets the width of the element to a specified number of characters.",
37753
+ "default": "20",
37754
+ "description": "Sizes the element horizontally by a number of character columns.",
37694
37755
  "inheritedFrom": {
37695
- "name": "TextField",
37696
- "module": "src/text-field/text-field.ts"
37756
+ "name": "TextArea",
37757
+ "module": "src/text-area/text-area.ts"
37697
37758
  }
37698
37759
  },
37699
37760
  {
37700
- "kind": "method",
37701
- "name": "sizeChanged",
37702
- "privacy": "private",
37703
- "return": {
37704
- "type": {
37705
- "text": "void"
37706
- }
37761
+ "kind": "field",
37762
+ "name": "rows",
37763
+ "type": {
37764
+ "text": "number"
37707
37765
  },
37766
+ "privacy": "public",
37767
+ "description": "Sizes the element vertically by a number of character rows.",
37708
37768
  "inheritedFrom": {
37709
- "name": "TextField",
37710
- "module": "src/text-field/text-field.ts"
37769
+ "name": "TextArea",
37770
+ "module": "src/text-area/text-area.ts"
37711
37771
  }
37712
37772
  },
37713
37773
  {
@@ -37717,10 +37777,10 @@
37717
37777
  "text": "boolean"
37718
37778
  },
37719
37779
  "privacy": "public",
37720
- "description": "Controls whether or not to enable spell checking for the input field, or if the default spell checking configuration should be used.",
37780
+ "description": "Sets if the element is eligible for spell checking\nbut the UA.",
37721
37781
  "inheritedFrom": {
37722
- "name": "TextField",
37723
- "module": "src/text-field/text-field.ts"
37782
+ "name": "TextArea",
37783
+ "module": "src/text-area/text-area.ts"
37724
37784
  }
37725
37785
  },
37726
37786
  {
@@ -37733,8 +37793,8 @@
37733
37793
  }
37734
37794
  },
37735
37795
  "inheritedFrom": {
37736
- "name": "TextField",
37737
- "module": "src/text-field/text-field.ts"
37796
+ "name": "TextArea",
37797
+ "module": "src/text-area/text-area.ts"
37738
37798
  }
37739
37799
  },
37740
37800
  {
@@ -37746,10 +37806,10 @@
37746
37806
  "text": "void"
37747
37807
  }
37748
37808
  },
37749
- "description": "Selects all the text in the text field",
37809
+ "description": "Selects all the text in the text area",
37750
37810
  "inheritedFrom": {
37751
- "name": "TextField",
37752
- "module": "src/text-field/text-field.ts"
37811
+ "name": "TextArea",
37812
+ "module": "src/text-area/text-area.ts"
37753
37813
  }
37754
37814
  },
37755
37815
  {
@@ -37763,16 +37823,16 @@
37763
37823
  },
37764
37824
  "description": "{@inheritDoc (FormAssociated:interface).validate}",
37765
37825
  "inheritedFrom": {
37766
- "name": "TextField",
37767
- "module": "src/text-field/text-field.ts"
37826
+ "name": "TextArea",
37827
+ "module": "src/text-area/text-area.ts"
37768
37828
  }
37769
37829
  },
37770
37830
  {
37771
37831
  "kind": "field",
37772
37832
  "name": "proxy",
37773
37833
  "inheritedFrom": {
37774
- "name": "TextField",
37775
- "module": "src/text-field/text-field.ts"
37834
+ "name": "TextArea",
37835
+ "module": "src/text-area/text-area.ts"
37776
37836
  }
37777
37837
  },
37778
37838
  {
@@ -37784,8 +37844,8 @@
37784
37844
  "privacy": "private",
37785
37845
  "default": "void 0",
37786
37846
  "inheritedFrom": {
37787
- "name": "TextField",
37788
- "module": "src/text-field/text-field.ts"
37847
+ "name": "TextArea",
37848
+ "module": "src/text-area/text-area.ts"
37789
37849
  }
37790
37850
  },
37791
37851
  {
@@ -37797,8 +37857,8 @@
37797
37857
  "privacy": "public",
37798
37858
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
37799
37859
  "inheritedFrom": {
37800
- "name": "TextField",
37801
- "module": "src/text-field/text-field.ts"
37860
+ "name": "TextArea",
37861
+ "module": "src/text-area/text-area.ts"
37802
37862
  }
37803
37863
  },
37804
37864
  {
@@ -37810,8 +37870,8 @@
37810
37870
  "privacy": "public",
37811
37871
  "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
37812
37872
  "inheritedFrom": {
37813
- "name": "TextField",
37814
- "module": "src/text-field/text-field.ts"
37873
+ "name": "TextArea",
37874
+ "module": "src/text-area/text-area.ts"
37815
37875
  }
37816
37876
  },
37817
37877
  {
@@ -37824,8 +37884,8 @@
37824
37884
  }
37825
37885
  },
37826
37886
  "inheritedFrom": {
37827
- "name": "TextField",
37828
- "module": "src/text-field/text-field.ts"
37887
+ "name": "TextArea",
37888
+ "module": "src/text-area/text-area.ts"
37829
37889
  }
37830
37890
  },
37831
37891
  {
@@ -37837,8 +37897,8 @@
37837
37897
  "privacy": "public",
37838
37898
  "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
37839
37899
  "inheritedFrom": {
37840
- "name": "TextField",
37841
- "module": "src/text-field/text-field.ts"
37900
+ "name": "TextArea",
37901
+ "module": "src/text-area/text-area.ts"
37842
37902
  }
37843
37903
  },
37844
37904
  {
@@ -37851,8 +37911,8 @@
37851
37911
  }
37852
37912
  },
37853
37913
  "inheritedFrom": {
37854
- "name": "TextField",
37855
- "module": "src/text-field/text-field.ts"
37914
+ "name": "TextArea",
37915
+ "module": "src/text-area/text-area.ts"
37856
37916
  }
37857
37917
  },
37858
37918
  {
@@ -37882,134 +37942,33 @@
37882
37942
  ],
37883
37943
  "description": "Defines an element registry function with a set of element definition defaults.",
37884
37944
  "inheritedFrom": {
37885
- "name": "TextField",
37886
- "module": "src/text-field/text-field.ts"
37945
+ "name": "TextArea",
37946
+ "module": "src/text-area/text-area.ts"
37887
37947
  }
37888
37948
  }
37889
37949
  ],
37890
- "attributes": [
37891
- {
37892
- "name": "autocomplete",
37893
- "type": {
37894
- "text": "string"
37895
- },
37896
- "fieldName": "autocomplete"
37897
- },
37898
- {
37899
- "name": "autocapitalize",
37900
- "type": {
37901
- "text": "string"
37902
- },
37903
- "default": "'off'",
37904
- "fieldName": "autocapitalize"
37905
- },
37906
- {
37907
- "name": "step",
37908
- "type": {
37909
- "text": "number"
37910
- },
37911
- "fieldName": "step"
37912
- },
37913
- {
37914
- "name": "readonly",
37915
- "type": {
37916
- "text": "boolean"
37917
- },
37918
- "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
37919
- "fieldName": "readOnly",
37920
- "inheritedFrom": {
37921
- "name": "TextField",
37922
- "module": "src/text-field/text-field.ts"
37923
- }
37924
- },
37925
- {
37926
- "type": {
37927
- "text": "boolean"
37928
- },
37929
- "description": "Indicates that this element should get focus after the page finishes loading. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautofocus | autofocus HTML attribute for more information.",
37930
- "fieldName": "autofocus",
37931
- "inheritedFrom": {
37932
- "name": "TextField",
37933
- "module": "src/text-field/text-field.ts"
37934
- }
37935
- },
37950
+ "events": [
37936
37951
  {
37937
- "name": "placeholder",
37938
- "type": {
37939
- "text": "string"
37940
- },
37941
- "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
37942
- "fieldName": "placeholder",
37952
+ "description": "Emits a custom 'change' event when the textarea emits a change event",
37953
+ "name": "change",
37943
37954
  "inheritedFrom": {
37944
- "name": "TextField",
37945
- "module": "src/text-field/text-field.ts"
37946
- }
37947
- },
37948
- {
37949
- "name": "type",
37950
- "type": {
37951
- "text": "TextFieldType"
37952
- },
37953
- "description": "Allows setting a type or mode of text.",
37954
- "fieldName": "type",
37955
- "inheritedFrom": {
37956
- "name": "TextField",
37957
- "module": "src/text-field/text-field.ts"
37958
- }
37959
- },
37960
- {
37961
- "name": "list",
37962
- "type": {
37963
- "text": "string"
37964
- },
37965
- "description": "Allows associating a https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist to the element by https://developer.mozilla.org/en-US/docs/Web/API/Element/id.",
37966
- "fieldName": "list",
37967
- "inheritedFrom": {
37968
- "name": "TextField",
37969
- "module": "src/text-field/text-field.ts"
37970
- }
37971
- },
37972
- {
37973
- "name": "pattern",
37974
- "type": {
37975
- "text": "string"
37976
- },
37977
- "description": "A regular expression that the value must match to pass validation.",
37978
- "fieldName": "pattern",
37979
- "inheritedFrom": {
37980
- "name": "TextField",
37981
- "module": "src/text-field/text-field.ts"
37982
- }
37983
- }
37984
- ],
37985
- "superclass": {
37986
- "name": "FASTTextField",
37987
- "package": "@microsoft/fast-components"
37988
- },
37989
- "tagName": "%%prefix%%-text-field",
37990
- "customElement": true,
37991
- "events": [
37992
- {
37993
- "description": "Fires a custom 'change' event when the value has changed",
37994
- "name": "change",
37995
- "inheritedFrom": {
37996
- "name": "TextField",
37997
- "module": "src/text-field/text-field.ts"
37955
+ "name": "TextArea",
37956
+ "module": "src/text-area/text-area.ts"
37998
37957
  }
37999
37958
  }
38000
37959
  ]
38001
37960
  },
38002
37961
  {
38003
37962
  "kind": "variable",
38004
- "name": "foundationTextFieldShadowOptions",
37963
+ "name": "foundationTextAreaShadowOptions",
38005
37964
  "type": {
38006
37965
  "text": "ShadowRootInit"
38007
37966
  },
38008
- "default": "{\n mode: 'open',\n delegatesFocus: true,\n}"
37967
+ "default": "undefined"
38009
37968
  },
38010
37969
  {
38011
37970
  "kind": "variable",
38012
- "name": "defaultTextFieldConfig",
37971
+ "name": "defaultTextAreaConfig",
38013
37972
  "type": {
38014
37973
  "text": "object"
38015
37974
  },
@@ -38017,49 +37976,49 @@
38017
37976
  },
38018
37977
  {
38019
37978
  "kind": "variable",
38020
- "name": "foundationTextField",
38021
- "description": "The Foundation Text Fields",
37979
+ "name": "foundationTextArea",
37980
+ "description": "The Foundation Text Area",
38022
37981
  "privacy": "public"
38023
37982
  }
38024
37983
  ],
38025
37984
  "exports": [
38026
37985
  {
38027
37986
  "kind": "js",
38028
- "name": "TextField",
37987
+ "name": "TextArea",
38029
37988
  "declaration": {
38030
- "name": "TextField",
38031
- "module": "src/text-field/text-field.ts"
37989
+ "name": "TextArea",
37990
+ "module": "src/text-area/text-area.ts"
38032
37991
  }
38033
37992
  },
38034
37993
  {
38035
37994
  "kind": "js",
38036
- "name": "foundationTextFieldShadowOptions",
37995
+ "name": "foundationTextAreaShadowOptions",
38037
37996
  "declaration": {
38038
- "name": "foundationTextFieldShadowOptions",
38039
- "module": "src/text-field/text-field.ts"
37997
+ "name": "foundationTextAreaShadowOptions",
37998
+ "module": "src/text-area/text-area.ts"
38040
37999
  }
38041
38000
  },
38042
38001
  {
38043
38002
  "kind": "js",
38044
- "name": "defaultTextFieldConfig",
38003
+ "name": "defaultTextAreaConfig",
38045
38004
  "declaration": {
38046
- "name": "defaultTextFieldConfig",
38047
- "module": "src/text-field/text-field.ts"
38005
+ "name": "defaultTextAreaConfig",
38006
+ "module": "src/text-area/text-area.ts"
38048
38007
  }
38049
38008
  },
38050
38009
  {
38051
38010
  "kind": "js",
38052
- "name": "foundationTextField",
38011
+ "name": "foundationTextArea",
38053
38012
  "declaration": {
38054
- "name": "foundationTextField",
38055
- "module": "src/text-field/text-field.ts"
38013
+ "name": "foundationTextArea",
38014
+ "module": "src/text-area/text-area.ts"
38056
38015
  }
38057
38016
  }
38058
38017
  ]
38059
38018
  },
38060
38019
  {
38061
38020
  "kind": "javascript-module",
38062
- "path": "src/tabs/index.ts",
38021
+ "path": "src/text-field/index.ts",
38063
38022
  "declarations": [],
38064
38023
  "exports": [
38065
38024
  {
@@ -38067,7 +38026,7 @@
38067
38026
  "name": "*",
38068
38027
  "declaration": {
38069
38028
  "name": "*",
38070
- "package": "./tabs.template"
38029
+ "package": "./text-field.template"
38071
38030
  }
38072
38031
  },
38073
38032
  {
@@ -38075,7 +38034,7 @@
38075
38034
  "name": "*",
38076
38035
  "declaration": {
38077
38036
  "name": "*",
38078
- "package": "./tabs.styles"
38037
+ "package": "./text-field.styles"
38079
38038
  }
38080
38039
  },
38081
38040
  {
@@ -38083,18 +38042,18 @@
38083
38042
  "name": "*",
38084
38043
  "declaration": {
38085
38044
  "name": "*",
38086
- "package": "./tabs"
38045
+ "package": "./text-field"
38087
38046
  }
38088
38047
  }
38089
38048
  ]
38090
38049
  },
38091
38050
  {
38092
38051
  "kind": "javascript-module",
38093
- "path": "src/tabs/tabs.styles.ts",
38052
+ "path": "src/text-field/text-field.styles.ts",
38094
38053
  "declarations": [
38095
38054
  {
38096
38055
  "kind": "function",
38097
- "name": "foundationTabsStyles",
38056
+ "name": "foundationTextFieldStyles",
38098
38057
  "return": {
38099
38058
  "type": {
38100
38059
  "text": "ElementStyles"
@@ -38119,38 +38078,27 @@
38119
38078
  "exports": [
38120
38079
  {
38121
38080
  "kind": "js",
38122
- "name": "foundationTabsStyles",
38081
+ "name": "foundationTextFieldStyles",
38123
38082
  "declaration": {
38124
- "name": "foundationTabsStyles",
38125
- "module": "src/tabs/tabs.styles.ts"
38083
+ "name": "foundationTextFieldStyles",
38084
+ "module": "src/text-field/text-field.styles.ts"
38126
38085
  }
38127
38086
  }
38128
38087
  ]
38129
38088
  },
38130
38089
  {
38131
38090
  "kind": "javascript-module",
38132
- "path": "src/tabs/tabs.template.ts",
38091
+ "path": "src/text-field/text-field.template.ts",
38133
38092
  "declarations": [
38134
38093
  {
38135
38094
  "kind": "function",
38136
- "name": "foundationTabsTemplate",
38137
- "return": {
38138
- "type": {
38139
- "text": "ViewTemplate<Tabs>"
38140
- }
38141
- },
38095
+ "name": "foundationTextFieldTemplate",
38142
38096
  "parameters": [
38143
38097
  {
38144
- "name": "context",
38145
- "type": {
38146
- "text": "ElementDefinitionContext"
38147
- }
38098
+ "name": "context"
38148
38099
  },
38149
38100
  {
38150
- "name": "definition",
38151
- "type": {
38152
- "text": "FoundationElementDefinition"
38153
- }
38101
+ "name": "definition"
38154
38102
  }
38155
38103
  ]
38156
38104
  }
@@ -38158,282 +38106,260 @@
38158
38106
  "exports": [
38159
38107
  {
38160
38108
  "kind": "js",
38161
- "name": "foundationTabsTemplate",
38109
+ "name": "foundationTextFieldTemplate",
38162
38110
  "declaration": {
38163
- "name": "foundationTabsTemplate",
38164
- "module": "src/tabs/tabs.template.ts"
38111
+ "name": "foundationTextFieldTemplate",
38112
+ "module": "src/text-field/text-field.template.ts"
38165
38113
  }
38166
38114
  }
38167
38115
  ]
38168
38116
  },
38169
38117
  {
38170
38118
  "kind": "javascript-module",
38171
- "path": "src/tabs/tabs.ts",
38119
+ "path": "src/text-field/text-field.ts",
38172
38120
  "declarations": [
38173
38121
  {
38174
38122
  "kind": "class",
38175
38123
  "description": "",
38176
- "name": "Tabs",
38177
- "superclass": {
38178
- "name": "FASTTabs",
38179
- "package": "@microsoft/fast-components"
38180
- },
38181
- "tagName": "%%prefix%%-tabs",
38182
- "customElement": true,
38183
- "attributes": [
38184
- {
38185
- "name": "orientation",
38186
- "type": {
38187
- "text": "TabsOrientation"
38188
- },
38189
- "description": "The orientation",
38190
- "fieldName": "orientation",
38191
- "inheritedFrom": {
38192
- "name": "Tabs",
38193
- "module": "src/tabs/tabs.ts"
38194
- }
38195
- },
38124
+ "name": "TextField",
38125
+ "members": [
38196
38126
  {
38197
- "name": "activeid",
38127
+ "kind": "field",
38128
+ "name": "autocomplete",
38198
38129
  "type": {
38199
38130
  "text": "string"
38200
- },
38201
- "description": "The id of the active tab",
38202
- "fieldName": "activeid",
38203
- "inheritedFrom": {
38204
- "name": "Tabs",
38205
- "module": "src/tabs/tabs.ts"
38206
38131
  }
38207
38132
  },
38208
38133
  {
38209
- "type": {
38210
- "text": "boolean"
38211
- },
38212
- "default": "true",
38213
- "description": "Whether or not to show the active indicator",
38214
- "fieldName": "activeindicator",
38215
- "inheritedFrom": {
38216
- "name": "Tabs",
38217
- "module": "src/tabs/tabs.ts"
38218
- }
38219
- }
38220
- ],
38221
- "members": [
38134
+ "kind": "method",
38135
+ "name": "autocompleteChanged",
38136
+ "privacy": "private"
38137
+ },
38222
38138
  {
38223
38139
  "kind": "field",
38224
- "name": "orientation",
38140
+ "name": "autocapitalize",
38225
38141
  "type": {
38226
- "text": "TabsOrientation"
38142
+ "text": "string"
38227
38143
  },
38228
- "privacy": "public",
38229
- "description": "The orientation",
38230
- "inheritedFrom": {
38231
- "name": "Tabs",
38232
- "module": "src/tabs/tabs.ts"
38233
- }
38144
+ "default": "'off'"
38145
+ },
38146
+ {
38147
+ "kind": "method",
38148
+ "name": "autocapitalizeChanged",
38149
+ "privacy": "private"
38234
38150
  },
38235
38151
  {
38236
38152
  "kind": "field",
38237
- "name": "activeid",
38153
+ "name": "step",
38238
38154
  "type": {
38239
- "text": "string"
38240
- },
38241
- "privacy": "public",
38242
- "description": "The id of the active tab",
38243
- "inheritedFrom": {
38244
- "name": "Tabs",
38245
- "module": "src/tabs/tabs.ts"
38155
+ "text": "number"
38246
38156
  }
38247
38157
  },
38248
38158
  {
38249
38159
  "kind": "field",
38250
- "name": "activeindicator",
38160
+ "name": "readOnly",
38251
38161
  "type": {
38252
38162
  "text": "boolean"
38253
38163
  },
38254
38164
  "privacy": "public",
38255
- "default": "true",
38256
- "description": "Whether or not to show the active indicator",
38165
+ "description": "When true, the control will be immutable by user interaction. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute} for more information.",
38257
38166
  "inheritedFrom": {
38258
- "name": "Tabs",
38259
- "module": "src/tabs/tabs.ts"
38167
+ "name": "TextField",
38168
+ "module": "src/text-field/text-field.ts"
38260
38169
  }
38261
38170
  },
38262
38171
  {
38263
- "kind": "field",
38264
- "name": "activetab",
38265
- "type": {
38266
- "text": "HTMLElement"
38172
+ "kind": "method",
38173
+ "name": "readOnlyChanged",
38174
+ "privacy": "private",
38175
+ "return": {
38176
+ "type": {
38177
+ "text": "void"
38178
+ }
38267
38179
  },
38268
- "privacy": "public",
38269
- "description": "A reference to the active tab",
38270
38180
  "inheritedFrom": {
38271
- "name": "Tabs",
38272
- "module": "src/tabs/tabs.ts"
38181
+ "name": "TextField",
38182
+ "module": "src/text-field/text-field.ts"
38273
38183
  }
38274
38184
  },
38275
38185
  {
38276
38186
  "kind": "field",
38277
- "name": "prevActiveTabIndex",
38187
+ "name": "autofocus",
38278
38188
  "type": {
38279
- "text": "number"
38189
+ "text": "boolean"
38280
38190
  },
38281
- "privacy": "private",
38282
- "default": "0",
38191
+ "privacy": "public",
38192
+ "description": "Indicates that this element should get focus after the page finishes loading. See {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautofocus | autofocus HTML attribute} for more information.",
38283
38193
  "inheritedFrom": {
38284
- "name": "Tabs",
38285
- "module": "src/tabs/tabs.ts"
38194
+ "name": "TextField",
38195
+ "module": "src/text-field/text-field.ts"
38286
38196
  }
38287
38197
  },
38288
38198
  {
38289
- "kind": "field",
38290
- "name": "activeTabIndex",
38291
- "type": {
38292
- "text": "number"
38293
- },
38199
+ "kind": "method",
38200
+ "name": "autofocusChanged",
38294
38201
  "privacy": "private",
38295
- "default": "0",
38202
+ "return": {
38203
+ "type": {
38204
+ "text": "void"
38205
+ }
38206
+ },
38296
38207
  "inheritedFrom": {
38297
- "name": "Tabs",
38298
- "module": "src/tabs/tabs.ts"
38208
+ "name": "TextField",
38209
+ "module": "src/text-field/text-field.ts"
38299
38210
  }
38300
38211
  },
38301
38212
  {
38302
38213
  "kind": "field",
38303
- "name": "ticking",
38214
+ "name": "placeholder",
38304
38215
  "type": {
38305
- "text": "boolean"
38216
+ "text": "string"
38306
38217
  },
38307
- "privacy": "private",
38308
- "default": "false",
38218
+ "privacy": "public",
38219
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
38309
38220
  "inheritedFrom": {
38310
- "name": "Tabs",
38311
- "module": "src/tabs/tabs.ts"
38221
+ "name": "TextField",
38222
+ "module": "src/text-field/text-field.ts"
38312
38223
  }
38313
38224
  },
38314
38225
  {
38315
- "kind": "field",
38316
- "name": "tabIds",
38317
- "type": {
38318
- "text": "Array<string>"
38319
- },
38226
+ "kind": "method",
38227
+ "name": "placeholderChanged",
38320
38228
  "privacy": "private",
38229
+ "return": {
38230
+ "type": {
38231
+ "text": "void"
38232
+ }
38233
+ },
38321
38234
  "inheritedFrom": {
38322
- "name": "Tabs",
38323
- "module": "src/tabs/tabs.ts"
38235
+ "name": "TextField",
38236
+ "module": "src/text-field/text-field.ts"
38324
38237
  }
38325
38238
  },
38326
38239
  {
38327
38240
  "kind": "field",
38328
- "name": "tabpanelIds",
38241
+ "name": "type",
38329
38242
  "type": {
38330
- "text": "Array<string>"
38243
+ "text": "TextFieldType"
38331
38244
  },
38332
- "privacy": "private",
38245
+ "privacy": "public",
38246
+ "description": "Allows setting a type or mode of text.",
38333
38247
  "inheritedFrom": {
38334
- "name": "Tabs",
38335
- "module": "src/tabs/tabs.ts"
38248
+ "name": "TextField",
38249
+ "module": "src/text-field/text-field.ts"
38336
38250
  }
38337
38251
  },
38338
38252
  {
38339
- "kind": "field",
38340
- "name": "change",
38253
+ "kind": "method",
38254
+ "name": "typeChanged",
38341
38255
  "privacy": "private",
38256
+ "return": {
38257
+ "type": {
38258
+ "text": "void"
38259
+ }
38260
+ },
38342
38261
  "inheritedFrom": {
38343
- "name": "Tabs",
38344
- "module": "src/tabs/tabs.ts"
38262
+ "name": "TextField",
38263
+ "module": "src/text-field/text-field.ts"
38345
38264
  }
38346
38265
  },
38347
38266
  {
38348
38267
  "kind": "field",
38349
- "name": "isDisabledElement",
38350
- "privacy": "private",
38268
+ "name": "list",
38269
+ "type": {
38270
+ "text": "string"
38271
+ },
38272
+ "privacy": "public",
38273
+ "description": "Allows associating a {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist} to the element by {@link https://developer.mozilla.org/en-US/docs/Web/API/Element/id}.",
38351
38274
  "inheritedFrom": {
38352
- "name": "Tabs",
38353
- "module": "src/tabs/tabs.ts"
38275
+ "name": "TextField",
38276
+ "module": "src/text-field/text-field.ts"
38354
38277
  }
38355
38278
  },
38356
38279
  {
38357
- "kind": "field",
38358
- "name": "isHiddenElement",
38280
+ "kind": "method",
38281
+ "name": "listChanged",
38359
38282
  "privacy": "private",
38283
+ "return": {
38284
+ "type": {
38285
+ "text": "void"
38286
+ }
38287
+ },
38360
38288
  "inheritedFrom": {
38361
- "name": "Tabs",
38362
- "module": "src/tabs/tabs.ts"
38289
+ "name": "TextField",
38290
+ "module": "src/text-field/text-field.ts"
38363
38291
  }
38364
38292
  },
38365
38293
  {
38366
38294
  "kind": "field",
38367
- "name": "isFocusableElement",
38368
- "privacy": "private",
38295
+ "name": "maxlength",
38296
+ "type": {
38297
+ "text": "number"
38298
+ },
38299
+ "privacy": "public",
38300
+ "description": "The maximum number of characters a user can enter.",
38369
38301
  "inheritedFrom": {
38370
- "name": "Tabs",
38371
- "module": "src/tabs/tabs.ts"
38302
+ "name": "TextField",
38303
+ "module": "src/text-field/text-field.ts"
38372
38304
  }
38373
38305
  },
38374
38306
  {
38375
38307
  "kind": "method",
38376
- "name": "getActiveIndex",
38308
+ "name": "maxlengthChanged",
38377
38309
  "privacy": "private",
38378
38310
  "return": {
38379
38311
  "type": {
38380
- "text": "number"
38312
+ "text": "void"
38381
38313
  }
38382
38314
  },
38383
38315
  "inheritedFrom": {
38384
- "name": "Tabs",
38385
- "module": "src/tabs/tabs.ts"
38386
- }
38387
- },
38388
- {
38389
- "kind": "field",
38390
- "name": "setTabs",
38391
- "privacy": "private",
38392
- "inheritedFrom": {
38393
- "name": "Tabs",
38394
- "module": "src/tabs/tabs.ts"
38316
+ "name": "TextField",
38317
+ "module": "src/text-field/text-field.ts"
38395
38318
  }
38396
38319
  },
38397
38320
  {
38398
38321
  "kind": "field",
38399
- "name": "setTabPanels",
38400
- "privacy": "private",
38322
+ "name": "minlength",
38323
+ "type": {
38324
+ "text": "number"
38325
+ },
38326
+ "privacy": "public",
38327
+ "description": "The minimum number of characters a user can enter.",
38401
38328
  "inheritedFrom": {
38402
- "name": "Tabs",
38403
- "module": "src/tabs/tabs.ts"
38329
+ "name": "TextField",
38330
+ "module": "src/text-field/text-field.ts"
38404
38331
  }
38405
38332
  },
38406
38333
  {
38407
38334
  "kind": "method",
38408
- "name": "getTabIds",
38335
+ "name": "minlengthChanged",
38409
38336
  "privacy": "private",
38410
38337
  "return": {
38411
38338
  "type": {
38412
- "text": "Array<string>"
38339
+ "text": "void"
38413
38340
  }
38414
38341
  },
38415
38342
  "inheritedFrom": {
38416
- "name": "Tabs",
38417
- "module": "src/tabs/tabs.ts"
38343
+ "name": "TextField",
38344
+ "module": "src/text-field/text-field.ts"
38418
38345
  }
38419
38346
  },
38420
38347
  {
38421
- "kind": "method",
38422
- "name": "getTabPanelIds",
38423
- "privacy": "private",
38424
- "return": {
38425
- "type": {
38426
- "text": "Array<string>"
38427
- }
38348
+ "kind": "field",
38349
+ "name": "pattern",
38350
+ "type": {
38351
+ "text": "string"
38428
38352
  },
38353
+ "privacy": "public",
38354
+ "description": "A regular expression that the value must match to pass validation.",
38429
38355
  "inheritedFrom": {
38430
- "name": "Tabs",
38431
- "module": "src/tabs/tabs.ts"
38356
+ "name": "TextField",
38357
+ "module": "src/text-field/text-field.ts"
38432
38358
  }
38433
38359
  },
38434
38360
  {
38435
38361
  "kind": "method",
38436
- "name": "setComponent",
38362
+ "name": "patternChanged",
38437
38363
  "privacy": "private",
38438
38364
  "return": {
38439
38365
  "type": {
@@ -38441,54 +38367,53 @@
38441
38367
  }
38442
38368
  },
38443
38369
  "inheritedFrom": {
38444
- "name": "Tabs",
38445
- "module": "src/tabs/tabs.ts"
38370
+ "name": "TextField",
38371
+ "module": "src/text-field/text-field.ts"
38446
38372
  }
38447
38373
  },
38448
38374
  {
38449
38375
  "kind": "field",
38450
- "name": "handleTabClick",
38451
- "privacy": "private",
38376
+ "name": "size",
38377
+ "type": {
38378
+ "text": "number"
38379
+ },
38380
+ "privacy": "public",
38381
+ "description": "Sets the width of the element to a specified number of characters.",
38452
38382
  "inheritedFrom": {
38453
- "name": "Tabs",
38454
- "module": "src/tabs/tabs.ts"
38383
+ "name": "TextField",
38384
+ "module": "src/text-field/text-field.ts"
38455
38385
  }
38456
38386
  },
38457
38387
  {
38458
38388
  "kind": "method",
38459
- "name": "isHorizontal",
38389
+ "name": "sizeChanged",
38460
38390
  "privacy": "private",
38461
38391
  "return": {
38462
38392
  "type": {
38463
- "text": "boolean"
38393
+ "text": "void"
38464
38394
  }
38465
38395
  },
38466
38396
  "inheritedFrom": {
38467
- "name": "Tabs",
38468
- "module": "src/tabs/tabs.ts"
38397
+ "name": "TextField",
38398
+ "module": "src/text-field/text-field.ts"
38469
38399
  }
38470
38400
  },
38471
38401
  {
38472
38402
  "kind": "field",
38473
- "name": "handleTabKeyDown",
38474
- "privacy": "private",
38475
- "inheritedFrom": {
38476
- "name": "Tabs",
38477
- "module": "src/tabs/tabs.ts"
38478
- }
38479
- },
38480
- {
38481
- "kind": "method",
38482
- "name": "handleActiveIndicatorPosition",
38483
- "privacy": "private",
38403
+ "name": "spellcheck",
38404
+ "type": {
38405
+ "text": "boolean"
38406
+ },
38407
+ "privacy": "public",
38408
+ "description": "Controls whether or not to enable spell checking for the input field, or if the default spell checking configuration should be used.",
38484
38409
  "inheritedFrom": {
38485
- "name": "Tabs",
38486
- "module": "src/tabs/tabs.ts"
38410
+ "name": "TextField",
38411
+ "module": "src/text-field/text-field.ts"
38487
38412
  }
38488
38413
  },
38489
38414
  {
38490
38415
  "kind": "method",
38491
- "name": "animateActiveIndicator",
38416
+ "name": "spellcheckChanged",
38492
38417
  "privacy": "private",
38493
38418
  "return": {
38494
38419
  "type": {
@@ -38496,72 +38421,46 @@
38496
38421
  }
38497
38422
  },
38498
38423
  "inheritedFrom": {
38499
- "name": "Tabs",
38500
- "module": "src/tabs/tabs.ts"
38424
+ "name": "TextField",
38425
+ "module": "src/text-field/text-field.ts"
38501
38426
  }
38502
38427
  },
38503
38428
  {
38504
38429
  "kind": "method",
38505
- "name": "adjust",
38430
+ "name": "select",
38506
38431
  "privacy": "public",
38507
38432
  "return": {
38508
38433
  "type": {
38509
38434
  "text": "void"
38510
38435
  }
38511
38436
  },
38512
- "parameters": [
38513
- {
38514
- "name": "adjustment",
38515
- "type": {
38516
- "text": "number"
38517
- }
38518
- }
38519
- ],
38520
- "description": "The adjust method for FASTTabs",
38521
- "inheritedFrom": {
38522
- "name": "Tabs",
38523
- "module": "src/tabs/tabs.ts"
38524
- }
38525
- },
38526
- {
38527
- "kind": "field",
38528
- "name": "adjustForward",
38529
- "privacy": "private",
38530
- "inheritedFrom": {
38531
- "name": "Tabs",
38532
- "module": "src/tabs/tabs.ts"
38533
- }
38534
- },
38535
- {
38536
- "kind": "field",
38537
- "name": "adjustBackward",
38538
- "privacy": "private",
38539
- "inheritedFrom": {
38540
- "name": "Tabs",
38541
- "module": "src/tabs/tabs.ts"
38542
- }
38543
- },
38544
- {
38545
- "kind": "field",
38546
- "name": "moveToTabByIndex",
38547
- "privacy": "private",
38437
+ "description": "Selects all the text in the text field",
38548
38438
  "inheritedFrom": {
38549
- "name": "Tabs",
38550
- "module": "src/tabs/tabs.ts"
38439
+ "name": "TextField",
38440
+ "module": "src/text-field/text-field.ts"
38551
38441
  }
38552
38442
  },
38553
38443
  {
38554
38444
  "kind": "method",
38555
- "name": "focusTab",
38556
- "privacy": "private",
38445
+ "name": "validate",
38446
+ "privacy": "public",
38557
38447
  "return": {
38558
38448
  "type": {
38559
38449
  "text": "void"
38560
38450
  }
38561
38451
  },
38452
+ "description": "{@inheritDoc (FormAssociated:interface).validate}",
38562
38453
  "inheritedFrom": {
38563
- "name": "Tabs",
38564
- "module": "src/tabs/tabs.ts"
38454
+ "name": "TextField",
38455
+ "module": "src/text-field/text-field.ts"
38456
+ }
38457
+ },
38458
+ {
38459
+ "kind": "field",
38460
+ "name": "proxy",
38461
+ "inheritedFrom": {
38462
+ "name": "TextField",
38463
+ "module": "src/text-field/text-field.ts"
38565
38464
  }
38566
38465
  },
38567
38466
  {
@@ -38573,8 +38472,8 @@
38573
38472
  "privacy": "private",
38574
38473
  "default": "void 0",
38575
38474
  "inheritedFrom": {
38576
- "name": "FoundationElement",
38577
- "module": "src/foundation-element/foundation-element.ts"
38475
+ "name": "TextField",
38476
+ "module": "src/text-field/text-field.ts"
38578
38477
  }
38579
38478
  },
38580
38479
  {
@@ -38586,8 +38485,8 @@
38586
38485
  "privacy": "public",
38587
38486
  "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
38588
38487
  "inheritedFrom": {
38589
- "name": "FoundationElement",
38590
- "module": "src/foundation-element/foundation-element.ts"
38488
+ "name": "TextField",
38489
+ "module": "src/text-field/text-field.ts"
38591
38490
  }
38592
38491
  },
38593
38492
  {
@@ -38599,8 +38498,8 @@
38599
38498
  "privacy": "public",
38600
38499
  "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
38601
38500
  "inheritedFrom": {
38602
- "name": "FoundationElement",
38603
- "module": "src/foundation-element/foundation-element.ts"
38501
+ "name": "TextField",
38502
+ "module": "src/text-field/text-field.ts"
38604
38503
  }
38605
38504
  },
38606
38505
  {
@@ -38613,8 +38512,8 @@
38613
38512
  }
38614
38513
  },
38615
38514
  "inheritedFrom": {
38616
- "name": "FoundationElement",
38617
- "module": "src/foundation-element/foundation-element.ts"
38515
+ "name": "TextField",
38516
+ "module": "src/text-field/text-field.ts"
38618
38517
  }
38619
38518
  },
38620
38519
  {
@@ -38626,8 +38525,8 @@
38626
38525
  "privacy": "public",
38627
38526
  "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
38628
38527
  "inheritedFrom": {
38629
- "name": "FoundationElement",
38630
- "module": "src/foundation-element/foundation-element.ts"
38528
+ "name": "TextField",
38529
+ "module": "src/text-field/text-field.ts"
38631
38530
  }
38632
38531
  },
38633
38532
  {
@@ -38640,8 +38539,8 @@
38640
38539
  }
38641
38540
  },
38642
38541
  "inheritedFrom": {
38643
- "name": "FoundationElement",
38644
- "module": "src/foundation-element/foundation-element.ts"
38542
+ "name": "TextField",
38543
+ "module": "src/text-field/text-field.ts"
38645
38544
  }
38646
38545
  },
38647
38546
  {
@@ -38671,33 +38570,134 @@
38671
38570
  ],
38672
38571
  "description": "Defines an element registry function with a set of element definition defaults.",
38673
38572
  "inheritedFrom": {
38674
- "name": "FoundationElement",
38675
- "module": "src/foundation-element/foundation-element.ts"
38573
+ "name": "TextField",
38574
+ "module": "src/text-field/text-field.ts"
38676
38575
  }
38677
38576
  }
38678
38577
  ],
38578
+ "attributes": [
38579
+ {
38580
+ "name": "autocomplete",
38581
+ "type": {
38582
+ "text": "string"
38583
+ },
38584
+ "fieldName": "autocomplete"
38585
+ },
38586
+ {
38587
+ "name": "autocapitalize",
38588
+ "type": {
38589
+ "text": "string"
38590
+ },
38591
+ "default": "'off'",
38592
+ "fieldName": "autocapitalize"
38593
+ },
38594
+ {
38595
+ "name": "step",
38596
+ "type": {
38597
+ "text": "number"
38598
+ },
38599
+ "fieldName": "step"
38600
+ },
38601
+ {
38602
+ "name": "readonly",
38603
+ "type": {
38604
+ "text": "boolean"
38605
+ },
38606
+ "description": "When true, the control will be immutable by user interaction. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/readonly | readonly HTML attribute for more information.",
38607
+ "fieldName": "readOnly",
38608
+ "inheritedFrom": {
38609
+ "name": "TextField",
38610
+ "module": "src/text-field/text-field.ts"
38611
+ }
38612
+ },
38613
+ {
38614
+ "type": {
38615
+ "text": "boolean"
38616
+ },
38617
+ "description": "Indicates that this element should get focus after the page finishes loading. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautofocus | autofocus HTML attribute for more information.",
38618
+ "fieldName": "autofocus",
38619
+ "inheritedFrom": {
38620
+ "name": "TextField",
38621
+ "module": "src/text-field/text-field.ts"
38622
+ }
38623
+ },
38624
+ {
38625
+ "name": "placeholder",
38626
+ "type": {
38627
+ "text": "string"
38628
+ },
38629
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
38630
+ "fieldName": "placeholder",
38631
+ "inheritedFrom": {
38632
+ "name": "TextField",
38633
+ "module": "src/text-field/text-field.ts"
38634
+ }
38635
+ },
38636
+ {
38637
+ "name": "type",
38638
+ "type": {
38639
+ "text": "TextFieldType"
38640
+ },
38641
+ "description": "Allows setting a type or mode of text.",
38642
+ "fieldName": "type",
38643
+ "inheritedFrom": {
38644
+ "name": "TextField",
38645
+ "module": "src/text-field/text-field.ts"
38646
+ }
38647
+ },
38648
+ {
38649
+ "name": "list",
38650
+ "type": {
38651
+ "text": "string"
38652
+ },
38653
+ "description": "Allows associating a https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist | datalist to the element by https://developer.mozilla.org/en-US/docs/Web/API/Element/id.",
38654
+ "fieldName": "list",
38655
+ "inheritedFrom": {
38656
+ "name": "TextField",
38657
+ "module": "src/text-field/text-field.ts"
38658
+ }
38659
+ },
38660
+ {
38661
+ "name": "pattern",
38662
+ "type": {
38663
+ "text": "string"
38664
+ },
38665
+ "description": "A regular expression that the value must match to pass validation.",
38666
+ "fieldName": "pattern",
38667
+ "inheritedFrom": {
38668
+ "name": "TextField",
38669
+ "module": "src/text-field/text-field.ts"
38670
+ }
38671
+ }
38672
+ ],
38673
+ "superclass": {
38674
+ "name": "FASTTextField",
38675
+ "package": "@microsoft/fast-components"
38676
+ },
38677
+ "tagName": "%%prefix%%-text-field",
38678
+ "customElement": true,
38679
38679
  "events": [
38680
38680
  {
38681
- "description": "Fires a custom 'change' event when a tab is clicked or during keyboard navigation",
38681
+ "description": "Fires a custom 'change' event when the value has changed",
38682
38682
  "name": "change",
38683
38683
  "inheritedFrom": {
38684
- "name": "Tabs",
38685
- "module": "src/tabs/tabs.ts"
38684
+ "name": "TextField",
38685
+ "module": "src/text-field/text-field.ts"
38686
38686
  }
38687
38687
  }
38688
38688
  ]
38689
38689
  },
38690
38690
  {
38691
38691
  "kind": "variable",
38692
- "name": "foundationTabsShadowOptions",
38692
+ "name": "foundationTextFieldShadowOptions",
38693
38693
  "type": {
38694
38694
  "text": "ShadowRootInit"
38695
38695
  },
38696
- "default": "undefined"
38696
+ "default": "{\n mode: 'open',\n delegatesFocus: true,\n}"
38697
38697
  },
38698
38698
  {
38699
38699
  "kind": "variable",
38700
- "name": "defaultTabsConfig",
38700
+ "name": "defaultTextFieldConfig",
38701
38701
  "type": {
38702
38702
  "text": "object"
38703
38703
  },
@@ -38705,42 +38705,42 @@
38705
38705
  },
38706
38706
  {
38707
38707
  "kind": "variable",
38708
- "name": "foundationTabs",
38709
- "description": "The Foundation Tabs",
38708
+ "name": "foundationTextField",
38709
+ "description": "The Foundation Text Fields",
38710
38710
  "privacy": "public"
38711
38711
  }
38712
38712
  ],
38713
38713
  "exports": [
38714
38714
  {
38715
38715
  "kind": "js",
38716
- "name": "Tabs",
38716
+ "name": "TextField",
38717
38717
  "declaration": {
38718
- "name": "Tabs",
38719
- "module": "src/tabs/tabs.ts"
38718
+ "name": "TextField",
38719
+ "module": "src/text-field/text-field.ts"
38720
38720
  }
38721
38721
  },
38722
38722
  {
38723
38723
  "kind": "js",
38724
- "name": "foundationTabsShadowOptions",
38724
+ "name": "foundationTextFieldShadowOptions",
38725
38725
  "declaration": {
38726
- "name": "foundationTabsShadowOptions",
38727
- "module": "src/tabs/tabs.ts"
38726
+ "name": "foundationTextFieldShadowOptions",
38727
+ "module": "src/text-field/text-field.ts"
38728
38728
  }
38729
38729
  },
38730
38730
  {
38731
38731
  "kind": "js",
38732
- "name": "defaultTabsConfig",
38732
+ "name": "defaultTextFieldConfig",
38733
38733
  "declaration": {
38734
- "name": "defaultTabsConfig",
38735
- "module": "src/tabs/tabs.ts"
38734
+ "name": "defaultTextFieldConfig",
38735
+ "module": "src/text-field/text-field.ts"
38736
38736
  }
38737
38737
  },
38738
38738
  {
38739
38739
  "kind": "js",
38740
- "name": "foundationTabs",
38740
+ "name": "foundationTextField",
38741
38741
  "declaration": {
38742
- "name": "foundationTabs",
38743
- "module": "src/tabs/tabs.ts"
38742
+ "name": "foundationTextField",
38743
+ "module": "src/text-field/text-field.ts"
38744
38744
  }
38745
38745
  }
38746
38746
  ]
@@ -40270,188 +40270,6 @@
40270
40270
  }
40271
40271
  ]
40272
40272
  },
40273
- {
40274
- "kind": "javascript-module",
40275
- "path": "src/tree-view/index.ts",
40276
- "declarations": [],
40277
- "exports": [
40278
- {
40279
- "kind": "js",
40280
- "name": "*",
40281
- "declaration": {
40282
- "name": "*",
40283
- "package": "./tree-view.template"
40284
- }
40285
- },
40286
- {
40287
- "kind": "js",
40288
- "name": "*",
40289
- "declaration": {
40290
- "name": "*",
40291
- "package": "./tree-view.styles"
40292
- }
40293
- },
40294
- {
40295
- "kind": "js",
40296
- "name": "*",
40297
- "declaration": {
40298
- "name": "*",
40299
- "package": "./tree-view"
40300
- }
40301
- }
40302
- ]
40303
- },
40304
- {
40305
- "kind": "javascript-module",
40306
- "path": "src/tree-view/tree-view.styles.ts",
40307
- "declarations": [
40308
- {
40309
- "kind": "function",
40310
- "name": "foundationTreeViewStyles",
40311
- "return": {
40312
- "type": {
40313
- "text": "ElementStyles"
40314
- }
40315
- },
40316
- "parameters": [
40317
- {
40318
- "name": "context",
40319
- "type": {
40320
- "text": "ElementDefinitionContext"
40321
- }
40322
- },
40323
- {
40324
- "name": "definition",
40325
- "type": {
40326
- "text": "FoundationElementDefinition"
40327
- }
40328
- }
40329
- ]
40330
- }
40331
- ],
40332
- "exports": [
40333
- {
40334
- "kind": "js",
40335
- "name": "foundationTreeViewStyles",
40336
- "declaration": {
40337
- "name": "foundationTreeViewStyles",
40338
- "module": "src/tree-view/tree-view.styles.ts"
40339
- }
40340
- }
40341
- ]
40342
- },
40343
- {
40344
- "kind": "javascript-module",
40345
- "path": "src/tree-view/tree-view.template.ts",
40346
- "declarations": [
40347
- {
40348
- "kind": "function",
40349
- "name": "foundationTreeViewTemplate",
40350
- "return": {
40351
- "type": {
40352
- "text": "ViewTemplate<TreeView>"
40353
- }
40354
- },
40355
- "parameters": [
40356
- {
40357
- "name": "context",
40358
- "type": {
40359
- "text": "ElementDefinitionContext"
40360
- }
40361
- },
40362
- {
40363
- "name": "definition",
40364
- "type": {
40365
- "text": "FoundationElementDefinition"
40366
- }
40367
- }
40368
- ]
40369
- }
40370
- ],
40371
- "exports": [
40372
- {
40373
- "kind": "js",
40374
- "name": "foundationTreeViewTemplate",
40375
- "declaration": {
40376
- "name": "foundationTreeViewTemplate",
40377
- "module": "src/tree-view/tree-view.template.ts"
40378
- }
40379
- }
40380
- ]
40381
- },
40382
- {
40383
- "kind": "javascript-module",
40384
- "path": "src/tree-view/tree-view.ts",
40385
- "declarations": [
40386
- {
40387
- "kind": "class",
40388
- "description": "",
40389
- "name": "TreeView",
40390
- "superclass": {
40391
- "name": "FASTTreeView",
40392
- "package": "@microsoft/fast-foundation"
40393
- },
40394
- "tagName": "%%prefix%%-tree-view",
40395
- "customElement": true
40396
- },
40397
- {
40398
- "kind": "variable",
40399
- "name": "foundationTreeViewShadowOptions",
40400
- "type": {
40401
- "text": "ShadowRootInit"
40402
- },
40403
- "default": "undefined"
40404
- },
40405
- {
40406
- "kind": "variable",
40407
- "name": "defaultTreeViewConfig",
40408
- "type": {
40409
- "text": "object"
40410
- },
40411
- "default": "{}"
40412
- },
40413
- {
40414
- "kind": "variable",
40415
- "name": "foundationTreeView",
40416
- "description": "The Foundation Tree View",
40417
- "privacy": "public"
40418
- }
40419
- ],
40420
- "exports": [
40421
- {
40422
- "kind": "js",
40423
- "name": "TreeView",
40424
- "declaration": {
40425
- "name": "TreeView",
40426
- "module": "src/tree-view/tree-view.ts"
40427
- }
40428
- },
40429
- {
40430
- "kind": "js",
40431
- "name": "foundationTreeViewShadowOptions",
40432
- "declaration": {
40433
- "name": "foundationTreeViewShadowOptions",
40434
- "module": "src/tree-view/tree-view.ts"
40435
- }
40436
- },
40437
- {
40438
- "kind": "js",
40439
- "name": "defaultTreeViewConfig",
40440
- "declaration": {
40441
- "name": "defaultTreeViewConfig",
40442
- "module": "src/tree-view/tree-view.ts"
40443
- }
40444
- },
40445
- {
40446
- "kind": "js",
40447
- "name": "foundationTreeView",
40448
- "declaration": {
40449
- "name": "foundationTreeView",
40450
- "module": "src/tree-view/tree-view.ts"
40451
- }
40452
- }
40453
- ]
40454
- },
40455
40273
  {
40456
40274
  "kind": "javascript-module",
40457
40275
  "path": "src/tree-item/index.ts",
@@ -40903,6 +40721,188 @@
40903
40721
  }
40904
40722
  ]
40905
40723
  },
40724
+ {
40725
+ "kind": "javascript-module",
40726
+ "path": "src/tree-view/index.ts",
40727
+ "declarations": [],
40728
+ "exports": [
40729
+ {
40730
+ "kind": "js",
40731
+ "name": "*",
40732
+ "declaration": {
40733
+ "name": "*",
40734
+ "package": "./tree-view.template"
40735
+ }
40736
+ },
40737
+ {
40738
+ "kind": "js",
40739
+ "name": "*",
40740
+ "declaration": {
40741
+ "name": "*",
40742
+ "package": "./tree-view.styles"
40743
+ }
40744
+ },
40745
+ {
40746
+ "kind": "js",
40747
+ "name": "*",
40748
+ "declaration": {
40749
+ "name": "*",
40750
+ "package": "./tree-view"
40751
+ }
40752
+ }
40753
+ ]
40754
+ },
40755
+ {
40756
+ "kind": "javascript-module",
40757
+ "path": "src/tree-view/tree-view.styles.ts",
40758
+ "declarations": [
40759
+ {
40760
+ "kind": "function",
40761
+ "name": "foundationTreeViewStyles",
40762
+ "return": {
40763
+ "type": {
40764
+ "text": "ElementStyles"
40765
+ }
40766
+ },
40767
+ "parameters": [
40768
+ {
40769
+ "name": "context",
40770
+ "type": {
40771
+ "text": "ElementDefinitionContext"
40772
+ }
40773
+ },
40774
+ {
40775
+ "name": "definition",
40776
+ "type": {
40777
+ "text": "FoundationElementDefinition"
40778
+ }
40779
+ }
40780
+ ]
40781
+ }
40782
+ ],
40783
+ "exports": [
40784
+ {
40785
+ "kind": "js",
40786
+ "name": "foundationTreeViewStyles",
40787
+ "declaration": {
40788
+ "name": "foundationTreeViewStyles",
40789
+ "module": "src/tree-view/tree-view.styles.ts"
40790
+ }
40791
+ }
40792
+ ]
40793
+ },
40794
+ {
40795
+ "kind": "javascript-module",
40796
+ "path": "src/tree-view/tree-view.template.ts",
40797
+ "declarations": [
40798
+ {
40799
+ "kind": "function",
40800
+ "name": "foundationTreeViewTemplate",
40801
+ "return": {
40802
+ "type": {
40803
+ "text": "ViewTemplate<TreeView>"
40804
+ }
40805
+ },
40806
+ "parameters": [
40807
+ {
40808
+ "name": "context",
40809
+ "type": {
40810
+ "text": "ElementDefinitionContext"
40811
+ }
40812
+ },
40813
+ {
40814
+ "name": "definition",
40815
+ "type": {
40816
+ "text": "FoundationElementDefinition"
40817
+ }
40818
+ }
40819
+ ]
40820
+ }
40821
+ ],
40822
+ "exports": [
40823
+ {
40824
+ "kind": "js",
40825
+ "name": "foundationTreeViewTemplate",
40826
+ "declaration": {
40827
+ "name": "foundationTreeViewTemplate",
40828
+ "module": "src/tree-view/tree-view.template.ts"
40829
+ }
40830
+ }
40831
+ ]
40832
+ },
40833
+ {
40834
+ "kind": "javascript-module",
40835
+ "path": "src/tree-view/tree-view.ts",
40836
+ "declarations": [
40837
+ {
40838
+ "kind": "class",
40839
+ "description": "",
40840
+ "name": "TreeView",
40841
+ "superclass": {
40842
+ "name": "FASTTreeView",
40843
+ "package": "@microsoft/fast-foundation"
40844
+ },
40845
+ "tagName": "%%prefix%%-tree-view",
40846
+ "customElement": true
40847
+ },
40848
+ {
40849
+ "kind": "variable",
40850
+ "name": "foundationTreeViewShadowOptions",
40851
+ "type": {
40852
+ "text": "ShadowRootInit"
40853
+ },
40854
+ "default": "undefined"
40855
+ },
40856
+ {
40857
+ "kind": "variable",
40858
+ "name": "defaultTreeViewConfig",
40859
+ "type": {
40860
+ "text": "object"
40861
+ },
40862
+ "default": "{}"
40863
+ },
40864
+ {
40865
+ "kind": "variable",
40866
+ "name": "foundationTreeView",
40867
+ "description": "The Foundation Tree View",
40868
+ "privacy": "public"
40869
+ }
40870
+ ],
40871
+ "exports": [
40872
+ {
40873
+ "kind": "js",
40874
+ "name": "TreeView",
40875
+ "declaration": {
40876
+ "name": "TreeView",
40877
+ "module": "src/tree-view/tree-view.ts"
40878
+ }
40879
+ },
40880
+ {
40881
+ "kind": "js",
40882
+ "name": "foundationTreeViewShadowOptions",
40883
+ "declaration": {
40884
+ "name": "foundationTreeViewShadowOptions",
40885
+ "module": "src/tree-view/tree-view.ts"
40886
+ }
40887
+ },
40888
+ {
40889
+ "kind": "js",
40890
+ "name": "defaultTreeViewConfig",
40891
+ "declaration": {
40892
+ "name": "defaultTreeViewConfig",
40893
+ "module": "src/tree-view/tree-view.ts"
40894
+ }
40895
+ },
40896
+ {
40897
+ "kind": "js",
40898
+ "name": "foundationTreeView",
40899
+ "declaration": {
40900
+ "name": "foundationTreeView",
40901
+ "module": "src/tree-view/tree-view.ts"
40902
+ }
40903
+ }
40904
+ ]
40905
+ },
40906
40906
  {
40907
40907
  "kind": "javascript-module",
40908
40908
  "path": "src/url-input/index.ts",