@viasat/beam-web-components 2.13.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.
@@ -1,5 +1,5 @@
1
1
  import { LitElement } from 'lit';
2
- import { BadgeDotAppearance as Appearance, BadgeDotEmphasis as Emphasis } from '@viasat/beam-shared/components/badgeDot';
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: Appearance;
21
+ appearance: BadgeDotAppearance;
22
22
  /**
23
23
  * Specify the emphasis of the BadgeDot
24
24
  * @default 'strong'
25
25
  */
26
- emphasis: 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: BoxBackgroundColor;
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,
@@ -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 as DividerSpacing } from '@viasat/beam-shared/utils';
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?: DividerSpacing;
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?: string;
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
@@ -22,7 +22,6 @@ export declare class BmText extends LitElement {
22
22
  static styles: import('lit').CSSResult;
23
23
  /**
24
24
  * The text content. If provided, will be used instead of slot content.
25
- * @type {string}
26
25
  */
27
26
  text?: string;
28
27
  /**
@@ -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
  /**