@odx/foundation 1.0.0-beta.21 → 1.0.0-beta.211
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 +11 -6
- package/dist/components/accordion-item/accordion-item.d.ts +25 -0
- package/dist/components/{accordion → accordion-panel}/accordion-panel.d.ts +4 -3
- 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 +27 -0
- package/dist/components/avatar/avatar.d.ts +34 -5
- package/dist/components/badge/badge.d.ts +32 -5
- package/dist/components/breadcrumbs/breadcrumbs.d.ts +3 -7
- package/dist/components/button/button.d.ts +33 -23
- package/dist/components/button-group/button-group.d.ts +10 -5
- package/dist/components/card/card.d.ts +14 -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 +14 -5
- package/dist/components/drawer/drawer.d.ts +17 -0
- package/dist/components/dropdown/dropdown.d.ts +25 -13
- package/dist/components/empty-state/empty-state.d.ts +42 -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 +27 -7
- 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 +17 -6
- package/dist/components/input/input.d.ts +15 -10
- package/dist/components/key-value/key-value.d.ts +49 -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 +14 -4
- package/dist/components/list/list.d.ts +10 -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 -58
- package/dist/components/menu/menu.d.ts +7 -5
- package/dist/components/menu-item/menu-item.d.ts +27 -4
- 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 +6 -3
- 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 +10 -0
- package/dist/{cdk → components}/popover/popover.d.ts +3 -2
- package/dist/components/progress-bar/base-progress.d.ts +23 -0
- package/dist/components/progress-bar/progress-bar.d.ts +3 -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 +12 -4
- package/dist/components/rail-navigation/rail-navigation.d.ts +5 -7
- package/dist/components/scroll-container/scroll-container.d.ts +36 -0
- package/dist/components/search-bar/search-bar.d.ts +19 -5
- package/dist/components/select/select.d.ts +11 -10
- 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 +14 -10
- package/dist/components/status/status.d.ts +24 -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 +3 -3
- package/dist/components/table/table.d.ts +1 -1
- package/dist/components/text/text.d.ts +23 -3
- package/dist/components/textarea/textarea.d.ts +21 -0
- package/dist/components/tile/tile.d.ts +33 -0
- package/dist/components/title/title.d.ts +19 -5
- package/dist/components/toast/toast.d.ts +15 -3
- package/dist/components/toggle-button/toggle-button.d.ts +32 -6
- package/dist/components/toggle-button-group/toggle-button-group.d.ts +20 -0
- package/dist/components/toggle-content/toggle-content.d.ts +4 -4
- package/dist/components/toolbar/toolbar.d.ts +14 -0
- package/dist/components/tooltip/tooltip.d.ts +50 -3
- package/dist/components/translate/translate.d.ts +2 -2
- package/dist/components-loader.js +3 -0
- package/dist/components.js +3851 -4248
- package/dist/en.js +6 -0
- 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 +52 -58
- package/dist/lib/behaviors/can-be-collapsed.d.ts +10 -0
- package/dist/lib/behaviors/can-be-disabled.d.ts +9 -0
- package/dist/lib/behaviors/can-be-expanded.d.ts +11 -0
- package/dist/lib/behaviors/checkbox-control-group.d.ts +21 -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/listbox-control.d.ts +26 -0
- package/dist/lib/behaviors/number-form-control.d.ts +11 -0
- package/dist/lib/behaviors/option-control.d.ts +18 -0
- package/dist/lib/behaviors/radio-group-control.d.ts +12 -0
- package/dist/lib/control-element.d.ts +40 -0
- package/dist/lib/controllers/active-descendants-controller.d.ts +29 -0
- package/dist/lib/controllers/drag.controller.d.ts +18 -0
- package/dist/lib/controllers/expandable-controller.d.ts +6 -10
- package/dist/lib/custom-element.d.ts +8 -5
- 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 +19 -0
- package/dist/lib/models/appearance.d.ts +8 -0
- package/dist/lib/models/layout.d.ts +46 -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 +12 -0
- package/dist/main.d.ts +25 -0
- package/dist/main.js +1144 -727
- 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/types/a11y.d.ts → utils/dom-types.d.ts} +1 -17
- package/dist/utils/dom.d.ts +17 -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 +299 -0
- package/dist/vendor.js +1968 -0
- package/package.json +55 -32
- package/dist/cdk/control/checkbox-form-control.d.ts +0 -15
- package/dist/cdk/control/checkbox-group-form-control.d.ts +0 -21
- package/dist/cdk/control/listbox-form-control.d.ts +0 -22
- package/dist/cdk/control/option-control.d.ts +0 -24
- package/dist/cdk/control/radio-group-form-control.d.ts +0 -22
- package/dist/cdk/drag-drop/drag-events.d.ts +0 -9
- package/dist/cdk/drag-drop/drag.controller.d.ts +0 -18
- package/dist/cdk/drag-drop/is-draggable.d.ts +0 -18
- package/dist/cdk/interactive/interactive-element.d.ts +0 -28
- package/dist/cdk/interactive/interactive-link.d.ts +0 -15
- package/dist/cdk/main.d.ts +0 -14
- package/dist/cdk/popover/popover-host.d.ts +0 -25
- 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 -950
- package/dist/components/accordion/accordion-header.d.ts +0 -17
- 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 -18
- 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/button.models.d.ts +0 -27
- package/dist/components/button/index.d.ts +0 -3
- 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/combobox/combobox.d.ts +0 -20
- package/dist/components/combobox/index.d.ts +0 -2
- 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 -27
- 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/active-desendants-controller.d.ts +0 -25
- package/dist/lib/controllers/focus-trap.controller.d.ts +0 -14
- package/dist/lib/main.d.ts +0 -31
- package/dist/lib/mixins/can-be-disabled.d.ts +0 -15
- package/dist/lib/mixins/can-be-expanded.d.ts +0 -10
- package/dist/lib/mixins/can-be-highlighted.d.ts +0 -8
- 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/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/dedupe-mixin.d.ts +0 -3
- package/dist/lib/utils/dom.d.ts +0 -15
- package/dist/lib/utils/empty-slot-fallback-fix.d.ts +0 -8
- 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/lit.d.ts +0 -5
- package/dist/lib/utils/query-assigned-element.d.ts +0 -16
- package/dist/lib/utils/search-text-content.d.ts +0 -8
- package/dist/lib/utils/shared-intersection-observer.d.ts +0 -18
- package/dist/lib/utils/shared-resize-observer.d.ts +0 -18
- package/dist/lib/utils/transformers.d.ts +0 -5
- package/dist/loader/main.d.ts +0 -2
- package/dist/loader.js +0 -12
- package/dist/vendor-dJxQG085.js +0 -138
- /package/dist/i18n/{lib/config.d.ts → config.d.ts} +0 -0
- /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,17 +0,0 @@
|
|
|
1
|
-
import { CanBeExpanded, CustomElement } from '../../lib/main.js';
|
|
2
|
-
import { PropertyValues, TemplateResult } from 'lit';
|
|
3
|
-
declare global {
|
|
4
|
-
interface HTMLElementTagNameMap {
|
|
5
|
-
'odx-accordion-header': OdxAccordionHeader;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
declare const OdxAccordionHeader_base: import('../../lib/main.js').Constructor<CanBeExpanded> & typeof CustomElement;
|
|
9
|
-
export declare class OdxAccordionHeader extends OdxAccordionHeader_base {
|
|
10
|
-
#private;
|
|
11
|
-
get panel(): HTMLElement | null;
|
|
12
|
-
connectedCallback(): void;
|
|
13
|
-
protected render(): TemplateResult;
|
|
14
|
-
protected updated(props: PropertyValues<this>): void;
|
|
15
|
-
}
|
|
16
|
-
export {};
|
|
17
|
-
//# sourceMappingURL=accordion-header.d.ts.map
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare class AnchorObserver {
|
|
2
|
-
#private;
|
|
3
|
-
readonly root: Element | Document;
|
|
4
|
-
readonly anchors: import('@preact/signals-core').Signal<Element[]>;
|
|
5
|
-
readonly visibleAnchors: import('@preact/signals-core').ReadonlySignal<Element[]>;
|
|
6
|
-
constructor(root?: Element | null);
|
|
7
|
-
observe(): void;
|
|
8
|
-
disconnect(): void;
|
|
9
|
-
updateAnchors: () => void;
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=anchor-observer.d.ts.map
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export type AreaHeaderSize = (typeof AreaHeaderSize)[keyof typeof AreaHeaderSize];
|
|
2
|
-
export declare const AreaHeaderSize: {
|
|
3
|
-
readonly SM: "sm";
|
|
4
|
-
readonly MD: "md";
|
|
5
|
-
readonly LG: "lg";
|
|
6
|
-
readonly XL: "xl";
|
|
7
|
-
};
|
|
8
|
-
export type AreaHeaderVariant = (typeof AreaHeaderVariant)[keyof typeof AreaHeaderVariant];
|
|
9
|
-
export declare const AreaHeaderVariant: {
|
|
10
|
-
readonly DEFAULT: "default";
|
|
11
|
-
};
|
|
12
|
-
//# sourceMappingURL=area-header.models.d.ts.map
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export type AvatarShape = (typeof AvatarShape)[keyof typeof AvatarShape];
|
|
2
|
-
export declare const AvatarShape: {
|
|
3
|
-
readonly CIRCLE: "circle";
|
|
4
|
-
readonly RECTANGLE: "rectangle";
|
|
5
|
-
};
|
|
6
|
-
export type AvatarSize = (typeof AvatarSize)[keyof typeof AvatarSize];
|
|
7
|
-
export declare const AvatarSize: {
|
|
8
|
-
readonly SM: "sm";
|
|
9
|
-
readonly MD: "md";
|
|
10
|
-
readonly LG: "lg";
|
|
11
|
-
readonly XL: "xl";
|
|
12
|
-
};
|
|
13
|
-
export type AvatarVariant = (typeof AvatarVariant)[keyof typeof AvatarVariant];
|
|
14
|
-
export declare const AvatarVariant: {
|
|
15
|
-
readonly PRIMARY: "primary";
|
|
16
|
-
readonly SECONDARY: "secondary";
|
|
17
|
-
};
|
|
18
|
-
//# sourceMappingURL=avatar.models.d.ts.map
|
|
@@ -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
|
-
export type ButtonSize = (typeof ButtonSize)[keyof typeof ButtonSize];
|
|
2
|
-
export declare const ButtonSize: {
|
|
3
|
-
readonly XS: "xs";
|
|
4
|
-
readonly SM: "sm";
|
|
5
|
-
readonly MD: "md";
|
|
6
|
-
readonly LG: "lg";
|
|
7
|
-
};
|
|
8
|
-
export type ButtonVariant = (typeof ButtonVariant)[keyof typeof ButtonVariant];
|
|
9
|
-
export declare const ButtonVariant: {
|
|
10
|
-
readonly PRIMARY: "primary";
|
|
11
|
-
readonly HIGHLIGHT: "highlight";
|
|
12
|
-
readonly SECONDARY: "secondary";
|
|
13
|
-
readonly GHOST: "ghost";
|
|
14
|
-
readonly DANGER: "danger";
|
|
15
|
-
};
|
|
16
|
-
export type ButtonLoaderSlot = (typeof ButtonLoaderSlot)[keyof typeof ButtonLoaderSlot];
|
|
17
|
-
export declare const ButtonLoaderSlot: {
|
|
18
|
-
readonly PREFIX: "prefix";
|
|
19
|
-
readonly SUFFIX: "suffix";
|
|
20
|
-
};
|
|
21
|
-
export type ButtonBadgeAlign = (typeof ButtonBadgeAlign)[keyof typeof ButtonBadgeAlign];
|
|
22
|
-
export declare const ButtonBadgeAlign: {
|
|
23
|
-
readonly START: "start";
|
|
24
|
-
readonly CENTER: "center";
|
|
25
|
-
readonly END: "end";
|
|
26
|
-
};
|
|
27
|
-
//# 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
|
-
PRIMARY: string;
|
|
4
|
-
SECONDARY: 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,20 +0,0 @@
|
|
|
1
|
-
import { ListboxFormControl, OptionControl } from '../../cdk/main.js';
|
|
2
|
-
import { TemplateResult } from 'lit';
|
|
3
|
-
import { OdxDropdown } from '../dropdown/index.js';
|
|
4
|
-
import { OdxOption } from '../option/index.js';
|
|
5
|
-
declare global {
|
|
6
|
-
interface HTMLElementTagNameMap {
|
|
7
|
-
'odx-combobox': OdxCombobox;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
export declare class OdxCombobox extends ListboxFormControl<OptionControl> {
|
|
11
|
-
#private;
|
|
12
|
-
control?: HTMLInputElement | HTMLButtonElement;
|
|
13
|
-
protected options: OdxOption[];
|
|
14
|
-
protected readonly dropdown: OdxDropdown;
|
|
15
|
-
protected base?: HTMLDivElement;
|
|
16
|
-
constructor();
|
|
17
|
-
canAutoSelect(option: OptionControl): boolean;
|
|
18
|
-
protected render(): TemplateResult;
|
|
19
|
-
}
|
|
20
|
-
//# sourceMappingURL=combobox.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 { 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(): TemplateResult;
|
|
12
|
-
protected renderContent(): TemplateResult;
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
15
|
-
//# sourceMappingURL=base-link.d.ts.map
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { CanBeExpanded, CanBeSelected } from '../../lib/main.js';
|
|
2
|
-
import { InteractiveElement } from '../../cdk/main.js';
|
|
3
|
-
import { PropertyValues, TemplateResult } from 'lit';
|
|
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 InteractiveElement;
|
|
10
|
-
export declare class OdxListItem extends OdxListItem_base {
|
|
11
|
-
#private;
|
|
12
|
-
private expandableItems;
|
|
13
|
-
region?: HTMLElementTagNameMap['odx-toggle-content'];
|
|
14
|
-
compact: boolean;
|
|
15
|
-
muted: boolean;
|
|
16
|
-
withExpandControl: boolean;
|
|
17
|
-
withExpandIndicator: boolean;
|
|
18
|
-
constructor();
|
|
19
|
-
isExpandable(): boolean;
|
|
20
|
-
getExpandControl(): HTMLElement | null;
|
|
21
|
-
connectedCallback(): void;
|
|
22
|
-
protected render(): TemplateResult;
|
|
23
|
-
protected renderContent(): TemplateResult;
|
|
24
|
-
protected updated(props: PropertyValues<this>): void;
|
|
25
|
-
}
|
|
26
|
-
export {};
|
|
27
|
-
//# 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
|