@brightspace-ui/core 1.231.1 → 1.231.2

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.
@@ -80,7 +80,7 @@ search.addEventListener('d2l-input-search-searched', (e) => {
80
80
  When the input is cleared, the same event will be fired with an empty value.
81
81
  <!-- docs: end hidden content -->
82
82
 
83
- ### Accessibility
83
+ ### Accessibility Properties
84
84
 
85
85
  To make your usage of `d2l-input-search` accessible, use the following property when applicable:
86
86
 
@@ -9,6 +9,7 @@ import { SelectionActionMixin } from './selection-action-mixin.js';
9
9
  /**
10
10
  * A dropdown opener associated with a selection component.
11
11
  * @slot - Dropdown content (e.g., "d2l-dropdown-content", "d2l-dropdown-menu" or "d2l-dropdown-tabs")
12
+ * @fires d2l-selection-observer-subscribe - Internal event
12
13
  */
13
14
  class ActionDropdown extends LocalizeCoreElement(SelectionActionMixin(DropdownOpenerMixin(LitElement))) {
14
15
 
@@ -114,11 +114,11 @@ The `d2l-table-wrapper` element can be combined with table styles to apply defau
114
114
  <!-- docs: start hidden content -->
115
115
  ### Properties
116
116
 
117
- | Property | Type | Description |
118
- |---|---|---|
119
- | `no-column-border` | Boolean, default: `false` | Hides the column borders on "default" table type |
120
- | `sticky-headers` | Boolean, default: `false` | Whether to make the header row sticky |
121
- | `type` | String, default: `'default'` | Type of the table style. Can be one of `default`, `light`. |
117
+ | Property | Type | Description | Default Value |
118
+ |---|---|---|---|
119
+ | `no-column-border` | boolean | Hides the column borders on "default" table type | false |
120
+ | `sticky-headers` | boolean | Whether to make the header row sticky | false |
121
+ | `type` | string | Type of the table style. Can be one of `default`, `light`. | 'default' |
122
122
 
123
123
  ## Light Type
124
124
 
@@ -241,10 +241,10 @@ When tabular data can be sorted, the `<d2l-table-col-sort-button>` can be used t
241
241
 
242
242
  ### Properties
243
243
 
244
- | Property | Type | Description |
245
- |---|---|---|
246
- | `desc` | Boolean, default: `false` | Whether sort direction is descending |
247
- | `nosort` | Booealn, default: `false` | Column is not currently sorted. Hides the ascending/descending sort icon. |
244
+ | Property | Type | Description | Default Value |
245
+ |---|---|---|---|
246
+ | `desc` | boolean | Whether sort direction is descending | false |
247
+ | `nosort` | boolean | Column is not currently sorted. Hides the ascending/descending sort icon. | false |
248
248
 
249
249
  ## Selection
250
250
 
@@ -8538,7 +8538,8 @@
8538
8538
  ],
8539
8539
  "events": [
8540
8540
  {
8541
- "name": "d2l-selection-observer-subscribe"
8541
+ "name": "d2l-selection-observer-subscribe",
8542
+ "description": "Internal event"
8542
8543
  }
8543
8544
  ],
8544
8545
  "slots": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "1.231.1",
3
+ "version": "1.231.2",
4
4
  "description": "A collection of accessible, free, open-source web components for building Brightspace applications",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/BrightspaceUI/core.git",