@brightspace-ui/core 2.77.0 → 2.78.1
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/components/button/button-icon.js +1 -0
- package/components/collapsible-panel/README.md +28 -15
- package/components/list/README.md +67 -0
- package/components/list/demo/demo-list-nested-lazy-load.js +133 -0
- package/components/list/demo/demo-list-nested.js +279 -0
- package/components/list/demo/list-demo-scenarios.js +321 -0
- package/components/list/demo/list-drag-and-drop.html +2 -2
- package/components/list/demo/list-expand-collapse.html +134 -0
- package/components/list/list-item-checkbox-mixin.js +2 -8
- package/components/list/list-item-drag-drop-mixin.js +78 -14
- package/components/list/list-item-drag-image.js +5 -3
- package/components/list/list-item-expand-collapse-mixin.js +168 -0
- package/components/list/list-item-generic-layout.js +21 -12
- package/components/list/list-item-mixin.js +88 -11
- package/components/list/list.js +45 -9
- package/components/selection/selection-summary.js +43 -12
- package/custom-elements.json +386 -194
- package/lang/ar.js +1 -0
- package/lang/cy.js +1 -0
- package/lang/da.js +1 -0
- package/lang/de.js +1 -0
- package/lang/en.js +1 -0
- package/lang/es-es.js +1 -0
- package/lang/es.js +1 -0
- package/lang/fr-fr.js +1 -0
- package/lang/fr.js +1 -0
- package/lang/hi.js +1 -0
- package/lang/ja.js +1 -0
- package/lang/ko.js +1 -0
- package/lang/nl.js +1 -0
- package/lang/pt.js +1 -0
- package/lang/sv.js +1 -0
- package/lang/tr.js +1 -0
- package/lang/zh-cn.js +1 -0
- package/lang/zh-tw.js +1 -0
- package/package.json +1 -1
- package/components/list/demo/list-drag-and-drop.js +0 -181
package/custom-elements.json
CHANGED
|
@@ -7224,6 +7224,126 @@
|
|
|
7224
7224
|
}
|
|
7225
7225
|
]
|
|
7226
7226
|
},
|
|
7227
|
+
{
|
|
7228
|
+
"name": "d2l-demo-list-nested-lazy-load",
|
|
7229
|
+
"path": "./components/list/demo/demo-list-nested-lazy-load.js"
|
|
7230
|
+
},
|
|
7231
|
+
{
|
|
7232
|
+
"name": "d2l-demo-list-nested",
|
|
7233
|
+
"path": "./components/list/demo/demo-list-nested.js",
|
|
7234
|
+
"attributes": [
|
|
7235
|
+
{
|
|
7236
|
+
"name": "demo-item-key",
|
|
7237
|
+
"type": "string"
|
|
7238
|
+
},
|
|
7239
|
+
{
|
|
7240
|
+
"name": "draggable",
|
|
7241
|
+
"type": "boolean"
|
|
7242
|
+
},
|
|
7243
|
+
{
|
|
7244
|
+
"name": "selectable",
|
|
7245
|
+
"type": "boolean"
|
|
7246
|
+
},
|
|
7247
|
+
{
|
|
7248
|
+
"name": "disable-expand-feature",
|
|
7249
|
+
"type": "boolean"
|
|
7250
|
+
},
|
|
7251
|
+
{
|
|
7252
|
+
"name": "expanded",
|
|
7253
|
+
"type": "boolean"
|
|
7254
|
+
},
|
|
7255
|
+
{
|
|
7256
|
+
"name": "include-secondary-actions",
|
|
7257
|
+
"type": "boolean"
|
|
7258
|
+
},
|
|
7259
|
+
{
|
|
7260
|
+
"name": "include-list-header",
|
|
7261
|
+
"type": "boolean"
|
|
7262
|
+
},
|
|
7263
|
+
{
|
|
7264
|
+
"name": "include-action-href",
|
|
7265
|
+
"type": "boolean"
|
|
7266
|
+
},
|
|
7267
|
+
{
|
|
7268
|
+
"name": "use-button-item",
|
|
7269
|
+
"type": "boolean"
|
|
7270
|
+
},
|
|
7271
|
+
{
|
|
7272
|
+
"name": "show-load-more",
|
|
7273
|
+
"type": "boolean"
|
|
7274
|
+
},
|
|
7275
|
+
{
|
|
7276
|
+
"name": "no-primary-action",
|
|
7277
|
+
"type": "boolean"
|
|
7278
|
+
},
|
|
7279
|
+
{
|
|
7280
|
+
"name": "disable-list-grid",
|
|
7281
|
+
"type": "boolean"
|
|
7282
|
+
}
|
|
7283
|
+
],
|
|
7284
|
+
"properties": [
|
|
7285
|
+
{
|
|
7286
|
+
"name": "demoItemKey",
|
|
7287
|
+
"attribute": "demo-item-key",
|
|
7288
|
+
"type": "string"
|
|
7289
|
+
},
|
|
7290
|
+
{
|
|
7291
|
+
"name": "draggable",
|
|
7292
|
+
"attribute": "draggable",
|
|
7293
|
+
"type": "boolean"
|
|
7294
|
+
},
|
|
7295
|
+
{
|
|
7296
|
+
"name": "selectable",
|
|
7297
|
+
"attribute": "selectable",
|
|
7298
|
+
"type": "boolean"
|
|
7299
|
+
},
|
|
7300
|
+
{
|
|
7301
|
+
"name": "disableExpandFeature",
|
|
7302
|
+
"attribute": "disable-expand-feature",
|
|
7303
|
+
"type": "boolean"
|
|
7304
|
+
},
|
|
7305
|
+
{
|
|
7306
|
+
"name": "expanded",
|
|
7307
|
+
"attribute": "expanded",
|
|
7308
|
+
"type": "boolean"
|
|
7309
|
+
},
|
|
7310
|
+
{
|
|
7311
|
+
"name": "includeSecondaryActions",
|
|
7312
|
+
"attribute": "include-secondary-actions",
|
|
7313
|
+
"type": "boolean"
|
|
7314
|
+
},
|
|
7315
|
+
{
|
|
7316
|
+
"name": "includeListHeader",
|
|
7317
|
+
"attribute": "include-list-header",
|
|
7318
|
+
"type": "boolean"
|
|
7319
|
+
},
|
|
7320
|
+
{
|
|
7321
|
+
"name": "includeActionHref",
|
|
7322
|
+
"attribute": "include-action-href",
|
|
7323
|
+
"type": "boolean"
|
|
7324
|
+
},
|
|
7325
|
+
{
|
|
7326
|
+
"name": "useButtonListItem",
|
|
7327
|
+
"attribute": "use-button-item",
|
|
7328
|
+
"type": "boolean"
|
|
7329
|
+
},
|
|
7330
|
+
{
|
|
7331
|
+
"name": "showLoadMore",
|
|
7332
|
+
"attribute": "show-load-more",
|
|
7333
|
+
"type": "boolean"
|
|
7334
|
+
},
|
|
7335
|
+
{
|
|
7336
|
+
"name": "noPrimaryAction",
|
|
7337
|
+
"attribute": "no-primary-action",
|
|
7338
|
+
"type": "boolean"
|
|
7339
|
+
},
|
|
7340
|
+
{
|
|
7341
|
+
"name": "disableListGrid",
|
|
7342
|
+
"attribute": "disable-list-grid",
|
|
7343
|
+
"type": "boolean"
|
|
7344
|
+
}
|
|
7345
|
+
]
|
|
7346
|
+
},
|
|
7227
7347
|
{
|
|
7228
7348
|
"name": "d2l-demo-list",
|
|
7229
7349
|
"path": "./components/list/demo/demo-list.js",
|
|
@@ -7290,25 +7410,6 @@
|
|
|
7290
7410
|
}
|
|
7291
7411
|
]
|
|
7292
7412
|
},
|
|
7293
|
-
{
|
|
7294
|
-
"name": "d2l-demo-list-drag-and-drop",
|
|
7295
|
-
"path": "./components/list/demo/list-drag-and-drop.js",
|
|
7296
|
-
"attributes": [
|
|
7297
|
-
{
|
|
7298
|
-
"name": "items",
|
|
7299
|
-
"type": "array",
|
|
7300
|
-
"default": "[{\"key\":\"1\",\"primaryText\":\"Introductory Earth Sciences\",\"supportingText\":\"This course explores the geological processes of the Earth's interior and surface. These include volcanism, earthquakes, mountain building, glaciation and weathering.\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/63b162ab-b582-4bf9-8c1d-1dad04714121/tile-high-density-max-size.jpg\",\"dropNested\":true,\"items\":[{\"key\":\"1-1\",\"primaryText\":\"Glaciation\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/bf648978-6637-4fdc-815b-81572c436c0e/tile-high-density-max-size.jpg\",\"dropNested\":true,\"items\":[]},{\"key\":\"1-2\",\"primaryText\":\"Weathering\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/50f91ba6-7c25-482a-bd71-1c4b7c8d2154/tile-high-density-min-size.jpg\",\"dropNested\":true,\"items\":[]},{\"key\":\"1-3\",\"primaryText\":\"Volcanism\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/5eb2371d-6099-4c8d-8aad-075f357012a2/tile-high-density-min-size.jpg\",\"dropNested\":true,\"items\":[]}]},{\"key\":\"2\",\"primaryText\":\"Flow and Transport Through Fractured Rocks\",\"supportingText\":\"Fractures are ubiquitous in geologic media and important in disciplines such as physical and contaminant hydrogeology, geotechnical engineering, civil and environmental engineering, petroleum engineering among other areas.\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/e5fd575a-bc14-4a80-89e1-46f349a76178/tile-high-density-max-size.jpg\",\"items\":[{\"key\":\"2-1\",\"primaryText\":\"Contaminant Transport\",\"supportingText\":\"No Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/824fffa1-86a6-4489-84ba-91edfbc1dcc4/tile-high-density-min-size.jpg\",\"dropNested\":false,\"items\":[]},{\"key\":\"2-2\",\"primaryText\":\"Modelling Flow in Fractured Media\",\"supportingText\":\"No Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/e18c92a4-b996-444f-84b5-988874feccac/tile-high-density-min-size.jpg\",\"dropNested\":false,\"items\":[]}]},{\"key\":\"3\",\"primaryText\":\"Applied Wetland Science\",\"supportingText\":\"Advanced concepts on wetland ecosystems in the context of regional and global earth systems processes such as carbon and nitrogen cycling and climate change, applications of wetland paleoecology, use of isotopes and other geochemical tools in wetland science, and wetland engineering in landscape rehabilitation and ecotechnology.\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/38e839b1-37fa-470c-8830-b189ce4ae134/tile-high-density-max-size.jpg\",\"items\":[{\"key\":\"3-1\",\"primaryText\":\"Carbon & Nitrogen Cycling\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/623b420b-a305-4762-8af8-598f0e72e956/tile-high-density-min-size.jpg\",\"dropNested\":true,\"items\":[]},{\"key\":\"3-2\",\"primaryText\":\"Wetland Engineering\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/26102577-8f2a-4e24-84b5-19d76decbc7a/tile-high-density-min-size.jpg\",\"dropNested\":true,\"items\":[]}]}]"
|
|
7301
|
-
}
|
|
7302
|
-
],
|
|
7303
|
-
"properties": [
|
|
7304
|
-
{
|
|
7305
|
-
"name": "items",
|
|
7306
|
-
"attribute": "items",
|
|
7307
|
-
"type": "array",
|
|
7308
|
-
"default": "[{\"key\":\"1\",\"primaryText\":\"Introductory Earth Sciences\",\"supportingText\":\"This course explores the geological processes of the Earth's interior and surface. These include volcanism, earthquakes, mountain building, glaciation and weathering.\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/63b162ab-b582-4bf9-8c1d-1dad04714121/tile-high-density-max-size.jpg\",\"dropNested\":true,\"items\":[{\"key\":\"1-1\",\"primaryText\":\"Glaciation\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/bf648978-6637-4fdc-815b-81572c436c0e/tile-high-density-max-size.jpg\",\"dropNested\":true,\"items\":[]},{\"key\":\"1-2\",\"primaryText\":\"Weathering\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/50f91ba6-7c25-482a-bd71-1c4b7c8d2154/tile-high-density-min-size.jpg\",\"dropNested\":true,\"items\":[]},{\"key\":\"1-3\",\"primaryText\":\"Volcanism\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/5eb2371d-6099-4c8d-8aad-075f357012a2/tile-high-density-min-size.jpg\",\"dropNested\":true,\"items\":[]}]},{\"key\":\"2\",\"primaryText\":\"Flow and Transport Through Fractured Rocks\",\"supportingText\":\"Fractures are ubiquitous in geologic media and important in disciplines such as physical and contaminant hydrogeology, geotechnical engineering, civil and environmental engineering, petroleum engineering among other areas.\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/e5fd575a-bc14-4a80-89e1-46f349a76178/tile-high-density-max-size.jpg\",\"items\":[{\"key\":\"2-1\",\"primaryText\":\"Contaminant Transport\",\"supportingText\":\"No Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/824fffa1-86a6-4489-84ba-91edfbc1dcc4/tile-high-density-min-size.jpg\",\"dropNested\":false,\"items\":[]},{\"key\":\"2-2\",\"primaryText\":\"Modelling Flow in Fractured Media\",\"supportingText\":\"No Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/e18c92a4-b996-444f-84b5-988874feccac/tile-high-density-min-size.jpg\",\"dropNested\":false,\"items\":[]}]},{\"key\":\"3\",\"primaryText\":\"Applied Wetland Science\",\"supportingText\":\"Advanced concepts on wetland ecosystems in the context of regional and global earth systems processes such as carbon and nitrogen cycling and climate change, applications of wetland paleoecology, use of isotopes and other geochemical tools in wetland science, and wetland engineering in landscape rehabilitation and ecotechnology.\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/38e839b1-37fa-470c-8830-b189ce4ae134/tile-high-density-max-size.jpg\",\"items\":[{\"key\":\"3-1\",\"primaryText\":\"Carbon & Nitrogen Cycling\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/623b420b-a305-4762-8af8-598f0e72e956/tile-high-density-min-size.jpg\",\"dropNested\":true,\"items\":[]},{\"key\":\"3-2\",\"primaryText\":\"Wetland Engineering\",\"supportingText\":\"Nesting Allowed\",\"imgSrc\":\"https://s.brightspace.com/course-images/images/26102577-8f2a-4e24-84b5-19d76decbc7a/tile-high-density-min-size.jpg\",\"dropNested\":true,\"items\":[]}]}]"
|
|
7309
|
-
}
|
|
7310
|
-
]
|
|
7311
|
-
},
|
|
7312
7413
|
{
|
|
7313
7414
|
"name": "d2l-demo-list-item-custom",
|
|
7314
7415
|
"path": "./components/list/demo/list-item-custom.js",
|
|
@@ -7337,56 +7438,66 @@
|
|
|
7337
7438
|
"default": "\"normal\""
|
|
7338
7439
|
},
|
|
7339
7440
|
{
|
|
7340
|
-
"name": "
|
|
7341
|
-
"description": "**
|
|
7342
|
-
"type": "
|
|
7441
|
+
"name": "disabled",
|
|
7442
|
+
"description": "**Selection:** Disables the input",
|
|
7443
|
+
"type": "boolean",
|
|
7444
|
+
"default": "false"
|
|
7343
7445
|
},
|
|
7344
7446
|
{
|
|
7345
|
-
"name": "
|
|
7346
|
-
"description": "**
|
|
7347
|
-
"type": "
|
|
7447
|
+
"name": "selectable",
|
|
7448
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7449
|
+
"type": "boolean",
|
|
7450
|
+
"default": "true"
|
|
7348
7451
|
},
|
|
7349
7452
|
{
|
|
7350
|
-
"name": "
|
|
7351
|
-
"description": "**
|
|
7453
|
+
"name": "selected",
|
|
7454
|
+
"description": "**Selection:** Whether the item is selected",
|
|
7352
7455
|
"type": "boolean",
|
|
7353
7456
|
"default": "false"
|
|
7354
7457
|
},
|
|
7355
7458
|
{
|
|
7356
|
-
"name": "
|
|
7357
|
-
"description": "
|
|
7459
|
+
"name": "skeleton",
|
|
7460
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7358
7461
|
"type": "boolean",
|
|
7359
7462
|
"default": "false"
|
|
7360
7463
|
},
|
|
7361
7464
|
{
|
|
7362
|
-
"name": "
|
|
7363
|
-
"description": "
|
|
7465
|
+
"name": "drag-handle-text",
|
|
7466
|
+
"description": "**Drag & drop:** The drag-handle label for assistive technology. If implementing drag & drop, you should change this to dynamically announce what the drag-handle is moving for assistive technology in keyboard mode.",
|
|
7364
7467
|
"type": "string"
|
|
7365
7468
|
},
|
|
7366
7469
|
{
|
|
7367
|
-
"name": "
|
|
7368
|
-
"description": "**
|
|
7369
|
-
"type": "
|
|
7370
|
-
"default": "false"
|
|
7470
|
+
"name": "drop-text",
|
|
7471
|
+
"description": "**Drag & drop:** Text to drag and drop",
|
|
7472
|
+
"type": "string"
|
|
7371
7473
|
},
|
|
7372
7474
|
{
|
|
7373
|
-
"name": "
|
|
7374
|
-
"description": "**Selection:**
|
|
7375
|
-
"type": "
|
|
7376
|
-
"default": "true"
|
|
7475
|
+
"name": "key",
|
|
7476
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
7477
|
+
"type": "string"
|
|
7377
7478
|
},
|
|
7378
7479
|
{
|
|
7379
|
-
"name": "
|
|
7380
|
-
"description": "**
|
|
7480
|
+
"name": "draggable",
|
|
7481
|
+
"description": "**Drag & drop:** Whether the item is draggable",
|
|
7381
7482
|
"type": "boolean",
|
|
7382
7483
|
"default": "false"
|
|
7383
7484
|
},
|
|
7384
7485
|
{
|
|
7385
|
-
"name": "
|
|
7386
|
-
"description": "
|
|
7486
|
+
"name": "drop-nested",
|
|
7487
|
+
"description": "**Drag & drop:** Whether nested items can be dropped on this item",
|
|
7387
7488
|
"type": "boolean",
|
|
7388
7489
|
"default": "false"
|
|
7389
7490
|
},
|
|
7491
|
+
{
|
|
7492
|
+
"name": "expandable",
|
|
7493
|
+
"description": "Whether to show the expand collapse toggle",
|
|
7494
|
+
"type": "boolean"
|
|
7495
|
+
},
|
|
7496
|
+
{
|
|
7497
|
+
"name": "expanded",
|
|
7498
|
+
"description": "Default state for expand collapse toggle - if not set, collapsed will be the default state",
|
|
7499
|
+
"type": "boolean"
|
|
7500
|
+
},
|
|
7390
7501
|
{
|
|
7391
7502
|
"name": "labelled-by",
|
|
7392
7503
|
"description": "The id of element that provides the label for this element",
|
|
@@ -7427,8 +7538,35 @@
|
|
|
7427
7538
|
"default": "\"normal\""
|
|
7428
7539
|
},
|
|
7429
7540
|
{
|
|
7430
|
-
"name": "
|
|
7431
|
-
"
|
|
7541
|
+
"name": "disabled",
|
|
7542
|
+
"attribute": "disabled",
|
|
7543
|
+
"description": "**Selection:** Disables the input",
|
|
7544
|
+
"type": "boolean",
|
|
7545
|
+
"default": "false"
|
|
7546
|
+
},
|
|
7547
|
+
{
|
|
7548
|
+
"name": "selectable",
|
|
7549
|
+
"attribute": "selectable",
|
|
7550
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7551
|
+
"type": "boolean",
|
|
7552
|
+
"default": "true"
|
|
7553
|
+
},
|
|
7554
|
+
{
|
|
7555
|
+
"name": "selected",
|
|
7556
|
+
"attribute": "selected",
|
|
7557
|
+
"description": "**Selection:** Whether the item is selected",
|
|
7558
|
+
"type": "boolean",
|
|
7559
|
+
"default": "false"
|
|
7560
|
+
},
|
|
7561
|
+
{
|
|
7562
|
+
"name": "selectionInfo"
|
|
7563
|
+
},
|
|
7564
|
+
{
|
|
7565
|
+
"name": "skeleton",
|
|
7566
|
+
"attribute": "skeleton",
|
|
7567
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7568
|
+
"type": "boolean",
|
|
7569
|
+
"default": "false"
|
|
7432
7570
|
},
|
|
7433
7571
|
{
|
|
7434
7572
|
"name": "dragHandleText",
|
|
@@ -7442,6 +7580,12 @@
|
|
|
7442
7580
|
"description": "**Drag & drop:** Text to drag and drop",
|
|
7443
7581
|
"type": "string"
|
|
7444
7582
|
},
|
|
7583
|
+
{
|
|
7584
|
+
"name": "key",
|
|
7585
|
+
"attribute": "key",
|
|
7586
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
7587
|
+
"type": "string"
|
|
7588
|
+
},
|
|
7445
7589
|
{
|
|
7446
7590
|
"name": "draggable",
|
|
7447
7591
|
"attribute": "draggable",
|
|
@@ -7457,41 +7601,20 @@
|
|
|
7457
7601
|
"default": "false"
|
|
7458
7602
|
},
|
|
7459
7603
|
{
|
|
7460
|
-
"name": "
|
|
7461
|
-
"attribute": "
|
|
7462
|
-
"description": "
|
|
7463
|
-
"type": "
|
|
7464
|
-
},
|
|
7465
|
-
{
|
|
7466
|
-
"name": "disabled",
|
|
7467
|
-
"attribute": "disabled",
|
|
7468
|
-
"description": "**Selection:** Disables the input",
|
|
7469
|
-
"type": "boolean",
|
|
7470
|
-
"default": "false"
|
|
7471
|
-
},
|
|
7472
|
-
{
|
|
7473
|
-
"name": "selectable",
|
|
7474
|
-
"attribute": "selectable",
|
|
7475
|
-
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7476
|
-
"type": "boolean",
|
|
7477
|
-
"default": "true"
|
|
7478
|
-
},
|
|
7479
|
-
{
|
|
7480
|
-
"name": "selected",
|
|
7481
|
-
"attribute": "selected",
|
|
7482
|
-
"description": "**Selection:** Whether the item is selected",
|
|
7483
|
-
"type": "boolean",
|
|
7484
|
-
"default": "false"
|
|
7604
|
+
"name": "expandable",
|
|
7605
|
+
"attribute": "expandable",
|
|
7606
|
+
"description": "Whether to show the expand collapse toggle",
|
|
7607
|
+
"type": "boolean"
|
|
7485
7608
|
},
|
|
7486
7609
|
{
|
|
7487
|
-
"name": "
|
|
7610
|
+
"name": "expanded",
|
|
7611
|
+
"attribute": "expanded",
|
|
7612
|
+
"description": "Default state for expand collapse toggle - if not set, collapsed will be the default state",
|
|
7613
|
+
"type": "boolean"
|
|
7488
7614
|
},
|
|
7489
7615
|
{
|
|
7490
|
-
"name": "
|
|
7491
|
-
"
|
|
7492
|
-
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7493
|
-
"type": "boolean",
|
|
7494
|
-
"default": "false"
|
|
7616
|
+
"name": "documentLocaleSettings",
|
|
7617
|
+
"default": "\"getDocumentLocaleSettings()\""
|
|
7495
7618
|
},
|
|
7496
7619
|
{
|
|
7497
7620
|
"name": "labelledBy",
|
|
@@ -7512,13 +7635,17 @@
|
|
|
7512
7635
|
}
|
|
7513
7636
|
],
|
|
7514
7637
|
"events": [
|
|
7638
|
+
{
|
|
7639
|
+
"name": "d2l-list-item-selected",
|
|
7640
|
+
"description": "Dispatched when the component item is selected"
|
|
7641
|
+
},
|
|
7515
7642
|
{
|
|
7516
7643
|
"name": "d2l-list-item-position-change",
|
|
7517
7644
|
"description": "Dispatched when a draggable list item's position changes in the list. See [Event Details: d2l-list-item-position-change](#event-details%3A-d2l-list-item-position-change)."
|
|
7518
7645
|
},
|
|
7519
7646
|
{
|
|
7520
|
-
"name": "d2l-list-item-
|
|
7521
|
-
"description": "Dispatched
|
|
7647
|
+
"name": "d2l-list-item-expand-collapse-toggled",
|
|
7648
|
+
"description": "Dispatched whenever the list item expand state is toggled."
|
|
7522
7649
|
}
|
|
7523
7650
|
]
|
|
7524
7651
|
},
|
|
@@ -7628,55 +7755,65 @@
|
|
|
7628
7755
|
"default": "\"normal\""
|
|
7629
7756
|
},
|
|
7630
7757
|
{
|
|
7631
|
-
"name": "
|
|
7632
|
-
"description": "**
|
|
7633
|
-
"type": "
|
|
7758
|
+
"name": "disabled",
|
|
7759
|
+
"description": "**Selection:** Disables the input",
|
|
7760
|
+
"type": "boolean",
|
|
7761
|
+
"default": "false"
|
|
7634
7762
|
},
|
|
7635
7763
|
{
|
|
7636
|
-
"name": "
|
|
7637
|
-
"description": "**
|
|
7638
|
-
"type": "
|
|
7764
|
+
"name": "selectable",
|
|
7765
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7766
|
+
"type": "boolean",
|
|
7767
|
+
"default": "false"
|
|
7639
7768
|
},
|
|
7640
7769
|
{
|
|
7641
|
-
"name": "
|
|
7642
|
-
"description": "**
|
|
7770
|
+
"name": "selected",
|
|
7771
|
+
"description": "**Selection:** Whether the item is selected",
|
|
7643
7772
|
"type": "boolean",
|
|
7644
7773
|
"default": "false"
|
|
7645
7774
|
},
|
|
7646
7775
|
{
|
|
7647
|
-
"name": "
|
|
7648
|
-
"description": "
|
|
7776
|
+
"name": "skeleton",
|
|
7777
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7649
7778
|
"type": "boolean",
|
|
7650
7779
|
"default": "false"
|
|
7651
7780
|
},
|
|
7781
|
+
{
|
|
7782
|
+
"name": "drag-handle-text",
|
|
7783
|
+
"description": "**Drag & drop:** The drag-handle label for assistive technology. If implementing drag & drop, you should change this to dynamically announce what the drag-handle is moving for assistive technology in keyboard mode.",
|
|
7784
|
+
"type": "string"
|
|
7785
|
+
},
|
|
7786
|
+
{
|
|
7787
|
+
"name": "drop-text",
|
|
7788
|
+
"description": "**Drag & drop:** Text to drag and drop",
|
|
7789
|
+
"type": "string"
|
|
7790
|
+
},
|
|
7652
7791
|
{
|
|
7653
7792
|
"name": "key",
|
|
7654
|
-
"description": "Value to identify item if selectable",
|
|
7793
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
7655
7794
|
"type": "string"
|
|
7656
7795
|
},
|
|
7657
7796
|
{
|
|
7658
|
-
"name": "
|
|
7659
|
-
"description": "**
|
|
7797
|
+
"name": "draggable",
|
|
7798
|
+
"description": "**Drag & drop:** Whether the item is draggable",
|
|
7660
7799
|
"type": "boolean",
|
|
7661
7800
|
"default": "false"
|
|
7662
7801
|
},
|
|
7663
7802
|
{
|
|
7664
|
-
"name": "
|
|
7665
|
-
"description": "**
|
|
7803
|
+
"name": "drop-nested",
|
|
7804
|
+
"description": "**Drag & drop:** Whether nested items can be dropped on this item",
|
|
7666
7805
|
"type": "boolean",
|
|
7667
7806
|
"default": "false"
|
|
7668
7807
|
},
|
|
7669
7808
|
{
|
|
7670
|
-
"name": "
|
|
7671
|
-
"description": "
|
|
7672
|
-
"type": "boolean"
|
|
7673
|
-
"default": "false"
|
|
7809
|
+
"name": "expandable",
|
|
7810
|
+
"description": "Whether to show the expand collapse toggle",
|
|
7811
|
+
"type": "boolean"
|
|
7674
7812
|
},
|
|
7675
7813
|
{
|
|
7676
|
-
"name": "
|
|
7677
|
-
"description": "
|
|
7678
|
-
"type": "boolean"
|
|
7679
|
-
"default": "false"
|
|
7814
|
+
"name": "expanded",
|
|
7815
|
+
"description": "Default state for expand collapse toggle - if not set, collapsed will be the default state",
|
|
7816
|
+
"type": "boolean"
|
|
7680
7817
|
},
|
|
7681
7818
|
{
|
|
7682
7819
|
"name": "labelled-by",
|
|
@@ -7718,8 +7855,35 @@
|
|
|
7718
7855
|
"default": "\"normal\""
|
|
7719
7856
|
},
|
|
7720
7857
|
{
|
|
7721
|
-
"name": "
|
|
7722
|
-
"
|
|
7858
|
+
"name": "disabled",
|
|
7859
|
+
"attribute": "disabled",
|
|
7860
|
+
"description": "**Selection:** Disables the input",
|
|
7861
|
+
"type": "boolean",
|
|
7862
|
+
"default": "false"
|
|
7863
|
+
},
|
|
7864
|
+
{
|
|
7865
|
+
"name": "selectable",
|
|
7866
|
+
"attribute": "selectable",
|
|
7867
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7868
|
+
"type": "boolean",
|
|
7869
|
+
"default": "false"
|
|
7870
|
+
},
|
|
7871
|
+
{
|
|
7872
|
+
"name": "selected",
|
|
7873
|
+
"attribute": "selected",
|
|
7874
|
+
"description": "**Selection:** Whether the item is selected",
|
|
7875
|
+
"type": "boolean",
|
|
7876
|
+
"default": "false"
|
|
7877
|
+
},
|
|
7878
|
+
{
|
|
7879
|
+
"name": "selectionInfo"
|
|
7880
|
+
},
|
|
7881
|
+
{
|
|
7882
|
+
"name": "skeleton",
|
|
7883
|
+
"attribute": "skeleton",
|
|
7884
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7885
|
+
"type": "boolean",
|
|
7886
|
+
"default": "false"
|
|
7723
7887
|
},
|
|
7724
7888
|
{
|
|
7725
7889
|
"name": "dragHandleText",
|
|
@@ -7733,6 +7897,12 @@
|
|
|
7733
7897
|
"description": "**Drag & drop:** Text to drag and drop",
|
|
7734
7898
|
"type": "string"
|
|
7735
7899
|
},
|
|
7900
|
+
{
|
|
7901
|
+
"name": "key",
|
|
7902
|
+
"attribute": "key",
|
|
7903
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
7904
|
+
"type": "string"
|
|
7905
|
+
},
|
|
7736
7906
|
{
|
|
7737
7907
|
"name": "draggable",
|
|
7738
7908
|
"attribute": "draggable",
|
|
@@ -7748,41 +7918,20 @@
|
|
|
7748
7918
|
"default": "false"
|
|
7749
7919
|
},
|
|
7750
7920
|
{
|
|
7751
|
-
"name": "
|
|
7752
|
-
"attribute": "
|
|
7753
|
-
"description": "
|
|
7754
|
-
"type": "
|
|
7755
|
-
},
|
|
7756
|
-
{
|
|
7757
|
-
"name": "disabled",
|
|
7758
|
-
"attribute": "disabled",
|
|
7759
|
-
"description": "**Selection:** Disables the input",
|
|
7760
|
-
"type": "boolean",
|
|
7761
|
-
"default": "false"
|
|
7762
|
-
},
|
|
7763
|
-
{
|
|
7764
|
-
"name": "selectable",
|
|
7765
|
-
"attribute": "selectable",
|
|
7766
|
-
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7767
|
-
"type": "boolean",
|
|
7768
|
-
"default": "false"
|
|
7769
|
-
},
|
|
7770
|
-
{
|
|
7771
|
-
"name": "selected",
|
|
7772
|
-
"attribute": "selected",
|
|
7773
|
-
"description": "**Selection:** Whether the item is selected",
|
|
7774
|
-
"type": "boolean",
|
|
7775
|
-
"default": "false"
|
|
7921
|
+
"name": "expandable",
|
|
7922
|
+
"attribute": "expandable",
|
|
7923
|
+
"description": "Whether to show the expand collapse toggle",
|
|
7924
|
+
"type": "boolean"
|
|
7776
7925
|
},
|
|
7777
7926
|
{
|
|
7778
|
-
"name": "
|
|
7927
|
+
"name": "expanded",
|
|
7928
|
+
"attribute": "expanded",
|
|
7929
|
+
"description": "Default state for expand collapse toggle - if not set, collapsed will be the default state",
|
|
7930
|
+
"type": "boolean"
|
|
7779
7931
|
},
|
|
7780
7932
|
{
|
|
7781
|
-
"name": "
|
|
7782
|
-
"
|
|
7783
|
-
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7784
|
-
"type": "boolean",
|
|
7785
|
-
"default": "false"
|
|
7933
|
+
"name": "documentLocaleSettings",
|
|
7934
|
+
"default": "\"getDocumentLocaleSettings()\""
|
|
7786
7935
|
},
|
|
7787
7936
|
{
|
|
7788
7937
|
"name": "labelledBy",
|
|
@@ -7807,13 +7956,17 @@
|
|
|
7807
7956
|
"name": "d2l-list-item-button-click",
|
|
7808
7957
|
"description": "Dispatched when the item's primary button action is clicked"
|
|
7809
7958
|
},
|
|
7959
|
+
{
|
|
7960
|
+
"name": "d2l-list-item-selected",
|
|
7961
|
+
"description": "Dispatched when the component item is selected"
|
|
7962
|
+
},
|
|
7810
7963
|
{
|
|
7811
7964
|
"name": "d2l-list-item-position-change",
|
|
7812
7965
|
"description": "Dispatched when a draggable list item's position changes in the list. See [Event Details: d2l-list-item-position-change](#event-details%3A-d2l-list-item-position-change)."
|
|
7813
7966
|
},
|
|
7814
7967
|
{
|
|
7815
|
-
"name": "d2l-list-item-
|
|
7816
|
-
"description": "Dispatched
|
|
7968
|
+
"name": "d2l-list-item-expand-collapse-toggled",
|
|
7969
|
+
"description": "Dispatched whenever the list item expand state is toggled."
|
|
7817
7970
|
}
|
|
7818
7971
|
],
|
|
7819
7972
|
"slots": [
|
|
@@ -7911,6 +8064,10 @@
|
|
|
7911
8064
|
"name": "d2l-list-item-drag-image",
|
|
7912
8065
|
"path": "./components/list/list-item-drag-image.js",
|
|
7913
8066
|
"attributes": [
|
|
8067
|
+
{
|
|
8068
|
+
"name": "include-plus-sign",
|
|
8069
|
+
"type": "boolean"
|
|
8070
|
+
},
|
|
7914
8071
|
{
|
|
7915
8072
|
"name": "skeleton",
|
|
7916
8073
|
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
@@ -7919,11 +8076,20 @@
|
|
|
7919
8076
|
}
|
|
7920
8077
|
],
|
|
7921
8078
|
"properties": [
|
|
8079
|
+
{
|
|
8080
|
+
"name": "includePlusSign",
|
|
8081
|
+
"attribute": "include-plus-sign",
|
|
8082
|
+
"type": "boolean"
|
|
8083
|
+
},
|
|
7922
8084
|
{
|
|
7923
8085
|
"name": "count",
|
|
7924
8086
|
"type": "number",
|
|
7925
8087
|
"default": "0"
|
|
7926
8088
|
},
|
|
8089
|
+
{
|
|
8090
|
+
"name": "documentLocaleSettings",
|
|
8091
|
+
"default": "\"getDocumentLocaleSettings()\""
|
|
8092
|
+
},
|
|
7927
8093
|
{
|
|
7928
8094
|
"name": "skeleton",
|
|
7929
8095
|
"attribute": "skeleton",
|
|
@@ -8056,55 +8222,65 @@
|
|
|
8056
8222
|
"default": "\"normal\""
|
|
8057
8223
|
},
|
|
8058
8224
|
{
|
|
8059
|
-
"name": "
|
|
8060
|
-
"description": "**
|
|
8061
|
-
"type": "
|
|
8225
|
+
"name": "disabled",
|
|
8226
|
+
"description": "**Selection:** Disables the input",
|
|
8227
|
+
"type": "boolean",
|
|
8228
|
+
"default": "false"
|
|
8062
8229
|
},
|
|
8063
8230
|
{
|
|
8064
|
-
"name": "
|
|
8065
|
-
"description": "**
|
|
8066
|
-
"type": "
|
|
8231
|
+
"name": "selectable",
|
|
8232
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
8233
|
+
"type": "boolean",
|
|
8234
|
+
"default": "false"
|
|
8067
8235
|
},
|
|
8068
8236
|
{
|
|
8069
|
-
"name": "
|
|
8070
|
-
"description": "**
|
|
8237
|
+
"name": "selected",
|
|
8238
|
+
"description": "**Selection:** Whether the item is selected",
|
|
8071
8239
|
"type": "boolean",
|
|
8072
8240
|
"default": "false"
|
|
8073
8241
|
},
|
|
8074
8242
|
{
|
|
8075
|
-
"name": "
|
|
8076
|
-
"description": "
|
|
8243
|
+
"name": "skeleton",
|
|
8244
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
8077
8245
|
"type": "boolean",
|
|
8078
8246
|
"default": "false"
|
|
8079
8247
|
},
|
|
8248
|
+
{
|
|
8249
|
+
"name": "drag-handle-text",
|
|
8250
|
+
"description": "**Drag & drop:** The drag-handle label for assistive technology. If implementing drag & drop, you should change this to dynamically announce what the drag-handle is moving for assistive technology in keyboard mode.",
|
|
8251
|
+
"type": "string"
|
|
8252
|
+
},
|
|
8253
|
+
{
|
|
8254
|
+
"name": "drop-text",
|
|
8255
|
+
"description": "**Drag & drop:** Text to drag and drop",
|
|
8256
|
+
"type": "string"
|
|
8257
|
+
},
|
|
8080
8258
|
{
|
|
8081
8259
|
"name": "key",
|
|
8082
|
-
"description": "Value to identify item if selectable",
|
|
8260
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
8083
8261
|
"type": "string"
|
|
8084
8262
|
},
|
|
8085
8263
|
{
|
|
8086
|
-
"name": "
|
|
8087
|
-
"description": "**
|
|
8264
|
+
"name": "draggable",
|
|
8265
|
+
"description": "**Drag & drop:** Whether the item is draggable",
|
|
8088
8266
|
"type": "boolean",
|
|
8089
8267
|
"default": "false"
|
|
8090
8268
|
},
|
|
8091
8269
|
{
|
|
8092
|
-
"name": "
|
|
8093
|
-
"description": "**
|
|
8270
|
+
"name": "drop-nested",
|
|
8271
|
+
"description": "**Drag & drop:** Whether nested items can be dropped on this item",
|
|
8094
8272
|
"type": "boolean",
|
|
8095
8273
|
"default": "false"
|
|
8096
8274
|
},
|
|
8097
8275
|
{
|
|
8098
|
-
"name": "
|
|
8099
|
-
"description": "
|
|
8100
|
-
"type": "boolean"
|
|
8101
|
-
"default": "false"
|
|
8276
|
+
"name": "expandable",
|
|
8277
|
+
"description": "Whether to show the expand collapse toggle",
|
|
8278
|
+
"type": "boolean"
|
|
8102
8279
|
},
|
|
8103
8280
|
{
|
|
8104
|
-
"name": "
|
|
8105
|
-
"description": "
|
|
8106
|
-
"type": "boolean"
|
|
8107
|
-
"default": "false"
|
|
8281
|
+
"name": "expanded",
|
|
8282
|
+
"description": "Default state for expand collapse toggle - if not set, collapsed will be the default state",
|
|
8283
|
+
"type": "boolean"
|
|
8108
8284
|
},
|
|
8109
8285
|
{
|
|
8110
8286
|
"name": "labelled-by",
|
|
@@ -8158,8 +8334,35 @@
|
|
|
8158
8334
|
"default": "\"normal\""
|
|
8159
8335
|
},
|
|
8160
8336
|
{
|
|
8161
|
-
"name": "
|
|
8162
|
-
"
|
|
8337
|
+
"name": "disabled",
|
|
8338
|
+
"attribute": "disabled",
|
|
8339
|
+
"description": "**Selection:** Disables the input",
|
|
8340
|
+
"type": "boolean",
|
|
8341
|
+
"default": "false"
|
|
8342
|
+
},
|
|
8343
|
+
{
|
|
8344
|
+
"name": "selectable",
|
|
8345
|
+
"attribute": "selectable",
|
|
8346
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
8347
|
+
"type": "boolean",
|
|
8348
|
+
"default": "false"
|
|
8349
|
+
},
|
|
8350
|
+
{
|
|
8351
|
+
"name": "selected",
|
|
8352
|
+
"attribute": "selected",
|
|
8353
|
+
"description": "**Selection:** Whether the item is selected",
|
|
8354
|
+
"type": "boolean",
|
|
8355
|
+
"default": "false"
|
|
8356
|
+
},
|
|
8357
|
+
{
|
|
8358
|
+
"name": "selectionInfo"
|
|
8359
|
+
},
|
|
8360
|
+
{
|
|
8361
|
+
"name": "skeleton",
|
|
8362
|
+
"attribute": "skeleton",
|
|
8363
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
8364
|
+
"type": "boolean",
|
|
8365
|
+
"default": "false"
|
|
8163
8366
|
},
|
|
8164
8367
|
{
|
|
8165
8368
|
"name": "dragHandleText",
|
|
@@ -8173,6 +8376,12 @@
|
|
|
8173
8376
|
"description": "**Drag & drop:** Text to drag and drop",
|
|
8174
8377
|
"type": "string"
|
|
8175
8378
|
},
|
|
8379
|
+
{
|
|
8380
|
+
"name": "key",
|
|
8381
|
+
"attribute": "key",
|
|
8382
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
8383
|
+
"type": "string"
|
|
8384
|
+
},
|
|
8176
8385
|
{
|
|
8177
8386
|
"name": "draggable",
|
|
8178
8387
|
"attribute": "draggable",
|
|
@@ -8188,41 +8397,20 @@
|
|
|
8188
8397
|
"default": "false"
|
|
8189
8398
|
},
|
|
8190
8399
|
{
|
|
8191
|
-
"name": "
|
|
8192
|
-
"attribute": "
|
|
8193
|
-
"description": "
|
|
8194
|
-
"type": "
|
|
8195
|
-
},
|
|
8196
|
-
{
|
|
8197
|
-
"name": "disabled",
|
|
8198
|
-
"attribute": "disabled",
|
|
8199
|
-
"description": "**Selection:** Disables the input",
|
|
8200
|
-
"type": "boolean",
|
|
8201
|
-
"default": "false"
|
|
8202
|
-
},
|
|
8203
|
-
{
|
|
8204
|
-
"name": "selectable",
|
|
8205
|
-
"attribute": "selectable",
|
|
8206
|
-
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
8207
|
-
"type": "boolean",
|
|
8208
|
-
"default": "false"
|
|
8209
|
-
},
|
|
8210
|
-
{
|
|
8211
|
-
"name": "selected",
|
|
8212
|
-
"attribute": "selected",
|
|
8213
|
-
"description": "**Selection:** Whether the item is selected",
|
|
8214
|
-
"type": "boolean",
|
|
8215
|
-
"default": "false"
|
|
8400
|
+
"name": "expandable",
|
|
8401
|
+
"attribute": "expandable",
|
|
8402
|
+
"description": "Whether to show the expand collapse toggle",
|
|
8403
|
+
"type": "boolean"
|
|
8216
8404
|
},
|
|
8217
8405
|
{
|
|
8218
|
-
"name": "
|
|
8406
|
+
"name": "expanded",
|
|
8407
|
+
"attribute": "expanded",
|
|
8408
|
+
"description": "Default state for expand collapse toggle - if not set, collapsed will be the default state",
|
|
8409
|
+
"type": "boolean"
|
|
8219
8410
|
},
|
|
8220
8411
|
{
|
|
8221
|
-
"name": "
|
|
8222
|
-
"
|
|
8223
|
-
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
8224
|
-
"type": "boolean",
|
|
8225
|
-
"default": "false"
|
|
8412
|
+
"name": "documentLocaleSettings",
|
|
8413
|
+
"default": "\"getDocumentLocaleSettings()\""
|
|
8226
8414
|
},
|
|
8227
8415
|
{
|
|
8228
8416
|
"name": "labelledBy",
|
|
@@ -8247,13 +8435,17 @@
|
|
|
8247
8435
|
"name": "d2l-list-item-link-click",
|
|
8248
8436
|
"description": "Dispatched when the item's primary link action is clicked"
|
|
8249
8437
|
},
|
|
8438
|
+
{
|
|
8439
|
+
"name": "d2l-list-item-selected",
|
|
8440
|
+
"description": "Dispatched when the component item is selected"
|
|
8441
|
+
},
|
|
8250
8442
|
{
|
|
8251
8443
|
"name": "d2l-list-item-position-change",
|
|
8252
8444
|
"description": "Dispatched when a draggable list item's position changes in the list. See [Event Details: d2l-list-item-position-change](#event-details%3A-d2l-list-item-position-change)."
|
|
8253
8445
|
},
|
|
8254
8446
|
{
|
|
8255
|
-
"name": "d2l-list-item-
|
|
8256
|
-
"description": "Dispatched
|
|
8447
|
+
"name": "d2l-list-item-expand-collapse-toggled",
|
|
8448
|
+
"description": "Dispatched whenever the list item expand state is toggled."
|
|
8257
8449
|
}
|
|
8258
8450
|
],
|
|
8259
8451
|
"slots": [
|