@brightspace-ui/core 3.101.1 → 3.101.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.
@@ -5,14 +5,14 @@ import { ifDefined } from 'lit/directives/if-defined.js';
5
5
  import { InputInlineHelpMixin } from './input-inline-help.js';
6
6
  import { inputLabelStyles } from './input-label-styles.js';
7
7
  import { offscreenStyles } from '../offscreen/offscreen.js';
8
- import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
8
+ import { PropertyRequiredMixin } from '../../mixins/property-required/property-required-mixin.js';
9
9
  import { SkeletonMixin } from '../skeleton/skeleton-mixin.js';
10
10
 
11
11
  /**
12
12
  * A component wrapper to be used when a page contains multiple inputs which are related (for example to form an address) to wrap those related inputs.
13
13
  * @slot - Related input components
14
14
  */
15
- class InputFieldset extends InputInlineHelpMixin(SkeletonMixin(RtlMixin(LitElement))) {
15
+ class InputFieldset extends PropertyRequiredMixin(InputInlineHelpMixin(SkeletonMixin(LitElement))) {
16
16
 
17
17
  static get properties() {
18
18
  return {
@@ -20,7 +20,7 @@ class InputFieldset extends InputInlineHelpMixin(SkeletonMixin(RtlMixin(LitEleme
20
20
  * REQUIRED: Label for the fieldset
21
21
  * @type {string}
22
22
  */
23
- label: { type: String },
23
+ label: { type: String, required: true },
24
24
  /**
25
25
  * Hides the label visually
26
26
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.101.1",
3
+ "version": "3.101.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",