@brightspace-ui/core 3.155.5 → 3.155.6
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.
@@ -4,12 +4,11 @@ import { css, html, LitElement, nothing } from 'lit';
|
|
4
4
|
import { classMap } from 'lit/directives/class-map.js';
|
5
5
|
import { MeterMixin } from './meter-mixin.js';
|
6
6
|
import { meterStyles } from './meter-styles.js';
|
7
|
-
import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
|
8
7
|
|
9
8
|
/**
|
10
9
|
* A circular progress indicator.
|
11
10
|
*/
|
12
|
-
class MeterCircle extends MeterMixin(
|
11
|
+
class MeterCircle extends MeterMixin(LitElement) {
|
13
12
|
static get styles() {
|
14
13
|
return [ bodySmallStyles, bodyStandardStyles, meterStyles, css`
|
15
14
|
:host {
|
@@ -2,12 +2,11 @@ import { css, html, LitElement, nothing } from 'lit';
|
|
2
2
|
import { bodySmallStyles } from '../typography/styles.js';
|
3
3
|
import { classMap } from 'lit/directives/class-map.js';
|
4
4
|
import { MeterMixin } from './meter-mixin.js';
|
5
|
-
import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
|
6
5
|
|
7
6
|
/**
|
8
7
|
* A horizontal progress bar.
|
9
8
|
*/
|
10
|
-
class MeterLinear extends MeterMixin(
|
9
|
+
class MeterLinear extends MeterMixin(LitElement) {
|
11
10
|
static get properties() {
|
12
11
|
return {
|
13
12
|
/**
|
@@ -86,7 +85,7 @@ class MeterLinear extends MeterMixin(RtlMixin(LitElement)) {
|
|
86
85
|
align-self: flex-end;
|
87
86
|
}
|
88
87
|
|
89
|
-
|
88
|
+
.d2l-meter-linear-primary-ltr {
|
90
89
|
direction: ltr;
|
91
90
|
}
|
92
91
|
`];
|
@@ -4,12 +4,11 @@ import { css, html, LitElement, nothing } from 'lit';
|
|
4
4
|
import { classMap } from 'lit/directives/class-map.js';
|
5
5
|
import { MeterMixin } from './meter-mixin.js';
|
6
6
|
import { meterStyles } from './meter-styles.js';
|
7
|
-
import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
|
8
7
|
|
9
8
|
/**
|
10
9
|
* A half-circle progress indicator.
|
11
10
|
*/
|
12
|
-
class MeterRadial extends MeterMixin(
|
11
|
+
class MeterRadial extends MeterMixin(LitElement) {
|
13
12
|
static get styles() {
|
14
13
|
return [ heading4Styles, bodySmallStyles, meterStyles, css`
|
15
14
|
:host {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.155.
|
3
|
+
"version": "3.155.6",
|
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",
|