@odx/foundation 1.0.0-beta.126 → 1.0.0-beta.128
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/dist/components/accordion/accordion.d.ts +0 -1
- package/dist/components/accordion-item/accordion-item.d.ts +1 -1
- package/dist/components/breadcrumbs/breadcrumbs-item.d.ts +0 -2
- package/dist/components/breadcrumbs/breadcrumbs.d.ts +1 -1
- package/dist/components/main.d.ts +1 -0
- package/dist/components/navigation-item-group/navigation-item-group.d.ts +20 -0
- package/dist/components/rail-navigation/rail-navigation.d.ts +2 -1
- package/dist/components.js +170 -119
- package/dist/main.js +2 -2
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -14,7 +14,6 @@ export declare const AccordionIndicatorPosition: {
|
|
|
14
14
|
export declare class OdxAccordion extends CustomElement {
|
|
15
15
|
/** @internal */
|
|
16
16
|
items: OdxAccordionItem[];
|
|
17
|
-
compact: boolean;
|
|
18
17
|
indicatorPosition: AccordionIndicatorPosition;
|
|
19
18
|
multiple: boolean;
|
|
20
19
|
size?: AccordionItemSize;
|
|
@@ -13,7 +13,7 @@ export declare const AccordionItemSize: Pick<{
|
|
|
13
13
|
readonly LG: "lg";
|
|
14
14
|
readonly XL: "xl";
|
|
15
15
|
readonly XXL: "xxl";
|
|
16
|
-
}, "MD" | "LG">;
|
|
16
|
+
}, "SM" | "MD" | "LG">;
|
|
17
17
|
declare const OdxAccordionItem_base: import('../../lib/main.js').Constructor<CanBeExpanded> & typeof InteractiveElement;
|
|
18
18
|
export declare class OdxAccordionItem extends OdxAccordionItem_base {
|
|
19
19
|
#private;
|
|
@@ -8,8 +8,6 @@ declare global {
|
|
|
8
8
|
}
|
|
9
9
|
export declare class OdxBreadcrumbsItem extends CustomElement {
|
|
10
10
|
private linkElements;
|
|
11
|
-
fallback: boolean;
|
|
12
|
-
isLast(): boolean;
|
|
13
11
|
protected get interactiveElement(): OdxLink | null;
|
|
14
12
|
protected render(): TemplateResult;
|
|
15
13
|
protected updated(props: PropertyValues<this>): void;
|
|
@@ -13,7 +13,7 @@ export declare class OdxBreadcrumbs extends CustomElement {
|
|
|
13
13
|
#private;
|
|
14
14
|
private itemElements;
|
|
15
15
|
max: number;
|
|
16
|
-
items
|
|
16
|
+
items: BreadcrumbsItem[];
|
|
17
17
|
protected firstUpdated(props: PropertyValues<this>): void;
|
|
18
18
|
protected render(): TemplateResult;
|
|
19
19
|
protected updated(props: PropertyValues<this>): void;
|
|
@@ -40,6 +40,7 @@ export * from './menu/index.js';
|
|
|
40
40
|
export * from './menu-item/menu-item.js';
|
|
41
41
|
export * from './modal/modal.js';
|
|
42
42
|
export * from './navigation-item/navigation-item.js';
|
|
43
|
+
export * from './navigation-item-group/navigation-item-group.js';
|
|
43
44
|
export * from './option/option.js';
|
|
44
45
|
export * from './page/page.js';
|
|
45
46
|
export * from './page-layout/page-layout.js';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { CanBeDisabled, CanBeExpanded, CustomElement } from '../../lib/main.js';
|
|
2
|
+
import { PropertyValues, TemplateResult } from 'lit';
|
|
3
|
+
import { NavigationItemSize, OdxNavigationItem } from '../navigation-item/navigation-item.js';
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'odx-navigation-item-group': OdxNavigationItemGroup;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
declare const OdxNavigationItemGroup_base: import('../../lib/main.js').Constructor<CanBeExpanded> & import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
|
|
10
|
+
export declare class OdxNavigationItemGroup extends OdxNavigationItemGroup_base {
|
|
11
|
+
private items;
|
|
12
|
+
label: string;
|
|
13
|
+
loading: boolean;
|
|
14
|
+
selected: boolean;
|
|
15
|
+
size: NavigationItemSize;
|
|
16
|
+
getItems(): OdxNavigationItem[];
|
|
17
|
+
protected render(): TemplateResult;
|
|
18
|
+
protected updated(props: PropertyValues<this>): void;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CustomElement } from '../../lib/main.js';
|
|
2
|
+
import { OdxNavigationItemGroup } from '../main.js';
|
|
2
3
|
import { IsLocalized } from '../../i18n/main.js';
|
|
3
4
|
import { PropertyValues, TemplateResult } from 'lit';
|
|
4
5
|
import { NavigationItemSize, OdxNavigationItem } from '../navigation-item/navigation-item.js';
|
|
@@ -10,7 +11,7 @@ declare global {
|
|
|
10
11
|
declare const OdxRailNavigation_base: import('../../lib/main.js').Constructor<IsLocalized> & typeof CustomElement;
|
|
11
12
|
export declare class OdxRailNavigation extends OdxRailNavigation_base {
|
|
12
13
|
#private;
|
|
13
|
-
protected navigationItems: OdxNavigationItem
|
|
14
|
+
protected navigationItems: Array<OdxNavigationItem | OdxNavigationItemGroup>;
|
|
14
15
|
collapsed: boolean;
|
|
15
16
|
size: NavigationItemSize;
|
|
16
17
|
protected render(): TemplateResult;
|