@momentum-ui/web-components 2.23.11 → 2.23.13

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,6 +1,7 @@
1
1
  declare const BadgeCircleSize: {
2
2
  readonly 24: 24;
3
3
  readonly 32: 32;
4
+ readonly 36: 36;
4
5
  readonly 40: 40;
5
6
  readonly 48: 48;
6
7
  readonly 64: 64;
@@ -8,4 +9,9 @@ declare const BadgeCircleSize: {
8
9
  readonly 88: 88;
9
10
  readonly 124: 124;
10
11
  };
11
- export { BadgeCircleSize };
12
+ declare const BadgeSize: {
13
+ readonly 24: 24;
14
+ readonly 32: 32;
15
+ readonly 36: 36;
16
+ };
17
+ export { BadgeCircleSize, BadgeSize };
@@ -37,6 +37,7 @@ export declare namespace Tab {
37
37
  onlyIcon: boolean;
38
38
  variant: Tabs.TabVariant;
39
39
  visibleTab: boolean;
40
+ size?: Tabs.TabSize;
40
41
  private _disabled;
41
42
  get disabled(): boolean;
42
43
  set disabled(value: boolean);
@@ -16,6 +16,7 @@ export declare const MORE_MENU_TAB_COPY_ID_PREFIX = "more-menu-copy-";
16
16
  export declare namespace Tabs {
17
17
  export type TabsType = "line" | "pill" | "rounded";
18
18
  export type TabVariant = "ghost" | "primary";
19
+ export type TabSize = 28 | 32;
19
20
  const ELEMENT_base: typeof LitElement & import("../../mixins/SlottedMixin").AnyConstructor<import("../../mixins/SlottedMixin").SlotableClass & import("../../mixins/SlottedMixin").SlotableInterface> & import("../../mixins/RovingTabIndexMixin").AnyConstructor<import("../../mixins/RovingTabIndexMixin").RovingTabIndexInterface & import("../../mixins/SlottedMixin").SlotableInterface & import("../../mixins/SlottedMixin").SlotableClass & import("../../mixins/RovingTabIndexMixin").RovingTabIndexClass> & import("../../mixins/ResizeMixin").AnyConstructor<import("../../mixins/ResizeMixin").ResizeClass>;
20
21
  export class ELEMENT extends ELEMENT_base {
21
22
  justified: boolean;
@@ -41,6 +42,7 @@ export declare namespace Tabs {
41
42
  scrollArrow: boolean;
42
43
  leftArrowAriaLabel: string;
43
44
  rightArrowAriaLabel: string;
45
+ size: TabSize;
44
46
  private isMoreTabMenuVisible;
45
47
  private isMoreTabMenuMeasured;
46
48
  private isMoreTabMenuOpen;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentum-ui/web-components",
3
- "version": "2.23.11",
3
+ "version": "2.23.13",
4
4
  "author": "Yana Harris",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/momentum-design/momentum-ui.git",