@odx/foundation 1.0.0-alpha.27 → 1.0.0-alpha.28

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.
Files changed (27) hide show
  1. package/dist/components/accordion/accordion-header.d.ts +2 -2
  2. package/dist/components/accordion/accordion.d.ts +1 -1
  3. package/dist/components/action-group/action-group.component.d.ts +1 -1
  4. package/dist/components/button/base-button.d.ts +2 -2
  5. package/dist/components/button/button.d.ts +1 -1
  6. package/dist/components/button-group/button-group.d.ts +1 -1
  7. package/dist/components/card/card.component.d.ts +1 -1
  8. package/dist/components/chip/chip.component.d.ts +1 -1
  9. package/dist/components/dropdown/dropdown.component.d.ts +1 -1
  10. package/dist/components/format/format.component.d.ts +2 -2
  11. package/dist/components/input/input.component.d.ts +1 -1
  12. package/dist/components/link/base-link.d.ts +1 -1
  13. package/dist/components/list/list-item.d.ts +2 -2
  14. package/dist/components/loading-overlay/loading-overlay.component.d.ts +1 -1
  15. package/dist/components/menu/menu.d.ts +1 -1
  16. package/dist/components/modal/modal.component.d.ts +1 -1
  17. package/dist/components/navigation-item/navigation-item.component.d.ts +1 -1
  18. package/dist/components/pagination/pagination.component.d.ts +1 -1
  19. package/dist/components/rail-navigation/rail-navigation.component.d.ts +1 -1
  20. package/dist/components/separator/index.d.ts +1 -0
  21. package/dist/components/skeleton/skeleton.component.d.ts +1 -1
  22. package/dist/components/slider/slider-handle.component.d.ts +1 -1
  23. package/dist/components/spinbox/spinbox.component.d.ts +1 -1
  24. package/dist/components/tooltip/tooltip.element.d.ts +1 -1
  25. package/dist/components/translate/translate.component.d.ts +1 -1
  26. package/dist/components.js +6 -1
  27. package/package.json +1 -1
@@ -1,12 +1,12 @@
1
1
  import { CanBeExpanded, CustomElement } from '../../lib/main.js';
2
2
  import { PropertyValues, TemplateResult } from 'lit';
3
- import { OdxAccordionPanel } from './accordion-panel';
3
+ import { OdxAccordionPanel } from './accordion-panel.js';
4
4
  declare global {
5
5
  interface HTMLElementTagNameMap {
6
6
  'odx-accordion-header': OdxAccordionHeader;
7
7
  }
8
8
  }
9
- declare const OdxAccordionHeader_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeExpanded> & typeof CustomElement;
9
+ declare const OdxAccordionHeader_base: import('../../lib/main.js').Constructor<CanBeExpanded> & typeof CustomElement;
10
10
  export declare class OdxAccordionHeader extends OdxAccordionHeader_base {
11
11
  #private;
12
12
  get panel(): OdxAccordionPanel | null;
@@ -5,7 +5,7 @@ declare global {
5
5
  'odx-accordion': OdxAccordion;
6
6
  }
7
7
  }
8
- declare const OdxAccordion_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeDisabled> & typeof CustomElement;
8
+ declare const OdxAccordion_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
9
9
  export declare class OdxAccordion extends OdxAccordion_base {
10
10
  #private;
11
11
  private controls;
@@ -6,7 +6,7 @@ declare global {
6
6
  'odx-action-group': OdxActionGroupComponent;
7
7
  }
8
8
  }
9
- declare const OdxActionGroupComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeDisabled> & typeof CustomElement;
9
+ declare const OdxActionGroupComponent_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
10
10
  export declare class OdxActionGroupComponent extends OdxActionGroupComponent_base {
11
11
  #private;
12
12
  private assignedElements;
@@ -1,6 +1,6 @@
1
1
  import { TemplateResult, nothing } from 'lit';
2
2
  import { BaseLink } from '../link/index.js';
3
- declare const BaseButton_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<import('../../lib/main.js', { with: { "resolution-mode": "import" } }).HasLoadingState> & typeof BaseLink;
3
+ declare const BaseButton_base: import('../../lib/main.js').Constructor<import('../../lib/main.js').HasLoadingState> & typeof BaseLink;
4
4
  /**
5
5
  * A button is clickable text or an icon that triggers an action on the page or in the background.
6
6
  * Depending on the action, content, and hierarchy, a button can be used on its own or grouped with
@@ -14,7 +14,7 @@ declare const BaseButton_base: import('../../lib/main.js', { with: { "resolution
14
14
  * @slot - Contains button text
15
15
  */
16
16
  export declare class BaseButton extends BaseButton_base {
17
- static readonly styles: import('lit', { with: { "resolution-mode": "import" } }).CSSResult;
17
+ static readonly styles: import('lit').CSSResult;
18
18
  lineClamp: 1 | 2;
19
19
  protected render(): TemplateResult;
20
20
  protected renderContent(withSpinner?: boolean): TemplateResult;
@@ -5,7 +5,7 @@ declare global {
5
5
  'odx-button': OdxButton;
6
6
  }
7
7
  }
8
- declare const OdxButton_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<import('../../lib/main.js', { with: { "resolution-mode": "import" } }).HasLoadingState> & typeof BaseButton;
8
+ declare const OdxButton_base: import('../../lib/main.js').Constructor<import('../../lib/main.js').HasLoadingState> & typeof BaseButton;
9
9
  /**
10
10
  * A button is clickable text or an icon that triggers an action on the page or in the background.
11
11
  * Depending on the action, content, and hierarchy, a button can be used on its own or grouped with
@@ -6,7 +6,7 @@ declare global {
6
6
  'odx-button-group': OdxButtonGroup;
7
7
  }
8
8
  }
9
- declare const OdxButtonGroup_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeDisabled> & typeof CustomElement;
9
+ declare const OdxButtonGroup_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
10
10
  export declare class OdxButtonGroup extends OdxButtonGroup_base {
11
11
  private buttons;
12
12
  private allButtons;
@@ -5,7 +5,7 @@ declare global {
5
5
  'odx-card': OdxCardComponent;
6
6
  }
7
7
  }
8
- declare const OdxCardComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeDisabled> & typeof CustomElement;
8
+ declare const OdxCardComponent_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
9
9
  export declare class OdxCardComponent extends OdxCardComponent_base {
10
10
  protected render(): TemplateResult;
11
11
  }
@@ -6,7 +6,7 @@ declare global {
6
6
  'odx-chip': OdxChipComponent;
7
7
  }
8
8
  }
9
- declare const OdxChipComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeDisabled> & typeof CustomElement;
9
+ declare const OdxChipComponent_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
10
10
  export declare class OdxChipComponent extends OdxChipComponent_base {
11
11
  #private;
12
12
  protected actionElement?: HTMLElement;
@@ -7,7 +7,7 @@ declare global {
7
7
  'odx-dropdown': OdxDropdownComponent;
8
8
  }
9
9
  }
10
- declare const OdxDropdownComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<PopoverHost> & import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeDisabled> & typeof CustomElement;
10
+ declare const OdxDropdownComponent_base: import('../../lib/main.js').Constructor<PopoverHost> & import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
11
11
  export declare class OdxDropdownComponent extends OdxDropdownComponent_base {
12
12
  #private;
13
13
  protected popoverElement: OdxPopoverComponent;
@@ -1,9 +1,9 @@
1
1
  import { CustomElement } from '../../lib/main.js';
2
2
  import { IsLocalized } from '../../i18n/main.js';
3
3
  import { TemplateResult } from 'lit';
4
- declare const FormatComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<IsLocalized> & typeof CustomElement;
4
+ declare const FormatComponent_base: import('../../lib/main.js').Constructor<IsLocalized> & typeof CustomElement;
5
5
  export declare abstract class FormatComponent<T> extends FormatComponent_base {
6
- static styles: import('lit', { with: { "resolution-mode": "import" } }).CSSResult[];
6
+ static styles: import('lit').CSSResult[];
7
7
  abstract value?: T | null;
8
8
  fallbackValue?: string | null;
9
9
  protected abstract transform(value: T, fallbackValue?: string): string | TemplateResult;
@@ -6,7 +6,7 @@ declare global {
6
6
  'odx-input': OdxInputComponent;
7
7
  }
8
8
  }
9
- declare const OdxInputComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<import('../../lib/main.js', { with: { "resolution-mode": "import" } }).IsFormControl<string>> & typeof CustomElement;
9
+ declare const OdxInputComponent_base: import('../../lib/main.js').Constructor<import('../../lib/main.js').IsFormControl<string>> & typeof CustomElement;
10
10
  export declare class OdxInputComponent extends OdxInputComponent_base {
11
11
  #private;
12
12
  static readonly formAssociated = true;
@@ -1,6 +1,6 @@
1
1
  import { ARIARole, CanBeDisabled, CustomElement } from '../../lib/main.js';
2
2
  import { TemplateResult } from 'lit';
3
- declare const BaseLink_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeDisabled> & typeof CustomElement;
3
+ declare const BaseLink_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
4
4
  export declare class BaseLink extends BaseLink_base {
5
5
  static shadowRootOptions: ShadowRootInit;
6
6
  readonly interactiveElement: HTMLButtonElement | HTMLAnchorElement;
@@ -1,12 +1,12 @@
1
1
  import { CanBeExpanded, CanBeSelected } from '../../lib/main.js';
2
2
  import { PropertyValues, TemplateResult } from 'lit';
3
- import { BaseButton } from '../button';
3
+ import { BaseButton } from '../button/index.js';
4
4
  declare global {
5
5
  interface HTMLElementTagNameMap {
6
6
  'odx-list-item': OdxListItem;
7
7
  }
8
8
  }
9
- declare const OdxListItem_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeSelected> & import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeExpanded> & typeof BaseButton;
9
+ declare const OdxListItem_base: import('../../lib/main.js').Constructor<CanBeSelected> & import('../../lib/main.js').Constructor<CanBeExpanded> & typeof BaseButton;
10
10
  export declare class OdxListItem extends OdxListItem_base {
11
11
  #private;
12
12
  muted: boolean;
@@ -6,7 +6,7 @@ declare global {
6
6
  }
7
7
  }
8
8
  export declare const LOADING_OVERLAY_HOST_DIRECTIVE = "odx-loading-overlay-host";
9
- declare const OdxLoadingOverlayComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<import('../../lib/main.js', { with: { "resolution-mode": "import" } }).HasLoadingState> & typeof CustomElement;
9
+ declare const OdxLoadingOverlayComponent_base: import('../../lib/main.js').Constructor<import('../../lib/main.js').HasLoadingState> & typeof CustomElement;
10
10
  export declare class OdxLoadingOverlayComponent extends OdxLoadingOverlayComponent_base {
11
11
  #private;
12
12
  private readonly overlay;
@@ -7,7 +7,7 @@ declare global {
7
7
  'odx-menu': OdxMenu;
8
8
  }
9
9
  }
10
- declare const OdxMenu_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<PopoverHost> & typeof CustomElement;
10
+ declare const OdxMenu_base: import('../../lib/main.js').Constructor<PopoverHost> & typeof CustomElement;
11
11
  export declare class OdxMenu extends OdxMenu_base {
12
12
  #private;
13
13
  getItems(): OdxMenuItem[];
@@ -1,6 +1,6 @@
1
1
  import { CustomElement } from '../../lib/main.js';
2
2
  import { PropertyValues, TemplateResult } from 'lit';
3
- import { ModalVariant } from './modal.models';
3
+ import { ModalVariant } from './modal.models.js';
4
4
  declare global {
5
5
  interface HTMLElementTagNameMap {
6
6
  'odx-modal': OdxModalComponent;
@@ -6,7 +6,7 @@ declare global {
6
6
  'odx-navigation-item': OdxNavigationItemComponent;
7
7
  }
8
8
  }
9
- declare const OdxNavigationItemComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeSelected> & typeof BaseButton;
9
+ declare const OdxNavigationItemComponent_base: import('../../lib/main.js').Constructor<CanBeSelected> & typeof BaseButton;
10
10
  export declare class OdxNavigationItemComponent extends OdxNavigationItemComponent_base {
11
11
  size?: NavigationItemSize | null;
12
12
  }
@@ -6,7 +6,7 @@ declare global {
6
6
  'odx-pagination': OdxPaginationComponent;
7
7
  }
8
8
  }
9
- declare const OdxPaginationComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<IsLocalized> & typeof CustomElement;
9
+ declare const OdxPaginationComponent_base: import('../../lib/main.js').Constructor<IsLocalized> & typeof CustomElement;
10
10
  export declare class OdxPaginationComponent extends OdxPaginationComponent_base {
11
11
  page: number;
12
12
  pageSize: number;
@@ -7,7 +7,7 @@ declare global {
7
7
  'odx-rail-navigation': OdxRailNavigationComponent;
8
8
  }
9
9
  }
10
- declare const OdxRailNavigationComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<IsLocalized> & typeof CustomElement;
10
+ declare const OdxRailNavigationComponent_base: import('../../lib/main.js').Constructor<IsLocalized> & typeof CustomElement;
11
11
  export declare class OdxRailNavigationComponent extends OdxRailNavigationComponent_base {
12
12
  #private;
13
13
  protected navigationItems: OdxNavigationItemComponent[];
@@ -1,2 +1,3 @@
1
1
  export * from './separator.component.js';
2
+ export * from './separator.models.js';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { CustomElement } from '../../lib/main.js';
2
2
  import { TemplateResult } from 'lit';
3
- import { SkeletonShape, SkeletonSize } from './skeleton.models';
3
+ import { SkeletonShape, SkeletonSize } from './skeleton.models.js';
4
4
  declare global {
5
5
  interface HTMLElementTagNameMap {
6
6
  'odx-skeleton': OdxSkeletonComponent;
@@ -7,7 +7,7 @@ declare global {
7
7
  'odx-slider-handle': OdxSliderHandleComponent;
8
8
  }
9
9
  }
10
- declare const OdxSliderHandleComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<import('../../cdk/main.js').DraggableElement> & import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<import('../../lib/main.js', { with: { "resolution-mode": "import" } }).IsNumberControl> & typeof CustomElement;
10
+ declare const OdxSliderHandleComponent_base: import('../../lib/main.js').Constructor<import('../../cdk/main.js').DraggableElement> & import('../../lib/main.js').Constructor<import('../../lib/main.js').IsNumberControl> & typeof CustomElement;
11
11
  export declare class OdxSliderHandleComponent extends OdxSliderHandleComponent_base {
12
12
  #private;
13
13
  private context;
@@ -5,7 +5,7 @@ declare global {
5
5
  'odx-spinbox': OdxSpinboxComponent;
6
6
  }
7
7
  }
8
- declare const OdxSpinboxComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<CanBeDisabled> & typeof CustomElement;
8
+ declare const OdxSpinboxComponent_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
9
9
  export declare class OdxSpinboxComponent extends OdxSpinboxComponent_base {
10
10
  #private;
11
11
  static shadowRootOptions: ShadowRootInit;
@@ -6,7 +6,7 @@ declare global {
6
6
  'odx-tooltip': OdxTooltipElement;
7
7
  }
8
8
  }
9
- declare const OdxTooltipElement_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<PopoverHost> & typeof CustomElement;
9
+ declare const OdxTooltipElement_base: import('../../lib/main.js').Constructor<PopoverHost> & typeof CustomElement;
10
10
  export declare class OdxTooltipElement extends OdxTooltipElement_base {
11
11
  #private;
12
12
  placement: "top";
@@ -6,7 +6,7 @@ declare global {
6
6
  'odx-translate': OdxTranslateComponent;
7
7
  }
8
8
  }
9
- declare const OdxTranslateComponent_base: import('../../lib/main.js', { with: { "resolution-mode": "import" } }).Constructor<IsLocalized> & typeof CustomElement;
9
+ declare const OdxTranslateComponent_base: import('../../lib/main.js').Constructor<IsLocalized> & typeof CustomElement;
10
10
  export declare class OdxTranslateComponent extends OdxTranslateComponent_base {
11
11
  key?: string | null;
12
12
  context?: TranslateContext;
@@ -3690,6 +3690,11 @@ OdxSeparatorComponent = __decorateClass$m([
3690
3690
  customElement("odx-separator", [styles$l])
3691
3691
  ], OdxSeparatorComponent);
3692
3692
 
3693
+ const SeparatorAlign = {
3694
+ START: "start",
3695
+ END: "end"
3696
+ };
3697
+
3693
3698
  const styles$k = "@layer base{:host{--inline-size: 100%;--_block-size: var(--odx-size-100);--_border-radius: var(--odx-border-radius-controls);--_color-fill: var(--odx-color-disabled-fill);display:block;inline-size:var(--inline-size);block-size:var(--_block-size);max-inline-size:100%;overflow:hidden}.base{border-radius:var(--_border-radius);block-size:100%;background:var(--_color-fill) linear-gradient(90deg,transparent 33%,var(--odx-palette-blue-80-15) 50%,transparent 66%);background-size:200% 100%;background-position:150% 100%;animation:odx-skeleton-loading 3s infinite linear}@keyframes odx-skeleton-loading{0%{background-position:150% 100%}33%,to{background-position:-50% 100%}}}@layer variant{:host([size=\"sm\"]){--_block-size: var(--odx-typography-font-size-1)}:host([size=\"lg\"]){--_block-size: var(--odx-typography-font-size-5)}:host([size=\"xl\"]){--_block-size: var(--odx-typography-font-size-7)}:host([shape=\"button\"]){--inline-size: 6rem;--_block-size: var(--odx-size-225)}:host([shape=\"button\"][size=\"sm\"]){--inline-size: 5rem;--_block-size: var(--odx-size-150)}:host([shape=\"button\"]:is([size=\"lg\"],[size=\"xl\"])){--inline-size: 7rem;--_block-size: var(--odx-size-300)}:host([shape=\"circle\"]){--_border-radius: var(--odx-border-radius-circle)}:host([shape=\"rectangle\"]){--_border-radius: var(--odx-border-radius-md)}:host(:is([shape=\"circle\"],[shape=\"rectangle\"])){--inline-size: var(--_block-size);--_block-size: var(--odx-size-150);flex:0 0 auto}:host(:is([shape=\"circle\"],[shape=\"rectangle\"])[size=\"sm\"]){--_block-size: var(--odx-size-125)}:host(:is([shape=\"circle\"],[shape=\"rectangle\"])[size=\"lg\"]){--_block-size: var(--odx-size-225)}:host(:is([shape=\"circle\"],[shape=\"rectangle\"])[size=\"xl\"]){--_block-size: var(--odx-size-300)}:host([emphasized]){--_color-fill: var(--odx-color-disabled-fill-selected)}:host([muted]) .base{animation:none}}";
3694
3699
 
3695
3700
  var __defProp$l = Object.defineProperty;
@@ -5026,4 +5031,4 @@ OdxVisuallyHiddenComponent = __decorateClass([
5026
5031
  customElement("odx-visually-hidden", [styles])
5027
5032
  ], OdxVisuallyHiddenComponent);
5028
5033
 
5029
- export { AnchorObserver, AreaHeaderSize, AreaHeaderVariant, AvatarSize, AvatarVariant, BadgeVariant, BaseButton, BaseLink, ButtonSize, ButtonVariant, CheckboxGroupVariant, ChipVariant, CircularProgressBarSize, DropdownPlacement, HeadlineSize, InlineMessageVariant, InputVariant, LOADING_OVERLAY_HOST_DIRECTIVE, LogoSize, ModalVariant, NavigationItemSize, OdxAccordion, OdxAccordionHeader, OdxAccordionPanel, OdxActionGroupComponent, OdxAnchorNavigationComponent, OdxAreaHeaderComponent, OdxAvatarComponent, OdxAvatarGroupComponent, OdxBadgeComponent, OdxBreadcrumbsComponent, OdxBreadcrumbsItemComponent, OdxButton, OdxButtonGroup, OdxCardComponent, OdxCheckboxComponent, OdxCheckboxGroupComponent, OdxChipComponent, OdxCircularProgressBarComponent, OdxContentBoxComponent, OdxDropdownComponent, OdxFormFieldElement, OdxFormatBytesComponent, OdxFormatDateComponent, OdxFormatNumberComponent, OdxHeaderActionsComponent, OdxHeaderComponent, OdxHeadlineComponent, OdxHighlightComponent, OdxIconButton, OdxInlineMessageComponent, OdxInputComponent, OdxLineClampComponent, OdxLinkComponent, OdxList, OdxListItem, OdxLoadingOverlayComponent, OdxLoadingSpinnerComponent, OdxLogoComponent, OdxMainMenuButtonComponent, OdxMainMenuComponent, OdxMainMenuLinkComponent, OdxMainMenuSubtitleComponent, OdxMainMenuTitleComponent, OdxMenu, OdxMenuItem, OdxMenuLabel, OdxModalComponent, OdxNavigationItemComponent, OdxOptionComponent, OdxPageComponent, OdxPageLayoutComponent, OdxPaginationComponent, OdxProgressBarComponent, OdxRadioButtonComponent, OdxRadioGroupComponent, OdxRailNavigationComponent, OdxRelativeTimeComponent, OdxSearchBarComponent, OdxSelectComponent, OdxSeparatorComponent, OdxSkeletonComponent, OdxSliderComponent, OdxSliderHandleComponent, OdxSliderMarksComponent, OdxSpacerComponent, OdxSpinboxComponent, OdxStackComponent, OdxSwitchComponent, OdxTableBodyElement, OdxTableCellElement, OdxTableCheckboxCellElement, OdxTableElement, OdxTableHeaderCellElement, OdxTableHeaderElement, OdxTableRowElement, OdxTextComponent, OdxTitleComponent, OdxToastElement, OdxToggleButtonComponent, OdxToggleContentComponent, OdxTooltipElement, OdxTranslateComponent, OdxVisuallyHiddenComponent, PageAlignment, PageLayout, ProgressState, RadioGroupVariant, SearchBarBehavior, SearchEvent, SkeletonShape, SkeletonSize, SliderLabelVisibility, SliderTrackVisibility, StackAlign, StackGap, StackJustify, TextSize, TextVariant, TitleSize, ToastVariant, TooltipPlacement, sliderContext };
5034
+ export { AnchorObserver, AreaHeaderSize, AreaHeaderVariant, AvatarSize, AvatarVariant, BadgeVariant, BaseButton, BaseLink, ButtonSize, ButtonVariant, CheckboxGroupVariant, ChipVariant, CircularProgressBarSize, DropdownPlacement, HeadlineSize, InlineMessageVariant, InputVariant, LOADING_OVERLAY_HOST_DIRECTIVE, LogoSize, ModalVariant, NavigationItemSize, OdxAccordion, OdxAccordionHeader, OdxAccordionPanel, OdxActionGroupComponent, OdxAnchorNavigationComponent, OdxAreaHeaderComponent, OdxAvatarComponent, OdxAvatarGroupComponent, OdxBadgeComponent, OdxBreadcrumbsComponent, OdxBreadcrumbsItemComponent, OdxButton, OdxButtonGroup, OdxCardComponent, OdxCheckboxComponent, OdxCheckboxGroupComponent, OdxChipComponent, OdxCircularProgressBarComponent, OdxContentBoxComponent, OdxDropdownComponent, OdxFormFieldElement, OdxFormatBytesComponent, OdxFormatDateComponent, OdxFormatNumberComponent, OdxHeaderActionsComponent, OdxHeaderComponent, OdxHeadlineComponent, OdxHighlightComponent, OdxIconButton, OdxInlineMessageComponent, OdxInputComponent, OdxLineClampComponent, OdxLinkComponent, OdxList, OdxListItem, OdxLoadingOverlayComponent, OdxLoadingSpinnerComponent, OdxLogoComponent, OdxMainMenuButtonComponent, OdxMainMenuComponent, OdxMainMenuLinkComponent, OdxMainMenuSubtitleComponent, OdxMainMenuTitleComponent, OdxMenu, OdxMenuItem, OdxMenuLabel, OdxModalComponent, OdxNavigationItemComponent, OdxOptionComponent, OdxPageComponent, OdxPageLayoutComponent, OdxPaginationComponent, OdxProgressBarComponent, OdxRadioButtonComponent, OdxRadioGroupComponent, OdxRailNavigationComponent, OdxRelativeTimeComponent, OdxSearchBarComponent, OdxSelectComponent, OdxSeparatorComponent, OdxSkeletonComponent, OdxSliderComponent, OdxSliderHandleComponent, OdxSliderMarksComponent, OdxSpacerComponent, OdxSpinboxComponent, OdxStackComponent, OdxSwitchComponent, OdxTableBodyElement, OdxTableCellElement, OdxTableCheckboxCellElement, OdxTableElement, OdxTableHeaderCellElement, OdxTableHeaderElement, OdxTableRowElement, OdxTextComponent, OdxTitleComponent, OdxToastElement, OdxToggleButtonComponent, OdxToggleContentComponent, OdxTooltipElement, OdxTranslateComponent, OdxVisuallyHiddenComponent, PageAlignment, PageLayout, ProgressState, RadioGroupVariant, SearchBarBehavior, SearchEvent, SeparatorAlign, SkeletonShape, SkeletonSize, SliderLabelVisibility, SliderTrackVisibility, StackAlign, StackGap, StackJustify, TextSize, TextVariant, TitleSize, ToastVariant, TooltipPlacement, sliderContext };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@odx/foundation",
3
3
  "description": "A library of Web Component building blocks for ODX",
4
- "version": "1.0.0-alpha.27",
4
+ "version": "1.0.0-alpha.28",
5
5
  "author": "Drägerwerk AG & Co.KGaA",
6
6
  "license": "SEE LICENSE IN LICENSE",
7
7
  "homepage": "https://odx.draeger.com",