@brightspace-ui/core 2.76.3 → 2.78.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.
- package/components/button/button-icon.js +1 -0
- package/components/inputs/demo/input-search.html +8 -0
- package/components/inputs/docs/input-search.md +1 -0
- package/components/inputs/input-search.js +18 -0
- 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 +399 -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
|
@@ -5999,6 +5999,12 @@
|
|
|
5999
5999
|
"type": "boolean",
|
|
6000
6000
|
"default": "false"
|
|
6001
6001
|
},
|
|
6002
|
+
{
|
|
6003
|
+
"name": "search-on-input",
|
|
6004
|
+
"description": "Dispatch search events after each input event",
|
|
6005
|
+
"type": "boolean",
|
|
6006
|
+
"default": "false"
|
|
6007
|
+
},
|
|
6002
6008
|
{
|
|
6003
6009
|
"name": "value",
|
|
6004
6010
|
"description": "Value of the input",
|
|
@@ -6049,6 +6055,13 @@
|
|
|
6049
6055
|
"type": "boolean",
|
|
6050
6056
|
"default": "false"
|
|
6051
6057
|
},
|
|
6058
|
+
{
|
|
6059
|
+
"name": "searchOnInput",
|
|
6060
|
+
"attribute": "search-on-input",
|
|
6061
|
+
"description": "Dispatch search events after each input event",
|
|
6062
|
+
"type": "boolean",
|
|
6063
|
+
"default": "false"
|
|
6064
|
+
},
|
|
6052
6065
|
{
|
|
6053
6066
|
"name": "value",
|
|
6054
6067
|
"attribute": "value",
|
|
@@ -7211,6 +7224,126 @@
|
|
|
7211
7224
|
}
|
|
7212
7225
|
]
|
|
7213
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
|
+
},
|
|
7214
7347
|
{
|
|
7215
7348
|
"name": "d2l-demo-list",
|
|
7216
7349
|
"path": "./components/list/demo/demo-list.js",
|
|
@@ -7277,25 +7410,6 @@
|
|
|
7277
7410
|
}
|
|
7278
7411
|
]
|
|
7279
7412
|
},
|
|
7280
|
-
{
|
|
7281
|
-
"name": "d2l-demo-list-drag-and-drop",
|
|
7282
|
-
"path": "./components/list/demo/list-drag-and-drop.js",
|
|
7283
|
-
"attributes": [
|
|
7284
|
-
{
|
|
7285
|
-
"name": "items",
|
|
7286
|
-
"type": "array",
|
|
7287
|
-
"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\":[]}]}]"
|
|
7288
|
-
}
|
|
7289
|
-
],
|
|
7290
|
-
"properties": [
|
|
7291
|
-
{
|
|
7292
|
-
"name": "items",
|
|
7293
|
-
"attribute": "items",
|
|
7294
|
-
"type": "array",
|
|
7295
|
-
"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\":[]}]}]"
|
|
7296
|
-
}
|
|
7297
|
-
]
|
|
7298
|
-
},
|
|
7299
7413
|
{
|
|
7300
7414
|
"name": "d2l-demo-list-item-custom",
|
|
7301
7415
|
"path": "./components/list/demo/list-item-custom.js",
|
|
@@ -7324,56 +7438,66 @@
|
|
|
7324
7438
|
"default": "\"normal\""
|
|
7325
7439
|
},
|
|
7326
7440
|
{
|
|
7327
|
-
"name": "
|
|
7328
|
-
"description": "**
|
|
7329
|
-
"type": "
|
|
7441
|
+
"name": "disabled",
|
|
7442
|
+
"description": "**Selection:** Disables the input",
|
|
7443
|
+
"type": "boolean",
|
|
7444
|
+
"default": "false"
|
|
7330
7445
|
},
|
|
7331
7446
|
{
|
|
7332
|
-
"name": "
|
|
7333
|
-
"description": "**
|
|
7334
|
-
"type": "
|
|
7447
|
+
"name": "selectable",
|
|
7448
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7449
|
+
"type": "boolean",
|
|
7450
|
+
"default": "true"
|
|
7335
7451
|
},
|
|
7336
7452
|
{
|
|
7337
|
-
"name": "
|
|
7338
|
-
"description": "**
|
|
7453
|
+
"name": "selected",
|
|
7454
|
+
"description": "**Selection:** Whether the item is selected",
|
|
7339
7455
|
"type": "boolean",
|
|
7340
7456
|
"default": "false"
|
|
7341
7457
|
},
|
|
7342
7458
|
{
|
|
7343
|
-
"name": "
|
|
7344
|
-
"description": "
|
|
7459
|
+
"name": "skeleton",
|
|
7460
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7345
7461
|
"type": "boolean",
|
|
7346
7462
|
"default": "false"
|
|
7347
7463
|
},
|
|
7348
7464
|
{
|
|
7349
|
-
"name": "
|
|
7350
|
-
"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.",
|
|
7351
7467
|
"type": "string"
|
|
7352
7468
|
},
|
|
7353
7469
|
{
|
|
7354
|
-
"name": "
|
|
7355
|
-
"description": "**
|
|
7356
|
-
"type": "
|
|
7357
|
-
"default": "false"
|
|
7470
|
+
"name": "drop-text",
|
|
7471
|
+
"description": "**Drag & drop:** Text to drag and drop",
|
|
7472
|
+
"type": "string"
|
|
7358
7473
|
},
|
|
7359
7474
|
{
|
|
7360
|
-
"name": "
|
|
7361
|
-
"description": "**Selection:**
|
|
7362
|
-
"type": "
|
|
7363
|
-
"default": "true"
|
|
7475
|
+
"name": "key",
|
|
7476
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
7477
|
+
"type": "string"
|
|
7364
7478
|
},
|
|
7365
7479
|
{
|
|
7366
|
-
"name": "
|
|
7367
|
-
"description": "**
|
|
7480
|
+
"name": "draggable",
|
|
7481
|
+
"description": "**Drag & drop:** Whether the item is draggable",
|
|
7368
7482
|
"type": "boolean",
|
|
7369
7483
|
"default": "false"
|
|
7370
7484
|
},
|
|
7371
7485
|
{
|
|
7372
|
-
"name": "
|
|
7373
|
-
"description": "
|
|
7486
|
+
"name": "drop-nested",
|
|
7487
|
+
"description": "**Drag & drop:** Whether nested items can be dropped on this item",
|
|
7374
7488
|
"type": "boolean",
|
|
7375
7489
|
"default": "false"
|
|
7376
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
|
+
},
|
|
7377
7501
|
{
|
|
7378
7502
|
"name": "labelled-by",
|
|
7379
7503
|
"description": "The id of element that provides the label for this element",
|
|
@@ -7414,8 +7538,35 @@
|
|
|
7414
7538
|
"default": "\"normal\""
|
|
7415
7539
|
},
|
|
7416
7540
|
{
|
|
7417
|
-
"name": "
|
|
7418
|
-
"
|
|
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"
|
|
7419
7570
|
},
|
|
7420
7571
|
{
|
|
7421
7572
|
"name": "dragHandleText",
|
|
@@ -7429,6 +7580,12 @@
|
|
|
7429
7580
|
"description": "**Drag & drop:** Text to drag and drop",
|
|
7430
7581
|
"type": "string"
|
|
7431
7582
|
},
|
|
7583
|
+
{
|
|
7584
|
+
"name": "key",
|
|
7585
|
+
"attribute": "key",
|
|
7586
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
7587
|
+
"type": "string"
|
|
7588
|
+
},
|
|
7432
7589
|
{
|
|
7433
7590
|
"name": "draggable",
|
|
7434
7591
|
"attribute": "draggable",
|
|
@@ -7444,41 +7601,20 @@
|
|
|
7444
7601
|
"default": "false"
|
|
7445
7602
|
},
|
|
7446
7603
|
{
|
|
7447
|
-
"name": "
|
|
7448
|
-
"attribute": "
|
|
7449
|
-
"description": "
|
|
7450
|
-
"type": "
|
|
7451
|
-
},
|
|
7452
|
-
{
|
|
7453
|
-
"name": "disabled",
|
|
7454
|
-
"attribute": "disabled",
|
|
7455
|
-
"description": "**Selection:** Disables the input",
|
|
7456
|
-
"type": "boolean",
|
|
7457
|
-
"default": "false"
|
|
7458
|
-
},
|
|
7459
|
-
{
|
|
7460
|
-
"name": "selectable",
|
|
7461
|
-
"attribute": "selectable",
|
|
7462
|
-
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7463
|
-
"type": "boolean",
|
|
7464
|
-
"default": "true"
|
|
7465
|
-
},
|
|
7466
|
-
{
|
|
7467
|
-
"name": "selected",
|
|
7468
|
-
"attribute": "selected",
|
|
7469
|
-
"description": "**Selection:** Whether the item is selected",
|
|
7470
|
-
"type": "boolean",
|
|
7471
|
-
"default": "false"
|
|
7604
|
+
"name": "expandable",
|
|
7605
|
+
"attribute": "expandable",
|
|
7606
|
+
"description": "Whether to show the expand collapse toggle",
|
|
7607
|
+
"type": "boolean"
|
|
7472
7608
|
},
|
|
7473
7609
|
{
|
|
7474
|
-
"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"
|
|
7475
7614
|
},
|
|
7476
7615
|
{
|
|
7477
|
-
"name": "
|
|
7478
|
-
"
|
|
7479
|
-
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7480
|
-
"type": "boolean",
|
|
7481
|
-
"default": "false"
|
|
7616
|
+
"name": "documentLocaleSettings",
|
|
7617
|
+
"default": "\"getDocumentLocaleSettings()\""
|
|
7482
7618
|
},
|
|
7483
7619
|
{
|
|
7484
7620
|
"name": "labelledBy",
|
|
@@ -7499,13 +7635,17 @@
|
|
|
7499
7635
|
}
|
|
7500
7636
|
],
|
|
7501
7637
|
"events": [
|
|
7638
|
+
{
|
|
7639
|
+
"name": "d2l-list-item-selected",
|
|
7640
|
+
"description": "Dispatched when the component item is selected"
|
|
7641
|
+
},
|
|
7502
7642
|
{
|
|
7503
7643
|
"name": "d2l-list-item-position-change",
|
|
7504
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)."
|
|
7505
7645
|
},
|
|
7506
7646
|
{
|
|
7507
|
-
"name": "d2l-list-item-
|
|
7508
|
-
"description": "Dispatched
|
|
7647
|
+
"name": "d2l-list-item-expand-collapse-toggled",
|
|
7648
|
+
"description": "Dispatched whenever the list item expand state is toggled."
|
|
7509
7649
|
}
|
|
7510
7650
|
]
|
|
7511
7651
|
},
|
|
@@ -7615,55 +7755,65 @@
|
|
|
7615
7755
|
"default": "\"normal\""
|
|
7616
7756
|
},
|
|
7617
7757
|
{
|
|
7618
|
-
"name": "
|
|
7619
|
-
"description": "**
|
|
7620
|
-
"type": "
|
|
7758
|
+
"name": "disabled",
|
|
7759
|
+
"description": "**Selection:** Disables the input",
|
|
7760
|
+
"type": "boolean",
|
|
7761
|
+
"default": "false"
|
|
7621
7762
|
},
|
|
7622
7763
|
{
|
|
7623
|
-
"name": "
|
|
7624
|
-
"description": "**
|
|
7625
|
-
"type": "
|
|
7764
|
+
"name": "selectable",
|
|
7765
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7766
|
+
"type": "boolean",
|
|
7767
|
+
"default": "false"
|
|
7626
7768
|
},
|
|
7627
7769
|
{
|
|
7628
|
-
"name": "
|
|
7629
|
-
"description": "**
|
|
7770
|
+
"name": "selected",
|
|
7771
|
+
"description": "**Selection:** Whether the item is selected",
|
|
7630
7772
|
"type": "boolean",
|
|
7631
7773
|
"default": "false"
|
|
7632
7774
|
},
|
|
7633
7775
|
{
|
|
7634
|
-
"name": "
|
|
7635
|
-
"description": "
|
|
7776
|
+
"name": "skeleton",
|
|
7777
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7636
7778
|
"type": "boolean",
|
|
7637
7779
|
"default": "false"
|
|
7638
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
|
+
},
|
|
7639
7791
|
{
|
|
7640
7792
|
"name": "key",
|
|
7641
|
-
"description": "Value to identify item if selectable",
|
|
7793
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
7642
7794
|
"type": "string"
|
|
7643
7795
|
},
|
|
7644
7796
|
{
|
|
7645
|
-
"name": "
|
|
7646
|
-
"description": "**
|
|
7797
|
+
"name": "draggable",
|
|
7798
|
+
"description": "**Drag & drop:** Whether the item is draggable",
|
|
7647
7799
|
"type": "boolean",
|
|
7648
7800
|
"default": "false"
|
|
7649
7801
|
},
|
|
7650
7802
|
{
|
|
7651
|
-
"name": "
|
|
7652
|
-
"description": "**
|
|
7803
|
+
"name": "drop-nested",
|
|
7804
|
+
"description": "**Drag & drop:** Whether nested items can be dropped on this item",
|
|
7653
7805
|
"type": "boolean",
|
|
7654
7806
|
"default": "false"
|
|
7655
7807
|
},
|
|
7656
7808
|
{
|
|
7657
|
-
"name": "
|
|
7658
|
-
"description": "
|
|
7659
|
-
"type": "boolean"
|
|
7660
|
-
"default": "false"
|
|
7809
|
+
"name": "expandable",
|
|
7810
|
+
"description": "Whether to show the expand collapse toggle",
|
|
7811
|
+
"type": "boolean"
|
|
7661
7812
|
},
|
|
7662
7813
|
{
|
|
7663
|
-
"name": "
|
|
7664
|
-
"description": "
|
|
7665
|
-
"type": "boolean"
|
|
7666
|
-
"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"
|
|
7667
7817
|
},
|
|
7668
7818
|
{
|
|
7669
7819
|
"name": "labelled-by",
|
|
@@ -7705,8 +7855,35 @@
|
|
|
7705
7855
|
"default": "\"normal\""
|
|
7706
7856
|
},
|
|
7707
7857
|
{
|
|
7708
|
-
"name": "
|
|
7709
|
-
"
|
|
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"
|
|
7710
7887
|
},
|
|
7711
7888
|
{
|
|
7712
7889
|
"name": "dragHandleText",
|
|
@@ -7720,6 +7897,12 @@
|
|
|
7720
7897
|
"description": "**Drag & drop:** Text to drag and drop",
|
|
7721
7898
|
"type": "string"
|
|
7722
7899
|
},
|
|
7900
|
+
{
|
|
7901
|
+
"name": "key",
|
|
7902
|
+
"attribute": "key",
|
|
7903
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
7904
|
+
"type": "string"
|
|
7905
|
+
},
|
|
7723
7906
|
{
|
|
7724
7907
|
"name": "draggable",
|
|
7725
7908
|
"attribute": "draggable",
|
|
@@ -7735,41 +7918,20 @@
|
|
|
7735
7918
|
"default": "false"
|
|
7736
7919
|
},
|
|
7737
7920
|
{
|
|
7738
|
-
"name": "
|
|
7739
|
-
"attribute": "
|
|
7740
|
-
"description": "
|
|
7741
|
-
"type": "
|
|
7742
|
-
},
|
|
7743
|
-
{
|
|
7744
|
-
"name": "disabled",
|
|
7745
|
-
"attribute": "disabled",
|
|
7746
|
-
"description": "**Selection:** Disables the input",
|
|
7747
|
-
"type": "boolean",
|
|
7748
|
-
"default": "false"
|
|
7749
|
-
},
|
|
7750
|
-
{
|
|
7751
|
-
"name": "selectable",
|
|
7752
|
-
"attribute": "selectable",
|
|
7753
|
-
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
7754
|
-
"type": "boolean",
|
|
7755
|
-
"default": "false"
|
|
7756
|
-
},
|
|
7757
|
-
{
|
|
7758
|
-
"name": "selected",
|
|
7759
|
-
"attribute": "selected",
|
|
7760
|
-
"description": "**Selection:** Whether the item is selected",
|
|
7761
|
-
"type": "boolean",
|
|
7762
|
-
"default": "false"
|
|
7921
|
+
"name": "expandable",
|
|
7922
|
+
"attribute": "expandable",
|
|
7923
|
+
"description": "Whether to show the expand collapse toggle",
|
|
7924
|
+
"type": "boolean"
|
|
7763
7925
|
},
|
|
7764
7926
|
{
|
|
7765
|
-
"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"
|
|
7766
7931
|
},
|
|
7767
7932
|
{
|
|
7768
|
-
"name": "
|
|
7769
|
-
"
|
|
7770
|
-
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
7771
|
-
"type": "boolean",
|
|
7772
|
-
"default": "false"
|
|
7933
|
+
"name": "documentLocaleSettings",
|
|
7934
|
+
"default": "\"getDocumentLocaleSettings()\""
|
|
7773
7935
|
},
|
|
7774
7936
|
{
|
|
7775
7937
|
"name": "labelledBy",
|
|
@@ -7794,13 +7956,17 @@
|
|
|
7794
7956
|
"name": "d2l-list-item-button-click",
|
|
7795
7957
|
"description": "Dispatched when the item's primary button action is clicked"
|
|
7796
7958
|
},
|
|
7959
|
+
{
|
|
7960
|
+
"name": "d2l-list-item-selected",
|
|
7961
|
+
"description": "Dispatched when the component item is selected"
|
|
7962
|
+
},
|
|
7797
7963
|
{
|
|
7798
7964
|
"name": "d2l-list-item-position-change",
|
|
7799
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)."
|
|
7800
7966
|
},
|
|
7801
7967
|
{
|
|
7802
|
-
"name": "d2l-list-item-
|
|
7803
|
-
"description": "Dispatched
|
|
7968
|
+
"name": "d2l-list-item-expand-collapse-toggled",
|
|
7969
|
+
"description": "Dispatched whenever the list item expand state is toggled."
|
|
7804
7970
|
}
|
|
7805
7971
|
],
|
|
7806
7972
|
"slots": [
|
|
@@ -7898,6 +8064,10 @@
|
|
|
7898
8064
|
"name": "d2l-list-item-drag-image",
|
|
7899
8065
|
"path": "./components/list/list-item-drag-image.js",
|
|
7900
8066
|
"attributes": [
|
|
8067
|
+
{
|
|
8068
|
+
"name": "include-plus-sign",
|
|
8069
|
+
"type": "boolean"
|
|
8070
|
+
},
|
|
7901
8071
|
{
|
|
7902
8072
|
"name": "skeleton",
|
|
7903
8073
|
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
@@ -7906,11 +8076,20 @@
|
|
|
7906
8076
|
}
|
|
7907
8077
|
],
|
|
7908
8078
|
"properties": [
|
|
8079
|
+
{
|
|
8080
|
+
"name": "includePlusSign",
|
|
8081
|
+
"attribute": "include-plus-sign",
|
|
8082
|
+
"type": "boolean"
|
|
8083
|
+
},
|
|
7909
8084
|
{
|
|
7910
8085
|
"name": "count",
|
|
7911
8086
|
"type": "number",
|
|
7912
8087
|
"default": "0"
|
|
7913
8088
|
},
|
|
8089
|
+
{
|
|
8090
|
+
"name": "documentLocaleSettings",
|
|
8091
|
+
"default": "\"getDocumentLocaleSettings()\""
|
|
8092
|
+
},
|
|
7914
8093
|
{
|
|
7915
8094
|
"name": "skeleton",
|
|
7916
8095
|
"attribute": "skeleton",
|
|
@@ -8043,55 +8222,65 @@
|
|
|
8043
8222
|
"default": "\"normal\""
|
|
8044
8223
|
},
|
|
8045
8224
|
{
|
|
8046
|
-
"name": "
|
|
8047
|
-
"description": "**
|
|
8048
|
-
"type": "
|
|
8225
|
+
"name": "disabled",
|
|
8226
|
+
"description": "**Selection:** Disables the input",
|
|
8227
|
+
"type": "boolean",
|
|
8228
|
+
"default": "false"
|
|
8049
8229
|
},
|
|
8050
8230
|
{
|
|
8051
|
-
"name": "
|
|
8052
|
-
"description": "**
|
|
8053
|
-
"type": "
|
|
8231
|
+
"name": "selectable",
|
|
8232
|
+
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
8233
|
+
"type": "boolean",
|
|
8234
|
+
"default": "false"
|
|
8054
8235
|
},
|
|
8055
8236
|
{
|
|
8056
|
-
"name": "
|
|
8057
|
-
"description": "**
|
|
8237
|
+
"name": "selected",
|
|
8238
|
+
"description": "**Selection:** Whether the item is selected",
|
|
8058
8239
|
"type": "boolean",
|
|
8059
8240
|
"default": "false"
|
|
8060
8241
|
},
|
|
8061
8242
|
{
|
|
8062
|
-
"name": "
|
|
8063
|
-
"description": "
|
|
8243
|
+
"name": "skeleton",
|
|
8244
|
+
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
8064
8245
|
"type": "boolean",
|
|
8065
8246
|
"default": "false"
|
|
8066
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
|
+
},
|
|
8067
8258
|
{
|
|
8068
8259
|
"name": "key",
|
|
8069
|
-
"description": "Value to identify item if selectable",
|
|
8260
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
8070
8261
|
"type": "string"
|
|
8071
8262
|
},
|
|
8072
8263
|
{
|
|
8073
|
-
"name": "
|
|
8074
|
-
"description": "**
|
|
8264
|
+
"name": "draggable",
|
|
8265
|
+
"description": "**Drag & drop:** Whether the item is draggable",
|
|
8075
8266
|
"type": "boolean",
|
|
8076
8267
|
"default": "false"
|
|
8077
8268
|
},
|
|
8078
8269
|
{
|
|
8079
|
-
"name": "
|
|
8080
|
-
"description": "**
|
|
8270
|
+
"name": "drop-nested",
|
|
8271
|
+
"description": "**Drag & drop:** Whether nested items can be dropped on this item",
|
|
8081
8272
|
"type": "boolean",
|
|
8082
8273
|
"default": "false"
|
|
8083
8274
|
},
|
|
8084
8275
|
{
|
|
8085
|
-
"name": "
|
|
8086
|
-
"description": "
|
|
8087
|
-
"type": "boolean"
|
|
8088
|
-
"default": "false"
|
|
8276
|
+
"name": "expandable",
|
|
8277
|
+
"description": "Whether to show the expand collapse toggle",
|
|
8278
|
+
"type": "boolean"
|
|
8089
8279
|
},
|
|
8090
8280
|
{
|
|
8091
|
-
"name": "
|
|
8092
|
-
"description": "
|
|
8093
|
-
"type": "boolean"
|
|
8094
|
-
"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"
|
|
8095
8284
|
},
|
|
8096
8285
|
{
|
|
8097
8286
|
"name": "labelled-by",
|
|
@@ -8145,8 +8334,35 @@
|
|
|
8145
8334
|
"default": "\"normal\""
|
|
8146
8335
|
},
|
|
8147
8336
|
{
|
|
8148
|
-
"name": "
|
|
8149
|
-
"
|
|
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"
|
|
8150
8366
|
},
|
|
8151
8367
|
{
|
|
8152
8368
|
"name": "dragHandleText",
|
|
@@ -8160,6 +8376,12 @@
|
|
|
8160
8376
|
"description": "**Drag & drop:** Text to drag and drop",
|
|
8161
8377
|
"type": "string"
|
|
8162
8378
|
},
|
|
8379
|
+
{
|
|
8380
|
+
"name": "key",
|
|
8381
|
+
"attribute": "key",
|
|
8382
|
+
"description": "**Selection:** Value to identify item if selectable",
|
|
8383
|
+
"type": "string"
|
|
8384
|
+
},
|
|
8163
8385
|
{
|
|
8164
8386
|
"name": "draggable",
|
|
8165
8387
|
"attribute": "draggable",
|
|
@@ -8175,41 +8397,20 @@
|
|
|
8175
8397
|
"default": "false"
|
|
8176
8398
|
},
|
|
8177
8399
|
{
|
|
8178
|
-
"name": "
|
|
8179
|
-
"attribute": "
|
|
8180
|
-
"description": "
|
|
8181
|
-
"type": "
|
|
8182
|
-
},
|
|
8183
|
-
{
|
|
8184
|
-
"name": "disabled",
|
|
8185
|
-
"attribute": "disabled",
|
|
8186
|
-
"description": "**Selection:** Disables the input",
|
|
8187
|
-
"type": "boolean",
|
|
8188
|
-
"default": "false"
|
|
8189
|
-
},
|
|
8190
|
-
{
|
|
8191
|
-
"name": "selectable",
|
|
8192
|
-
"attribute": "selectable",
|
|
8193
|
-
"description": "**Selection:** Indicates an input should be rendered for selecting the item",
|
|
8194
|
-
"type": "boolean",
|
|
8195
|
-
"default": "false"
|
|
8196
|
-
},
|
|
8197
|
-
{
|
|
8198
|
-
"name": "selected",
|
|
8199
|
-
"attribute": "selected",
|
|
8200
|
-
"description": "**Selection:** Whether the item is selected",
|
|
8201
|
-
"type": "boolean",
|
|
8202
|
-
"default": "false"
|
|
8400
|
+
"name": "expandable",
|
|
8401
|
+
"attribute": "expandable",
|
|
8402
|
+
"description": "Whether to show the expand collapse toggle",
|
|
8403
|
+
"type": "boolean"
|
|
8203
8404
|
},
|
|
8204
8405
|
{
|
|
8205
|
-
"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"
|
|
8206
8410
|
},
|
|
8207
8411
|
{
|
|
8208
|
-
"name": "
|
|
8209
|
-
"
|
|
8210
|
-
"description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
|
|
8211
|
-
"type": "boolean",
|
|
8212
|
-
"default": "false"
|
|
8412
|
+
"name": "documentLocaleSettings",
|
|
8413
|
+
"default": "\"getDocumentLocaleSettings()\""
|
|
8213
8414
|
},
|
|
8214
8415
|
{
|
|
8215
8416
|
"name": "labelledBy",
|
|
@@ -8234,13 +8435,17 @@
|
|
|
8234
8435
|
"name": "d2l-list-item-link-click",
|
|
8235
8436
|
"description": "Dispatched when the item's primary link action is clicked"
|
|
8236
8437
|
},
|
|
8438
|
+
{
|
|
8439
|
+
"name": "d2l-list-item-selected",
|
|
8440
|
+
"description": "Dispatched when the component item is selected"
|
|
8441
|
+
},
|
|
8237
8442
|
{
|
|
8238
8443
|
"name": "d2l-list-item-position-change",
|
|
8239
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)."
|
|
8240
8445
|
},
|
|
8241
8446
|
{
|
|
8242
|
-
"name": "d2l-list-item-
|
|
8243
|
-
"description": "Dispatched
|
|
8447
|
+
"name": "d2l-list-item-expand-collapse-toggled",
|
|
8448
|
+
"description": "Dispatched whenever the list item expand state is toggled."
|
|
8244
8449
|
}
|
|
8245
8450
|
],
|
|
8246
8451
|
"slots": [
|