@brightspace-ui/core 3.260.1 → 3.260.3

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.
@@ -25,6 +25,7 @@ class ObjectPropertyList extends LocalizeCoreElement(SkeletonMixin(LitElement))
25
25
  return [super.styles, bodySmallStyles, css`
26
26
  :host {
27
27
  display: block;
28
+ overflow-wrap: anywhere;
28
29
  }
29
30
  :host([hidden]) {
30
31
  display: none;
@@ -78,7 +78,6 @@ Items added to this container element will no longer wrap onto a second line whe
78
78
 
79
79
  | Property | Type | Description |
80
80
  |--|--|--|
81
- | `auto-show` | Boolean | Automatically determine the min and maximum number of items to show based on which elements have classes `d2l-button-group-show` and `d2l-button-group-no-show`. Please consult the design team when using this attribute. |
82
81
  | `min-to-show` | Number | The minimum number of elements to always show. Please consult the design team when using this attribute. |
83
82
  | `max-to-show` | Number | The maximum number of elements to show |
84
83
  | `opener-style` | String | Set the style of the overflow menu `default` renders a `d2l-button` while `subtle` will render a `d2l-button-subtle`|
@@ -129,4 +128,4 @@ getOverflowContainer(overflowItems, mini) {
129
128
 
130
129
  Navigation and focus order are impacted when items overflow the viewport; they are physically moved into the More Actions menu. Since this effect is not limited to visual presentation, it affects both screen reader users and sighted users equally.
131
130
 
132
- The accessibility and keyboard interaction of the More Actions menu aligns with [W3C's best practices for menus](https://www.w3.org/WAI/ARIA/apg/patterns/menubar/) — see [Menu](../menu) for more information.
131
+ The accessibility and keyboard interaction of the More Actions menu aligns with [W3C's best practices for menus](https://www.w3.org/WAI/ARIA/apg/patterns/menubar/) — see [Menu](../menu) for more information.
@@ -66,7 +66,6 @@ function createMenuItemSeparator() {
66
66
  * A component that can be used to display a set of buttons, links or menus that will be put into a dropdown menu when they no longer fit on the first line of their container
67
67
  * @slot - Buttons, dropdown buttons, links or other items to be added to the container
68
68
  * @attr {'default'|'icon'} [opener-type="default"] - Set the opener type to 'icon' for a `...` menu icon instead of `More actions` text
69
- * @attr {boolean} auto-show - Use predefined classes on slot elements to set min and max buttons to show
70
69
  */
71
70
  class OverflowGroup extends OverflowGroupMixin(LitElement) {
72
71
 
@@ -12225,11 +12225,6 @@
12225
12225
  "description": "Set the opener type to 'icon' for a `...` menu icon instead of `More actions` text",
12226
12226
  "type": "'default'|'icon'",
12227
12227
  "default": "\"default\""
12228
- },
12229
- {
12230
- "name": "auto-show",
12231
- "description": "Use predefined classes on slot elements to set min and max buttons to show",
12232
- "type": "boolean"
12233
12228
  }
12234
12229
  ],
12235
12230
  "properties": [
package/lang/ca.js CHANGED
@@ -69,8 +69,8 @@ export default {
69
69
  other {El número ha de ser superior a {min} i inferior o igual a {max}.}
70
70
  }}
71
71
  other {{maxExclusive, select,
72
- true {Number must be greater than or equal to {min} and less than {max}.}
73
- other {Number must be greater than or equal to {min} and less than or equal to {max}.}
72
+ true {El número ha de ser igual o superior a {min} i inferior a {max}.}
73
+ other {El número ha de ser igual o superior a {min} i igual o inferior a {max}.}
74
74
  }}
75
75
  }`,
76
76
  "components.form-element.input.number.rangeOverflow":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.260.1",
3
+ "version": "3.260.3",
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",