@breadstone/mosaik-elements-foundation 0.0.85 → 0.0.88
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/Controls/Components/Inputs/Select/SelectItemElement.d.ts +1 -1
- package/Controls/Components/Selectors/Carousel/CarouselElement.d.ts +1 -1
- package/Controls/Components/Selectors/Carousel2/Carousel2Element.d.ts +1 -1
- package/Controls/Components/Selectors/Combo/ComboItemElement.d.ts +1 -1
- package/Controls/Components/Selectors/DataList/DataListElement.d.ts +1 -1
- package/Controls/Components/Selectors/DataTable/DataTableElement.d.ts +1 -1
- package/Controls/Components/Selectors/List/ListElement.d.ts +1 -1
- package/Controls/Components/Selectors/List/ListItemElement.d.ts +1 -1
- package/Controls/Components/Selectors/Tree/TreeElement.d.ts +1 -1
- package/Controls/Components/Selectors/Tree/TreeItemElement.d.ts +1 -1
- package/Controls/Components/Selectors/Wizard/WizardElement.d.ts +1 -1
- package/Controls/Components/Selectors/Wizard/WizardStepElement.d.ts +1 -1
- package/custom-elements.json +259 -258
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SelectorItemElement } from '../../Selectors/Abstracts/Selector/SelectorItemElement';
|
|
2
2
|
import type { ISelectItemElementProps } from './ISelectItemElementProps';
|
|
3
3
|
import { SelectElement } from './SelectElement';
|
|
4
|
-
declare const SelectItemElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Focusable").IFocusableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Labelable").ILabelableProps) &
|
|
4
|
+
declare const SelectItemElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Focusable").IFocusableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Labelable").ILabelableProps) & typeof SelectorItemElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
5
5
|
/**
|
|
6
6
|
* Select Item - An individual option within a dropdown or select element.
|
|
7
7
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SelectorElement } from '../Abstracts/Selector/SelectorElement';
|
|
2
2
|
import { CarouselItemElement } from './CarouselItemElement';
|
|
3
3
|
import type { ICarouselElementProps } from './ICarouselElementProps';
|
|
4
|
-
declare const CarouselElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Appearanceable").IAppearanceableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) &
|
|
4
|
+
declare const CarouselElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Appearanceable").IAppearanceableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & typeof SelectorElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
5
5
|
/**
|
|
6
6
|
* Carousel - A user interface component for displaying a rotating or sliding set of content items.
|
|
7
7
|
*
|
|
@@ -2,7 +2,7 @@ import { ISlottable } from '../../../Behaviors/Slottable';
|
|
|
2
2
|
import { Orientation } from '../../../Types/Orientation';
|
|
3
3
|
import { SelectorElement } from '../Abstracts/Selector/SelectorElement';
|
|
4
4
|
import { ICarousel2ElementProps } from './ICarousel2ElementProps';
|
|
5
|
-
declare const Carousel2Element_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) &
|
|
5
|
+
declare const Carousel2Element_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof SelectorElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
6
6
|
export declare class Carousel2Element extends Carousel2Element_base implements ISlottable {
|
|
7
7
|
private _page;
|
|
8
8
|
private _numVisible;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SelectorItemElement } from '../Abstracts/Selector/SelectorItemElement';
|
|
2
2
|
import { ComboElement } from './ComboElement';
|
|
3
3
|
import type { IComboItemElementProps } from './IComboItemElementProps';
|
|
4
|
-
declare const ComboItemElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Focusable").IFocusableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Labelable").ILabelableProps) &
|
|
4
|
+
declare const ComboItemElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Focusable").IFocusableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Labelable").ILabelableProps) & typeof SelectorItemElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
5
5
|
/**
|
|
6
6
|
* The `{@link comboItemElement}` element.
|
|
7
7
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ItemsElement } from '../Abstracts/Items/ItemsElement';
|
|
2
2
|
import { IDataListElementProps } from './IDataListElementProps';
|
|
3
3
|
import type { IDataListItemDefinition } from './IDataListItemDefinition';
|
|
4
|
-
declare const DataListElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) &
|
|
4
|
+
declare const DataListElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof ItemsElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
5
5
|
/**
|
|
6
6
|
* Data List - A specialized type of list used to display tabular data in rows and columns. Data lists provide a structured way to present and manage information, often with sorting and filtering options.
|
|
7
7
|
*
|
|
@@ -2,7 +2,7 @@ import { ItemsElement } from '../Abstracts/Items/ItemsElement';
|
|
|
2
2
|
import type { ITableCellSortChangedEventDetail } from '../Table/Events/ITableCellSortChangedEventDetail';
|
|
3
3
|
import type { IDataTableColumnDefinition } from './IDataTableColumnDefinition';
|
|
4
4
|
import type { IDataTableElementProps } from './IDataTableElementProps';
|
|
5
|
-
declare const DataTableElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) &
|
|
5
|
+
declare const DataTableElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof ItemsElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
6
6
|
/**
|
|
7
7
|
* Data Table - A structured representation of tabular data, often used to display data in rows and columns.
|
|
8
8
|
*
|
|
@@ -2,7 +2,7 @@ import { SelectionMode } from '../../../Types/SelectionMode';
|
|
|
2
2
|
import { SelectorElement } from '../Abstracts/Selector/SelectorElement';
|
|
3
3
|
import type { IListElementProps } from './IListElementProps';
|
|
4
4
|
import { ListItemElement } from './ListItemElement';
|
|
5
|
-
declare const ListElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Filterable").IFilterableProps) &
|
|
5
|
+
declare const ListElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Filterable").IFilterableProps) & typeof SelectorElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
6
6
|
/**
|
|
7
7
|
* List - A container for displaying a collection of related items in a vertical or horizontal layout. Lists are often used to present data, navigation options, or other grouped content.
|
|
8
8
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SelectorItemElement } from '../Abstracts/Selector/SelectorItemElement';
|
|
2
2
|
import type { IListItemElementProps } from './IListItemElementProps';
|
|
3
3
|
import { ListElement } from './ListElement';
|
|
4
|
-
declare const ListItemElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Focusable").IFocusableProps) &
|
|
4
|
+
declare const ListItemElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Focusable").IFocusableProps) & typeof SelectorItemElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
5
5
|
/**
|
|
6
6
|
* List Item - An individual item within a list component. List items can contain various types of content, such as text, icons, or images, and are typically organized vertically or horizontally.
|
|
7
7
|
*
|
|
@@ -3,7 +3,7 @@ import { SelectionMode } from '../../../Types/SelectionMode';
|
|
|
3
3
|
import { SelectorElement } from '../Abstracts/Selector/SelectorElement';
|
|
4
4
|
import type { ITreeElementProps } from './ITreeElementProps';
|
|
5
5
|
import { TreeItemElement } from './TreeItemElement';
|
|
6
|
-
declare const TreeElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) &
|
|
6
|
+
declare const TreeElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof SelectorElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
7
7
|
/**
|
|
8
8
|
* The `{@link TreeElement}` element.
|
|
9
9
|
*
|
|
@@ -3,7 +3,7 @@ import { SelectorItemElement } from '../Abstracts/Selector/SelectorItemElement';
|
|
|
3
3
|
import type { ITreeItemElementProps } from './ITreeItemElementProps';
|
|
4
4
|
import { TreeElement } from './TreeElement';
|
|
5
5
|
import { IExpandable } from '../../Interfaces/IExpandable';
|
|
6
|
-
declare const TreeItemElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Focusable").IFocusableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Busyable").IBusyableProps) &
|
|
6
|
+
declare const TreeItemElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Focusable").IFocusableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Busyable").IBusyableProps) & typeof SelectorItemElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
7
7
|
/**
|
|
8
8
|
* The `{@link TreeItemElement}` element.
|
|
9
9
|
*
|
|
@@ -5,7 +5,7 @@ import type { IWizardActiveStepChangedEventDetail } from './Events/IWizardActive
|
|
|
5
5
|
import type { IWizardElementEvents } from './IWizardElementEvents';
|
|
6
6
|
import type { IWizardElementProps } from './IWizardElementProps';
|
|
7
7
|
import { WizardStepElement } from './WizardStepElement';
|
|
8
|
-
declare const WizardElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Fitable").IFitableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) &
|
|
8
|
+
declare const WizardElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Fitable").IFitableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof SelectorElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
9
9
|
/**
|
|
10
10
|
* Wizard - A component that allows users to navigate through steps to complete a task.
|
|
11
11
|
*
|
|
@@ -3,7 +3,7 @@ import { SelectorItemElement } from '../Abstracts/Selector/SelectorItemElement';
|
|
|
3
3
|
import type { IWizardActiveStepChangedEventDetail } from './Events/IWizardActiveStepChangedEventDetail';
|
|
4
4
|
import type { IWizardStepElementProps } from './IWizardStepElementProps';
|
|
5
5
|
import { WizardElement } from './WizardElement';
|
|
6
|
-
declare const WizardStepElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Animatable").IAnimatableProps & IAnimatable) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Insetable").IInsetableProps) &
|
|
6
|
+
declare const WizardStepElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Animatable").IAnimatableProps & IAnimatable) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Insetable").IInsetableProps) & typeof SelectorItemElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
7
7
|
/**
|
|
8
8
|
* Wizard step - A component that allows users to navigate through steps to complete a task.
|
|
9
9
|
*
|