@blueprintui/grid 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +3 -0
  3. package/cell/element.css.js +1 -0
  4. package/cell/element.d.ts +27 -0
  5. package/cell/element.js +1 -0
  6. package/column/element.css.js +1 -0
  7. package/column/element.d.ts +29 -0
  8. package/column/element.js +1 -0
  9. package/column/position.controller.d.ts +10 -0
  10. package/column/position.controller.js +1 -0
  11. package/column/size.controller.d.ts +13 -0
  12. package/column/size.controller.js +1 -0
  13. package/custom-elements.json +2107 -0
  14. package/footer/element.css.js +1 -0
  15. package/footer/element.d.ts +22 -0
  16. package/footer/element.js +1 -0
  17. package/grid/element.css.js +1 -0
  18. package/grid/element.d.ts +85 -0
  19. package/grid/element.js +1 -0
  20. package/grid/global.css.js +1 -0
  21. package/grid/layout.controller.d.ts +21 -0
  22. package/grid/layout.controller.js +1 -0
  23. package/include/core.d.ts +13 -0
  24. package/include/core.js +1 -0
  25. package/include/footer.d.ts +6 -0
  26. package/include/footer.js +1 -0
  27. package/include/keynav.d.ts +1 -0
  28. package/include/keynav.js +1 -0
  29. package/include/pagination.d.ts +10 -0
  30. package/include/pagination.js +1 -0
  31. package/include/placeholder.d.ts +6 -0
  32. package/include/placeholder.js +1 -0
  33. package/index.d.ts +7 -0
  34. package/index.js +1 -0
  35. package/internals/controllers/interaction-scroll-visibility.controller.d.ts +12 -0
  36. package/internals/controllers/interaction-scroll-visibility.controller.js +1 -0
  37. package/internals/controllers/key-grid.controller.d.ts +19 -0
  38. package/internals/controllers/key-grid.controller.js +1 -0
  39. package/internals/controllers/key.utils.d.ts +9 -0
  40. package/internals/controllers/key.utils.js +1 -0
  41. package/internals/index.d.ts +4 -0
  42. package/internals/index.js +1 -0
  43. package/internals/utils/dom.d.ts +2 -0
  44. package/internals/utils/dom.js +1 -0
  45. package/internals/utils/events.d.ts +2 -0
  46. package/internals/utils/events.js +1 -0
  47. package/internals/utils/focus.d.ts +7 -0
  48. package/internals/utils/focus.js +1 -0
  49. package/internals/utils/keynav.d.ts +11 -0
  50. package/internals/utils/keynav.js +1 -0
  51. package/internals/utils/traversal.d.ts +5 -0
  52. package/internals/utils/traversal.js +1 -0
  53. package/package.json +44 -0
  54. package/pagination/element.css.js +1 -0
  55. package/pagination/element.d.ts +53 -0
  56. package/pagination/element.js +1 -0
  57. package/placeholder/element.css.js +1 -0
  58. package/placeholder/element.d.ts +45 -0
  59. package/placeholder/element.js +1 -0
  60. package/row/element.css.js +1 -0
  61. package/row/element.d.ts +22 -0
  62. package/row/element.js +1 -0
  63. package/row/position.controller.d.ts +9 -0
  64. package/row/position.controller.js +1 -0
@@ -0,0 +1,2107 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "/cell/element.css",
8
+ "declarations": [],
9
+ "exports": []
10
+ },
11
+ {
12
+ "kind": "javascript-module",
13
+ "path": "/cell/element.js",
14
+ "declarations": [
15
+ {
16
+ "kind": "class",
17
+ "description": "Grid Cell\n\n```typescript\nimport '@blueprintui/grid/include/core.js';\n```",
18
+ "name": "BpGridCell",
19
+ "cssProperties": [
20
+ {
21
+ "name": "--border-right"
22
+ },
23
+ {
24
+ "name": "--border-left"
25
+ },
26
+ {
27
+ "name": "--min-height"
28
+ },
29
+ {
30
+ "name": "--min-width"
31
+ },
32
+ {
33
+ "name": "--font-size"
34
+ },
35
+ {
36
+ "name": "--justify-content"
37
+ },
38
+ {
39
+ "name": "--padding-block"
40
+ },
41
+ {
42
+ "name": "--padding-inline-start"
43
+ },
44
+ {
45
+ "name": "--padding-inline-end"
46
+ },
47
+ {
48
+ "name": "--color"
49
+ }
50
+ ],
51
+ "slots": [
52
+ {
53
+ "description": "cell content",
54
+ "name": ""
55
+ }
56
+ ],
57
+ "members": [
58
+ {
59
+ "kind": "field",
60
+ "name": "#internals",
61
+ "privacy": "private"
62
+ },
63
+ {
64
+ "kind": "field",
65
+ "name": "role",
66
+ "type": {
67
+ "text": "string"
68
+ },
69
+ "default": "'gridcell'"
70
+ }
71
+ ],
72
+ "superclass": {
73
+ "name": "LitElement",
74
+ "package": "lit"
75
+ },
76
+ "tagName": "bp-grid-cell",
77
+ "customElement": true
78
+ }
79
+ ],
80
+ "exports": [
81
+ {
82
+ "kind": "js",
83
+ "name": "BpGridCell",
84
+ "declaration": {
85
+ "name": "BpGridCell",
86
+ "module": "/cell/element.js"
87
+ }
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ "kind": "javascript-module",
93
+ "path": "/column/element.css",
94
+ "declarations": [],
95
+ "exports": []
96
+ },
97
+ {
98
+ "kind": "javascript-module",
99
+ "path": "/column/element.js",
100
+ "declarations": [
101
+ {
102
+ "kind": "class",
103
+ "description": "Grid Column\n\n```typescript\nimport '@blueprintui/grid/include/core.js';\n```",
104
+ "name": "BpGridColumn",
105
+ "cssProperties": [
106
+ {
107
+ "name": "--min-height"
108
+ },
109
+ {
110
+ "name": "--min-width"
111
+ },
112
+ {
113
+ "name": "--justify-content"
114
+ },
115
+ {
116
+ "name": "--padding-block"
117
+ },
118
+ {
119
+ "name": "--padding-inline"
120
+ },
121
+ {
122
+ "name": "--background"
123
+ },
124
+ {
125
+ "name": "--font-size"
126
+ },
127
+ {
128
+ "name": "--color"
129
+ }
130
+ ],
131
+ "slots": [
132
+ {
133
+ "description": "column content",
134
+ "name": ""
135
+ }
136
+ ],
137
+ "members": [
138
+ {
139
+ "kind": "field",
140
+ "name": "width",
141
+ "type": {
142
+ "text": "string"
143
+ },
144
+ "attribute": "width"
145
+ },
146
+ {
147
+ "kind": "field",
148
+ "name": "type",
149
+ "type": {
150
+ "text": "'' | 'action'"
151
+ },
152
+ "attribute": "type",
153
+ "reflects": true
154
+ },
155
+ {
156
+ "kind": "field",
157
+ "name": "position",
158
+ "type": {
159
+ "text": "'' | 'sticky' | 'fixed'"
160
+ },
161
+ "default": "''",
162
+ "attribute": "position",
163
+ "reflects": true
164
+ },
165
+ {
166
+ "kind": "field",
167
+ "name": "#internals",
168
+ "privacy": "private"
169
+ },
170
+ {
171
+ "kind": "field",
172
+ "name": "role",
173
+ "type": {
174
+ "text": "string"
175
+ },
176
+ "default": "'columnheader'"
177
+ },
178
+ {
179
+ "kind": "field",
180
+ "name": "ariaSort",
181
+ "type": {
182
+ "text": "string"
183
+ },
184
+ "default": "'none'"
185
+ }
186
+ ],
187
+ "attributes": [
188
+ {
189
+ "name": "width",
190
+ "type": {
191
+ "text": "string"
192
+ },
193
+ "fieldName": "width"
194
+ },
195
+ {
196
+ "name": "type",
197
+ "type": {
198
+ "text": "'' | 'action'"
199
+ },
200
+ "fieldName": "type"
201
+ },
202
+ {
203
+ "name": "position",
204
+ "type": {
205
+ "text": "'' | 'sticky' | 'fixed'"
206
+ },
207
+ "default": "''",
208
+ "fieldName": "position"
209
+ }
210
+ ],
211
+ "superclass": {
212
+ "name": "LitElement",
213
+ "package": "lit"
214
+ },
215
+ "tagName": "bp-grid-column",
216
+ "customElement": true
217
+ }
218
+ ],
219
+ "exports": [
220
+ {
221
+ "kind": "js",
222
+ "name": "BpGridColumn",
223
+ "declaration": {
224
+ "name": "BpGridColumn",
225
+ "module": "/column/element.js"
226
+ }
227
+ }
228
+ ]
229
+ },
230
+ {
231
+ "kind": "javascript-module",
232
+ "path": "/column/position.controller.js",
233
+ "declarations": [
234
+ {
235
+ "kind": "class",
236
+ "description": "",
237
+ "name": "GridColumnPositionController",
238
+ "members": [
239
+ {
240
+ "kind": "field",
241
+ "name": "#styles",
242
+ "privacy": "private",
243
+ "type": {
244
+ "text": "HTMLElement"
245
+ }
246
+ },
247
+ {
248
+ "kind": "field",
249
+ "name": "#previousPosition",
250
+ "privacy": "private",
251
+ "type": {
252
+ "text": "'' | 'sticky' | 'fixed'"
253
+ },
254
+ "default": "''"
255
+ },
256
+ {
257
+ "kind": "field",
258
+ "name": "#hostGrid",
259
+ "privacy": "private"
260
+ },
261
+ {
262
+ "kind": "method",
263
+ "name": "hostUpdated"
264
+ },
265
+ {
266
+ "kind": "method",
267
+ "name": "#calculateColumnPositionStyles"
268
+ },
269
+ {
270
+ "kind": "method",
271
+ "name": "#getPositionStyle",
272
+ "parameters": [
273
+ {
274
+ "name": "side",
275
+ "type": {
276
+ "text": "'left' | 'right'"
277
+ }
278
+ },
279
+ {
280
+ "name": "gridPosition",
281
+ "type": {
282
+ "text": "DOMRect"
283
+ }
284
+ }
285
+ ]
286
+ },
287
+ {
288
+ "kind": "method",
289
+ "name": "#borderStyle",
290
+ "parameters": [
291
+ {
292
+ "name": "side",
293
+ "type": {
294
+ "text": "'left' | 'right'"
295
+ }
296
+ }
297
+ ]
298
+ }
299
+ ]
300
+ }
301
+ ],
302
+ "exports": [
303
+ {
304
+ "kind": "js",
305
+ "name": "GridColumnPositionController",
306
+ "declaration": {
307
+ "name": "GridColumnPositionController",
308
+ "module": "/column/position.controller.js"
309
+ }
310
+ }
311
+ ]
312
+ },
313
+ {
314
+ "kind": "javascript-module",
315
+ "path": "/column/size.controller.js",
316
+ "declarations": [
317
+ {
318
+ "kind": "class",
319
+ "description": "",
320
+ "name": "GridColumnSizeController",
321
+ "members": [
322
+ {
323
+ "kind": "field",
324
+ "name": "#observers",
325
+ "privacy": "private",
326
+ "type": {
327
+ "text": "(ResizeObserver | MutationObserver)[]"
328
+ },
329
+ "default": "[]"
330
+ },
331
+ {
332
+ "kind": "field",
333
+ "name": "#hostGrid",
334
+ "privacy": "private"
335
+ },
336
+ {
337
+ "kind": "field",
338
+ "name": "#hostRange",
339
+ "privacy": "private"
340
+ },
341
+ {
342
+ "kind": "method",
343
+ "name": "hostConnected"
344
+ },
345
+ {
346
+ "kind": "method",
347
+ "name": "hostUpdated"
348
+ },
349
+ {
350
+ "kind": "method",
351
+ "name": "hostDisconnected"
352
+ },
353
+ {
354
+ "kind": "method",
355
+ "name": "#setActionWidth"
356
+ },
357
+ {
358
+ "kind": "method",
359
+ "name": "#updateSetColumnWidth"
360
+ },
361
+ {
362
+ "kind": "method",
363
+ "name": "#updateResizedColumnWidth",
364
+ "parameters": [
365
+ {
366
+ "name": "width",
367
+ "type": {
368
+ "text": "number"
369
+ }
370
+ }
371
+ ]
372
+ }
373
+ ]
374
+ }
375
+ ],
376
+ "exports": [
377
+ {
378
+ "kind": "js",
379
+ "name": "GridColumnSizeController",
380
+ "declaration": {
381
+ "name": "GridColumnSizeController",
382
+ "module": "/column/size.controller.js"
383
+ }
384
+ }
385
+ ]
386
+ },
387
+ {
388
+ "kind": "javascript-module",
389
+ "path": "/examples.data.js",
390
+ "declarations": [
391
+ {
392
+ "kind": "variable",
393
+ "name": "grid2",
394
+ "type": {
395
+ "text": "object"
396
+ },
397
+ "default": "{\n columns: [\n { id: 1, label: 'Column 1' },\n { id: 2, label: 'Column 2' },\n { id: 4, label: 'Column 3' },\n { id: 8, label: 'Column 4' },\n { id: 16, label: 'Column 5' },\n ],\n rows: [\n {\n id: '0',\n cells: [\n { value: 'Cell 0-1' },\n { value: 'Cell 0-2' },\n { value: 'Cell 0-3' },\n { value: 'Cell 0-4' },\n { value: 'Cell 0-5' },\n ],\n },\n {\n id: '1',\n cells: [\n { value: 'Cell 1-1' },\n { value: 'Cell 1-2' },\n { value: 'Cell 1-3' },\n { value: 'Cell 1-4' },\n { value: 'Cell 1-5' },\n ],\n },\n {\n id: '2',\n cells: [\n { value: 'Cell 2-1' },\n { value: 'Cell 2-2' },\n { value: 'Cell 2-3' },\n { value: 'Cell 2-4' },\n { value: 'Cell 2-5' },\n ],\n },\n {\n id: '3',\n cells: [\n { value: 'Cell 3-1' },\n { value: 'Cell 3-2' },\n { value: 'Cell 3-3' },\n { value: 'Cell 3-4' },\n { value: 'Cell 3-5' },\n ],\n },\n {\n id: '4',\n cells: [\n { value: 'Cell 4-1' },\n { value: 'Cell 4-2' },\n { value: 'Cell 4-3' },\n { value: 'Cell 4-4' },\n { value: 'Cell 4-5' },\n ],\n },\n {\n id: '5',\n cells: [\n { value: 'Cell 5-1' },\n { value: 'Cell 5-2' },\n { value: 'Cell 5-3' },\n { value: 'Cell 5-4' },\n { value: 'Cell 5-5' },\n ],\n },\n {\n id: '6',\n cells: [\n { value: 'Cell 6-1' },\n { value: 'Cell 6-2' },\n { value: 'Cell 6-3' },\n { value: 'Cell 6-4' },\n { value: 'Cell 6-5' },\n ],\n },\n {\n id: '7',\n cells: [\n { value: 'Cell 7-1' },\n { value: 'Cell 7-2' },\n { value: 'Cell 7-3' },\n { value: 'Cell 7-4' },\n { value: 'Cell 7-5' },\n ],\n },\n {\n id: '8',\n cells: [\n { value: 'Cell 8-1' },\n { value: 'Cell 8-2' },\n { value: 'Cell 8-3' },\n { value: 'Cell 8-4' },\n { value: 'Cell 8-5' },\n ],\n },\n {\n id: '9',\n cells: [\n { value: 'Cell 9-1' },\n { value: 'Cell 9-2' },\n { value: 'Cell 9-3' },\n { value: 'Cell 9-4' },\n { value: 'Cell 9-5' },\n ],\n },\n {\n id: '10',\n cells: [\n { value: 'Cell 10-1' },\n { value: 'Cell 10-2' },\n { value: 'Cell 10-3' },\n { value: 'Cell 10-4' },\n { value: 'Cell 10-5' },\n ],\n },\n {\n id: '11',\n cells: [\n { value: 'Cell 11-1' },\n { value: 'Cell 11-2' },\n { value: 'Cell 11-3' },\n { value: 'Cell 11-4' },\n { value: 'Cell 11-5' },\n ],\n },\n {\n id: '12',\n cells: [\n { value: 'Cell 12-1' },\n { value: 'Cell 12-2' },\n { value: 'Cell 12-3' },\n { value: 'Cell 12-4' },\n { value: 'Cell 12-5' },\n ],\n },\n {\n id: '13',\n cells: [\n { value: 'Cell 13-1' },\n { value: 'Cell 13-2' },\n { value: 'Cell 13-3' },\n { value: 'Cell 13-4' },\n { value: 'Cell 13-5' },\n ],\n },\n {\n id: '14',\n cells: [\n { value: 'Cell 14-1' },\n { value: 'Cell 14-2' },\n { value: 'Cell 14-3' },\n { value: 'Cell 14-4' },\n { value: 'Cell 14-5' },\n ],\n },\n {\n id: '15',\n cells: [\n { value: 'Cell 15-1' },\n { value: 'Cell 15-2' },\n { value: 'Cell 15-3' },\n { value: 'Cell 15-4' },\n { value: 'Cell 15-5' },\n ],\n },\n {\n id: '',\n cells: [\n { value: 'Cell 16-1' },\n { value: 'Cell 16-2' },\n { value: 'Cell 16-3' },\n { value: 'Cell 16-4' },\n { value: 'Cell 16-5' },\n ],\n },\n {\n id: '17',\n cells: [\n { value: 'Cell 17-1' },\n { value: 'Cell 17-2' },\n { value: 'Cell 17-3' },\n { value: 'Cell 17-4' },\n { value: 'Cell 17-5' },\n ],\n },\n {\n id: '18',\n cells: [\n { value: 'Cell 18-1' },\n { value: 'Cell 18-2' },\n { value: 'Cell 18-3' },\n { value: 'Cell 18-4' },\n { value: 'Cell 18-5' },\n ],\n },\n {\n id: '19',\n cells: [\n { value: 'Cell 19-1' },\n { value: 'Cell 19-2' },\n { value: 'Cell 19-3' },\n { value: 'Cell 18-4' },\n { value: 'Cell 19-5' },\n ],\n },\n {\n id: '20',\n cells: [\n { value: 'Cell 20-1' },\n { value: 'Cell 20-2' },\n { value: 'Cell 20-3' },\n { value: 'Cell 18-4' },\n { value: 'Cell 20-5' },\n ],\n },\n ],\n}"
398
+ },
399
+ {
400
+ "kind": "function",
401
+ "name": "getGrid",
402
+ "parameters": [
403
+ {
404
+ "name": "options",
405
+ "default": "{ columns: 5, rows: 7 }"
406
+ }
407
+ ]
408
+ },
409
+ {
410
+ "kind": "variable",
411
+ "name": "grid"
412
+ }
413
+ ],
414
+ "exports": [
415
+ {
416
+ "kind": "js",
417
+ "name": "grid2",
418
+ "declaration": {
419
+ "name": "grid2",
420
+ "module": "/examples.data.js"
421
+ }
422
+ },
423
+ {
424
+ "kind": "js",
425
+ "name": "getGrid",
426
+ "declaration": {
427
+ "name": "getGrid",
428
+ "module": "/examples.data.js"
429
+ }
430
+ },
431
+ {
432
+ "kind": "js",
433
+ "name": "grid",
434
+ "declaration": {
435
+ "name": "grid",
436
+ "module": "/examples.data.js"
437
+ }
438
+ }
439
+ ]
440
+ },
441
+ {
442
+ "kind": "javascript-module",
443
+ "path": "/footer/element.css",
444
+ "declarations": [],
445
+ "exports": []
446
+ },
447
+ {
448
+ "kind": "javascript-module",
449
+ "path": "/footer/element.js",
450
+ "declarations": [
451
+ {
452
+ "kind": "class",
453
+ "description": "Grid Footer\n\n```typescript\nimport '@blueprintui/grid/include/core.js';\n```",
454
+ "name": "BpGridFooter",
455
+ "cssProperties": [
456
+ {
457
+ "name": "--min-height"
458
+ },
459
+ {
460
+ "name": "--background"
461
+ },
462
+ {
463
+ "name": "--padding-block"
464
+ },
465
+ {
466
+ "name": "--padding-inline"
467
+ }
468
+ ],
469
+ "slots": [
470
+ {
471
+ "description": "footer content",
472
+ "name": ""
473
+ }
474
+ ],
475
+ "members": [
476
+ {
477
+ "kind": "field",
478
+ "name": "_colSpan",
479
+ "type": {
480
+ "text": "string"
481
+ },
482
+ "default": "''"
483
+ },
484
+ {
485
+ "kind": "field",
486
+ "name": "#internals",
487
+ "privacy": "private"
488
+ }
489
+ ],
490
+ "superclass": {
491
+ "name": "LitElement",
492
+ "package": "lit"
493
+ },
494
+ "tagName": "bp-grid-footer",
495
+ "customElement": true
496
+ }
497
+ ],
498
+ "exports": [
499
+ {
500
+ "kind": "js",
501
+ "name": "BpGridFooter",
502
+ "declaration": {
503
+ "name": "BpGridFooter",
504
+ "module": "/footer/element.js"
505
+ }
506
+ }
507
+ ]
508
+ },
509
+ {
510
+ "kind": "javascript-module",
511
+ "path": "/grid/element.css",
512
+ "declarations": [],
513
+ "exports": []
514
+ },
515
+ {
516
+ "kind": "javascript-module",
517
+ "path": "/grid/element.js",
518
+ "declarations": [
519
+ {
520
+ "kind": "class",
521
+ "description": "Grid\n\n```typescript\nimport '@blueprintui/grid/include/core.js';\n```",
522
+ "name": "BpGrid",
523
+ "cssProperties": [
524
+ {
525
+ "name": "--background"
526
+ },
527
+ {
528
+ "name": "--body-height"
529
+ },
530
+ {
531
+ "name": "--scrollbar-background"
532
+ },
533
+ {
534
+ "name": "--scrollbar-thumb-background"
535
+ },
536
+ {
537
+ "name": "--column-height"
538
+ },
539
+ {
540
+ "name": "--row-height"
541
+ },
542
+ {
543
+ "name": "--scroll-padding-top"
544
+ },
545
+ {
546
+ "name": "--row-content-visibility"
547
+ },
548
+ {
549
+ "name": "--column-text-align"
550
+ },
551
+ {
552
+ "name": "--cell-text-algin"
553
+ }
554
+ ],
555
+ "members": [
556
+ {
557
+ "kind": "field",
558
+ "name": "i18n",
559
+ "attribute": "i18n"
560
+ },
561
+ {
562
+ "kind": "field",
563
+ "name": "height",
564
+ "type": {
565
+ "text": "string"
566
+ },
567
+ "attribute": "height",
568
+ "reflects": true
569
+ },
570
+ {
571
+ "kind": "field",
572
+ "name": "columnLayout",
573
+ "type": {
574
+ "text": "'fixed' | 'flex'"
575
+ },
576
+ "default": "'fixed'",
577
+ "attribute": "column-layout",
578
+ "reflects": true
579
+ },
580
+ {
581
+ "kind": "field",
582
+ "name": "borders",
583
+ "type": {
584
+ "text": "'row' | 'cell' | 'column' | 'none' | 'stripe'"
585
+ },
586
+ "default": "'row'",
587
+ "attribute": "borders",
588
+ "reflects": true
589
+ },
590
+ {
591
+ "kind": "field",
592
+ "name": "selectable",
593
+ "type": {
594
+ "text": "'multi' | 'single' | null"
595
+ },
596
+ "attribute": "selectable",
597
+ "reflects": true
598
+ },
599
+ {
600
+ "kind": "field",
601
+ "name": "rangeSelection",
602
+ "type": {
603
+ "text": "boolean"
604
+ },
605
+ "default": "false",
606
+ "attribute": "range-selection",
607
+ "reflects": true
608
+ },
609
+ {
610
+ "kind": "field",
611
+ "name": "scrollLock",
612
+ "type": {
613
+ "text": "boolean"
614
+ },
615
+ "default": "false",
616
+ "attribute": "scroll-lock",
617
+ "reflects": true
618
+ },
619
+ {
620
+ "kind": "field",
621
+ "name": "elevation",
622
+ "type": {
623
+ "text": "'raised' | 'flat'"
624
+ },
625
+ "attribute": "elevation",
626
+ "reflects": true
627
+ },
628
+ {
629
+ "kind": "field",
630
+ "name": "_id",
631
+ "privacy": "protected",
632
+ "attribute": "_id",
633
+ "reflects": true
634
+ },
635
+ {
636
+ "kind": "field",
637
+ "name": "gridLayoutController",
638
+ "privacy": "protected",
639
+ "default": "new GridLayoutController(this)"
640
+ },
641
+ {
642
+ "kind": "field",
643
+ "name": "controllers",
644
+ "type": {
645
+ "text": "Set<any>"
646
+ },
647
+ "static": true,
648
+ "default": "new Set()"
649
+ },
650
+ {
651
+ "kind": "field",
652
+ "name": "keyGridControllerConfig"
653
+ },
654
+ {
655
+ "kind": "field",
656
+ "name": "gridLayoutControllerConfig"
657
+ },
658
+ {
659
+ "kind": "field",
660
+ "name": "gridColumnSizeControllerConfig"
661
+ },
662
+ {
663
+ "kind": "field",
664
+ "name": "#columns",
665
+ "privacy": "private"
666
+ },
667
+ {
668
+ "kind": "field",
669
+ "name": "#columnRow",
670
+ "privacy": "private"
671
+ },
672
+ {
673
+ "kind": "field",
674
+ "name": "#rows",
675
+ "privacy": "private"
676
+ },
677
+ {
678
+ "kind": "field",
679
+ "name": "#cells",
680
+ "privacy": "private"
681
+ },
682
+ {
683
+ "kind": "field",
684
+ "name": "#placeholder",
685
+ "privacy": "private"
686
+ },
687
+ {
688
+ "kind": "field",
689
+ "name": "#footer",
690
+ "privacy": "private"
691
+ },
692
+ {
693
+ "kind": "field",
694
+ "name": "keyNavGrid"
695
+ },
696
+ {
697
+ "kind": "field",
698
+ "name": "_internals"
699
+ },
700
+ {
701
+ "kind": "method",
702
+ "name": "#intializeColumnSort"
703
+ },
704
+ {
705
+ "kind": "field",
706
+ "name": "#updates",
707
+ "privacy": "private",
708
+ "type": {
709
+ "text": "number"
710
+ },
711
+ "default": "0"
712
+ },
713
+ {
714
+ "kind": "field",
715
+ "name": "#isStatic",
716
+ "privacy": "private"
717
+ },
718
+ {
719
+ "kind": "method",
720
+ "name": "#update"
721
+ },
722
+ {
723
+ "kind": "method",
724
+ "name": "#initializeGrid"
725
+ },
726
+ {
727
+ "kind": "method",
728
+ "name": "#intializeColumns"
729
+ },
730
+ {
731
+ "kind": "method",
732
+ "name": "#initializeRows"
733
+ },
734
+ {
735
+ "kind": "method",
736
+ "name": "#initializeCells",
737
+ "description": "Cells with focusable items use table navigation ctrl+alt+arrow\nhttps://github.com/nvaccess/nvda/issues/7718"
738
+ },
739
+ {
740
+ "kind": "method",
741
+ "name": "#initializePlaceholder"
742
+ },
743
+ {
744
+ "kind": "method",
745
+ "name": "#intializeFooter"
746
+ },
747
+ {
748
+ "kind": "field",
749
+ "name": "role",
750
+ "type": {
751
+ "text": "string"
752
+ },
753
+ "default": "'grid'"
754
+ }
755
+ ],
756
+ "attributes": [
757
+ {
758
+ "name": "i18n",
759
+ "fieldName": "i18n"
760
+ },
761
+ {
762
+ "name": "height",
763
+ "type": {
764
+ "text": "string"
765
+ },
766
+ "fieldName": "height"
767
+ },
768
+ {
769
+ "name": "column-layout",
770
+ "type": {
771
+ "text": "'fixed' | 'flex'"
772
+ },
773
+ "default": "'fixed'",
774
+ "fieldName": "columnLayout"
775
+ },
776
+ {
777
+ "name": "borders",
778
+ "type": {
779
+ "text": "'row' | 'cell' | 'column' | 'none' | 'stripe'"
780
+ },
781
+ "default": "'row'",
782
+ "fieldName": "borders"
783
+ },
784
+ {
785
+ "name": "selectable",
786
+ "type": {
787
+ "text": "'multi' | 'single' | null"
788
+ },
789
+ "fieldName": "selectable"
790
+ },
791
+ {
792
+ "name": "range-selection",
793
+ "type": {
794
+ "text": "boolean"
795
+ },
796
+ "default": "false",
797
+ "fieldName": "rangeSelection"
798
+ },
799
+ {
800
+ "name": "scroll-lock",
801
+ "type": {
802
+ "text": "boolean"
803
+ },
804
+ "default": "false",
805
+ "fieldName": "scrollLock"
806
+ },
807
+ {
808
+ "name": "elevation",
809
+ "type": {
810
+ "text": "'raised' | 'flat'"
811
+ },
812
+ "fieldName": "elevation"
813
+ },
814
+ {
815
+ "name": "_id",
816
+ "fieldName": "_id"
817
+ }
818
+ ],
819
+ "superclass": {
820
+ "name": "LitElement",
821
+ "package": "lit"
822
+ },
823
+ "tagName": "bp-grid",
824
+ "customElement": true
825
+ }
826
+ ],
827
+ "exports": [
828
+ {
829
+ "kind": "js",
830
+ "name": "BpGrid",
831
+ "declaration": {
832
+ "name": "BpGrid",
833
+ "module": "/grid/element.js"
834
+ }
835
+ }
836
+ ]
837
+ },
838
+ {
839
+ "kind": "javascript-module",
840
+ "path": "/grid/global.css",
841
+ "declarations": [],
842
+ "exports": []
843
+ },
844
+ {
845
+ "kind": "javascript-module",
846
+ "path": "/grid/layout.controller.js",
847
+ "declarations": [
848
+ {
849
+ "kind": "class",
850
+ "description": "",
851
+ "name": "GridLayoutController",
852
+ "members": [
853
+ {
854
+ "kind": "field",
855
+ "name": "#observers",
856
+ "privacy": "private",
857
+ "type": {
858
+ "text": "MutationObserver[]"
859
+ },
860
+ "default": "[]"
861
+ },
862
+ {
863
+ "kind": "field",
864
+ "name": "#_columns",
865
+ "privacy": "private",
866
+ "type": {
867
+ "text": "NodeListOf<Column> | Column[]"
868
+ }
869
+ },
870
+ {
871
+ "kind": "field",
872
+ "name": "#columns",
873
+ "privacy": "private"
874
+ },
875
+ {
876
+ "kind": "field",
877
+ "name": "#config",
878
+ "privacy": "private"
879
+ },
880
+ {
881
+ "kind": "field",
882
+ "name": "#visibleColumns",
883
+ "privacy": "private"
884
+ },
885
+ {
886
+ "kind": "field",
887
+ "name": "#lastVisibleColumn",
888
+ "privacy": "private"
889
+ },
890
+ {
891
+ "kind": "method",
892
+ "name": "hostConnected"
893
+ },
894
+ {
895
+ "kind": "method",
896
+ "name": "hostUpdated"
897
+ },
898
+ {
899
+ "kind": "method",
900
+ "name": "hostDisconnected"
901
+ },
902
+ {
903
+ "kind": "method",
904
+ "name": "#columnAddedOrRemoved",
905
+ "parameters": [
906
+ {
907
+ "name": "mutation",
908
+ "type": {
909
+ "text": "MutationRecord"
910
+ }
911
+ }
912
+ ]
913
+ },
914
+ {
915
+ "kind": "method",
916
+ "name": "#initializeColumnWidths"
917
+ },
918
+ {
919
+ "kind": "method",
920
+ "name": "#getLastColumnWidth"
921
+ },
922
+ {
923
+ "kind": "method",
924
+ "name": "#updateLayout"
925
+ },
926
+ {
927
+ "kind": "method",
928
+ "name": "#createColumnGrids"
929
+ },
930
+ {
931
+ "kind": "method",
932
+ "name": "#setColumnDividers"
933
+ }
934
+ ]
935
+ }
936
+ ],
937
+ "exports": [
938
+ {
939
+ "kind": "js",
940
+ "name": "GridLayoutController",
941
+ "declaration": {
942
+ "name": "GridLayoutController",
943
+ "module": "/grid/layout.controller.js"
944
+ }
945
+ }
946
+ ]
947
+ },
948
+ {
949
+ "kind": "javascript-module",
950
+ "path": "/include/core.js",
951
+ "declarations": [],
952
+ "exports": [
953
+ {
954
+ "kind": "custom-element-definition",
955
+ "name": "bp-grid",
956
+ "declaration": {
957
+ "name": "BpGrid",
958
+ "module": "/grid/element.js"
959
+ }
960
+ },
961
+ {
962
+ "kind": "custom-element-definition",
963
+ "name": "bp-grid-row",
964
+ "declaration": {
965
+ "name": "BpGridRow",
966
+ "module": "/row/element.js"
967
+ }
968
+ },
969
+ {
970
+ "kind": "custom-element-definition",
971
+ "name": "bp-grid-cell",
972
+ "declaration": {
973
+ "name": "BpGridCell",
974
+ "module": "/cell/element.js"
975
+ }
976
+ },
977
+ {
978
+ "kind": "custom-element-definition",
979
+ "name": "bp-grid-column",
980
+ "declaration": {
981
+ "name": "BpGridColumn",
982
+ "module": "/column/element.js"
983
+ }
984
+ }
985
+ ]
986
+ },
987
+ {
988
+ "kind": "javascript-module",
989
+ "path": "/include/footer.js",
990
+ "declarations": [],
991
+ "exports": [
992
+ {
993
+ "kind": "custom-element-definition",
994
+ "name": "bp-grid-footer",
995
+ "declaration": {
996
+ "name": "BpGridFooter",
997
+ "module": "/footer/element.js"
998
+ }
999
+ }
1000
+ ]
1001
+ },
1002
+ {
1003
+ "kind": "javascript-module",
1004
+ "path": "/include/keynav.js",
1005
+ "declarations": [],
1006
+ "exports": []
1007
+ },
1008
+ {
1009
+ "kind": "javascript-module",
1010
+ "path": "/include/pagination.js",
1011
+ "declarations": [],
1012
+ "exports": [
1013
+ {
1014
+ "kind": "custom-element-definition",
1015
+ "name": "bp-grid-pagination",
1016
+ "declaration": {
1017
+ "name": "BpGridPagination",
1018
+ "module": "/pagination/element.js"
1019
+ }
1020
+ }
1021
+ ]
1022
+ },
1023
+ {
1024
+ "kind": "javascript-module",
1025
+ "path": "/include/placeholder.js",
1026
+ "declarations": [],
1027
+ "exports": [
1028
+ {
1029
+ "kind": "custom-element-definition",
1030
+ "name": "bp-grid-placeholder",
1031
+ "declaration": {
1032
+ "name": "BpGridPlaceholder",
1033
+ "module": "/placeholder/element.js"
1034
+ }
1035
+ }
1036
+ ]
1037
+ },
1038
+ {
1039
+ "kind": "javascript-module",
1040
+ "path": "/index.js",
1041
+ "declarations": [],
1042
+ "exports": [
1043
+ {
1044
+ "kind": "js",
1045
+ "name": "*",
1046
+ "declaration": {
1047
+ "name": "*",
1048
+ "package": "./cell/element.js"
1049
+ }
1050
+ },
1051
+ {
1052
+ "kind": "js",
1053
+ "name": "*",
1054
+ "declaration": {
1055
+ "name": "*",
1056
+ "package": "./column/element.js"
1057
+ }
1058
+ },
1059
+ {
1060
+ "kind": "js",
1061
+ "name": "*",
1062
+ "declaration": {
1063
+ "name": "*",
1064
+ "package": "./footer/element.js"
1065
+ }
1066
+ },
1067
+ {
1068
+ "kind": "js",
1069
+ "name": "*",
1070
+ "declaration": {
1071
+ "name": "*",
1072
+ "package": "./pagination/element.js"
1073
+ }
1074
+ },
1075
+ {
1076
+ "kind": "js",
1077
+ "name": "*",
1078
+ "declaration": {
1079
+ "name": "*",
1080
+ "package": "./placeholder/element.js"
1081
+ }
1082
+ },
1083
+ {
1084
+ "kind": "js",
1085
+ "name": "*",
1086
+ "declaration": {
1087
+ "name": "*",
1088
+ "package": "./row/element.js"
1089
+ }
1090
+ },
1091
+ {
1092
+ "kind": "js",
1093
+ "name": "*",
1094
+ "declaration": {
1095
+ "name": "*",
1096
+ "package": "./grid/element.js"
1097
+ }
1098
+ }
1099
+ ]
1100
+ },
1101
+ {
1102
+ "kind": "javascript-module",
1103
+ "path": "/internals/controllers/interaction-scroll-visibility.controller.js",
1104
+ "declarations": [
1105
+ {
1106
+ "kind": "function",
1107
+ "name": "interactionScrollVisibility",
1108
+ "return": {
1109
+ "type": {
1110
+ "text": "ClassDecorator"
1111
+ }
1112
+ },
1113
+ "description": "Default to `content-visibility: auto` for lazy render, on scroll set all row items to `content-visibility: visible` for eager render\nEnables fast initial render and smooth eager rendering anytime after for items within a bounded scroll box."
1114
+ },
1115
+ {
1116
+ "kind": "class",
1117
+ "description": "",
1118
+ "name": "InteractionScrollVisibilityController",
1119
+ "members": [
1120
+ {
1121
+ "kind": "method",
1122
+ "name": "hostConnected"
1123
+ },
1124
+ {
1125
+ "kind": "method",
1126
+ "name": "#setVisibility"
1127
+ }
1128
+ ]
1129
+ }
1130
+ ],
1131
+ "exports": [
1132
+ {
1133
+ "kind": "js",
1134
+ "name": "interactionScrollVisibility",
1135
+ "declaration": {
1136
+ "name": "interactionScrollVisibility",
1137
+ "module": "/internals/controllers/interaction-scroll-visibility.controller.js"
1138
+ }
1139
+ },
1140
+ {
1141
+ "kind": "js",
1142
+ "name": "InteractionScrollVisibilityController",
1143
+ "declaration": {
1144
+ "name": "InteractionScrollVisibilityController",
1145
+ "module": "/internals/controllers/interaction-scroll-visibility.controller.js"
1146
+ }
1147
+ }
1148
+ ]
1149
+ },
1150
+ {
1151
+ "kind": "javascript-module",
1152
+ "path": "/internals/controllers/key-grid.controller.js",
1153
+ "declarations": [
1154
+ {
1155
+ "kind": "function",
1156
+ "name": "keyGrid",
1157
+ "return": {
1158
+ "type": {
1159
+ "text": "ClassDecorator"
1160
+ }
1161
+ },
1162
+ "description": "https://w3c.github.io/aria-practices/#gridNav_focus"
1163
+ },
1164
+ {
1165
+ "kind": "class",
1166
+ "description": "",
1167
+ "name": "KeyGridController",
1168
+ "members": [
1169
+ {
1170
+ "kind": "field",
1171
+ "name": "#observers",
1172
+ "privacy": "private",
1173
+ "type": {
1174
+ "text": "MutationObserver[]"
1175
+ },
1176
+ "default": "[]"
1177
+ },
1178
+ {
1179
+ "kind": "field",
1180
+ "name": "#grid",
1181
+ "privacy": "private"
1182
+ },
1183
+ {
1184
+ "kind": "field",
1185
+ "name": "#rows",
1186
+ "privacy": "private"
1187
+ },
1188
+ {
1189
+ "kind": "field",
1190
+ "name": "#cells",
1191
+ "privacy": "private"
1192
+ },
1193
+ {
1194
+ "kind": "field",
1195
+ "name": "#activeCell",
1196
+ "privacy": "private"
1197
+ },
1198
+ {
1199
+ "kind": "method",
1200
+ "name": "hostConnected"
1201
+ },
1202
+ {
1203
+ "kind": "method",
1204
+ "name": "hostDisconnected"
1205
+ },
1206
+ {
1207
+ "kind": "method",
1208
+ "name": "#clickCell",
1209
+ "parameters": [
1210
+ {
1211
+ "name": "e",
1212
+ "type": {
1213
+ "text": "MouseEvent"
1214
+ }
1215
+ }
1216
+ ]
1217
+ },
1218
+ {
1219
+ "kind": "method",
1220
+ "name": "#keynavCell",
1221
+ "parameters": [
1222
+ {
1223
+ "name": "e",
1224
+ "type": {
1225
+ "text": "KeyboardEvent"
1226
+ }
1227
+ }
1228
+ ]
1229
+ },
1230
+ {
1231
+ "kind": "method",
1232
+ "name": "#setActiveCell",
1233
+ "parameters": [
1234
+ {
1235
+ "name": "e",
1236
+ "type": {
1237
+ "text": "any"
1238
+ }
1239
+ },
1240
+ {
1241
+ "name": "activeCell",
1242
+ "type": {
1243
+ "text": "HTMLElement"
1244
+ }
1245
+ }
1246
+ ]
1247
+ },
1248
+ {
1249
+ "kind": "method",
1250
+ "name": "#updateCellActivation",
1251
+ "parameters": [
1252
+ {
1253
+ "name": "e",
1254
+ "type": {
1255
+ "text": "KeyboardEvent"
1256
+ }
1257
+ }
1258
+ ]
1259
+ }
1260
+ ]
1261
+ }
1262
+ ],
1263
+ "exports": [
1264
+ {
1265
+ "kind": "js",
1266
+ "name": "keyGrid",
1267
+ "declaration": {
1268
+ "name": "keyGrid",
1269
+ "module": "/internals/controllers/key-grid.controller.js"
1270
+ }
1271
+ },
1272
+ {
1273
+ "kind": "js",
1274
+ "name": "KeyGridController",
1275
+ "declaration": {
1276
+ "name": "KeyGridController",
1277
+ "module": "/internals/controllers/key-grid.controller.js"
1278
+ }
1279
+ }
1280
+ ]
1281
+ },
1282
+ {
1283
+ "kind": "javascript-module",
1284
+ "path": "/internals/controllers/key.utils.js",
1285
+ "declarations": [
1286
+ {
1287
+ "kind": "function",
1288
+ "name": "getNextKeyGridItem",
1289
+ "parameters": [
1290
+ {
1291
+ "name": "cells",
1292
+ "type": {
1293
+ "text": "HTMLElement[]"
1294
+ }
1295
+ },
1296
+ {
1297
+ "name": "rows",
1298
+ "type": {
1299
+ "text": "HTMLElement[]"
1300
+ }
1301
+ },
1302
+ {
1303
+ "name": "config",
1304
+ "type": {
1305
+ "text": "{ code: KeyNavigationCode | string; ctrlKey: boolean; dir: string }"
1306
+ }
1307
+ }
1308
+ ]
1309
+ }
1310
+ ],
1311
+ "exports": [
1312
+ {
1313
+ "kind": "js",
1314
+ "name": "getNextKeyGridItem",
1315
+ "declaration": {
1316
+ "name": "getNextKeyGridItem",
1317
+ "module": "/internals/controllers/key.utils.js"
1318
+ }
1319
+ }
1320
+ ]
1321
+ },
1322
+ {
1323
+ "kind": "javascript-module",
1324
+ "path": "/internals/index.js",
1325
+ "declarations": [],
1326
+ "exports": [
1327
+ {
1328
+ "kind": "js",
1329
+ "name": "*",
1330
+ "declaration": {
1331
+ "name": "*",
1332
+ "package": "./controllers/interaction-scroll-visibility.controller.js"
1333
+ }
1334
+ },
1335
+ {
1336
+ "kind": "js",
1337
+ "name": "*",
1338
+ "declaration": {
1339
+ "name": "*",
1340
+ "package": "./controllers/key-grid.controller.js"
1341
+ }
1342
+ },
1343
+ {
1344
+ "kind": "js",
1345
+ "name": "*",
1346
+ "declaration": {
1347
+ "name": "*",
1348
+ "package": "./utils/dom.js"
1349
+ }
1350
+ },
1351
+ {
1352
+ "kind": "js",
1353
+ "name": "*",
1354
+ "declaration": {
1355
+ "name": "*",
1356
+ "package": "./utils/events.js"
1357
+ }
1358
+ }
1359
+ ]
1360
+ },
1361
+ {
1362
+ "kind": "javascript-module",
1363
+ "path": "/internals/utils/dom.js",
1364
+ "declarations": [
1365
+ {
1366
+ "kind": "function",
1367
+ "name": "contextMenuClick",
1368
+ "parameters": [
1369
+ {
1370
+ "name": "event",
1371
+ "type": {
1372
+ "text": "MouseEvent"
1373
+ }
1374
+ }
1375
+ ],
1376
+ "description": "right click with context menus & keyboard mouse control https://apple.stackexchange.com/questions/32715/how-do-i-open-the-context-menu-from-a-mac-keyboard"
1377
+ }
1378
+ ],
1379
+ "exports": [
1380
+ {
1381
+ "kind": "js",
1382
+ "name": "contextMenuClick",
1383
+ "declaration": {
1384
+ "name": "contextMenuClick",
1385
+ "module": "/internals/utils/dom.js"
1386
+ }
1387
+ }
1388
+ ]
1389
+ },
1390
+ {
1391
+ "kind": "javascript-module",
1392
+ "path": "/internals/utils/events.js",
1393
+ "declarations": [
1394
+ {
1395
+ "kind": "function",
1396
+ "name": "onChildListMutation",
1397
+ "parameters": [
1398
+ {
1399
+ "name": "element",
1400
+ "type": {
1401
+ "text": "HTMLElement"
1402
+ }
1403
+ },
1404
+ {
1405
+ "name": "fn",
1406
+ "type": {
1407
+ "text": "(mutation?: MutationRecord) => void"
1408
+ }
1409
+ }
1410
+ ]
1411
+ },
1412
+ {
1413
+ "kind": "function",
1414
+ "name": "onFirstInteraction",
1415
+ "return": {
1416
+ "type": {
1417
+ "text": "Promise<null>"
1418
+ }
1419
+ },
1420
+ "parameters": [
1421
+ {
1422
+ "name": "element",
1423
+ "type": {
1424
+ "text": "HTMLElement"
1425
+ }
1426
+ }
1427
+ ]
1428
+ }
1429
+ ],
1430
+ "exports": [
1431
+ {
1432
+ "kind": "js",
1433
+ "name": "onChildListMutation",
1434
+ "declaration": {
1435
+ "name": "onChildListMutation",
1436
+ "module": "/internals/utils/events.js"
1437
+ }
1438
+ },
1439
+ {
1440
+ "kind": "js",
1441
+ "name": "onFirstInteraction",
1442
+ "declaration": {
1443
+ "name": "onFirstInteraction",
1444
+ "module": "/internals/utils/events.js"
1445
+ }
1446
+ }
1447
+ ]
1448
+ },
1449
+ {
1450
+ "kind": "javascript-module",
1451
+ "path": "/internals/utils/focus.js",
1452
+ "declarations": [
1453
+ {
1454
+ "kind": "function",
1455
+ "name": "focusable",
1456
+ "parameters": [
1457
+ {
1458
+ "name": "element",
1459
+ "type": {
1460
+ "text": "Element"
1461
+ }
1462
+ }
1463
+ ]
1464
+ },
1465
+ {
1466
+ "kind": "function",
1467
+ "name": "simpleFocusable",
1468
+ "parameters": [
1469
+ {
1470
+ "name": "element",
1471
+ "type": {
1472
+ "text": "Element"
1473
+ }
1474
+ }
1475
+ ],
1476
+ "description": "focus primitives, any interactive element does not requiring advanced keyboard interactions like arrow/navigation"
1477
+ },
1478
+ {
1479
+ "kind": "function",
1480
+ "name": "getActiveElement",
1481
+ "return": {
1482
+ "type": {
1483
+ "text": "Element | null"
1484
+ }
1485
+ },
1486
+ "parameters": [
1487
+ {
1488
+ "name": "root",
1489
+ "default": "document",
1490
+ "type": {
1491
+ "text": "Document | ShadowRoot"
1492
+ }
1493
+ }
1494
+ ]
1495
+ },
1496
+ {
1497
+ "kind": "function",
1498
+ "name": "focusElement",
1499
+ "parameters": [
1500
+ {
1501
+ "name": "element",
1502
+ "type": {
1503
+ "text": "HTMLElement"
1504
+ }
1505
+ }
1506
+ ]
1507
+ },
1508
+ {
1509
+ "kind": "function",
1510
+ "name": "setActiveKeyListItem",
1511
+ "parameters": [
1512
+ {
1513
+ "name": "items",
1514
+ "type": {
1515
+ "text": "NodeListOf<HTMLElement> | HTMLElement[]"
1516
+ }
1517
+ },
1518
+ {
1519
+ "name": "item",
1520
+ "type": {
1521
+ "text": "HTMLElement"
1522
+ }
1523
+ }
1524
+ ]
1525
+ },
1526
+ {
1527
+ "kind": "function",
1528
+ "name": "initializeKeyListItems",
1529
+ "parameters": [
1530
+ {
1531
+ "name": "items",
1532
+ "type": {
1533
+ "text": "NodeListOf<HTMLElement> | HTMLElement[]"
1534
+ }
1535
+ }
1536
+ ]
1537
+ }
1538
+ ],
1539
+ "exports": [
1540
+ {
1541
+ "kind": "js",
1542
+ "name": "focusable",
1543
+ "declaration": {
1544
+ "name": "focusable",
1545
+ "module": "/internals/utils/focus.js"
1546
+ }
1547
+ },
1548
+ {
1549
+ "kind": "js",
1550
+ "name": "simpleFocusable",
1551
+ "declaration": {
1552
+ "name": "simpleFocusable",
1553
+ "module": "/internals/utils/focus.js"
1554
+ }
1555
+ },
1556
+ {
1557
+ "kind": "js",
1558
+ "name": "getActiveElement",
1559
+ "declaration": {
1560
+ "name": "getActiveElement",
1561
+ "module": "/internals/utils/focus.js"
1562
+ }
1563
+ },
1564
+ {
1565
+ "kind": "js",
1566
+ "name": "focusElement",
1567
+ "declaration": {
1568
+ "name": "focusElement",
1569
+ "module": "/internals/utils/focus.js"
1570
+ }
1571
+ },
1572
+ {
1573
+ "kind": "js",
1574
+ "name": "setActiveKeyListItem",
1575
+ "declaration": {
1576
+ "name": "setActiveKeyListItem",
1577
+ "module": "/internals/utils/focus.js"
1578
+ }
1579
+ },
1580
+ {
1581
+ "kind": "js",
1582
+ "name": "initializeKeyListItems",
1583
+ "declaration": {
1584
+ "name": "initializeKeyListItems",
1585
+ "module": "/internals/utils/focus.js"
1586
+ }
1587
+ }
1588
+ ]
1589
+ },
1590
+ {
1591
+ "kind": "javascript-module",
1592
+ "path": "/internals/utils/keynav.js",
1593
+ "declarations": [
1594
+ {
1595
+ "kind": "function",
1596
+ "name": "validKeyNavigationCode",
1597
+ "parameters": [
1598
+ {
1599
+ "name": "e",
1600
+ "type": {
1601
+ "text": "KeyboardEvent"
1602
+ }
1603
+ }
1604
+ ]
1605
+ }
1606
+ ],
1607
+ "exports": [
1608
+ {
1609
+ "kind": "js",
1610
+ "name": "validKeyNavigationCode",
1611
+ "declaration": {
1612
+ "name": "validKeyNavigationCode",
1613
+ "module": "/internals/utils/keynav.js"
1614
+ }
1615
+ }
1616
+ ]
1617
+ },
1618
+ {
1619
+ "kind": "javascript-module",
1620
+ "path": "/internals/utils/traversal.js",
1621
+ "declarations": [
1622
+ {
1623
+ "kind": "function",
1624
+ "name": "getFlattenedFocusableItems",
1625
+ "parameters": [
1626
+ {
1627
+ "name": "element",
1628
+ "type": {
1629
+ "text": "Node"
1630
+ }
1631
+ },
1632
+ {
1633
+ "name": "depth",
1634
+ "default": "10"
1635
+ }
1636
+ ]
1637
+ },
1638
+ {
1639
+ "kind": "function",
1640
+ "name": "getFlattenedDOMTree",
1641
+ "return": {
1642
+ "type": {
1643
+ "text": "HTMLElement[]"
1644
+ }
1645
+ },
1646
+ "parameters": [
1647
+ {
1648
+ "name": "node",
1649
+ "type": {
1650
+ "text": "Node"
1651
+ }
1652
+ },
1653
+ {
1654
+ "name": "depth",
1655
+ "default": "10"
1656
+ }
1657
+ ]
1658
+ },
1659
+ {
1660
+ "kind": "function",
1661
+ "name": "getChildren",
1662
+ "parameters": [
1663
+ {
1664
+ "name": "node",
1665
+ "type": {
1666
+ "text": "any"
1667
+ }
1668
+ }
1669
+ ]
1670
+ },
1671
+ {
1672
+ "kind": "function",
1673
+ "name": "isObject",
1674
+ "parameters": [
1675
+ {
1676
+ "name": "val",
1677
+ "type": {
1678
+ "text": "any"
1679
+ }
1680
+ }
1681
+ ]
1682
+ },
1683
+ {
1684
+ "kind": "function",
1685
+ "name": "mergeObjects",
1686
+ "return": {
1687
+ "type": {
1688
+ "text": "object"
1689
+ }
1690
+ },
1691
+ "parameters": [
1692
+ {
1693
+ "name": "objs",
1694
+ "type": {
1695
+ "text": "object[]"
1696
+ }
1697
+ }
1698
+ ]
1699
+ }
1700
+ ],
1701
+ "exports": [
1702
+ {
1703
+ "kind": "js",
1704
+ "name": "getFlattenedFocusableItems",
1705
+ "declaration": {
1706
+ "name": "getFlattenedFocusableItems",
1707
+ "module": "/internals/utils/traversal.js"
1708
+ }
1709
+ },
1710
+ {
1711
+ "kind": "js",
1712
+ "name": "getFlattenedDOMTree",
1713
+ "declaration": {
1714
+ "name": "getFlattenedDOMTree",
1715
+ "module": "/internals/utils/traversal.js"
1716
+ }
1717
+ },
1718
+ {
1719
+ "kind": "js",
1720
+ "name": "getChildren",
1721
+ "declaration": {
1722
+ "name": "getChildren",
1723
+ "module": "/internals/utils/traversal.js"
1724
+ }
1725
+ },
1726
+ {
1727
+ "kind": "js",
1728
+ "name": "isObject",
1729
+ "declaration": {
1730
+ "name": "isObject",
1731
+ "module": "/internals/utils/traversal.js"
1732
+ }
1733
+ },
1734
+ {
1735
+ "kind": "js",
1736
+ "name": "mergeObjects",
1737
+ "declaration": {
1738
+ "name": "mergeObjects",
1739
+ "module": "/internals/utils/traversal.js"
1740
+ }
1741
+ }
1742
+ ]
1743
+ },
1744
+ {
1745
+ "kind": "javascript-module",
1746
+ "path": "/pagination/element.css",
1747
+ "declarations": [],
1748
+ "exports": []
1749
+ },
1750
+ {
1751
+ "kind": "javascript-module",
1752
+ "path": "/pagination/element.js",
1753
+ "declarations": [
1754
+ {
1755
+ "kind": "class",
1756
+ "description": "Grid Pagination\n\n```typescript\nimport '@blueprintui/grid/include/core.js';\n```\n\n```html\n<bp-grid-pagination></bp-grid-pagination>\n```",
1757
+ "name": "BpGridPagination",
1758
+ "members": [
1759
+ {
1760
+ "kind": "field",
1761
+ "name": "i18n",
1762
+ "attribute": "i18n"
1763
+ },
1764
+ {
1765
+ "kind": "field",
1766
+ "name": "page",
1767
+ "type": {
1768
+ "text": "number"
1769
+ },
1770
+ "default": "1",
1771
+ "attribute": "page"
1772
+ },
1773
+ {
1774
+ "kind": "field",
1775
+ "name": "pageSize",
1776
+ "type": {
1777
+ "text": "number"
1778
+ },
1779
+ "default": "10",
1780
+ "attribute": "page-size"
1781
+ },
1782
+ {
1783
+ "kind": "field",
1784
+ "name": "pageCount",
1785
+ "type": {
1786
+ "text": "number"
1787
+ },
1788
+ "default": "1",
1789
+ "attribute": "page-count"
1790
+ },
1791
+ {
1792
+ "kind": "field",
1793
+ "name": "pageSizeOptions",
1794
+ "type": {
1795
+ "text": "number[]"
1796
+ },
1797
+ "default": "[]",
1798
+ "attribute": "page-size-options"
1799
+ },
1800
+ {
1801
+ "kind": "method",
1802
+ "name": "#setPage",
1803
+ "parameters": [
1804
+ {
1805
+ "name": "event",
1806
+ "type": {
1807
+ "text": "any"
1808
+ }
1809
+ }
1810
+ ]
1811
+ },
1812
+ {
1813
+ "kind": "method",
1814
+ "name": "#nextPage"
1815
+ },
1816
+ {
1817
+ "kind": "method",
1818
+ "name": "#prevPage"
1819
+ },
1820
+ {
1821
+ "kind": "method",
1822
+ "name": "#firstPage"
1823
+ },
1824
+ {
1825
+ "kind": "method",
1826
+ "name": "#lastPage"
1827
+ },
1828
+ {
1829
+ "kind": "method",
1830
+ "name": "#pageChange",
1831
+ "parameters": [
1832
+ {
1833
+ "name": "detail",
1834
+ "type": {
1835
+ "text": "number"
1836
+ }
1837
+ }
1838
+ ]
1839
+ },
1840
+ {
1841
+ "kind": "method",
1842
+ "name": "#sizeChange",
1843
+ "parameters": [
1844
+ {
1845
+ "name": "detail",
1846
+ "type": {
1847
+ "text": "number"
1848
+ }
1849
+ }
1850
+ ]
1851
+ }
1852
+ ],
1853
+ "events": [
1854
+ {
1855
+ "name": "page",
1856
+ "type": {
1857
+ "text": "CustomEvent"
1858
+ }
1859
+ },
1860
+ {
1861
+ "name": "size",
1862
+ "type": {
1863
+ "text": "CustomEvent"
1864
+ }
1865
+ }
1866
+ ],
1867
+ "attributes": [
1868
+ {
1869
+ "name": "i18n",
1870
+ "fieldName": "i18n"
1871
+ },
1872
+ {
1873
+ "name": "page",
1874
+ "type": {
1875
+ "text": "number"
1876
+ },
1877
+ "default": "1",
1878
+ "fieldName": "page"
1879
+ },
1880
+ {
1881
+ "name": "page-size",
1882
+ "type": {
1883
+ "text": "number"
1884
+ },
1885
+ "default": "10",
1886
+ "fieldName": "pageSize"
1887
+ },
1888
+ {
1889
+ "name": "page-count",
1890
+ "type": {
1891
+ "text": "number"
1892
+ },
1893
+ "default": "1",
1894
+ "fieldName": "pageCount"
1895
+ },
1896
+ {
1897
+ "name": "page-size-options",
1898
+ "type": {
1899
+ "text": "number[]"
1900
+ },
1901
+ "default": "[]",
1902
+ "fieldName": "pageSizeOptions"
1903
+ }
1904
+ ],
1905
+ "superclass": {
1906
+ "name": "LitElement",
1907
+ "package": "lit"
1908
+ },
1909
+ "tagName": "bp-grid-pagination",
1910
+ "customElement": true
1911
+ }
1912
+ ],
1913
+ "exports": [
1914
+ {
1915
+ "kind": "js",
1916
+ "name": "BpGridPagination",
1917
+ "declaration": {
1918
+ "name": "BpGridPagination",
1919
+ "module": "/pagination/element.js"
1920
+ }
1921
+ }
1922
+ ]
1923
+ },
1924
+ {
1925
+ "kind": "javascript-module",
1926
+ "path": "/placeholder/element.css",
1927
+ "declarations": [],
1928
+ "exports": []
1929
+ },
1930
+ {
1931
+ "kind": "javascript-module",
1932
+ "path": "/placeholder/element.js",
1933
+ "declarations": [
1934
+ {
1935
+ "kind": "class",
1936
+ "description": "Grid Placeholder\n\n```typescript\nimport '@blueprintui/grid/include/core.js';\n```",
1937
+ "name": "BpGridPlaceholder",
1938
+ "members": [
1939
+ {
1940
+ "kind": "field",
1941
+ "name": "i18n",
1942
+ "attribute": "i18n"
1943
+ },
1944
+ {
1945
+ "kind": "field",
1946
+ "name": "_colSpan",
1947
+ "type": {
1948
+ "text": "string"
1949
+ },
1950
+ "default": "'0'"
1951
+ },
1952
+ {
1953
+ "kind": "field",
1954
+ "name": "#internals",
1955
+ "privacy": "private"
1956
+ }
1957
+ ],
1958
+ "attributes": [
1959
+ {
1960
+ "name": "i18n",
1961
+ "fieldName": "i18n"
1962
+ }
1963
+ ],
1964
+ "superclass": {
1965
+ "name": "LitElement",
1966
+ "package": "lit"
1967
+ },
1968
+ "tagName": "bp-grid-placeholder",
1969
+ "customElement": true
1970
+ }
1971
+ ],
1972
+ "exports": [
1973
+ {
1974
+ "kind": "js",
1975
+ "name": "BpGridPlaceholder",
1976
+ "declaration": {
1977
+ "name": "BpGridPlaceholder",
1978
+ "module": "/placeholder/element.js"
1979
+ }
1980
+ }
1981
+ ]
1982
+ },
1983
+ {
1984
+ "kind": "javascript-module",
1985
+ "path": "/row/element.css",
1986
+ "declarations": [],
1987
+ "exports": []
1988
+ },
1989
+ {
1990
+ "kind": "javascript-module",
1991
+ "path": "/row/element.js",
1992
+ "declarations": [
1993
+ {
1994
+ "kind": "class",
1995
+ "description": "Grid Row\n\n```typescript\nimport '@blueprintui/grid/include/core.js';\n```",
1996
+ "name": "BpGridRow",
1997
+ "cssProperties": [
1998
+ {
1999
+ "name": "--border-top"
2000
+ },
2001
+ {
2002
+ "name": "--border-bottom"
2003
+ },
2004
+ {
2005
+ "name": "--background"
2006
+ },
2007
+ {
2008
+ "name": "--min-height"
2009
+ }
2010
+ ],
2011
+ "members": [
2012
+ {
2013
+ "kind": "field",
2014
+ "name": "selected",
2015
+ "type": {
2016
+ "text": "boolean"
2017
+ },
2018
+ "attribute": "selected",
2019
+ "reflects": true
2020
+ },
2021
+ {
2022
+ "kind": "field",
2023
+ "name": "position",
2024
+ "type": {
2025
+ "text": "'fixed' | 'sticky' | ''"
2026
+ },
2027
+ "attribute": "position",
2028
+ "reflects": true
2029
+ },
2030
+ {
2031
+ "kind": "field",
2032
+ "name": "#internals",
2033
+ "privacy": "private"
2034
+ },
2035
+ {
2036
+ "kind": "field",
2037
+ "name": "role",
2038
+ "type": {
2039
+ "text": "string"
2040
+ },
2041
+ "default": "'row'"
2042
+ }
2043
+ ],
2044
+ "attributes": [
2045
+ {
2046
+ "name": "selected",
2047
+ "type": {
2048
+ "text": "boolean"
2049
+ },
2050
+ "fieldName": "selected"
2051
+ },
2052
+ {
2053
+ "name": "position",
2054
+ "type": {
2055
+ "text": "'fixed' | 'sticky' | ''"
2056
+ },
2057
+ "fieldName": "position"
2058
+ }
2059
+ ],
2060
+ "superclass": {
2061
+ "name": "LitElement",
2062
+ "package": "lit"
2063
+ },
2064
+ "tagName": "bp-grid-row",
2065
+ "customElement": true
2066
+ }
2067
+ ],
2068
+ "exports": [
2069
+ {
2070
+ "kind": "js",
2071
+ "name": "BpGridRow",
2072
+ "declaration": {
2073
+ "name": "BpGridRow",
2074
+ "module": "/row/element.js"
2075
+ }
2076
+ }
2077
+ ]
2078
+ },
2079
+ {
2080
+ "kind": "javascript-module",
2081
+ "path": "/row/position.controller.js",
2082
+ "declarations": [
2083
+ {
2084
+ "kind": "class",
2085
+ "description": "",
2086
+ "name": "GridRowPositionController",
2087
+ "members": [
2088
+ {
2089
+ "kind": "method",
2090
+ "name": "hostUpdated"
2091
+ }
2092
+ ]
2093
+ }
2094
+ ],
2095
+ "exports": [
2096
+ {
2097
+ "kind": "js",
2098
+ "name": "GridRowPositionController",
2099
+ "declaration": {
2100
+ "name": "GridRowPositionController",
2101
+ "module": "/row/position.controller.js"
2102
+ }
2103
+ }
2104
+ ]
2105
+ }
2106
+ ]
2107
+ }