@brightspace-ui/core 3.263.3 → 3.264.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.
@@ -1,9 +1,15 @@
1
1
 
2
- import { LitElement } from 'lit';
2
+ import { css, LitElement } from 'lit';
3
3
  import { ValidationCustomMixin } from './validation-custom-mixin.js';
4
4
 
5
5
  class ValidationCustom extends ValidationCustomMixin(LitElement) {
6
6
 
7
+ static styles = css`
8
+ :host {
9
+ display: none;
10
+ }
11
+ `;
12
+
7
13
  async validate() {
8
14
  const validation = new Promise(resolve => {
9
15
  const details = { detail: { forElement: this.forElement, resolve } };
@@ -16092,6 +16092,11 @@
16092
16092
  }
16093
16093
  ],
16094
16094
  "properties": [
16095
+ {
16096
+ "name": "styles",
16097
+ "type": "CSSResult",
16098
+ "default": "\"css`\\n\\t\\t:host {\\n\\t\\t\\tdisplay: none;\\n\\t\\t}\\n\\t`\""
16099
+ },
16095
16100
  {
16096
16101
  "name": "failureText",
16097
16102
  "attribute": "failure-text",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.263.3",
3
+ "version": "3.264.1",
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",
@@ -1,25 +0,0 @@
1
- @mixin d2l-input-label() {
2
- cursor: default;
3
- display: block;
4
- font-size: 0.7rem;
5
- font-weight: 700;
6
- letter-spacing: 0.2px;
7
- line-height: 0.9rem;
8
- margin: 0;
9
- padding-block: 0 0.4rem;
10
- padding-inline: 0;
11
- width: 100%;
12
- }
13
-
14
- @mixin d2l-input-label-required() {
15
- &::after {
16
- background-image: url("data:image/svg+xml,%3Csvg%20width%3D%225%22%20height%3D%226%22%20viewBox%3D%220%200%205%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.38%205.141V3.86c0-.093.006-.184.018-.273.011-.089.031-.173.059-.252a.927.927%200%200%201-.182.175c-.07.051-.145.103-.224.154l-1.106.644-.413-.7%201.113-.644c.084-.051.167-.093.248-.126.082-.033.167-.056.256-.07a.816.816%200%200%201-.256-.07%202.356%202.356%200%200%201-.248-.133L.532%201.914l.406-.7%201.113.658c.08.051.155.104.228.157a.966.966%200%200%201%20.185.179%201.002%201.002%200%200%201-.066-.252%202.091%202.091%200%200%201-.018-.273V.388h.826v1.281c0%20.098-.006.192-.017.283a1.003%201.003%200%200%201-.067.256c.051-.065.112-.125.182-.179.07-.053.147-.106.231-.157l1.106-.644.413.7-1.113.637a1.954%201.954%200%200%201-.248.13%201.07%201.07%200%200%201-.256.073c.159.028.327.093.504.196l1.113.651-.406.7-1.113-.651a3.307%203.307%200%200%201-.231-.154%201.122%201.122%200%200%201-.189-.175c.06.15.091.322.091.518v1.288H2.38z%22%20fill%3D%22%23494C4E%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
17
- bottom: 0.25rem;
18
- content: "";
19
- display: inline-block;
20
- height: 0.3rem;
21
- inset-inline-start: 0.15rem;
22
- position: relative;
23
- width: 0.25rem;
24
- }
25
- }