@odx/foundation 1.0.0-beta.2 → 1.0.0-beta.200
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/README.md +51 -9
- package/dist/_virtual_class-decorator-runtime.js +13 -0
- package/dist/components/accordion/accordion.d.ts +10 -5
- package/dist/components/accordion-item/accordion-item.d.ts +25 -0
- package/dist/components/{accordion → accordion-panel}/accordion-panel.d.ts +4 -2
- package/dist/components/action-button/action-button.d.ts +28 -0
- package/dist/components/action-group/action-group.d.ts +6 -13
- package/dist/components/anchor-navigation/anchor-navigation.d.ts +8 -6
- package/dist/components/anchor-navigation/index.d.ts +0 -1
- package/dist/components/area-footer/area-footer.d.ts +29 -0
- package/dist/components/area-header/area-header.d.ts +20 -4
- package/dist/components/autocomplete/autocomplete.d.ts +26 -0
- package/dist/components/avatar/avatar.d.ts +37 -5
- package/dist/components/badge/badge.d.ts +35 -5
- package/dist/components/breadcrumbs/breadcrumbs.d.ts +3 -7
- package/dist/components/button/button.d.ts +30 -25
- package/dist/components/button-group/button-group.d.ts +8 -11
- package/dist/components/card/card.d.ts +22 -3
- package/dist/components/checkbox/checkbox.d.ts +6 -6
- package/dist/components/checkbox-group/checkbox-group.d.ts +10 -5
- package/dist/components/chip/chip.d.ts +20 -7
- package/dist/components/drawer/drawer.d.ts +17 -0
- package/dist/components/dropdown/dropdown.d.ts +25 -10
- package/dist/components/empty-state/empty-state.d.ts +46 -0
- package/dist/components/form-field/form-field.d.ts +3 -4
- package/dist/components/format/base-format.d.ts +2 -2
- package/dist/components/format/format-bytes.d.ts +1 -1
- package/dist/components/format/format-number.d.ts +1 -1
- package/dist/components/format/relative-time.d.ts +2 -2
- package/dist/components/gradient-overlay/gradient-overlay.d.ts +23 -0
- package/dist/components/header/header.d.ts +12 -2
- package/dist/components/header/index.d.ts +0 -1
- package/dist/components/highlight/highlight.d.ts +32 -5
- package/dist/components/icon-button/icon-button.d.ts +15 -16
- package/dist/components/image/image.d.ts +5 -5
- package/dist/components/inline-message/inline-message.d.ts +21 -6
- package/dist/components/input/input.d.ts +17 -7
- package/dist/components/key-value/key-value.d.ts +53 -0
- package/dist/components/key-value-list/key-value-list.d.ts +15 -0
- package/dist/components/label/label.d.ts +11 -0
- package/dist/components/line-clamp/line-clamp.d.ts +3 -3
- package/dist/components/link/link.d.ts +15 -3
- package/dist/components/list/list.d.ts +12 -2
- package/dist/components/list-item/list-item.d.ts +24 -0
- package/dist/components/loader.d.ts +2 -0
- package/dist/components/loading-overlay/loading-overlay.d.ts +3 -5
- package/dist/components/loading-spinner/loading-spinner.d.ts +9 -3
- package/dist/components/logo/logo.d.ts +12 -3
- package/dist/components/main-menu/index.d.ts +1 -4
- package/dist/components/main-menu/main-menu-button.d.ts +3 -2
- package/dist/components/main-menu/main-menu.d.ts +1 -7
- package/dist/components/main.d.ts +75 -57
- package/dist/components/menu/menu.d.ts +5 -8
- package/dist/components/menu-item/menu-item.d.ts +22 -6
- package/dist/components/modal/modal.d.ts +10 -27
- package/dist/components/navigation/navigation.d.ts +18 -0
- package/dist/components/navigation-item/navigation-item.d.ts +11 -7
- package/dist/components/navigation-item-group/navigation-item-group.d.ts +20 -0
- package/dist/components/option/option.d.ts +3 -5
- package/dist/components/page/page.d.ts +20 -6
- package/dist/components/page-layout/page-layout.d.ts +9 -1
- package/dist/components/pagination/pagination.d.ts +3 -2
- package/dist/components/popover/compute-popover-placement.d.ts +13 -0
- package/dist/components/popover/popover-host.d.ts +43 -0
- package/dist/components/popover/popover-observer.d.ts +11 -0
- package/dist/{cdk → components}/popover/popover.d.ts +3 -2
- package/dist/components/progress-bar/base-progress.d.ts +14 -0
- package/dist/components/progress-bar/progress-bar.d.ts +2 -14
- package/dist/components/progress-ring/progress-ring.d.ts +33 -0
- package/dist/components/radio-button/radio-button.d.ts +5 -3
- package/dist/components/radio-group/radio-group.d.ts +10 -4
- package/dist/components/rail-navigation/rail-navigation.d.ts +5 -7
- package/dist/components/scroll-container/scroll-container.d.ts +34 -0
- package/dist/components/search-bar/search-bar.d.ts +18 -4
- package/dist/components/select/select.d.ts +15 -8
- package/dist/components/separator/separator.d.ts +10 -4
- package/dist/components/sidebar/sidebar.d.ts +30 -0
- package/dist/components/skeleton/skeleton.d.ts +13 -6
- package/dist/components/slider/index.d.ts +2 -2
- package/dist/components/slider/slider-handle.d.ts +6 -6
- package/dist/components/slider/slider-marks.d.ts +2 -2
- package/dist/components/slider/slider.d.ts +2 -3
- package/dist/components/slider/slider.models.d.ts +4 -3
- package/dist/components/spinbox/spinbox.d.ts +15 -10
- package/dist/components/status/status.d.ts +28 -0
- package/dist/components/switch/switch.d.ts +12 -2
- package/dist/components/tab-bar/tab-bar.d.ts +36 -0
- package/dist/components/table/index.d.ts +3 -3
- package/dist/components/table/table-body.d.ts +1 -3
- package/dist/components/table/table-cell.d.ts +1 -3
- package/dist/components/table/table-checkbox-cell.d.ts +2 -2
- package/dist/components/table/table-header-cell.d.ts +1 -1
- package/dist/components/table/table-header.d.ts +5 -3
- package/dist/components/table/table-row.d.ts +4 -4
- package/dist/components/table/table.d.ts +1 -1
- package/dist/components/text/text.d.ts +27 -3
- package/dist/components/textarea/textarea.d.ts +23 -0
- package/dist/components/tile/tile.d.ts +37 -0
- package/dist/components/title/title.d.ts +19 -5
- package/dist/components/toast/toast.d.ts +19 -3
- package/dist/components/toggle-button/toggle-button.d.ts +40 -6
- package/dist/components/toggle-button-group/toggle-button-group.d.ts +19 -0
- package/dist/components/toggle-content/toggle-content.d.ts +3 -4
- package/dist/components/toolbar/toolbar.d.ts +14 -0
- package/dist/components/tooltip/tooltip.d.ts +55 -7
- package/dist/components/translate/translate.d.ts +2 -2
- package/dist/components-loader.js +3 -0
- package/dist/components.js +3870 -4201
- package/dist/en.js +6 -0
- package/dist/i18n/{lib/config.d.ts → config.d.ts} +4 -3
- package/dist/i18n/{lib/is-localized.d.ts → is-localized.d.ts} +3 -2
- package/dist/i18n/{lib/localization.d.ts → localization.d.ts} +0 -1
- package/dist/i18n/main.d.ts +7 -6
- package/dist/i18n/translate.d.ts +6 -0
- package/dist/i18n/translations/en.json.d.ts +19 -0
- package/dist/i18n/types.d.ts +30 -0
- package/dist/i18n.js +61 -63
- package/dist/lib/behaviors/can-be-collapsed.d.ts +10 -0
- package/dist/lib/behaviors/can-be-disabled.d.ts +7 -0
- package/dist/lib/behaviors/can-be-expanded.d.ts +11 -0
- package/dist/lib/behaviors/checkbox-control-group.d.ts +22 -0
- package/dist/lib/behaviors/checkbox-control.d.ts +15 -0
- package/dist/lib/behaviors/form-associated.d.ts +22 -0
- package/dist/lib/behaviors/is-draggable.d.ts +23 -0
- package/dist/lib/behaviors/number-form-control.d.ts +11 -0
- package/dist/lib/control-element.d.ts +41 -0
- package/dist/lib/controllers/active-descendants-controller.d.ts +29 -0
- package/dist/{cdk/drag-drop → lib/controllers}/drag.controller.d.ts +3 -1
- package/dist/lib/controllers/expandable-controller.d.ts +14 -0
- package/dist/lib/custom-element.d.ts +11 -6
- package/dist/lib/dialog-element.d.ts +183 -0
- package/dist/lib/interactive-control-element.d.ts +19 -0
- package/dist/lib/link-control-element.d.ts +20 -0
- package/dist/lib/listbox-control-element.d.ts +30 -0
- package/dist/lib/models/layout.d.ts +48 -0
- package/dist/lib/models/shape.d.ts +7 -0
- package/dist/lib/models/size.d.ts +11 -0
- package/dist/lib/models/variant.d.ts +24 -0
- package/dist/lib/option-control-element.d.ts +23 -0
- package/dist/lib/radio-group-control-element.d.ts +17 -0
- package/dist/main.d.ts +30 -0
- package/dist/main.js +1153 -941
- package/dist/styles-native.css +1 -0
- package/dist/styles.css +1 -1
- package/dist/utils/attribute-directive.d.ts +20 -0
- package/dist/utils/command-directive.d.ts +22 -0
- package/dist/utils/dom-events.d.ts +49 -0
- package/dist/{lib/utils/a11y.d.ts → utils/dom-types.d.ts} +1 -23
- package/dist/utils/dom.d.ts +16 -0
- package/dist/utils/lit.d.ts +4 -0
- package/dist/utils/main.d.ts +11 -0
- package/dist/utils/shared-event-listener.d.ts +3 -0
- package/dist/utils/shared-resize-observer.d.ts +7 -0
- package/dist/utils/types.d.ts +5 -0
- package/dist/utils/unique-id.d.ts +20 -0
- package/dist/utils.js +301 -0
- package/dist/vendor.js +1968 -0
- package/package.json +57 -34
- package/dist/cdk/drag-drop/drag-events.d.ts +0 -9
- package/dist/cdk/drag-drop/is-draggable.d.ts +0 -18
- package/dist/cdk/main.d.ts +0 -7
- package/dist/cdk/popover/popover-host.d.ts +0 -19
- package/dist/cdk/popover/popover.models.d.ts +0 -34
- package/dist/cdk/popover/popover.utils.d.ts +0 -5
- package/dist/cdk.js +0 -356
- package/dist/components/accordion/accordion-header.d.ts +0 -19
- package/dist/components/accordion/index.d.ts +0 -4
- package/dist/components/action-group/index.d.ts +0 -2
- package/dist/components/anchor-navigation/anchor-observer.d.ts +0 -11
- package/dist/components/area-header/area-header.models.d.ts +0 -12
- package/dist/components/area-header/index.d.ts +0 -3
- package/dist/components/avatar/avatar.models.d.ts +0 -13
- package/dist/components/avatar/index.d.ts +0 -3
- package/dist/components/avatar-group/avatar-group.d.ts +0 -15
- package/dist/components/avatar-group/index.d.ts +0 -2
- package/dist/components/badge/badge.models.d.ts +0 -14
- package/dist/components/badge/index.d.ts +0 -3
- package/dist/components/breadcrumbs/breadcrumbs-item.d.ts +0 -17
- package/dist/components/breadcrumbs/index.d.ts +0 -3
- package/dist/components/button/base-button.d.ts +0 -27
- package/dist/components/button/button.models.d.ts +0 -15
- package/dist/components/button/index.d.ts +0 -4
- package/dist/components/button-group/index.d.ts +0 -2
- package/dist/components/card/index.d.ts +0 -2
- package/dist/components/checkbox/index.d.ts +0 -2
- package/dist/components/checkbox-group/checkbox-group.models.d.ts +0 -6
- package/dist/components/checkbox-group/index.d.ts +0 -3
- package/dist/components/chip/chip.models.d.ts +0 -10
- package/dist/components/chip/index.d.ts +0 -3
- package/dist/components/circular-progress-bar/circular-progress-bar.d.ts +0 -42
- package/dist/components/circular-progress-bar/circular-progress-bar.models.d.ts +0 -7
- package/dist/components/circular-progress-bar/index.d.ts +0 -3
- package/dist/components/content-box/content-box.d.ts +0 -11
- package/dist/components/content-box/content-box.models.d.ts +0 -2
- package/dist/components/content-box/index.d.ts +0 -2
- package/dist/components/dropdown/dropdown.models.d.ts +0 -6
- package/dist/components/dropdown/index.d.ts +0 -3
- package/dist/components/form-field/index.d.ts +0 -2
- package/dist/components/header/header-actions.d.ts +0 -10
- package/dist/components/headline/headline.d.ts +0 -13
- package/dist/components/headline/headline.models.d.ts +0 -8
- package/dist/components/headline/index.d.ts +0 -3
- package/dist/components/highlight/index.d.ts +0 -2
- package/dist/components/icon-button/index.d.ts +0 -2
- package/dist/components/image/index.d.ts +0 -2
- package/dist/components/inline-message/index.d.ts +0 -3
- package/dist/components/inline-message/inline-message.models.d.ts +0 -12
- package/dist/components/input/index.d.ts +0 -3
- package/dist/components/input/input.models.d.ts +0 -7
- package/dist/components/line-clamp/index.d.ts +0 -2
- package/dist/components/link/base-link.d.ts +0 -15
- package/dist/components/link/index.d.ts +0 -3
- package/dist/components/list/index.d.ts +0 -3
- package/dist/components/list/list-item.d.ts +0 -25
- package/dist/components/loading-overlay/index.d.ts +0 -2
- package/dist/components/loading-spinner/index.d.ts +0 -2
- package/dist/components/logo/index.d.ts +0 -3
- package/dist/components/logo/logo.models.d.ts +0 -9
- package/dist/components/main-menu/main-menu-link.d.ts +0 -9
- package/dist/components/main-menu/main-menu-subtitle.d.ts +0 -12
- package/dist/components/main-menu/main-menu-title.d.ts +0 -12
- package/dist/components/menu/index.d.ts +0 -3
- package/dist/components/menu/menu-label.d.ts +0 -9
- package/dist/components/menu-item/index.d.ts +0 -2
- package/dist/components/modal/index.d.ts +0 -3
- package/dist/components/modal/modal.models.d.ts +0 -5
- package/dist/components/navigation-item/index.d.ts +0 -3
- package/dist/components/navigation-item/navigation-item.models.d.ts +0 -6
- package/dist/components/option/index.d.ts +0 -2
- package/dist/components/page/index.d.ts +0 -3
- package/dist/components/page/page.models.d.ts +0 -10
- package/dist/components/page-layout/index.d.ts +0 -2
- package/dist/components/pagination/index.d.ts +0 -2
- package/dist/components/progress-bar/index.d.ts +0 -3
- package/dist/components/progress-bar/progress-bar.models.d.ts +0 -7
- package/dist/components/radio-button/index.d.ts +0 -2
- package/dist/components/radio-group/index.d.ts +0 -3
- package/dist/components/radio-group/radio-group.models.d.ts +0 -6
- package/dist/components/rail-navigation/index.d.ts +0 -2
- package/dist/components/search-bar/index.d.ts +0 -4
- package/dist/components/search-bar/search-bar.events.d.ts +0 -7
- package/dist/components/search-bar/search-bar.models.d.ts +0 -6
- package/dist/components/select/index.d.ts +0 -2
- package/dist/components/separator/index.d.ts +0 -3
- package/dist/components/separator/separator.models.d.ts +0 -6
- package/dist/components/skeleton/index.d.ts +0 -3
- package/dist/components/skeleton/skeleton.models.d.ts +0 -13
- package/dist/components/spacer/index.d.ts +0 -2
- package/dist/components/spacer/spacer.d.ts +0 -13
- package/dist/components/spacer/spacer.models.d.ts +0 -7
- package/dist/components/spinbox/index.d.ts +0 -2
- package/dist/components/stack/index.d.ts +0 -3
- package/dist/components/stack/stack.d.ts +0 -17
- package/dist/components/stack/stack.models.d.ts +0 -25
- package/dist/components/switch/index.d.ts +0 -2
- package/dist/components/text/index.d.ts +0 -3
- package/dist/components/text/text.models.d.ts +0 -14
- package/dist/components/title/index.d.ts +0 -3
- package/dist/components/title/title.models.d.ts +0 -10
- package/dist/components/toast/index.d.ts +0 -3
- package/dist/components/toast/toast.models.d.ts +0 -5
- package/dist/components/toggle-button/index.d.ts +0 -2
- package/dist/components/toggle-content/index.d.ts +0 -2
- package/dist/components/tooltip/index.d.ts +0 -3
- package/dist/components/tooltip/tooltip.models.d.ts +0 -8
- package/dist/components/translate/index.d.ts +0 -2
- package/dist/components/visually-hidden/index.d.ts +0 -2
- package/dist/components/visually-hidden/visually-hidden.d.ts +0 -11
- package/dist/i18n/lib/translate.d.ts +0 -11
- package/dist/lib/controllers/focus-trap.controller.d.ts +0 -13
- package/dist/lib/decorators/request-update-on-aria-change.d.ts +0 -4
- package/dist/lib/directives/optional-attr.d.ts +0 -2
- package/dist/lib/directives/optional-slot.d.ts +0 -3
- package/dist/lib/directives/slot-fallback.d.ts +0 -8
- package/dist/lib/facade/checkbox-form-control.d.ts +0 -15
- package/dist/lib/facade/checkbox-group-form-control.d.ts +0 -21
- package/dist/lib/facade/option-control.d.ts +0 -16
- package/dist/lib/facade/radio-group-form-control.d.ts +0 -22
- package/dist/lib/facade/select-form-control.d.ts +0 -19
- package/dist/lib/main.d.ts +0 -34
- package/dist/lib/mixins/can-be-disabled.d.ts +0 -15
- package/dist/lib/mixins/can-be-expanded.d.ts +0 -12
- package/dist/lib/mixins/can-be-readonly.d.ts +0 -7
- package/dist/lib/mixins/can-be-required.d.ts +0 -7
- package/dist/lib/mixins/can-be-selected.d.ts +0 -9
- package/dist/lib/mixins/can-be-validated.d.ts +0 -12
- package/dist/lib/mixins/dedupe-mixin.d.ts +0 -3
- package/dist/lib/mixins/form-control.d.ts +0 -17
- package/dist/lib/mixins/number-control.d.ts +0 -12
- package/dist/lib/mixins/with-loading-state.d.ts +0 -8
- package/dist/lib/utils/date.d.ts +0 -2
- package/dist/lib/utils/dom.d.ts +0 -17
- package/dist/lib/utils/get-unique-id.d.ts +0 -36
- package/dist/lib/utils/keyboard-events.d.ts +0 -43
- package/dist/lib/utils/object.d.ts +0 -2
- package/dist/lib/utils/search-text-content.d.ts +0 -7
- package/dist/lib/utils/shared-intersection-observer.d.ts +0 -18
- package/dist/lib/utils/shared-resize-observer.d.ts +0 -18
- package/dist/loader/main.d.ts +0 -2
- package/dist/loader.js +0 -12
- package/dist/vendor-C_WVAD3D.js +0 -3680
- package/dist/vite.config.d.ts +0 -3
- /package/dist/i18n/{lib/format.d.ts → format.d.ts} +0 -0
- /package/dist/i18n/{lib/models.d.ts → models.d.ts} +0 -0
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { PropertyValues } from 'lit';
|
|
3
|
-
import { AvatarSize, AvatarVariant, OdxAvatar } from '../avatar/index.js';
|
|
4
|
-
declare global {
|
|
5
|
-
interface HTMLElementTagNameMap {
|
|
6
|
-
'odx-avatar-group': OdxAvatarGroup;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
export declare class OdxAvatarGroup extends CustomElement implements Pick<OdxAvatar, 'size' | 'variant'> {
|
|
10
|
-
avatars: OdxAvatar[];
|
|
11
|
-
size?: AvatarSize;
|
|
12
|
-
variant?: AvatarVariant;
|
|
13
|
-
protected updated(props: PropertyValues<this>): void;
|
|
14
|
-
}
|
|
15
|
-
//# sourceMappingURL=avatar-group.d.ts.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export type BadgeVariant = (typeof BadgeVariant)[keyof typeof BadgeVariant];
|
|
2
|
-
export declare const BadgeVariant: {
|
|
3
|
-
NEUTRAL: string;
|
|
4
|
-
PRIMARY: string;
|
|
5
|
-
ACCENT: string;
|
|
6
|
-
SUCCESS: string;
|
|
7
|
-
WARNING: string;
|
|
8
|
-
DANGER: string;
|
|
9
|
-
};
|
|
10
|
-
export type BadgeType = (typeof BadgeType)[keyof typeof BadgeType];
|
|
11
|
-
export declare const BadgeType: {
|
|
12
|
-
STATUS: string;
|
|
13
|
-
};
|
|
14
|
-
//# sourceMappingURL=badge.models.d.ts.map
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { PropertyValues, TemplateResult } from 'lit';
|
|
3
|
-
import { OdxLink } from '../link/index.js';
|
|
4
|
-
declare global {
|
|
5
|
-
interface HTMLElementTagNameMap {
|
|
6
|
-
'odx-breadcrumbs-item': OdxBreadcrumbsItem;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
export declare class OdxBreadcrumbsItem extends CustomElement {
|
|
10
|
-
private linkElements;
|
|
11
|
-
fallback: boolean;
|
|
12
|
-
isLast(): boolean;
|
|
13
|
-
protected get interactiveElement(): OdxLink | null;
|
|
14
|
-
protected render(): TemplateResult;
|
|
15
|
-
protected updated(props: PropertyValues<this>): void;
|
|
16
|
-
}
|
|
17
|
-
//# sourceMappingURL=breadcrumbs-item.d.ts.map
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { TemplateResult, nothing } from 'lit';
|
|
2
|
-
import { BaseLink } from '../link/index.js';
|
|
3
|
-
declare const BaseButton_base: import('../../lib/main.js').Constructor<import('../../lib/main.js').HasLoadingState> & typeof BaseLink;
|
|
4
|
-
/**
|
|
5
|
-
* A button is clickable text or an icon that triggers an action on the page or in the background.
|
|
6
|
-
* Depending on the action, content, and hierarchy, a button can be used on its own or grouped with
|
|
7
|
-
* other buttons.
|
|
8
|
-
* @summary Triggers actions on the page or in the background
|
|
9
|
-
* @csspart button - Internal button element
|
|
10
|
-
* @csspart prefix - Container for the prefix slot
|
|
11
|
-
* @csspart suffix - Container for the suffix slot
|
|
12
|
-
* @slot prefix - Contains the button's icon or state indicator, e.g. a spinner.
|
|
13
|
-
* @slot suffix - Contains the button's icon or state indicator, e.g. a spinner.
|
|
14
|
-
* @slot - Contains button text
|
|
15
|
-
*/
|
|
16
|
-
export declare class BaseButton extends BaseButton_base {
|
|
17
|
-
static readonly styles: import('lit').CSSResult;
|
|
18
|
-
lineClamp: 1 | 2;
|
|
19
|
-
protected render(): TemplateResult;
|
|
20
|
-
protected renderContent(withSpinner?: boolean): TemplateResult;
|
|
21
|
-
protected renderButton(): TemplateResult<1>;
|
|
22
|
-
protected renderSlot(name: 'prefix' | 'suffix', force?: boolean): TemplateResult;
|
|
23
|
-
protected renderOverlay(): TemplateResult | typeof nothing;
|
|
24
|
-
protected renderSpinner(overlay?: boolean): TemplateResult;
|
|
25
|
-
}
|
|
26
|
-
export {};
|
|
27
|
-
//# sourceMappingURL=base-button.d.ts.map
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export type ButtonSize = (typeof ButtonSize)[keyof typeof ButtonSize];
|
|
2
|
-
export declare const ButtonSize: {
|
|
3
|
-
readonly SM: "sm";
|
|
4
|
-
readonly MD: "md";
|
|
5
|
-
readonly LG: "lg";
|
|
6
|
-
};
|
|
7
|
-
export type ButtonVariant = (typeof ButtonVariant)[keyof typeof ButtonVariant];
|
|
8
|
-
export declare const ButtonVariant: {
|
|
9
|
-
readonly PRIMARY: "primary";
|
|
10
|
-
readonly HIGHLIGHT: "highlight";
|
|
11
|
-
readonly SECONDARY: "secondary";
|
|
12
|
-
readonly GHOST: "ghost";
|
|
13
|
-
readonly DANGER: "danger";
|
|
14
|
-
};
|
|
15
|
-
//# sourceMappingURL=button.models.d.ts.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export type ChipVariant = (typeof ChipVariant)[keyof typeof ChipVariant];
|
|
2
|
-
export declare const ChipVariant: {
|
|
3
|
-
NEUTRAL: string;
|
|
4
|
-
PRIMARY: string;
|
|
5
|
-
HIGHLIGHT: string;
|
|
6
|
-
SUCCESS: string;
|
|
7
|
-
WARNING: string;
|
|
8
|
-
DANGER: string;
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=chip.models.d.ts.map
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { PropertyValueMap, TemplateResult } from 'lit';
|
|
3
|
-
import { CircularProgressBarSize } from './circular-progress-bar.models.js';
|
|
4
|
-
declare global {
|
|
5
|
-
interface HTMLElementTagNameMap {
|
|
6
|
-
'odx-circular-progress-bar': OdxCircularProgressBar;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* A circular progress bar that indicates the progress of a task.
|
|
11
|
-
* @summary Displays the progress of a task in a circular format
|
|
12
|
-
* @csspart inner - The inner SVG element
|
|
13
|
-
* @csspart track - The track circle element
|
|
14
|
-
* @csspart indicator - The indicator circle element
|
|
15
|
-
*/
|
|
16
|
-
export declare class OdxCircularProgressBar extends CustomElement {
|
|
17
|
-
#private;
|
|
18
|
-
protected readonly viewPortSize = 100;
|
|
19
|
-
/**
|
|
20
|
-
* The value of the progress bar. Should be between -1 and 100.
|
|
21
|
-
* -1 indicates an indeterminate state.
|
|
22
|
-
*/
|
|
23
|
-
set value(val: number);
|
|
24
|
-
get value(): number;
|
|
25
|
-
/**
|
|
26
|
-
* The stroke width of the progress bar.
|
|
27
|
-
*/
|
|
28
|
-
stroke: number;
|
|
29
|
-
/**
|
|
30
|
-
* Indicates whether the progress bar is in an indeterminate state.
|
|
31
|
-
*/
|
|
32
|
-
indeterminate: boolean;
|
|
33
|
-
/**
|
|
34
|
-
* The size of the progress bar.
|
|
35
|
-
*/
|
|
36
|
-
size: CircularProgressBarSize;
|
|
37
|
-
firstUpdated(changes: PropertyValueMap<this>): void;
|
|
38
|
-
disconnectedCallback(): void;
|
|
39
|
-
protected render(): TemplateResult;
|
|
40
|
-
private setAttributes;
|
|
41
|
-
}
|
|
42
|
-
//# sourceMappingURL=circular-progress-bar.d.ts.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export type CircularProgressBarSize = (typeof CircularProgressBarSize)[keyof typeof CircularProgressBarSize];
|
|
2
|
-
export declare const CircularProgressBarSize: {
|
|
3
|
-
readonly SMALL: "small";
|
|
4
|
-
readonly MEDIUM: "medium";
|
|
5
|
-
readonly LARGE: "large";
|
|
6
|
-
};
|
|
7
|
-
//# sourceMappingURL=circular-progress-bar.models.d.ts.map
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { TemplateResult } from 'lit';
|
|
3
|
-
declare global {
|
|
4
|
-
interface HTMLElementTagNameMap {
|
|
5
|
-
'odx-content-box': OdxContentBox;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
export declare class OdxContentBox extends CustomElement {
|
|
9
|
-
protected render(): TemplateResult;
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=content-box.d.ts.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { CustomElement } from '../../lib/main.js';
|
|
2
|
-
declare global {
|
|
3
|
-
interface HTMLElementTagNameMap {
|
|
4
|
-
'odx-header-actions': OdxHeaderActions;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
export declare class OdxHeaderActions extends CustomElement {
|
|
8
|
-
connectedCallback(): void;
|
|
9
|
-
}
|
|
10
|
-
//# sourceMappingURL=header-actions.d.ts.map
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { PropertyValueMap } from 'lit';
|
|
3
|
-
import { HeadlineSize } from './headline.models.js';
|
|
4
|
-
declare global {
|
|
5
|
-
interface HTMLElementTagNameMap {
|
|
6
|
-
'odx-headline': OdxHeadline;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
export declare class OdxHeadline extends CustomElement {
|
|
10
|
-
size?: HeadlineSize;
|
|
11
|
-
protected willUpdate(props: PropertyValueMap<this>): void;
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=headline.d.ts.map
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export type InlineMessageVariant = (typeof InlineMessageVariant)[keyof typeof InlineMessageVariant];
|
|
2
|
-
export declare const InlineMessageVariant: {
|
|
3
|
-
readonly INFO: "info";
|
|
4
|
-
readonly DANGER: "danger";
|
|
5
|
-
readonly WARNING: "warning";
|
|
6
|
-
readonly SUCCESS: "success";
|
|
7
|
-
};
|
|
8
|
-
export type InlineMessageType = (typeof InlineMessageType)[keyof typeof InlineMessageType];
|
|
9
|
-
export declare const InlineMessageType: {
|
|
10
|
-
readonly BANNER: "banner";
|
|
11
|
-
};
|
|
12
|
-
//# sourceMappingURL=inline-message.models.d.ts.map
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { ARIARole, CanBeDisabled, CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { TemplateResult } from 'lit';
|
|
3
|
-
declare const BaseLink_base: import('../../lib/main.js').Constructor<CanBeDisabled> & typeof CustomElement;
|
|
4
|
-
export declare class BaseLink extends BaseLink_base {
|
|
5
|
-
static shadowRootOptions: ShadowRootInit;
|
|
6
|
-
readonly interactiveElement: HTMLButtonElement | HTMLAnchorElement;
|
|
7
|
-
href: string;
|
|
8
|
-
target: '_blank' | '_parent' | '_self' | '_top' | '';
|
|
9
|
-
rel: string;
|
|
10
|
-
download?: string;
|
|
11
|
-
protected render(role?: ARIARole): TemplateResult;
|
|
12
|
-
protected renderContent(): TemplateResult;
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
15
|
-
//# sourceMappingURL=base-link.d.ts.map
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { CanBeExpanded, CanBeSelected } from '../../lib/main.js';
|
|
2
|
-
import { PropertyValues, TemplateResult } from 'lit';
|
|
3
|
-
import { BaseButton } from '../button/index.js';
|
|
4
|
-
declare global {
|
|
5
|
-
interface HTMLElementTagNameMap {
|
|
6
|
-
'odx-list-item': OdxListItem;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
declare const OdxListItem_base: import('../../lib/main.js').Constructor<CanBeSelected> & import('../../lib/main.js').Constructor<CanBeExpanded> & typeof BaseButton;
|
|
10
|
-
export declare class OdxListItem extends OdxListItem_base {
|
|
11
|
-
#private;
|
|
12
|
-
compact: boolean;
|
|
13
|
-
muted: boolean;
|
|
14
|
-
withControl: boolean;
|
|
15
|
-
withExpandedIndicator: boolean;
|
|
16
|
-
constructor();
|
|
17
|
-
isExpandable(): boolean;
|
|
18
|
-
connectedCallback(): void;
|
|
19
|
-
protected render(): TemplateResult;
|
|
20
|
-
protected renderContent(): TemplateResult;
|
|
21
|
-
protected renderSpinner(overlay?: boolean): TemplateResult;
|
|
22
|
-
protected willUpdate(props: PropertyValues<this>): void;
|
|
23
|
-
}
|
|
24
|
-
export {};
|
|
25
|
-
//# sourceMappingURL=list-item.d.ts.map
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { TemplateResult } from 'lit';
|
|
3
|
-
declare global {
|
|
4
|
-
interface HTMLElementTagNameMap {
|
|
5
|
-
'odx-main-menu-subtitle': OdxMainMenuSubtitle;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
export declare class OdxMainMenuSubtitle extends CustomElement {
|
|
9
|
-
slot: string;
|
|
10
|
-
protected render(): TemplateResult;
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=main-menu-subtitle.d.ts.map
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { TemplateResult } from 'lit';
|
|
3
|
-
declare global {
|
|
4
|
-
interface HTMLElementTagNameMap {
|
|
5
|
-
'odx-main-menu-title': OdxMainMenuTitle;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
export declare class OdxMainMenuTitle extends CustomElement {
|
|
9
|
-
slot: string;
|
|
10
|
-
protected render(): TemplateResult;
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=main-menu-title.d.ts.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export type PageAlignment = (typeof PageAlignment)[keyof typeof PageAlignment];
|
|
2
|
-
export declare const PageAlignment: {
|
|
3
|
-
readonly CENTER: "center";
|
|
4
|
-
};
|
|
5
|
-
export type PageLayout = (typeof PageLayout)[keyof typeof PageLayout];
|
|
6
|
-
export declare const PageLayout: {
|
|
7
|
-
readonly NARROW: "narrow";
|
|
8
|
-
readonly WIDE: "wide";
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=page.models.d.ts.map
|