Skip to content

Commit 5f74e7e

Browse files
angular-robotkirjs
authored andcommitted
docs: update cross-repo adev docs
Updated Angular adev cross repo docs files.
1 parent 973ede6 commit 5f74e7e

5 files changed

Lines changed: 51 additions & 17 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"branchName": "refs/heads/main",
3-
"sha": "ff5cbfe28c7076596ced113b61510bf9facd2042"
3+
"sha": "828d5f7fd7ffe511533af182ee44668787415c28"
44
}

adev/src/content/aria/aria-combobox.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@
170170
"type": "ModelSignal<string>",
171171
"memberType": "property",
172172
"memberTags": [
173+
"readonly",
173174
"input",
174175
"output"
175176
],
@@ -290,7 +291,8 @@
290291
"type": "Signal<Direction>",
291292
"memberType": "property",
292293
"memberTags": [
293-
"protected"
294+
"protected",
295+
"readonly"
294296
],
295297
"description": "A signal wrapper for directionality.",
296298
"jsdocTags": []
@@ -319,7 +321,9 @@
319321
"name": "filterMode",
320322
"type": "InputSignal<\"manual\" | \"auto-select\" | \"highlight\">",
321323
"memberType": "property",
322-
"memberTags": [],
324+
"memberTags": [
325+
"readonly"
326+
],
323327
"description": "The filter mode for the combobox.\n- `manual`: The consumer is responsible for filtering the options.\n- `auto-select`: The combobox automatically selects the first matching option.\n- `highlight`: The combobox highlights matching text in the options without changing selection.",
324328
"jsdocTags": []
325329
},

adev/src/content/aria/aria-listbox.json

Lines changed: 42 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
"name": "active",
2424
"type": "Signal<any>",
2525
"memberType": "property",
26-
"memberTags": [],
26+
"memberTags": [
27+
"readonly"
28+
],
2729
"description": "Whether the option is currently active (focused).",
2830
"jsdocTags": []
2931
},
@@ -45,7 +47,8 @@
4547
"type": "Signal<string>",
4648
"memberType": "property",
4749
"memberTags": [
48-
"protected"
50+
"protected",
51+
"readonly"
4952
],
5053
"description": "The text used by the typeahead search.",
5154
"jsdocTags": []
@@ -55,6 +58,7 @@
5558
"type": "InputSignal<V>",
5659
"memberType": "property",
5760
"memberTags": [
61+
"readonly",
5862
"input"
5963
],
6064
"description": "The value of the option.",
@@ -67,6 +71,7 @@
6771
"type": "InputSignalWithTransform<boolean, unknown>",
6872
"memberType": "property",
6973
"memberTags": [
74+
"readonly",
7075
"input"
7176
],
7277
"description": "Whether an item is disabled.",
@@ -79,6 +84,7 @@
7984
"type": "InputSignal<string | undefined>",
8085
"memberType": "property",
8186
"memberTags": [
87+
"readonly",
8288
"input"
8389
],
8490
"description": "The text used by the typeahead search.",
@@ -171,7 +177,8 @@
171177
"type": "Signal<Direction>",
172178
"memberType": "property",
173179
"memberTags": [
174-
"protected"
180+
"protected",
181+
"readonly"
175182
],
176183
"description": "A signal wrapper for directionality.",
177184
"jsdocTags": []
@@ -181,7 +188,8 @@
181188
"type": "Signal<OptionPattern<V>[]>",
182189
"memberType": "property",
183190
"memberTags": [
184-
"protected"
191+
"protected",
192+
"readonly"
185193
],
186194
"description": "The Option UIPatterns of the child Options.",
187195
"jsdocTags": []
@@ -190,79 +198,99 @@
190198
"name": "orientation",
191199
"type": "InputSignal<\"vertical\" | \"horizontal\">",
192200
"memberType": "property",
193-
"memberTags": [],
201+
"memberTags": [
202+
"readonly"
203+
],
194204
"description": "Whether the list is vertically or horizontally oriented.",
195205
"jsdocTags": []
196206
},
197207
{
198208
"name": "multi",
199209
"type": "InputSignalWithTransform<boolean, unknown>",
200210
"memberType": "property",
201-
"memberTags": [],
211+
"memberTags": [
212+
"readonly"
213+
],
202214
"description": "Whether multiple items in the list can be selected at once.",
203215
"jsdocTags": []
204216
},
205217
{
206218
"name": "wrap",
207219
"type": "InputSignalWithTransform<boolean, unknown>",
208220
"memberType": "property",
209-
"memberTags": [],
221+
"memberTags": [
222+
"readonly"
223+
],
210224
"description": "Whether focus should wrap when navigating.",
211225
"jsdocTags": []
212226
},
213227
{
214228
"name": "softDisabled",
215229
"type": "InputSignalWithTransform<boolean, unknown>",
216230
"memberType": "property",
217-
"memberTags": [],
231+
"memberTags": [
232+
"readonly"
233+
],
218234
"description": "Whether to allow disabled items to receive focus. When `true`, disabled items are\nfocusable but not interactive. When `false`, disabled items are skipped during navigation.",
219235
"jsdocTags": []
220236
},
221237
{
222238
"name": "focusMode",
223239
"type": "InputSignal<\"roving\" | \"activedescendant\">",
224240
"memberType": "property",
225-
"memberTags": [],
241+
"memberTags": [
242+
"readonly"
243+
],
226244
"description": "The focus strategy used by the list.\n- `roving`: Focus is moved to the active item using `tabindex`.\n- `activedescendant`: Focus remains on the listbox container, and `aria-activedescendant` is used to indicate the active item.",
227245
"jsdocTags": []
228246
},
229247
{
230248
"name": "selectionMode",
231249
"type": "InputSignal<\"follow\" | \"explicit\">",
232250
"memberType": "property",
233-
"memberTags": [],
251+
"memberTags": [
252+
"readonly"
253+
],
234254
"description": "The selection strategy used by the list.\n- `follow`: The focused item is automatically selected.\n- `explicit`: Items are selected explicitly by the user (e.g., via click or spacebar).",
235255
"jsdocTags": []
236256
},
237257
{
238258
"name": "typeaheadDelay",
239259
"type": "InputSignal<number>",
240260
"memberType": "property",
241-
"memberTags": [],
261+
"memberTags": [
262+
"readonly"
263+
],
242264
"description": "The amount of time before the typeahead search is reset.",
243265
"jsdocTags": []
244266
},
245267
{
246268
"name": "disabled",
247269
"type": "InputSignalWithTransform<boolean, unknown>",
248270
"memberType": "property",
249-
"memberTags": [],
271+
"memberTags": [
272+
"readonly"
273+
],
250274
"description": "Whether the listbox is disabled.",
251275
"jsdocTags": []
252276
},
253277
{
254278
"name": "readonly",
255279
"type": "InputSignalWithTransform<boolean, unknown>",
256280
"memberType": "property",
257-
"memberTags": [],
281+
"memberTags": [
282+
"readonly"
283+
],
258284
"description": "Whether the listbox is readonly.",
259285
"jsdocTags": []
260286
},
261287
{
262288
"name": "value",
263289
"type": "ModelSignal<V[]>",
264290
"memberType": "property",
265-
"memberTags": [],
291+
"memberTags": [
292+
"readonly"
293+
],
266294
"description": "The values of the currently selected items.",
267295
"jsdocTags": []
268296
},

adev/src/content/aria/aria-menu.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
"type": "InputSignal<Menu<V> | undefined>",
6464
"memberType": "property",
6565
"memberTags": [
66+
"readonly",
6667
"input"
6768
],
6869
"description": "The menu associated with the trigger.",

adev/src/content/aria/aria-toolbar.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@
121121
"type": "InputSignalWithTransform<boolean, unknown>",
122122
"memberType": "property",
123123
"memberTags": [
124+
"readonly",
124125
"input"
125126
],
126127
"description": "Whether to allow disabled items to receive focus. When `true`, disabled items are\nfocusable but not interactive. When `false`, disabled items are skipped during navigation.",

0 commit comments

Comments
 (0)