@viasat/beam-web-components 2.14.0 → 2.15.0
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.
- package/BadgeDot/BadgeDot.d.ts +3 -3
- package/Box/Box.d.ts +1 -2
- package/Box/Box.js +0 -3
- package/Divider/Divider.d.ts +2 -2
- package/SegmentedControl/SegmentedControl.d.ts +2 -1
- package/SegmentedControl/SegmentedControl.js +1 -1
- package/Text/Text.d.ts +0 -1
- package/Tooltip/Tooltip.d.ts +0 -2
- package/custom-elements.json +1687 -1691
- package/local/Box/Box.js +5 -8
- package/local/SegmentedControl/SegmentedControl.js +11 -11
- package/package.json +6 -6
- package/vscode.html-custom-data.json +319 -319
package/BadgeDot/BadgeDot.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
-
import { BadgeDotAppearance
|
|
2
|
+
import { BadgeDotAppearance, BadgeDotEmphasis } from '@viasat/beam-shared/components/badgeDot';
|
|
3
3
|
import { ThemeTypes } from '@viasat/beam-shared/utils/constants';
|
|
4
4
|
/**
|
|
5
5
|
* `bm-badge-dot`
|
|
@@ -18,12 +18,12 @@ export declare class BmBadgeDot extends LitElement {
|
|
|
18
18
|
* Specify the appearance of the BadgeDot
|
|
19
19
|
* @default 'infoPrimary'
|
|
20
20
|
*/
|
|
21
|
-
appearance:
|
|
21
|
+
appearance: BadgeDotAppearance;
|
|
22
22
|
/**
|
|
23
23
|
* Specify the emphasis of the BadgeDot
|
|
24
24
|
* @default 'strong'
|
|
25
25
|
*/
|
|
26
|
-
emphasis:
|
|
26
|
+
emphasis: BadgeDotEmphasis;
|
|
27
27
|
/**
|
|
28
28
|
* Overrides default dot color
|
|
29
29
|
*/
|
package/Box/Box.d.ts
CHANGED
|
@@ -10,9 +10,8 @@ export declare class BmBox extends LitElement {
|
|
|
10
10
|
static styles: import('lit').CSSResult;
|
|
11
11
|
/**
|
|
12
12
|
* Specify the background color of a Box
|
|
13
|
-
* @default 'transparent'
|
|
14
13
|
*/
|
|
15
|
-
backgroundColor
|
|
14
|
+
backgroundColor?: BoxBackgroundColor;
|
|
16
15
|
/**
|
|
17
16
|
* Specify the border color of a Box
|
|
18
17
|
*/
|
package/Box/Box.js
CHANGED
|
@@ -12,9 +12,6 @@ var y = Object.defineProperty, f = Object.getOwnPropertyDescriptor, o = (t, d, a
|
|
|
12
12
|
};
|
|
13
13
|
const { baseClassNamePrefix: S, classModifierPrefix: s } = g("box");
|
|
14
14
|
let r = class extends c {
|
|
15
|
-
constructor() {
|
|
16
|
-
super(...arguments), this.backgroundColor = "transparent";
|
|
17
|
-
}
|
|
18
15
|
render() {
|
|
19
16
|
const t = {
|
|
20
17
|
px: this.px,
|
package/Divider/Divider.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LitElement, TemplateResult } from 'lit';
|
|
2
2
|
import { DividerBorderColor, DividerOrientation, DividerBorderWidth, DividerBorderStyle, DividerAlignContent } from '@viasat/beam-shared/components/divider';
|
|
3
|
-
import { Spacing
|
|
3
|
+
import { Spacing } from '@viasat/beam-shared/utils';
|
|
4
4
|
/**
|
|
5
5
|
* `bm-divider`
|
|
6
6
|
*
|
|
@@ -39,7 +39,7 @@ export declare class BmDivider extends LitElement {
|
|
|
39
39
|
/**
|
|
40
40
|
* Add equal padding to each side of the Divider
|
|
41
41
|
*/
|
|
42
|
-
inset?:
|
|
42
|
+
inset?: Spacing;
|
|
43
43
|
private _defaultSlotNodes;
|
|
44
44
|
private _iconNode;
|
|
45
45
|
private _hasContent;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from 'lit';
|
|
2
|
+
import { SegmentedControlSize } from '@viasat/beam-shared/components/SegmentedControl';
|
|
2
3
|
import { SegmentedControlContext } from './SegmentedControl.context';
|
|
3
4
|
/**
|
|
4
5
|
* `bm-segmented-control`
|
|
@@ -17,7 +18,7 @@ export declare class BmSegmentedControl extends LitElement {
|
|
|
17
18
|
* Specify the size of a SegmentedControl
|
|
18
19
|
* @default 'md'
|
|
19
20
|
*/
|
|
20
|
-
size
|
|
21
|
+
size: SegmentedControlSize;
|
|
21
22
|
/**
|
|
22
23
|
* Specify the value of the initially selected item
|
|
23
24
|
*/
|
|
@@ -19,7 +19,7 @@ var V = Object.defineProperty, A = Object.getOwnPropertyDescriptor, C = (t) => {
|
|
|
19
19
|
const { baseClassNamePrefix: M } = z("segmented-control");
|
|
20
20
|
let r = class extends b {
|
|
21
21
|
constructor() {
|
|
22
|
-
super(), g(this, s), g(this, l, /* @__PURE__ */ new Set()), this.segmentedControlContext = {
|
|
22
|
+
super(), g(this, s), this.size = "md", g(this, l, /* @__PURE__ */ new Set()), this.segmentedControlContext = {
|
|
23
23
|
disabled: void 0,
|
|
24
24
|
size: void 0,
|
|
25
25
|
selectedValue: void 0,
|
package/Text/Text.d.ts
CHANGED
package/Tooltip/Tooltip.d.ts
CHANGED
|
@@ -102,8 +102,6 @@ export declare class BmTooltip extends BmTooltip_base {
|
|
|
102
102
|
disableAutoAria: boolean;
|
|
103
103
|
/**
|
|
104
104
|
* Override the auto-generated id attached to the trigger for aria-describedby
|
|
105
|
-
*
|
|
106
|
-
* @default automatic
|
|
107
105
|
*/
|
|
108
106
|
autoDescribedById: string;
|
|
109
107
|
/**
|