@odx/foundation 1.0.0-beta.151 → 1.0.0-beta.152

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.
@@ -19,7 +19,7 @@ export declare const ChipVariant: Pick<{
19
19
  readonly DANGER_SUBTLE: "danger-subtle";
20
20
  readonly DANGER_GHOST: "danger-ghost";
21
21
  readonly GHOST: "ghost";
22
- }, "NEUTRAL" | "PRIMARY" | "ACCENT" | "SUCCESS" | "WARNING" | "DANGER">;
22
+ }, "NEUTRAL" | "NEUTRAL_SUBTLE" | "PRIMARY" | "ACCENT" | "SUCCESS" | "WARNING" | "DANGER">;
23
23
  declare const OdxChip_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
24
24
  export declare class OdxChip extends OdxChip_base {
25
25
  #private;
@@ -53,6 +53,7 @@ export * from './progress-ring/progress-ring.js';
53
53
  export * from './radio-button/radio-button.js';
54
54
  export * from './radio-group/radio-group.js';
55
55
  export * from './rail-navigation/rail-navigation.js';
56
+ export * from './scroll-container/scroll-container.js';
56
57
  export * from './search-bar/search-bar.js';
57
58
  export * from './select/select.js';
58
59
  export * from './separator/separator.js';
@@ -62,6 +63,7 @@ export * from './spacer/spacer.js';
62
63
  export * from './spinbox/spinbox.js';
63
64
  export * from './status/status.js';
64
65
  export * from './switch/switch.js';
66
+ export * from './tab-bar/tab-bar.js';
65
67
  export * from './table/index.js';
66
68
  export * from './text/text.js';
67
69
  export * from './title/title.js';
@@ -0,0 +1,28 @@
1
+ import { CustomElement } from '../../lib/main.js';
2
+ import { PropertyValues, TemplateResult } from 'lit';
3
+ declare global {
4
+ interface HTMLElementTagNameMap {
5
+ 'odx-scroll-container': OdxScrollContainer;
6
+ }
7
+ }
8
+ /**
9
+
10
+ * @slot scroll-action-left - Left action slot
11
+ * @slot scroll-action-right - Right action slot
12
+ * @slot - Default slot
13
+ */
14
+ export declare class OdxScrollContainer extends CustomElement {
15
+ #private;
16
+ private readonly leftAction;
17
+ private readonly rightAction;
18
+ readonly scroller: HTMLElement;
19
+ readonly stage: HTMLElement;
20
+ leftOverflow: boolean;
21
+ rightOverflow: boolean;
22
+ get items(): HTMLElement[];
23
+ constructor();
24
+ protected firstUpdated(props: PropertyValues<this>): void;
25
+ disconnectedCallback(): void;
26
+ protected render(): TemplateResult | string;
27
+ protected updated(props: PropertyValues<this>): void;
28
+ }
@@ -0,0 +1,17 @@
1
+ import { CustomElement } from '../../lib/main.js';
2
+ import { OdxNavigationItem } from '../main.js';
3
+ import { PropertyValues, TemplateResult } from 'lit';
4
+ declare global {
5
+ interface HTMLElementTagNameMap {
6
+ 'odx-tab-bar': OdxTabBar;
7
+ }
8
+ }
9
+ export declare class OdxTabBar extends CustomElement {
10
+ #private;
11
+ selectedIndex: number;
12
+ get items(): OdxNavigationItem[];
13
+ get selectedItem(): OdxNavigationItem | undefined;
14
+ constructor();
15
+ protected render(): TemplateResult;
16
+ protected updated(props: PropertyValues<this>): void;
17
+ }