@fluentui/web-components 3.0.0-rc.12 → 3.0.0-rc.13

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.
@@ -18776,18 +18776,12 @@
18776
18776
  },
18777
18777
  {
18778
18778
  "kind": "javascript-module",
18779
- "path": "./dist/esm/menu-list/menu-list.js",
18779
+ "path": "./dist/esm/menu-list/menu-list.base.js",
18780
18780
  "declarations": [
18781
18781
  {
18782
18782
  "kind": "class",
18783
- "description": "A Menu Custom HTML Element.\nImplements the https://www.w3.org/TR/wai-aria-1.1/#menu | ARIA menu .",
18784
- "name": "MenuList",
18785
- "slots": [
18786
- {
18787
- "description": "The default slot for the menu items",
18788
- "name": ""
18789
- }
18790
- ],
18783
+ "description": "A Base Menu List Custom HTML Element.\nImplements the https://www.w3.org/TR/wai-aria-1.1/#menu | ARIA menu .",
18784
+ "name": "BaseMenuList",
18791
18785
  "members": [
18792
18786
  {
18793
18787
  "kind": "method",
@@ -18977,10 +18971,294 @@
18977
18971
  "name": "FASTElement",
18978
18972
  "package": "@microsoft/fast-element"
18979
18973
  },
18974
+ "customElement": true,
18975
+ "modulePath": "./dist/esm/menu-list/menu-list.base.js",
18976
+ "definitionPath": "./dist/esm/menu-list/define.js"
18977
+ }
18978
+ ],
18979
+ "exports": [
18980
+ {
18981
+ "kind": "js",
18982
+ "name": "BaseMenuList",
18983
+ "declaration": {
18984
+ "name": "BaseMenuList",
18985
+ "module": "src/menu-list/menu-list.base.ts"
18986
+ }
18987
+ }
18988
+ ]
18989
+ },
18990
+ {
18991
+ "kind": "javascript-module",
18992
+ "path": "./dist/esm/menu-list/menu-list.js",
18993
+ "declarations": [
18994
+ {
18995
+ "kind": "class",
18996
+ "description": "A Menu List Custom HTML Element.\nImplements the https://www.w3.org/TR/wai-aria-1.1/#menu | ARIA menu .",
18997
+ "name": "MenuList",
18998
+ "slots": [
18999
+ {
19000
+ "description": "The default slot for the menu items",
19001
+ "name": ""
19002
+ }
19003
+ ],
19004
+ "superclass": {
19005
+ "name": "BaseMenuList",
19006
+ "module": "/src/menu-list/menu-list.base.js"
19007
+ },
18980
19008
  "tagName": "fluent-menu-list",
18981
19009
  "customElement": true,
19010
+ "members": [
19011
+ {
19012
+ "kind": "method",
19013
+ "name": "itemsChanged",
19014
+ "privacy": "protected",
19015
+ "return": {
19016
+ "type": {
19017
+ "text": "void"
19018
+ }
19019
+ },
19020
+ "parameters": [
19021
+ {
19022
+ "name": "oldValue",
19023
+ "type": {
19024
+ "text": "HTMLElement[]"
19025
+ }
19026
+ },
19027
+ {
19028
+ "name": "newValue",
19029
+ "type": {
19030
+ "text": "HTMLElement[]"
19031
+ }
19032
+ }
19033
+ ],
19034
+ "inheritedFrom": {
19035
+ "name": "BaseMenuList",
19036
+ "module": "src/menu-list/menu-list.base.ts"
19037
+ }
19038
+ },
19039
+ {
19040
+ "kind": "field",
19041
+ "name": "menuItems",
19042
+ "type": {
19043
+ "text": "Element[] | undefined"
19044
+ },
19045
+ "privacy": "protected",
19046
+ "inheritedFrom": {
19047
+ "name": "BaseMenuList",
19048
+ "module": "src/menu-list/menu-list.base.ts"
19049
+ }
19050
+ },
19051
+ {
19052
+ "kind": "field",
19053
+ "name": "focusIndex",
19054
+ "type": {
19055
+ "text": "number"
19056
+ },
19057
+ "privacy": "private",
19058
+ "default": "-1",
19059
+ "description": "The index of the focusable element in the items array\ndefaults to -1",
19060
+ "inheritedFrom": {
19061
+ "name": "BaseMenuList",
19062
+ "module": "src/menu-list/menu-list.base.ts"
19063
+ }
19064
+ },
19065
+ {
19066
+ "kind": "field",
19067
+ "name": "focusableElementRoles",
19068
+ "privacy": "private",
19069
+ "static": true,
19070
+ "default": "MenuItemRole",
19071
+ "inheritedFrom": {
19072
+ "name": "BaseMenuList",
19073
+ "module": "src/menu-list/menu-list.base.ts"
19074
+ }
19075
+ },
19076
+ {
19077
+ "kind": "method",
19078
+ "name": "focus",
19079
+ "privacy": "public",
19080
+ "return": {
19081
+ "type": {
19082
+ "text": "void"
19083
+ }
19084
+ },
19085
+ "description": "Focuses the first item in the menu.",
19086
+ "inheritedFrom": {
19087
+ "name": "BaseMenuList",
19088
+ "module": "src/menu-list/menu-list.base.ts"
19089
+ }
19090
+ },
19091
+ {
19092
+ "kind": "field",
19093
+ "name": "handleItemFocus",
19094
+ "privacy": "private",
19095
+ "inheritedFrom": {
19096
+ "name": "BaseMenuList",
19097
+ "module": "src/menu-list/menu-list.base.ts"
19098
+ }
19099
+ },
19100
+ {
19101
+ "kind": "method",
19102
+ "name": "removeItemListeners",
19103
+ "privacy": "private",
19104
+ "return": {
19105
+ "type": {
19106
+ "text": "void"
19107
+ }
19108
+ },
19109
+ "parameters": [
19110
+ {
19111
+ "name": "items",
19112
+ "default": "this.items",
19113
+ "type": {
19114
+ "text": "HTMLElement[]"
19115
+ }
19116
+ }
19117
+ ],
19118
+ "inheritedFrom": {
19119
+ "name": "BaseMenuList",
19120
+ "module": "src/menu-list/menu-list.base.ts"
19121
+ }
19122
+ },
19123
+ {
19124
+ "kind": "method",
19125
+ "name": "elementIndent",
19126
+ "privacy": "private",
19127
+ "static": true,
19128
+ "return": {
19129
+ "type": {
19130
+ "text": "MenuItemColumnCount"
19131
+ }
19132
+ },
19133
+ "parameters": [
19134
+ {
19135
+ "name": "el",
19136
+ "type": {
19137
+ "text": "HTMLElement"
19138
+ }
19139
+ }
19140
+ ],
19141
+ "inheritedFrom": {
19142
+ "name": "BaseMenuList",
19143
+ "module": "src/menu-list/menu-list.base.ts"
19144
+ }
19145
+ },
19146
+ {
19147
+ "kind": "method",
19148
+ "name": "setItems",
19149
+ "privacy": "protected",
19150
+ "return": {
19151
+ "type": {
19152
+ "text": "void"
19153
+ }
19154
+ },
19155
+ "inheritedFrom": {
19156
+ "name": "BaseMenuList",
19157
+ "module": "src/menu-list/menu-list.base.ts"
19158
+ }
19159
+ },
19160
+ {
19161
+ "kind": "method",
19162
+ "name": "handleChange",
19163
+ "privacy": "public",
19164
+ "parameters": [
19165
+ {
19166
+ "name": "source",
19167
+ "type": {
19168
+ "text": "any"
19169
+ }
19170
+ },
19171
+ {
19172
+ "name": "propertyName",
19173
+ "type": {
19174
+ "text": "string"
19175
+ }
19176
+ }
19177
+ ],
19178
+ "description": "Method for Observable changes to the hidden attribute of child elements",
19179
+ "inheritedFrom": {
19180
+ "name": "BaseMenuList",
19181
+ "module": "src/menu-list/menu-list.base.ts"
19182
+ }
19183
+ },
19184
+ {
19185
+ "kind": "field",
19186
+ "name": "changedMenuItemHandler",
19187
+ "privacy": "private",
19188
+ "description": "Handle change from child MenuItem element and set radio group behavior",
19189
+ "inheritedFrom": {
19190
+ "name": "BaseMenuList",
19191
+ "module": "src/menu-list/menu-list.base.ts"
19192
+ }
19193
+ },
19194
+ {
19195
+ "kind": "field",
19196
+ "name": "isMenuItemElement",
19197
+ "privacy": "protected",
19198
+ "description": "check if the item is a menu item",
19199
+ "inheritedFrom": {
19200
+ "name": "BaseMenuList",
19201
+ "module": "src/menu-list/menu-list.base.ts"
19202
+ }
19203
+ },
19204
+ {
19205
+ "kind": "field",
19206
+ "name": "isFocusableElement",
19207
+ "privacy": "private",
19208
+ "description": "check if the item is focusable",
19209
+ "inheritedFrom": {
19210
+ "name": "BaseMenuList",
19211
+ "module": "src/menu-list/menu-list.base.ts"
19212
+ }
19213
+ },
19214
+ {
19215
+ "kind": "method",
19216
+ "name": "setFocus",
19217
+ "privacy": "private",
19218
+ "return": {
19219
+ "type": {
19220
+ "text": "void"
19221
+ }
19222
+ },
19223
+ "parameters": [
19224
+ {
19225
+ "name": "focusIndex",
19226
+ "type": {
19227
+ "text": "number"
19228
+ }
19229
+ },
19230
+ {
19231
+ "name": "adjustment",
19232
+ "type": {
19233
+ "text": "number"
19234
+ }
19235
+ }
19236
+ ],
19237
+ "inheritedFrom": {
19238
+ "name": "BaseMenuList",
19239
+ "module": "src/menu-list/menu-list.base.ts"
19240
+ }
19241
+ },
19242
+ {
19243
+ "kind": "field",
19244
+ "name": "role",
19245
+ "type": {
19246
+ "text": "string"
19247
+ },
19248
+ "default": "'menu'",
19249
+ "inheritedFrom": {
19250
+ "name": "BaseMenuList",
19251
+ "module": "src/menu-list/menu-list.base.ts"
19252
+ }
19253
+ }
19254
+ ],
18982
19255
  "modulePath": "./dist/esm/menu-list/menu-list.js",
18983
- "definitionPath": "./dist/esm/menu-list/define.js"
19256
+ "definitionPath": "./dist/esm/menu-list/define.js",
19257
+ "cssProperties": [],
19258
+ "cssParts": [],
19259
+ "cssStates": [],
19260
+ "attributes": [],
19261
+ "events": []
18984
19262
  }
18985
19263
  ],
18986
19264
  "exports": [
@@ -20195,24 +20473,526 @@
20195
20473
  "type": {
20196
20474
  "text": "boolean | undefined"
20197
20475
  },
20198
- "description": "The initial checked state of the element.",
20199
- "fieldName": "initialChecked",
20476
+ "description": "The initial checked state of the element.",
20477
+ "fieldName": "initialChecked",
20478
+ "inheritedFrom": {
20479
+ "name": "BaseCheckbox",
20480
+ "module": "src/checkbox/checkbox.base.ts"
20481
+ }
20482
+ },
20483
+ {
20484
+ "name": "value",
20485
+ "type": {
20486
+ "text": "string"
20487
+ },
20488
+ "default": "'on'",
20489
+ "description": "The initial value of the input.",
20490
+ "fieldName": "initialValue",
20491
+ "inheritedFrom": {
20492
+ "name": "BaseCheckbox",
20493
+ "module": "src/checkbox/checkbox.base.ts"
20494
+ }
20495
+ },
20496
+ {
20497
+ "name": "name",
20498
+ "type": {
20499
+ "text": "string"
20500
+ },
20501
+ "description": "The name of the element. This element's value will be surfaced during form submission under the provided name.",
20502
+ "fieldName": "name",
20503
+ "inheritedFrom": {
20504
+ "name": "BaseCheckbox",
20505
+ "module": "src/checkbox/checkbox.base.ts"
20506
+ }
20507
+ },
20508
+ {
20509
+ "name": "required",
20510
+ "type": {
20511
+ "text": "boolean"
20512
+ },
20513
+ "description": "The element's required state.",
20514
+ "fieldName": "required",
20515
+ "inheritedFrom": {
20516
+ "name": "BaseCheckbox",
20517
+ "module": "src/checkbox/checkbox.base.ts"
20518
+ }
20519
+ }
20520
+ ],
20521
+ "modulePath": "./dist/esm/radio/radio.js",
20522
+ "definitionPath": "./dist/esm/radio/define.js",
20523
+ "cssProperties": [],
20524
+ "cssParts": [],
20525
+ "cssStates": []
20526
+ }
20527
+ ],
20528
+ "exports": [
20529
+ {
20530
+ "kind": "js",
20531
+ "name": "Radio",
20532
+ "declaration": {
20533
+ "name": "Radio",
20534
+ "module": "src/radio/radio.ts"
20535
+ }
20536
+ }
20537
+ ]
20538
+ },
20539
+ {
20540
+ "kind": "javascript-module",
20541
+ "path": "src/utils/root-active-element.ts",
20542
+ "declarations": [
20543
+ {
20544
+ "kind": "function",
20545
+ "name": "getRootActiveElement",
20546
+ "return": {
20547
+ "type": {
20548
+ "text": "Element | null"
20549
+ }
20550
+ },
20551
+ "parameters": [
20552
+ {
20553
+ "name": "element",
20554
+ "type": {
20555
+ "text": "Element"
20556
+ }
20557
+ }
20558
+ ]
20559
+ }
20560
+ ],
20561
+ "exports": [
20562
+ {
20563
+ "kind": "js",
20564
+ "name": "getRootActiveElement",
20565
+ "declaration": {
20566
+ "name": "getRootActiveElement",
20567
+ "module": "src/utils/root-active-element.ts"
20568
+ }
20569
+ }
20570
+ ]
20571
+ },
20572
+ {
20573
+ "kind": "javascript-module",
20574
+ "path": "./dist/esm/radio-group/radio-group.base.js",
20575
+ "declarations": [
20576
+ {
20577
+ "kind": "class",
20578
+ "description": "A Base Radio Group Custom HTML Element.\nImplements the https://w3c.github.io/aria/#radiogroup | ARIA `radiogroup` role.",
20579
+ "name": "BaseRadioGroup",
20580
+ "members": [
20581
+ {
20582
+ "kind": "field",
20583
+ "name": "dirtyState",
20584
+ "type": {
20585
+ "text": "boolean"
20586
+ },
20587
+ "privacy": "private",
20588
+ "default": "false",
20589
+ "description": "Indicates that the value has been changed by the user."
20590
+ },
20591
+ {
20592
+ "kind": "field",
20593
+ "name": "disabled",
20594
+ "type": {
20595
+ "text": "boolean"
20596
+ },
20597
+ "privacy": "public",
20598
+ "description": "Disables the radio group and child radios."
20599
+ },
20600
+ {
20601
+ "kind": "field",
20602
+ "name": "initialValue",
20603
+ "type": {
20604
+ "text": "string | undefined"
20605
+ },
20606
+ "privacy": "public",
20607
+ "description": "The value of the checked radio."
20608
+ },
20609
+ {
20610
+ "kind": "method",
20611
+ "name": "initialValueChanged",
20612
+ "privacy": "public",
20613
+ "return": {
20614
+ "type": {
20615
+ "text": "void"
20616
+ }
20617
+ },
20618
+ "parameters": [
20619
+ {
20620
+ "name": "prev",
20621
+ "type": {
20622
+ "text": "string | undefined"
20623
+ },
20624
+ "description": "the previous value"
20625
+ },
20626
+ {
20627
+ "name": "next",
20628
+ "type": {
20629
+ "text": "string | undefined"
20630
+ },
20631
+ "description": "the current value"
20632
+ }
20633
+ ],
20634
+ "description": "Sets the matching radio to checked when the value changes. If no radio matches the value, no radio will be checked."
20635
+ },
20636
+ {
20637
+ "kind": "field",
20638
+ "name": "name",
20639
+ "type": {
20640
+ "text": "string"
20641
+ },
20642
+ "privacy": "public",
20643
+ "description": "The name of the radio group."
20644
+ },
20645
+ {
20646
+ "kind": "field",
20647
+ "name": "orientation",
20648
+ "type": {
20649
+ "text": "RadioGroupOrientation | undefined"
20650
+ },
20651
+ "privacy": "public",
20652
+ "description": "The orientation of the group.",
20653
+ "parsedType": {
20654
+ "text": "'horizontal' | 'vertical' | undefined"
20655
+ }
20656
+ },
20657
+ {
20658
+ "kind": "field",
20659
+ "name": "radios",
20660
+ "type": {
20661
+ "text": "Radio[]"
20662
+ },
20663
+ "privacy": "public",
20664
+ "description": "The collection of all child radios."
20665
+ },
20666
+ {
20667
+ "kind": "method",
20668
+ "name": "radiosChanged",
20669
+ "privacy": "public",
20670
+ "return": {
20671
+ "type": {
20672
+ "text": "void"
20673
+ }
20674
+ },
20675
+ "parameters": [
20676
+ {
20677
+ "name": "prev",
20678
+ "type": {
20679
+ "text": "Radio[] | undefined"
20680
+ },
20681
+ "description": "the previous radios"
20682
+ },
20683
+ {
20684
+ "name": "next",
20685
+ "type": {
20686
+ "text": "Radio[] | undefined"
20687
+ },
20688
+ "description": "the current radios"
20689
+ }
20690
+ ],
20691
+ "description": "Updates the enabled radios collection when properties on the child radios change."
20692
+ },
20693
+ {
20694
+ "kind": "field",
20695
+ "name": "required",
20696
+ "type": {
20697
+ "text": "boolean"
20698
+ },
20699
+ "privacy": "public",
20700
+ "description": "Indicates whether the radio group is required."
20701
+ },
20702
+ {
20703
+ "kind": "method",
20704
+ "name": "requiredChanged",
20705
+ "privacy": "public",
20706
+ "return": {
20707
+ "type": {
20708
+ "text": "void"
20709
+ }
20710
+ },
20711
+ "parameters": [
20712
+ {
20713
+ "name": "prev",
20714
+ "type": {
20715
+ "text": "boolean"
20716
+ },
20717
+ "description": "the previous required value"
20718
+ },
20719
+ {
20720
+ "name": "next",
20721
+ "type": {
20722
+ "text": "boolean"
20723
+ },
20724
+ "description": "the current required value"
20725
+ }
20726
+ ]
20727
+ },
20728
+ {
20729
+ "kind": "method",
20730
+ "name": "slottedRadiosChanged",
20731
+ "return": {
20732
+ "type": {
20733
+ "text": "void"
20734
+ }
20735
+ },
20736
+ "parameters": [
20737
+ {
20738
+ "name": "prev",
20739
+ "type": {
20740
+ "text": "Radio[] | undefined"
20741
+ },
20742
+ "description": "the previous slotted radios"
20743
+ },
20744
+ {
20745
+ "name": "next",
20746
+ "type": {
20747
+ "text": "Radio[]"
20748
+ },
20749
+ "description": "the current slotted radios"
20750
+ }
20751
+ ],
20752
+ "description": "Updates the radios collection when the slotted radios change."
20753
+ },
20754
+ {
20755
+ "kind": "field",
20756
+ "name": "formAssociated",
20757
+ "type": {
20758
+ "text": "boolean"
20759
+ },
20760
+ "privacy": "public",
20761
+ "static": true,
20762
+ "default": "true",
20763
+ "description": "The form-associated flag."
20764
+ },
20765
+ {
20766
+ "kind": "field",
20767
+ "name": "validity",
20768
+ "type": {
20769
+ "text": "ValidityState"
20770
+ },
20771
+ "privacy": "public",
20772
+ "description": "The element's validity state.",
20773
+ "readonly": true
20774
+ },
20775
+ {
20776
+ "kind": "field",
20777
+ "name": "value",
20778
+ "type": {
20779
+ "text": "string | null"
20780
+ },
20781
+ "privacy": "public",
20782
+ "description": "The current value of the checked radio."
20783
+ },
20784
+ {
20785
+ "kind": "method",
20786
+ "name": "changeHandler",
20787
+ "privacy": "public",
20788
+ "return": {
20789
+ "type": {
20790
+ "text": "boolean | void"
20791
+ }
20792
+ },
20793
+ "parameters": [
20794
+ {
20795
+ "name": "e",
20796
+ "type": {
20797
+ "text": "Event"
20798
+ },
20799
+ "description": "the change event"
20800
+ }
20801
+ ],
20802
+ "description": "Sets the checked state of all radios when any radio emits a `change` event."
20803
+ },
20804
+ {
20805
+ "kind": "method",
20806
+ "name": "checkValidity",
20807
+ "privacy": "public",
20808
+ "return": {
20809
+ "type": {
20810
+ "text": "boolean"
20811
+ }
20812
+ },
20813
+ "description": "Checks the validity of the element and returns the result."
20814
+ },
20815
+ {
20816
+ "kind": "method",
20817
+ "name": "formResetCallback",
20818
+ "return": {
20819
+ "type": {
20820
+ "text": "void"
20821
+ }
20822
+ }
20823
+ },
20824
+ {
20825
+ "kind": "method",
20826
+ "name": "getEnabledIndexInBounds",
20827
+ "privacy": "private",
20828
+ "return": {
20829
+ "type": {
20830
+ "text": "number"
20831
+ }
20832
+ },
20833
+ "parameters": [
20834
+ {
20835
+ "name": "index",
20836
+ "type": {
20837
+ "text": "number"
20838
+ }
20839
+ },
20840
+ {
20841
+ "name": "upperBound",
20842
+ "default": "this.enabledRadios.length"
20843
+ }
20844
+ ]
20845
+ },
20846
+ {
20847
+ "kind": "method",
20848
+ "name": "disabledRadioHandler",
20849
+ "return": {
20850
+ "type": {
20851
+ "text": "void"
20852
+ }
20853
+ },
20854
+ "parameters": [
20855
+ {
20856
+ "name": "e",
20857
+ "type": {
20858
+ "text": "CustomEvent"
20859
+ },
20860
+ "description": "the disabled event"
20861
+ }
20862
+ ]
20863
+ },
20864
+ {
20865
+ "kind": "method",
20866
+ "name": "reportValidity",
20867
+ "privacy": "public",
20868
+ "return": {
20869
+ "type": {
20870
+ "text": "boolean"
20871
+ }
20872
+ },
20873
+ "description": "Reports the validity of the element."
20874
+ },
20875
+ {
20876
+ "kind": "field",
20877
+ "name": "role",
20878
+ "type": {
20879
+ "text": "string"
20880
+ },
20881
+ "default": "'radiogroup'"
20882
+ },
20883
+ {
20884
+ "kind": "field",
20885
+ "name": "ariaOrientation"
20886
+ }
20887
+ ],
20888
+ "attributes": [
20889
+ {
20890
+ "name": "disabled",
20891
+ "type": {
20892
+ "text": "boolean"
20893
+ },
20894
+ "description": "Disables the radio group and child radios.",
20895
+ "fieldName": "disabled"
20896
+ },
20897
+ {
20898
+ "name": "value",
20899
+ "type": {
20900
+ "text": "string | undefined"
20901
+ },
20902
+ "description": "The value of the checked radio.",
20903
+ "fieldName": "initialValue"
20904
+ },
20905
+ {
20906
+ "name": "name",
20907
+ "type": {
20908
+ "text": "string"
20909
+ },
20910
+ "description": "The name of the radio group.",
20911
+ "fieldName": "name"
20912
+ },
20913
+ {
20914
+ "name": "orientation",
20915
+ "type": {
20916
+ "text": "RadioGroupOrientation | undefined"
20917
+ },
20918
+ "description": "The orientation of the group.",
20919
+ "fieldName": "orientation",
20920
+ "parsedType": {
20921
+ "text": "'horizontal' | 'vertical' | undefined"
20922
+ }
20923
+ },
20924
+ {
20925
+ "name": "required",
20926
+ "type": {
20927
+ "text": "boolean"
20928
+ },
20929
+ "description": "Indicates whether the radio group is required.",
20930
+ "fieldName": "required"
20931
+ }
20932
+ ],
20933
+ "superclass": {
20934
+ "name": "FASTElement",
20935
+ "package": "@microsoft/fast-element"
20936
+ },
20937
+ "customElement": true,
20938
+ "modulePath": "./dist/esm/radio-group/radio-group.base.js",
20939
+ "definitionPath": "./dist/esm/radio-group/define.js"
20940
+ }
20941
+ ],
20942
+ "exports": [
20943
+ {
20944
+ "kind": "js",
20945
+ "name": "BaseRadioGroup",
20946
+ "declaration": {
20947
+ "name": "BaseRadioGroup",
20948
+ "module": "src/radio-group/radio-group.base.ts"
20949
+ }
20950
+ }
20951
+ ]
20952
+ },
20953
+ {
20954
+ "kind": "javascript-module",
20955
+ "path": "./dist/esm/radio-group/radio-group.js",
20956
+ "declarations": [
20957
+ {
20958
+ "kind": "class",
20959
+ "description": "A Radio Group Custom HTML Element.\nImplements the https://w3c.github.io/aria/#radiogroup | ARIA `radiogroup` role.",
20960
+ "name": "RadioGroup",
20961
+ "slots": [
20962
+ {
20963
+ "description": "The default slot for the radio group",
20964
+ "name": ""
20965
+ }
20966
+ ],
20967
+ "superclass": {
20968
+ "name": "BaseRadioGroup",
20969
+ "module": "/src/radio-group/radio-group.base.js"
20970
+ },
20971
+ "tagName": "fluent-radio-group",
20972
+ "customElement": true,
20973
+ "attributes": [
20974
+ {
20975
+ "name": "disabled",
20976
+ "type": {
20977
+ "text": "boolean"
20978
+ },
20979
+ "description": "Disables the radio group and child radios.",
20980
+ "fieldName": "disabled",
20200
20981
  "inheritedFrom": {
20201
- "name": "BaseCheckbox",
20202
- "module": "src/checkbox/checkbox.base.ts"
20982
+ "name": "BaseRadioGroup",
20983
+ "module": "src/radio-group/radio-group.base.ts"
20203
20984
  }
20204
20985
  },
20205
20986
  {
20206
20987
  "name": "value",
20207
20988
  "type": {
20208
- "text": "string"
20989
+ "text": "string | undefined"
20209
20990
  },
20210
- "default": "'on'",
20211
- "description": "The initial value of the input.",
20991
+ "description": "The value of the checked radio.",
20212
20992
  "fieldName": "initialValue",
20213
20993
  "inheritedFrom": {
20214
- "name": "BaseCheckbox",
20215
- "module": "src/checkbox/checkbox.base.ts"
20994
+ "name": "BaseRadioGroup",
20995
+ "module": "src/radio-group/radio-group.base.ts"
20216
20996
  }
20217
20997
  },
20218
20998
  {
@@ -20220,90 +21000,40 @@
20220
21000
  "type": {
20221
21001
  "text": "string"
20222
21002
  },
20223
- "description": "The name of the element. This element's value will be surfaced during form submission under the provided name.",
21003
+ "description": "The name of the radio group.",
20224
21004
  "fieldName": "name",
20225
21005
  "inheritedFrom": {
20226
- "name": "BaseCheckbox",
20227
- "module": "src/checkbox/checkbox.base.ts"
21006
+ "name": "BaseRadioGroup",
21007
+ "module": "src/radio-group/radio-group.base.ts"
20228
21008
  }
20229
21009
  },
20230
21010
  {
20231
- "name": "required",
21011
+ "name": "orientation",
20232
21012
  "type": {
20233
- "text": "boolean"
21013
+ "text": "RadioGroupOrientation | undefined"
21014
+ },
21015
+ "description": "The orientation of the group.",
21016
+ "fieldName": "orientation",
21017
+ "parsedType": {
21018
+ "text": "'horizontal' | 'vertical' | undefined"
20234
21019
  },
20235
- "description": "The element's required state.",
20236
- "fieldName": "required",
20237
21020
  "inheritedFrom": {
20238
- "name": "BaseCheckbox",
20239
- "module": "src/checkbox/checkbox.base.ts"
21021
+ "name": "BaseRadioGroup",
21022
+ "module": "src/radio-group/radio-group.base.ts"
20240
21023
  }
20241
- }
20242
- ],
20243
- "modulePath": "./dist/esm/radio/radio.js",
20244
- "definitionPath": "./dist/esm/radio/define.js",
20245
- "cssProperties": [],
20246
- "cssParts": [],
20247
- "cssStates": []
20248
- }
20249
- ],
20250
- "exports": [
20251
- {
20252
- "kind": "js",
20253
- "name": "Radio",
20254
- "declaration": {
20255
- "name": "Radio",
20256
- "module": "src/radio/radio.ts"
20257
- }
20258
- }
20259
- ]
20260
- },
20261
- {
20262
- "kind": "javascript-module",
20263
- "path": "src/utils/root-active-element.ts",
20264
- "declarations": [
20265
- {
20266
- "kind": "function",
20267
- "name": "getRootActiveElement",
20268
- "return": {
20269
- "type": {
20270
- "text": "Element | null"
20271
- }
20272
- },
20273
- "parameters": [
21024
+ },
20274
21025
  {
20275
- "name": "element",
21026
+ "name": "required",
20276
21027
  "type": {
20277
- "text": "Element"
21028
+ "text": "boolean"
21029
+ },
21030
+ "description": "Indicates whether the radio group is required.",
21031
+ "fieldName": "required",
21032
+ "inheritedFrom": {
21033
+ "name": "BaseRadioGroup",
21034
+ "module": "src/radio-group/radio-group.base.ts"
20278
21035
  }
20279
21036
  }
20280
- ]
20281
- }
20282
- ],
20283
- "exports": [
20284
- {
20285
- "kind": "js",
20286
- "name": "getRootActiveElement",
20287
- "declaration": {
20288
- "name": "getRootActiveElement",
20289
- "module": "src/utils/root-active-element.ts"
20290
- }
20291
- }
20292
- ]
20293
- },
20294
- {
20295
- "kind": "javascript-module",
20296
- "path": "./dist/esm/radio-group/radio-group.js",
20297
- "declarations": [
20298
- {
20299
- "kind": "class",
20300
- "description": "A Radio Group Custom HTML Element.\nImplements the https://w3c.github.io/aria/#radiogroup | ARIA `radiogroup` role.",
20301
- "name": "RadioGroup",
20302
- "slots": [
20303
- {
20304
- "description": "The default slot for the radio group",
20305
- "name": ""
20306
- }
20307
21037
  ],
20308
21038
  "members": [
20309
21039
  {
@@ -20314,7 +21044,11 @@
20314
21044
  },
20315
21045
  "privacy": "private",
20316
21046
  "default": "false",
20317
- "description": "Indicates that the value has been changed by the user."
21047
+ "description": "Indicates that the value has been changed by the user.",
21048
+ "inheritedFrom": {
21049
+ "name": "BaseRadioGroup",
21050
+ "module": "src/radio-group/radio-group.base.ts"
21051
+ }
20318
21052
  },
20319
21053
  {
20320
21054
  "kind": "field",
@@ -20323,7 +21057,11 @@
20323
21057
  "text": "boolean"
20324
21058
  },
20325
21059
  "privacy": "public",
20326
- "description": "Disables the radio group and child radios."
21060
+ "description": "Disables the radio group and child radios.",
21061
+ "inheritedFrom": {
21062
+ "name": "BaseRadioGroup",
21063
+ "module": "src/radio-group/radio-group.base.ts"
21064
+ }
20327
21065
  },
20328
21066
  {
20329
21067
  "kind": "field",
@@ -20332,7 +21070,11 @@
20332
21070
  "text": "string | undefined"
20333
21071
  },
20334
21072
  "privacy": "public",
20335
- "description": "The value of the checked radio."
21073
+ "description": "The value of the checked radio.",
21074
+ "inheritedFrom": {
21075
+ "name": "BaseRadioGroup",
21076
+ "module": "src/radio-group/radio-group.base.ts"
21077
+ }
20336
21078
  },
20337
21079
  {
20338
21080
  "kind": "method",
@@ -20359,7 +21101,11 @@
20359
21101
  "description": "the current value"
20360
21102
  }
20361
21103
  ],
20362
- "description": "Sets the matching radio to checked when the value changes. If no radio matches the value, no radio will be checked."
21104
+ "description": "Sets the matching radio to checked when the value changes. If no radio matches the value, no radio will be checked.",
21105
+ "inheritedFrom": {
21106
+ "name": "BaseRadioGroup",
21107
+ "module": "src/radio-group/radio-group.base.ts"
21108
+ }
20363
21109
  },
20364
21110
  {
20365
21111
  "kind": "field",
@@ -20368,7 +21114,11 @@
20368
21114
  "text": "string"
20369
21115
  },
20370
21116
  "privacy": "public",
20371
- "description": "The name of the radio group."
21117
+ "description": "The name of the radio group.",
21118
+ "inheritedFrom": {
21119
+ "name": "BaseRadioGroup",
21120
+ "module": "src/radio-group/radio-group.base.ts"
21121
+ }
20372
21122
  },
20373
21123
  {
20374
21124
  "kind": "field",
@@ -20380,6 +21130,10 @@
20380
21130
  "description": "The orientation of the group.",
20381
21131
  "parsedType": {
20382
21132
  "text": "'horizontal' | 'vertical' | undefined"
21133
+ },
21134
+ "inheritedFrom": {
21135
+ "name": "BaseRadioGroup",
21136
+ "module": "src/radio-group/radio-group.base.ts"
20383
21137
  }
20384
21138
  },
20385
21139
  {
@@ -20389,7 +21143,11 @@
20389
21143
  "text": "Radio[]"
20390
21144
  },
20391
21145
  "privacy": "public",
20392
- "description": "The collection of all child radios."
21146
+ "description": "The collection of all child radios.",
21147
+ "inheritedFrom": {
21148
+ "name": "BaseRadioGroup",
21149
+ "module": "src/radio-group/radio-group.base.ts"
21150
+ }
20393
21151
  },
20394
21152
  {
20395
21153
  "kind": "method",
@@ -20416,7 +21174,11 @@
20416
21174
  "description": "the current radios"
20417
21175
  }
20418
21176
  ],
20419
- "description": "Updates the enabled radios collection when properties on the child radios change."
21177
+ "description": "Updates the enabled radios collection when properties on the child radios change.",
21178
+ "inheritedFrom": {
21179
+ "name": "BaseRadioGroup",
21180
+ "module": "src/radio-group/radio-group.base.ts"
21181
+ }
20420
21182
  },
20421
21183
  {
20422
21184
  "kind": "field",
@@ -20425,7 +21187,11 @@
20425
21187
  "text": "boolean"
20426
21188
  },
20427
21189
  "privacy": "public",
20428
- "description": "Indicates whether the radio group is required."
21190
+ "description": "Indicates whether the radio group is required.",
21191
+ "inheritedFrom": {
21192
+ "name": "BaseRadioGroup",
21193
+ "module": "src/radio-group/radio-group.base.ts"
21194
+ }
20429
21195
  },
20430
21196
  {
20431
21197
  "kind": "method",
@@ -20451,7 +21217,11 @@
20451
21217
  },
20452
21218
  "description": "the current required value"
20453
21219
  }
20454
- ]
21220
+ ],
21221
+ "inheritedFrom": {
21222
+ "name": "BaseRadioGroup",
21223
+ "module": "src/radio-group/radio-group.base.ts"
21224
+ }
20455
21225
  },
20456
21226
  {
20457
21227
  "kind": "method",
@@ -20477,7 +21247,11 @@
20477
21247
  "description": "the current slotted radios"
20478
21248
  }
20479
21249
  ],
20480
- "description": "Updates the radios collection when the slotted radios change."
21250
+ "description": "Updates the radios collection when the slotted radios change.",
21251
+ "inheritedFrom": {
21252
+ "name": "BaseRadioGroup",
21253
+ "module": "src/radio-group/radio-group.base.ts"
21254
+ }
20481
21255
  },
20482
21256
  {
20483
21257
  "kind": "field",
@@ -20488,7 +21262,11 @@
20488
21262
  "privacy": "public",
20489
21263
  "static": true,
20490
21264
  "default": "true",
20491
- "description": "The form-associated flag."
21265
+ "description": "The form-associated flag.",
21266
+ "inheritedFrom": {
21267
+ "name": "BaseRadioGroup",
21268
+ "module": "src/radio-group/radio-group.base.ts"
21269
+ }
20492
21270
  },
20493
21271
  {
20494
21272
  "kind": "field",
@@ -20498,7 +21276,11 @@
20498
21276
  },
20499
21277
  "privacy": "public",
20500
21278
  "description": "The element's validity state.",
20501
- "readonly": true
21279
+ "readonly": true,
21280
+ "inheritedFrom": {
21281
+ "name": "BaseRadioGroup",
21282
+ "module": "src/radio-group/radio-group.base.ts"
21283
+ }
20502
21284
  },
20503
21285
  {
20504
21286
  "kind": "field",
@@ -20507,7 +21289,11 @@
20507
21289
  "text": "string | null"
20508
21290
  },
20509
21291
  "privacy": "public",
20510
- "description": "The current value of the checked radio."
21292
+ "description": "The current value of the checked radio.",
21293
+ "inheritedFrom": {
21294
+ "name": "BaseRadioGroup",
21295
+ "module": "src/radio-group/radio-group.base.ts"
21296
+ }
20511
21297
  },
20512
21298
  {
20513
21299
  "kind": "method",
@@ -20527,7 +21313,11 @@
20527
21313
  "description": "the change event"
20528
21314
  }
20529
21315
  ],
20530
- "description": "Sets the checked state of all radios when any radio emits a `change` event."
21316
+ "description": "Sets the checked state of all radios when any radio emits a `change` event.",
21317
+ "inheritedFrom": {
21318
+ "name": "BaseRadioGroup",
21319
+ "module": "src/radio-group/radio-group.base.ts"
21320
+ }
20531
21321
  },
20532
21322
  {
20533
21323
  "kind": "method",
@@ -20538,7 +21328,11 @@
20538
21328
  "text": "boolean"
20539
21329
  }
20540
21330
  },
20541
- "description": "Checks the validity of the element and returns the result."
21331
+ "description": "Checks the validity of the element and returns the result.",
21332
+ "inheritedFrom": {
21333
+ "name": "BaseRadioGroup",
21334
+ "module": "src/radio-group/radio-group.base.ts"
21335
+ }
20542
21336
  },
20543
21337
  {
20544
21338
  "kind": "method",
@@ -20547,6 +21341,10 @@
20547
21341
  "type": {
20548
21342
  "text": "void"
20549
21343
  }
21344
+ },
21345
+ "inheritedFrom": {
21346
+ "name": "BaseRadioGroup",
21347
+ "module": "src/radio-group/radio-group.base.ts"
20550
21348
  }
20551
21349
  },
20552
21350
  {
@@ -20569,7 +21367,11 @@
20569
21367
  "name": "upperBound",
20570
21368
  "default": "this.enabledRadios.length"
20571
21369
  }
20572
- ]
21370
+ ],
21371
+ "inheritedFrom": {
21372
+ "name": "BaseRadioGroup",
21373
+ "module": "src/radio-group/radio-group.base.ts"
21374
+ }
20573
21375
  },
20574
21376
  {
20575
21377
  "kind": "method",
@@ -20587,7 +21389,11 @@
20587
21389
  },
20588
21390
  "description": "the disabled event"
20589
21391
  }
20590
- ]
21392
+ ],
21393
+ "inheritedFrom": {
21394
+ "name": "BaseRadioGroup",
21395
+ "module": "src/radio-group/radio-group.base.ts"
21396
+ }
20591
21397
  },
20592
21398
  {
20593
21399
  "kind": "method",
@@ -20598,7 +21404,11 @@
20598
21404
  "text": "boolean"
20599
21405
  }
20600
21406
  },
20601
- "description": "Reports the validity of the element."
21407
+ "description": "Reports the validity of the element.",
21408
+ "inheritedFrom": {
21409
+ "name": "BaseRadioGroup",
21410
+ "module": "src/radio-group/radio-group.base.ts"
21411
+ }
20602
21412
  },
20603
21413
  {
20604
21414
  "kind": "field",
@@ -20606,66 +21416,27 @@
20606
21416
  "type": {
20607
21417
  "text": "string"
20608
21418
  },
20609
- "default": "'radiogroup'"
21419
+ "default": "'radiogroup'",
21420
+ "inheritedFrom": {
21421
+ "name": "BaseRadioGroup",
21422
+ "module": "src/radio-group/radio-group.base.ts"
21423
+ }
20610
21424
  },
20611
21425
  {
20612
21426
  "kind": "field",
20613
- "name": "ariaOrientation"
20614
- }
20615
- ],
20616
- "attributes": [
20617
- {
20618
- "name": "disabled",
20619
- "type": {
20620
- "text": "boolean"
20621
- },
20622
- "description": "Disables the radio group and child radios.",
20623
- "fieldName": "disabled"
20624
- },
20625
- {
20626
- "name": "value",
20627
- "type": {
20628
- "text": "string | undefined"
20629
- },
20630
- "description": "The value of the checked radio.",
20631
- "fieldName": "initialValue"
20632
- },
20633
- {
20634
- "name": "name",
20635
- "type": {
20636
- "text": "string"
20637
- },
20638
- "description": "The name of the radio group.",
20639
- "fieldName": "name"
20640
- },
20641
- {
20642
- "name": "orientation",
20643
- "type": {
20644
- "text": "RadioGroupOrientation | undefined"
20645
- },
20646
- "description": "The orientation of the group.",
20647
- "fieldName": "orientation",
20648
- "parsedType": {
20649
- "text": "'horizontal' | 'vertical' | undefined"
21427
+ "name": "ariaOrientation",
21428
+ "inheritedFrom": {
21429
+ "name": "BaseRadioGroup",
21430
+ "module": "src/radio-group/radio-group.base.ts"
20650
21431
  }
20651
- },
20652
- {
20653
- "name": "required",
20654
- "type": {
20655
- "text": "boolean"
20656
- },
20657
- "description": "Indicates whether the radio group is required.",
20658
- "fieldName": "required"
20659
21432
  }
20660
21433
  ],
20661
- "superclass": {
20662
- "name": "FASTElement",
20663
- "package": "@microsoft/fast-element"
20664
- },
20665
- "tagName": "fluent-radio-group",
20666
- "customElement": true,
20667
21434
  "modulePath": "./dist/esm/radio-group/radio-group.js",
20668
- "definitionPath": "./dist/esm/radio-group/define.js"
21435
+ "definitionPath": "./dist/esm/radio-group/define.js",
21436
+ "cssProperties": [],
21437
+ "cssParts": [],
21438
+ "cssStates": [],
21439
+ "events": []
20669
21440
  }
20670
21441
  ],
20671
21442
  "exports": [
@@ -28675,6 +29446,22 @@
28675
29446
  }
28676
29447
  ]
28677
29448
  },
29449
+ {
29450
+ "kind": "javascript-module",
29451
+ "path": "./dist/esm/menu-list/define.js",
29452
+ "deprecated": false,
29453
+ "declarations": [],
29454
+ "exports": [
29455
+ {
29456
+ "kind": "custom-element-definition",
29457
+ "name": "BaseMenuList",
29458
+ "declaration": {
29459
+ "name": "BaseMenuList",
29460
+ "module": "./dist/esm/menu-list/menu-list.base.js"
29461
+ }
29462
+ }
29463
+ ]
29464
+ },
28678
29465
  {
28679
29466
  "kind": "javascript-module",
28680
29467
  "path": "./dist/esm/menu-list/define.js",
@@ -28771,6 +29558,22 @@
28771
29558
  }
28772
29559
  ]
28773
29560
  },
29561
+ {
29562
+ "kind": "javascript-module",
29563
+ "path": "./dist/esm/radio-group/define.js",
29564
+ "deprecated": false,
29565
+ "declarations": [],
29566
+ "exports": [
29567
+ {
29568
+ "kind": "custom-element-definition",
29569
+ "name": "BaseRadioGroup",
29570
+ "declaration": {
29571
+ "name": "BaseRadioGroup",
29572
+ "module": "./dist/esm/radio-group/radio-group.base.js"
29573
+ }
29574
+ }
29575
+ ]
29576
+ },
28774
29577
  {
28775
29578
  "kind": "javascript-module",
28776
29579
  "path": "./dist/esm/radio-group/define.js",