@fluentui/web-components 3.0.0-rc.12 → 3.0.0-rc.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -2
- package/custom-elements.json +968 -164
- package/dist/esm/accordion/accordion.d.ts +5 -0
- package/dist/esm/accordion/accordion.js +28 -27
- package/dist/esm/accordion/accordion.js.map +1 -1
- package/dist/esm/dropdown/dropdown.base.d.ts +5 -0
- package/dist/esm/dropdown/dropdown.base.js +23 -10
- package/dist/esm/dropdown/dropdown.base.js.map +1 -1
- package/dist/esm/dropdown/dropdown.styles.js +1 -0
- package/dist/esm/dropdown/dropdown.styles.js.map +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/menu/menu.d.ts +25 -16
- package/dist/esm/menu/menu.js +61 -67
- package/dist/esm/menu/menu.js.map +1 -1
- package/dist/esm/menu-list/index.d.ts +1 -0
- package/dist/esm/menu-list/index.js +1 -0
- package/dist/esm/menu-list/index.js.map +1 -1
- package/dist/esm/menu-list/menu-list.base.d.ts +76 -0
- package/dist/esm/menu-list/menu-list.base.js +251 -0
- package/dist/esm/menu-list/menu-list.base.js.map +1 -0
- package/dist/esm/menu-list/menu-list.d.ts +3 -70
- package/dist/esm/menu-list/menu-list.js +3 -244
- package/dist/esm/menu-list/menu-list.js.map +1 -1
- package/dist/esm/radio-group/index.d.ts +1 -0
- package/dist/esm/radio-group/index.js +1 -0
- package/dist/esm/radio-group/index.js.map +1 -1
- package/dist/esm/radio-group/radio-group.base.d.ts +285 -0
- package/dist/esm/radio-group/radio-group.base.js +497 -0
- package/dist/esm/radio-group/radio-group.base.js.map +1 -0
- package/dist/esm/radio-group/radio-group.d.ts +4 -280
- package/dist/esm/radio-group/radio-group.js +4 -491
- package/dist/esm/radio-group/radio-group.js.map +1 -1
- package/dist/esm/tablist/tablist.base.js +3 -3
- package/dist/esm/tablist/tablist.base.js.map +1 -1
- package/dist/esm/utils/request-idle-callback.d.ts +15 -0
- package/dist/esm/utils/request-idle-callback.js +8 -2
- package/dist/esm/utils/request-idle-callback.js.map +1 -1
- package/dist/web-components.d.ts +1970 -1932
- package/dist/web-components.js +165 -124
- package/dist/web-components.min.js +114 -114
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -9950,7 +9950,7 @@
|
|
|
9950
9950
|
"name": "options",
|
|
9951
9951
|
"optional": true,
|
|
9952
9952
|
"type": {
|
|
9953
|
-
"text": "{ shallow?: boolean
|
|
9953
|
+
"text": "{\n /**\n * Whether to only check direct children of the target element, rather than all descendants.\n * @defaultValue `false`\n */\n shallow?: boolean;\n /**\n * The maximum time to wait for each idle callback before rechecking for connected descendants, in milliseconds.\n * @defaultValue `50`\n */\n timeout?: number;\n /**\n * Whether to call the callback on the next idle period after descendants are connected, rather than immediately.\n * This can be used to defer work until after the browser has had a chance to perform any necessary updates\n * following the connection of the descendants.\n * @defaultValue `false`\n */\n idleCallback?: boolean;\n }"
|
|
9954
9954
|
},
|
|
9955
9955
|
"description": "Options object that may contain a timeout property for the idle callback."
|
|
9956
9956
|
}
|
|
@@ -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": "
|
|
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": [
|
|
@@ -19072,7 +19350,7 @@
|
|
|
19072
19350
|
"kind": "field",
|
|
19073
19351
|
"name": "slottedMenuList",
|
|
19074
19352
|
"type": {
|
|
19075
|
-
"text": "
|
|
19353
|
+
"text": "HTMLElement[]"
|
|
19076
19354
|
},
|
|
19077
19355
|
"privacy": "public",
|
|
19078
19356
|
"description": "Holds the slotted menu list."
|
|
@@ -19104,7 +19382,8 @@
|
|
|
19104
19382
|
"text": "void"
|
|
19105
19383
|
}
|
|
19106
19384
|
},
|
|
19107
|
-
"description": "Sets the component
|
|
19385
|
+
"description": "Sets the component.",
|
|
19386
|
+
"deprecated": "This method is no longer used. Trigger and menu-list listeners are now\nmanaged by their respective slot-changed callbacks."
|
|
19108
19387
|
},
|
|
19109
19388
|
{
|
|
19110
19389
|
"kind": "field",
|
|
@@ -20195,24 +20474,526 @@
|
|
|
20195
20474
|
"type": {
|
|
20196
20475
|
"text": "boolean | undefined"
|
|
20197
20476
|
},
|
|
20198
|
-
"description": "The initial checked state of the element.",
|
|
20199
|
-
"fieldName": "initialChecked",
|
|
20477
|
+
"description": "The initial checked state of the element.",
|
|
20478
|
+
"fieldName": "initialChecked",
|
|
20479
|
+
"inheritedFrom": {
|
|
20480
|
+
"name": "BaseCheckbox",
|
|
20481
|
+
"module": "src/checkbox/checkbox.base.ts"
|
|
20482
|
+
}
|
|
20483
|
+
},
|
|
20484
|
+
{
|
|
20485
|
+
"name": "value",
|
|
20486
|
+
"type": {
|
|
20487
|
+
"text": "string"
|
|
20488
|
+
},
|
|
20489
|
+
"default": "'on'",
|
|
20490
|
+
"description": "The initial value of the input.",
|
|
20491
|
+
"fieldName": "initialValue",
|
|
20492
|
+
"inheritedFrom": {
|
|
20493
|
+
"name": "BaseCheckbox",
|
|
20494
|
+
"module": "src/checkbox/checkbox.base.ts"
|
|
20495
|
+
}
|
|
20496
|
+
},
|
|
20497
|
+
{
|
|
20498
|
+
"name": "name",
|
|
20499
|
+
"type": {
|
|
20500
|
+
"text": "string"
|
|
20501
|
+
},
|
|
20502
|
+
"description": "The name of the element. This element's value will be surfaced during form submission under the provided name.",
|
|
20503
|
+
"fieldName": "name",
|
|
20504
|
+
"inheritedFrom": {
|
|
20505
|
+
"name": "BaseCheckbox",
|
|
20506
|
+
"module": "src/checkbox/checkbox.base.ts"
|
|
20507
|
+
}
|
|
20508
|
+
},
|
|
20509
|
+
{
|
|
20510
|
+
"name": "required",
|
|
20511
|
+
"type": {
|
|
20512
|
+
"text": "boolean"
|
|
20513
|
+
},
|
|
20514
|
+
"description": "The element's required state.",
|
|
20515
|
+
"fieldName": "required",
|
|
20516
|
+
"inheritedFrom": {
|
|
20517
|
+
"name": "BaseCheckbox",
|
|
20518
|
+
"module": "src/checkbox/checkbox.base.ts"
|
|
20519
|
+
}
|
|
20520
|
+
}
|
|
20521
|
+
],
|
|
20522
|
+
"modulePath": "./dist/esm/radio/radio.js",
|
|
20523
|
+
"definitionPath": "./dist/esm/radio/define.js",
|
|
20524
|
+
"cssProperties": [],
|
|
20525
|
+
"cssParts": [],
|
|
20526
|
+
"cssStates": []
|
|
20527
|
+
}
|
|
20528
|
+
],
|
|
20529
|
+
"exports": [
|
|
20530
|
+
{
|
|
20531
|
+
"kind": "js",
|
|
20532
|
+
"name": "Radio",
|
|
20533
|
+
"declaration": {
|
|
20534
|
+
"name": "Radio",
|
|
20535
|
+
"module": "src/radio/radio.ts"
|
|
20536
|
+
}
|
|
20537
|
+
}
|
|
20538
|
+
]
|
|
20539
|
+
},
|
|
20540
|
+
{
|
|
20541
|
+
"kind": "javascript-module",
|
|
20542
|
+
"path": "src/utils/root-active-element.ts",
|
|
20543
|
+
"declarations": [
|
|
20544
|
+
{
|
|
20545
|
+
"kind": "function",
|
|
20546
|
+
"name": "getRootActiveElement",
|
|
20547
|
+
"return": {
|
|
20548
|
+
"type": {
|
|
20549
|
+
"text": "Element | null"
|
|
20550
|
+
}
|
|
20551
|
+
},
|
|
20552
|
+
"parameters": [
|
|
20553
|
+
{
|
|
20554
|
+
"name": "element",
|
|
20555
|
+
"type": {
|
|
20556
|
+
"text": "Element"
|
|
20557
|
+
}
|
|
20558
|
+
}
|
|
20559
|
+
]
|
|
20560
|
+
}
|
|
20561
|
+
],
|
|
20562
|
+
"exports": [
|
|
20563
|
+
{
|
|
20564
|
+
"kind": "js",
|
|
20565
|
+
"name": "getRootActiveElement",
|
|
20566
|
+
"declaration": {
|
|
20567
|
+
"name": "getRootActiveElement",
|
|
20568
|
+
"module": "src/utils/root-active-element.ts"
|
|
20569
|
+
}
|
|
20570
|
+
}
|
|
20571
|
+
]
|
|
20572
|
+
},
|
|
20573
|
+
{
|
|
20574
|
+
"kind": "javascript-module",
|
|
20575
|
+
"path": "./dist/esm/radio-group/radio-group.base.js",
|
|
20576
|
+
"declarations": [
|
|
20577
|
+
{
|
|
20578
|
+
"kind": "class",
|
|
20579
|
+
"description": "A Base Radio Group Custom HTML Element.\nImplements the https://w3c.github.io/aria/#radiogroup | ARIA `radiogroup` role.",
|
|
20580
|
+
"name": "BaseRadioGroup",
|
|
20581
|
+
"members": [
|
|
20582
|
+
{
|
|
20583
|
+
"kind": "field",
|
|
20584
|
+
"name": "dirtyState",
|
|
20585
|
+
"type": {
|
|
20586
|
+
"text": "boolean"
|
|
20587
|
+
},
|
|
20588
|
+
"privacy": "private",
|
|
20589
|
+
"default": "false",
|
|
20590
|
+
"description": "Indicates that the value has been changed by the user."
|
|
20591
|
+
},
|
|
20592
|
+
{
|
|
20593
|
+
"kind": "field",
|
|
20594
|
+
"name": "disabled",
|
|
20595
|
+
"type": {
|
|
20596
|
+
"text": "boolean"
|
|
20597
|
+
},
|
|
20598
|
+
"privacy": "public",
|
|
20599
|
+
"description": "Disables the radio group and child radios."
|
|
20600
|
+
},
|
|
20601
|
+
{
|
|
20602
|
+
"kind": "field",
|
|
20603
|
+
"name": "initialValue",
|
|
20604
|
+
"type": {
|
|
20605
|
+
"text": "string | undefined"
|
|
20606
|
+
},
|
|
20607
|
+
"privacy": "public",
|
|
20608
|
+
"description": "The value of the checked radio."
|
|
20609
|
+
},
|
|
20610
|
+
{
|
|
20611
|
+
"kind": "method",
|
|
20612
|
+
"name": "initialValueChanged",
|
|
20613
|
+
"privacy": "public",
|
|
20614
|
+
"return": {
|
|
20615
|
+
"type": {
|
|
20616
|
+
"text": "void"
|
|
20617
|
+
}
|
|
20618
|
+
},
|
|
20619
|
+
"parameters": [
|
|
20620
|
+
{
|
|
20621
|
+
"name": "prev",
|
|
20622
|
+
"type": {
|
|
20623
|
+
"text": "string | undefined"
|
|
20624
|
+
},
|
|
20625
|
+
"description": "the previous value"
|
|
20626
|
+
},
|
|
20627
|
+
{
|
|
20628
|
+
"name": "next",
|
|
20629
|
+
"type": {
|
|
20630
|
+
"text": "string | undefined"
|
|
20631
|
+
},
|
|
20632
|
+
"description": "the current value"
|
|
20633
|
+
}
|
|
20634
|
+
],
|
|
20635
|
+
"description": "Sets the matching radio to checked when the value changes. If no radio matches the value, no radio will be checked."
|
|
20636
|
+
},
|
|
20637
|
+
{
|
|
20638
|
+
"kind": "field",
|
|
20639
|
+
"name": "name",
|
|
20640
|
+
"type": {
|
|
20641
|
+
"text": "string"
|
|
20642
|
+
},
|
|
20643
|
+
"privacy": "public",
|
|
20644
|
+
"description": "The name of the radio group."
|
|
20645
|
+
},
|
|
20646
|
+
{
|
|
20647
|
+
"kind": "field",
|
|
20648
|
+
"name": "orientation",
|
|
20649
|
+
"type": {
|
|
20650
|
+
"text": "RadioGroupOrientation | undefined"
|
|
20651
|
+
},
|
|
20652
|
+
"privacy": "public",
|
|
20653
|
+
"description": "The orientation of the group.",
|
|
20654
|
+
"parsedType": {
|
|
20655
|
+
"text": "'horizontal' | 'vertical' | undefined"
|
|
20656
|
+
}
|
|
20657
|
+
},
|
|
20658
|
+
{
|
|
20659
|
+
"kind": "field",
|
|
20660
|
+
"name": "radios",
|
|
20661
|
+
"type": {
|
|
20662
|
+
"text": "Radio[]"
|
|
20663
|
+
},
|
|
20664
|
+
"privacy": "public",
|
|
20665
|
+
"description": "The collection of all child radios."
|
|
20666
|
+
},
|
|
20667
|
+
{
|
|
20668
|
+
"kind": "method",
|
|
20669
|
+
"name": "radiosChanged",
|
|
20670
|
+
"privacy": "public",
|
|
20671
|
+
"return": {
|
|
20672
|
+
"type": {
|
|
20673
|
+
"text": "void"
|
|
20674
|
+
}
|
|
20675
|
+
},
|
|
20676
|
+
"parameters": [
|
|
20677
|
+
{
|
|
20678
|
+
"name": "prev",
|
|
20679
|
+
"type": {
|
|
20680
|
+
"text": "Radio[] | undefined"
|
|
20681
|
+
},
|
|
20682
|
+
"description": "the previous radios"
|
|
20683
|
+
},
|
|
20684
|
+
{
|
|
20685
|
+
"name": "next",
|
|
20686
|
+
"type": {
|
|
20687
|
+
"text": "Radio[] | undefined"
|
|
20688
|
+
},
|
|
20689
|
+
"description": "the current radios"
|
|
20690
|
+
}
|
|
20691
|
+
],
|
|
20692
|
+
"description": "Updates the enabled radios collection when properties on the child radios change."
|
|
20693
|
+
},
|
|
20694
|
+
{
|
|
20695
|
+
"kind": "field",
|
|
20696
|
+
"name": "required",
|
|
20697
|
+
"type": {
|
|
20698
|
+
"text": "boolean"
|
|
20699
|
+
},
|
|
20700
|
+
"privacy": "public",
|
|
20701
|
+
"description": "Indicates whether the radio group is required."
|
|
20702
|
+
},
|
|
20703
|
+
{
|
|
20704
|
+
"kind": "method",
|
|
20705
|
+
"name": "requiredChanged",
|
|
20706
|
+
"privacy": "public",
|
|
20707
|
+
"return": {
|
|
20708
|
+
"type": {
|
|
20709
|
+
"text": "void"
|
|
20710
|
+
}
|
|
20711
|
+
},
|
|
20712
|
+
"parameters": [
|
|
20713
|
+
{
|
|
20714
|
+
"name": "prev",
|
|
20715
|
+
"type": {
|
|
20716
|
+
"text": "boolean"
|
|
20717
|
+
},
|
|
20718
|
+
"description": "the previous required value"
|
|
20719
|
+
},
|
|
20720
|
+
{
|
|
20721
|
+
"name": "next",
|
|
20722
|
+
"type": {
|
|
20723
|
+
"text": "boolean"
|
|
20724
|
+
},
|
|
20725
|
+
"description": "the current required value"
|
|
20726
|
+
}
|
|
20727
|
+
]
|
|
20728
|
+
},
|
|
20729
|
+
{
|
|
20730
|
+
"kind": "method",
|
|
20731
|
+
"name": "slottedRadiosChanged",
|
|
20732
|
+
"return": {
|
|
20733
|
+
"type": {
|
|
20734
|
+
"text": "void"
|
|
20735
|
+
}
|
|
20736
|
+
},
|
|
20737
|
+
"parameters": [
|
|
20738
|
+
{
|
|
20739
|
+
"name": "prev",
|
|
20740
|
+
"type": {
|
|
20741
|
+
"text": "Radio[] | undefined"
|
|
20742
|
+
},
|
|
20743
|
+
"description": "the previous slotted radios"
|
|
20744
|
+
},
|
|
20745
|
+
{
|
|
20746
|
+
"name": "next",
|
|
20747
|
+
"type": {
|
|
20748
|
+
"text": "Radio[]"
|
|
20749
|
+
},
|
|
20750
|
+
"description": "the current slotted radios"
|
|
20751
|
+
}
|
|
20752
|
+
],
|
|
20753
|
+
"description": "Updates the radios collection when the slotted radios change."
|
|
20754
|
+
},
|
|
20755
|
+
{
|
|
20756
|
+
"kind": "field",
|
|
20757
|
+
"name": "formAssociated",
|
|
20758
|
+
"type": {
|
|
20759
|
+
"text": "boolean"
|
|
20760
|
+
},
|
|
20761
|
+
"privacy": "public",
|
|
20762
|
+
"static": true,
|
|
20763
|
+
"default": "true",
|
|
20764
|
+
"description": "The form-associated flag."
|
|
20765
|
+
},
|
|
20766
|
+
{
|
|
20767
|
+
"kind": "field",
|
|
20768
|
+
"name": "validity",
|
|
20769
|
+
"type": {
|
|
20770
|
+
"text": "ValidityState"
|
|
20771
|
+
},
|
|
20772
|
+
"privacy": "public",
|
|
20773
|
+
"description": "The element's validity state.",
|
|
20774
|
+
"readonly": true
|
|
20775
|
+
},
|
|
20776
|
+
{
|
|
20777
|
+
"kind": "field",
|
|
20778
|
+
"name": "value",
|
|
20779
|
+
"type": {
|
|
20780
|
+
"text": "string | null"
|
|
20781
|
+
},
|
|
20782
|
+
"privacy": "public",
|
|
20783
|
+
"description": "The current value of the checked radio."
|
|
20784
|
+
},
|
|
20785
|
+
{
|
|
20786
|
+
"kind": "method",
|
|
20787
|
+
"name": "changeHandler",
|
|
20788
|
+
"privacy": "public",
|
|
20789
|
+
"return": {
|
|
20790
|
+
"type": {
|
|
20791
|
+
"text": "boolean | void"
|
|
20792
|
+
}
|
|
20793
|
+
},
|
|
20794
|
+
"parameters": [
|
|
20795
|
+
{
|
|
20796
|
+
"name": "e",
|
|
20797
|
+
"type": {
|
|
20798
|
+
"text": "Event"
|
|
20799
|
+
},
|
|
20800
|
+
"description": "the change event"
|
|
20801
|
+
}
|
|
20802
|
+
],
|
|
20803
|
+
"description": "Sets the checked state of all radios when any radio emits a `change` event."
|
|
20804
|
+
},
|
|
20805
|
+
{
|
|
20806
|
+
"kind": "method",
|
|
20807
|
+
"name": "checkValidity",
|
|
20808
|
+
"privacy": "public",
|
|
20809
|
+
"return": {
|
|
20810
|
+
"type": {
|
|
20811
|
+
"text": "boolean"
|
|
20812
|
+
}
|
|
20813
|
+
},
|
|
20814
|
+
"description": "Checks the validity of the element and returns the result."
|
|
20815
|
+
},
|
|
20816
|
+
{
|
|
20817
|
+
"kind": "method",
|
|
20818
|
+
"name": "formResetCallback",
|
|
20819
|
+
"return": {
|
|
20820
|
+
"type": {
|
|
20821
|
+
"text": "void"
|
|
20822
|
+
}
|
|
20823
|
+
}
|
|
20824
|
+
},
|
|
20825
|
+
{
|
|
20826
|
+
"kind": "method",
|
|
20827
|
+
"name": "getEnabledIndexInBounds",
|
|
20828
|
+
"privacy": "private",
|
|
20829
|
+
"return": {
|
|
20830
|
+
"type": {
|
|
20831
|
+
"text": "number"
|
|
20832
|
+
}
|
|
20833
|
+
},
|
|
20834
|
+
"parameters": [
|
|
20835
|
+
{
|
|
20836
|
+
"name": "index",
|
|
20837
|
+
"type": {
|
|
20838
|
+
"text": "number"
|
|
20839
|
+
}
|
|
20840
|
+
},
|
|
20841
|
+
{
|
|
20842
|
+
"name": "upperBound",
|
|
20843
|
+
"default": "this.enabledRadios.length"
|
|
20844
|
+
}
|
|
20845
|
+
]
|
|
20846
|
+
},
|
|
20847
|
+
{
|
|
20848
|
+
"kind": "method",
|
|
20849
|
+
"name": "disabledRadioHandler",
|
|
20850
|
+
"return": {
|
|
20851
|
+
"type": {
|
|
20852
|
+
"text": "void"
|
|
20853
|
+
}
|
|
20854
|
+
},
|
|
20855
|
+
"parameters": [
|
|
20856
|
+
{
|
|
20857
|
+
"name": "e",
|
|
20858
|
+
"type": {
|
|
20859
|
+
"text": "CustomEvent"
|
|
20860
|
+
},
|
|
20861
|
+
"description": "the disabled event"
|
|
20862
|
+
}
|
|
20863
|
+
]
|
|
20864
|
+
},
|
|
20865
|
+
{
|
|
20866
|
+
"kind": "method",
|
|
20867
|
+
"name": "reportValidity",
|
|
20868
|
+
"privacy": "public",
|
|
20869
|
+
"return": {
|
|
20870
|
+
"type": {
|
|
20871
|
+
"text": "boolean"
|
|
20872
|
+
}
|
|
20873
|
+
},
|
|
20874
|
+
"description": "Reports the validity of the element."
|
|
20875
|
+
},
|
|
20876
|
+
{
|
|
20877
|
+
"kind": "field",
|
|
20878
|
+
"name": "role",
|
|
20879
|
+
"type": {
|
|
20880
|
+
"text": "string"
|
|
20881
|
+
},
|
|
20882
|
+
"default": "'radiogroup'"
|
|
20883
|
+
},
|
|
20884
|
+
{
|
|
20885
|
+
"kind": "field",
|
|
20886
|
+
"name": "ariaOrientation"
|
|
20887
|
+
}
|
|
20888
|
+
],
|
|
20889
|
+
"attributes": [
|
|
20890
|
+
{
|
|
20891
|
+
"name": "disabled",
|
|
20892
|
+
"type": {
|
|
20893
|
+
"text": "boolean"
|
|
20894
|
+
},
|
|
20895
|
+
"description": "Disables the radio group and child radios.",
|
|
20896
|
+
"fieldName": "disabled"
|
|
20897
|
+
},
|
|
20898
|
+
{
|
|
20899
|
+
"name": "value",
|
|
20900
|
+
"type": {
|
|
20901
|
+
"text": "string | undefined"
|
|
20902
|
+
},
|
|
20903
|
+
"description": "The value of the checked radio.",
|
|
20904
|
+
"fieldName": "initialValue"
|
|
20905
|
+
},
|
|
20906
|
+
{
|
|
20907
|
+
"name": "name",
|
|
20908
|
+
"type": {
|
|
20909
|
+
"text": "string"
|
|
20910
|
+
},
|
|
20911
|
+
"description": "The name of the radio group.",
|
|
20912
|
+
"fieldName": "name"
|
|
20913
|
+
},
|
|
20914
|
+
{
|
|
20915
|
+
"name": "orientation",
|
|
20916
|
+
"type": {
|
|
20917
|
+
"text": "RadioGroupOrientation | undefined"
|
|
20918
|
+
},
|
|
20919
|
+
"description": "The orientation of the group.",
|
|
20920
|
+
"fieldName": "orientation",
|
|
20921
|
+
"parsedType": {
|
|
20922
|
+
"text": "'horizontal' | 'vertical' | undefined"
|
|
20923
|
+
}
|
|
20924
|
+
},
|
|
20925
|
+
{
|
|
20926
|
+
"name": "required",
|
|
20927
|
+
"type": {
|
|
20928
|
+
"text": "boolean"
|
|
20929
|
+
},
|
|
20930
|
+
"description": "Indicates whether the radio group is required.",
|
|
20931
|
+
"fieldName": "required"
|
|
20932
|
+
}
|
|
20933
|
+
],
|
|
20934
|
+
"superclass": {
|
|
20935
|
+
"name": "FASTElement",
|
|
20936
|
+
"package": "@microsoft/fast-element"
|
|
20937
|
+
},
|
|
20938
|
+
"customElement": true,
|
|
20939
|
+
"modulePath": "./dist/esm/radio-group/radio-group.base.js",
|
|
20940
|
+
"definitionPath": "./dist/esm/radio-group/define.js"
|
|
20941
|
+
}
|
|
20942
|
+
],
|
|
20943
|
+
"exports": [
|
|
20944
|
+
{
|
|
20945
|
+
"kind": "js",
|
|
20946
|
+
"name": "BaseRadioGroup",
|
|
20947
|
+
"declaration": {
|
|
20948
|
+
"name": "BaseRadioGroup",
|
|
20949
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20950
|
+
}
|
|
20951
|
+
}
|
|
20952
|
+
]
|
|
20953
|
+
},
|
|
20954
|
+
{
|
|
20955
|
+
"kind": "javascript-module",
|
|
20956
|
+
"path": "./dist/esm/radio-group/radio-group.js",
|
|
20957
|
+
"declarations": [
|
|
20958
|
+
{
|
|
20959
|
+
"kind": "class",
|
|
20960
|
+
"description": "A Radio Group Custom HTML Element.\nImplements the https://w3c.github.io/aria/#radiogroup | ARIA `radiogroup` role.",
|
|
20961
|
+
"name": "RadioGroup",
|
|
20962
|
+
"slots": [
|
|
20963
|
+
{
|
|
20964
|
+
"description": "The default slot for the radio group",
|
|
20965
|
+
"name": ""
|
|
20966
|
+
}
|
|
20967
|
+
],
|
|
20968
|
+
"superclass": {
|
|
20969
|
+
"name": "BaseRadioGroup",
|
|
20970
|
+
"module": "/src/radio-group/radio-group.base.js"
|
|
20971
|
+
},
|
|
20972
|
+
"tagName": "fluent-radio-group",
|
|
20973
|
+
"customElement": true,
|
|
20974
|
+
"attributes": [
|
|
20975
|
+
{
|
|
20976
|
+
"name": "disabled",
|
|
20977
|
+
"type": {
|
|
20978
|
+
"text": "boolean"
|
|
20979
|
+
},
|
|
20980
|
+
"description": "Disables the radio group and child radios.",
|
|
20981
|
+
"fieldName": "disabled",
|
|
20200
20982
|
"inheritedFrom": {
|
|
20201
|
-
"name": "
|
|
20202
|
-
"module": "src/
|
|
20983
|
+
"name": "BaseRadioGroup",
|
|
20984
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20203
20985
|
}
|
|
20204
20986
|
},
|
|
20205
20987
|
{
|
|
20206
20988
|
"name": "value",
|
|
20207
20989
|
"type": {
|
|
20208
|
-
"text": "string"
|
|
20990
|
+
"text": "string | undefined"
|
|
20209
20991
|
},
|
|
20210
|
-
"
|
|
20211
|
-
"description": "The initial value of the input.",
|
|
20992
|
+
"description": "The value of the checked radio.",
|
|
20212
20993
|
"fieldName": "initialValue",
|
|
20213
20994
|
"inheritedFrom": {
|
|
20214
|
-
"name": "
|
|
20215
|
-
"module": "src/
|
|
20995
|
+
"name": "BaseRadioGroup",
|
|
20996
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20216
20997
|
}
|
|
20217
20998
|
},
|
|
20218
20999
|
{
|
|
@@ -20220,90 +21001,40 @@
|
|
|
20220
21001
|
"type": {
|
|
20221
21002
|
"text": "string"
|
|
20222
21003
|
},
|
|
20223
|
-
"description": "The name of the
|
|
21004
|
+
"description": "The name of the radio group.",
|
|
20224
21005
|
"fieldName": "name",
|
|
20225
21006
|
"inheritedFrom": {
|
|
20226
|
-
"name": "
|
|
20227
|
-
"module": "src/
|
|
21007
|
+
"name": "BaseRadioGroup",
|
|
21008
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20228
21009
|
}
|
|
20229
21010
|
},
|
|
20230
21011
|
{
|
|
20231
|
-
"name": "
|
|
21012
|
+
"name": "orientation",
|
|
20232
21013
|
"type": {
|
|
20233
|
-
"text": "
|
|
21014
|
+
"text": "RadioGroupOrientation | undefined"
|
|
21015
|
+
},
|
|
21016
|
+
"description": "The orientation of the group.",
|
|
21017
|
+
"fieldName": "orientation",
|
|
21018
|
+
"parsedType": {
|
|
21019
|
+
"text": "'horizontal' | 'vertical' | undefined"
|
|
20234
21020
|
},
|
|
20235
|
-
"description": "The element's required state.",
|
|
20236
|
-
"fieldName": "required",
|
|
20237
21021
|
"inheritedFrom": {
|
|
20238
|
-
"name": "
|
|
20239
|
-
"module": "src/
|
|
21022
|
+
"name": "BaseRadioGroup",
|
|
21023
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20240
21024
|
}
|
|
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": [
|
|
21025
|
+
},
|
|
20274
21026
|
{
|
|
20275
|
-
"name": "
|
|
21027
|
+
"name": "required",
|
|
20276
21028
|
"type": {
|
|
20277
|
-
"text": "
|
|
21029
|
+
"text": "boolean"
|
|
21030
|
+
},
|
|
21031
|
+
"description": "Indicates whether the radio group is required.",
|
|
21032
|
+
"fieldName": "required",
|
|
21033
|
+
"inheritedFrom": {
|
|
21034
|
+
"name": "BaseRadioGroup",
|
|
21035
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20278
21036
|
}
|
|
20279
21037
|
}
|
|
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
21038
|
],
|
|
20308
21039
|
"members": [
|
|
20309
21040
|
{
|
|
@@ -20314,7 +21045,11 @@
|
|
|
20314
21045
|
},
|
|
20315
21046
|
"privacy": "private",
|
|
20316
21047
|
"default": "false",
|
|
20317
|
-
"description": "Indicates that the value has been changed by the user."
|
|
21048
|
+
"description": "Indicates that the value has been changed by the user.",
|
|
21049
|
+
"inheritedFrom": {
|
|
21050
|
+
"name": "BaseRadioGroup",
|
|
21051
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21052
|
+
}
|
|
20318
21053
|
},
|
|
20319
21054
|
{
|
|
20320
21055
|
"kind": "field",
|
|
@@ -20323,7 +21058,11 @@
|
|
|
20323
21058
|
"text": "boolean"
|
|
20324
21059
|
},
|
|
20325
21060
|
"privacy": "public",
|
|
20326
|
-
"description": "Disables the radio group and child radios."
|
|
21061
|
+
"description": "Disables the radio group and child radios.",
|
|
21062
|
+
"inheritedFrom": {
|
|
21063
|
+
"name": "BaseRadioGroup",
|
|
21064
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21065
|
+
}
|
|
20327
21066
|
},
|
|
20328
21067
|
{
|
|
20329
21068
|
"kind": "field",
|
|
@@ -20332,7 +21071,11 @@
|
|
|
20332
21071
|
"text": "string | undefined"
|
|
20333
21072
|
},
|
|
20334
21073
|
"privacy": "public",
|
|
20335
|
-
"description": "The value of the checked radio."
|
|
21074
|
+
"description": "The value of the checked radio.",
|
|
21075
|
+
"inheritedFrom": {
|
|
21076
|
+
"name": "BaseRadioGroup",
|
|
21077
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21078
|
+
}
|
|
20336
21079
|
},
|
|
20337
21080
|
{
|
|
20338
21081
|
"kind": "method",
|
|
@@ -20359,7 +21102,11 @@
|
|
|
20359
21102
|
"description": "the current value"
|
|
20360
21103
|
}
|
|
20361
21104
|
],
|
|
20362
|
-
"description": "Sets the matching radio to checked when the value changes. If no radio matches the value, no radio will be checked."
|
|
21105
|
+
"description": "Sets the matching radio to checked when the value changes. If no radio matches the value, no radio will be checked.",
|
|
21106
|
+
"inheritedFrom": {
|
|
21107
|
+
"name": "BaseRadioGroup",
|
|
21108
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21109
|
+
}
|
|
20363
21110
|
},
|
|
20364
21111
|
{
|
|
20365
21112
|
"kind": "field",
|
|
@@ -20368,7 +21115,11 @@
|
|
|
20368
21115
|
"text": "string"
|
|
20369
21116
|
},
|
|
20370
21117
|
"privacy": "public",
|
|
20371
|
-
"description": "The name of the radio group."
|
|
21118
|
+
"description": "The name of the radio group.",
|
|
21119
|
+
"inheritedFrom": {
|
|
21120
|
+
"name": "BaseRadioGroup",
|
|
21121
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21122
|
+
}
|
|
20372
21123
|
},
|
|
20373
21124
|
{
|
|
20374
21125
|
"kind": "field",
|
|
@@ -20380,6 +21131,10 @@
|
|
|
20380
21131
|
"description": "The orientation of the group.",
|
|
20381
21132
|
"parsedType": {
|
|
20382
21133
|
"text": "'horizontal' | 'vertical' | undefined"
|
|
21134
|
+
},
|
|
21135
|
+
"inheritedFrom": {
|
|
21136
|
+
"name": "BaseRadioGroup",
|
|
21137
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20383
21138
|
}
|
|
20384
21139
|
},
|
|
20385
21140
|
{
|
|
@@ -20389,7 +21144,11 @@
|
|
|
20389
21144
|
"text": "Radio[]"
|
|
20390
21145
|
},
|
|
20391
21146
|
"privacy": "public",
|
|
20392
|
-
"description": "The collection of all child radios."
|
|
21147
|
+
"description": "The collection of all child radios.",
|
|
21148
|
+
"inheritedFrom": {
|
|
21149
|
+
"name": "BaseRadioGroup",
|
|
21150
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21151
|
+
}
|
|
20393
21152
|
},
|
|
20394
21153
|
{
|
|
20395
21154
|
"kind": "method",
|
|
@@ -20416,7 +21175,11 @@
|
|
|
20416
21175
|
"description": "the current radios"
|
|
20417
21176
|
}
|
|
20418
21177
|
],
|
|
20419
|
-
"description": "Updates the enabled radios collection when properties on the child radios change."
|
|
21178
|
+
"description": "Updates the enabled radios collection when properties on the child radios change.",
|
|
21179
|
+
"inheritedFrom": {
|
|
21180
|
+
"name": "BaseRadioGroup",
|
|
21181
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21182
|
+
}
|
|
20420
21183
|
},
|
|
20421
21184
|
{
|
|
20422
21185
|
"kind": "field",
|
|
@@ -20425,7 +21188,11 @@
|
|
|
20425
21188
|
"text": "boolean"
|
|
20426
21189
|
},
|
|
20427
21190
|
"privacy": "public",
|
|
20428
|
-
"description": "Indicates whether the radio group is required."
|
|
21191
|
+
"description": "Indicates whether the radio group is required.",
|
|
21192
|
+
"inheritedFrom": {
|
|
21193
|
+
"name": "BaseRadioGroup",
|
|
21194
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21195
|
+
}
|
|
20429
21196
|
},
|
|
20430
21197
|
{
|
|
20431
21198
|
"kind": "method",
|
|
@@ -20451,7 +21218,11 @@
|
|
|
20451
21218
|
},
|
|
20452
21219
|
"description": "the current required value"
|
|
20453
21220
|
}
|
|
20454
|
-
]
|
|
21221
|
+
],
|
|
21222
|
+
"inheritedFrom": {
|
|
21223
|
+
"name": "BaseRadioGroup",
|
|
21224
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21225
|
+
}
|
|
20455
21226
|
},
|
|
20456
21227
|
{
|
|
20457
21228
|
"kind": "method",
|
|
@@ -20477,7 +21248,11 @@
|
|
|
20477
21248
|
"description": "the current slotted radios"
|
|
20478
21249
|
}
|
|
20479
21250
|
],
|
|
20480
|
-
"description": "Updates the radios collection when the slotted radios change."
|
|
21251
|
+
"description": "Updates the radios collection when the slotted radios change.",
|
|
21252
|
+
"inheritedFrom": {
|
|
21253
|
+
"name": "BaseRadioGroup",
|
|
21254
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21255
|
+
}
|
|
20481
21256
|
},
|
|
20482
21257
|
{
|
|
20483
21258
|
"kind": "field",
|
|
@@ -20488,7 +21263,11 @@
|
|
|
20488
21263
|
"privacy": "public",
|
|
20489
21264
|
"static": true,
|
|
20490
21265
|
"default": "true",
|
|
20491
|
-
"description": "The form-associated flag."
|
|
21266
|
+
"description": "The form-associated flag.",
|
|
21267
|
+
"inheritedFrom": {
|
|
21268
|
+
"name": "BaseRadioGroup",
|
|
21269
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21270
|
+
}
|
|
20492
21271
|
},
|
|
20493
21272
|
{
|
|
20494
21273
|
"kind": "field",
|
|
@@ -20498,7 +21277,11 @@
|
|
|
20498
21277
|
},
|
|
20499
21278
|
"privacy": "public",
|
|
20500
21279
|
"description": "The element's validity state.",
|
|
20501
|
-
"readonly": true
|
|
21280
|
+
"readonly": true,
|
|
21281
|
+
"inheritedFrom": {
|
|
21282
|
+
"name": "BaseRadioGroup",
|
|
21283
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21284
|
+
}
|
|
20502
21285
|
},
|
|
20503
21286
|
{
|
|
20504
21287
|
"kind": "field",
|
|
@@ -20507,7 +21290,11 @@
|
|
|
20507
21290
|
"text": "string | null"
|
|
20508
21291
|
},
|
|
20509
21292
|
"privacy": "public",
|
|
20510
|
-
"description": "The current value of the checked radio."
|
|
21293
|
+
"description": "The current value of the checked radio.",
|
|
21294
|
+
"inheritedFrom": {
|
|
21295
|
+
"name": "BaseRadioGroup",
|
|
21296
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21297
|
+
}
|
|
20511
21298
|
},
|
|
20512
21299
|
{
|
|
20513
21300
|
"kind": "method",
|
|
@@ -20527,7 +21314,11 @@
|
|
|
20527
21314
|
"description": "the change event"
|
|
20528
21315
|
}
|
|
20529
21316
|
],
|
|
20530
|
-
"description": "Sets the checked state of all radios when any radio emits a `change` event."
|
|
21317
|
+
"description": "Sets the checked state of all radios when any radio emits a `change` event.",
|
|
21318
|
+
"inheritedFrom": {
|
|
21319
|
+
"name": "BaseRadioGroup",
|
|
21320
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21321
|
+
}
|
|
20531
21322
|
},
|
|
20532
21323
|
{
|
|
20533
21324
|
"kind": "method",
|
|
@@ -20538,7 +21329,11 @@
|
|
|
20538
21329
|
"text": "boolean"
|
|
20539
21330
|
}
|
|
20540
21331
|
},
|
|
20541
|
-
"description": "Checks the validity of the element and returns the result."
|
|
21332
|
+
"description": "Checks the validity of the element and returns the result.",
|
|
21333
|
+
"inheritedFrom": {
|
|
21334
|
+
"name": "BaseRadioGroup",
|
|
21335
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21336
|
+
}
|
|
20542
21337
|
},
|
|
20543
21338
|
{
|
|
20544
21339
|
"kind": "method",
|
|
@@ -20547,6 +21342,10 @@
|
|
|
20547
21342
|
"type": {
|
|
20548
21343
|
"text": "void"
|
|
20549
21344
|
}
|
|
21345
|
+
},
|
|
21346
|
+
"inheritedFrom": {
|
|
21347
|
+
"name": "BaseRadioGroup",
|
|
21348
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20550
21349
|
}
|
|
20551
21350
|
},
|
|
20552
21351
|
{
|
|
@@ -20569,7 +21368,11 @@
|
|
|
20569
21368
|
"name": "upperBound",
|
|
20570
21369
|
"default": "this.enabledRadios.length"
|
|
20571
21370
|
}
|
|
20572
|
-
]
|
|
21371
|
+
],
|
|
21372
|
+
"inheritedFrom": {
|
|
21373
|
+
"name": "BaseRadioGroup",
|
|
21374
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21375
|
+
}
|
|
20573
21376
|
},
|
|
20574
21377
|
{
|
|
20575
21378
|
"kind": "method",
|
|
@@ -20587,7 +21390,11 @@
|
|
|
20587
21390
|
},
|
|
20588
21391
|
"description": "the disabled event"
|
|
20589
21392
|
}
|
|
20590
|
-
]
|
|
21393
|
+
],
|
|
21394
|
+
"inheritedFrom": {
|
|
21395
|
+
"name": "BaseRadioGroup",
|
|
21396
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21397
|
+
}
|
|
20591
21398
|
},
|
|
20592
21399
|
{
|
|
20593
21400
|
"kind": "method",
|
|
@@ -20598,7 +21405,11 @@
|
|
|
20598
21405
|
"text": "boolean"
|
|
20599
21406
|
}
|
|
20600
21407
|
},
|
|
20601
|
-
"description": "Reports the validity of the element."
|
|
21408
|
+
"description": "Reports the validity of the element.",
|
|
21409
|
+
"inheritedFrom": {
|
|
21410
|
+
"name": "BaseRadioGroup",
|
|
21411
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21412
|
+
}
|
|
20602
21413
|
},
|
|
20603
21414
|
{
|
|
20604
21415
|
"kind": "field",
|
|
@@ -20606,66 +21417,27 @@
|
|
|
20606
21417
|
"type": {
|
|
20607
21418
|
"text": "string"
|
|
20608
21419
|
},
|
|
20609
|
-
"default": "'radiogroup'"
|
|
21420
|
+
"default": "'radiogroup'",
|
|
21421
|
+
"inheritedFrom": {
|
|
21422
|
+
"name": "BaseRadioGroup",
|
|
21423
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
21424
|
+
}
|
|
20610
21425
|
},
|
|
20611
21426
|
{
|
|
20612
21427
|
"kind": "field",
|
|
20613
|
-
"name": "ariaOrientation"
|
|
20614
|
-
|
|
20615
|
-
|
|
20616
|
-
|
|
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"
|
|
21428
|
+
"name": "ariaOrientation",
|
|
21429
|
+
"inheritedFrom": {
|
|
21430
|
+
"name": "BaseRadioGroup",
|
|
21431
|
+
"module": "src/radio-group/radio-group.base.ts"
|
|
20650
21432
|
}
|
|
20651
|
-
},
|
|
20652
|
-
{
|
|
20653
|
-
"name": "required",
|
|
20654
|
-
"type": {
|
|
20655
|
-
"text": "boolean"
|
|
20656
|
-
},
|
|
20657
|
-
"description": "Indicates whether the radio group is required.",
|
|
20658
|
-
"fieldName": "required"
|
|
20659
21433
|
}
|
|
20660
21434
|
],
|
|
20661
|
-
"superclass": {
|
|
20662
|
-
"name": "FASTElement",
|
|
20663
|
-
"package": "@microsoft/fast-element"
|
|
20664
|
-
},
|
|
20665
|
-
"tagName": "fluent-radio-group",
|
|
20666
|
-
"customElement": true,
|
|
20667
21435
|
"modulePath": "./dist/esm/radio-group/radio-group.js",
|
|
20668
|
-
"definitionPath": "./dist/esm/radio-group/define.js"
|
|
21436
|
+
"definitionPath": "./dist/esm/radio-group/define.js",
|
|
21437
|
+
"cssProperties": [],
|
|
21438
|
+
"cssParts": [],
|
|
21439
|
+
"cssStates": [],
|
|
21440
|
+
"events": []
|
|
20669
21441
|
}
|
|
20670
21442
|
],
|
|
20671
21443
|
"exports": [
|
|
@@ -28675,6 +29447,22 @@
|
|
|
28675
29447
|
}
|
|
28676
29448
|
]
|
|
28677
29449
|
},
|
|
29450
|
+
{
|
|
29451
|
+
"kind": "javascript-module",
|
|
29452
|
+
"path": "./dist/esm/menu-list/define.js",
|
|
29453
|
+
"deprecated": false,
|
|
29454
|
+
"declarations": [],
|
|
29455
|
+
"exports": [
|
|
29456
|
+
{
|
|
29457
|
+
"kind": "custom-element-definition",
|
|
29458
|
+
"name": "BaseMenuList",
|
|
29459
|
+
"declaration": {
|
|
29460
|
+
"name": "BaseMenuList",
|
|
29461
|
+
"module": "./dist/esm/menu-list/menu-list.base.js"
|
|
29462
|
+
}
|
|
29463
|
+
}
|
|
29464
|
+
]
|
|
29465
|
+
},
|
|
28678
29466
|
{
|
|
28679
29467
|
"kind": "javascript-module",
|
|
28680
29468
|
"path": "./dist/esm/menu-list/define.js",
|
|
@@ -28771,6 +29559,22 @@
|
|
|
28771
29559
|
}
|
|
28772
29560
|
]
|
|
28773
29561
|
},
|
|
29562
|
+
{
|
|
29563
|
+
"kind": "javascript-module",
|
|
29564
|
+
"path": "./dist/esm/radio-group/define.js",
|
|
29565
|
+
"deprecated": false,
|
|
29566
|
+
"declarations": [],
|
|
29567
|
+
"exports": [
|
|
29568
|
+
{
|
|
29569
|
+
"kind": "custom-element-definition",
|
|
29570
|
+
"name": "BaseRadioGroup",
|
|
29571
|
+
"declaration": {
|
|
29572
|
+
"name": "BaseRadioGroup",
|
|
29573
|
+
"module": "./dist/esm/radio-group/radio-group.base.js"
|
|
29574
|
+
}
|
|
29575
|
+
}
|
|
29576
|
+
]
|
|
29577
|
+
},
|
|
28774
29578
|
{
|
|
28775
29579
|
"kind": "javascript-module",
|
|
28776
29580
|
"path": "./dist/esm/radio-group/define.js",
|