@larva.io/webcomponents
Version:
Fentrica SmartUnits WebComponents package
31 lines (26 loc) • 1.13 kB
TypeScript
export { Components, JSX } from './components';
export {
DataOut,
DataIn,
LarInnerRangeInceptionAreaCustomEvent,
LarInnerRangeInceptionDoorCustomEvent,
LarSliderCustomEvent,
LarToggleCustomEvent,
Lar2nCommanderDoorCustomEvent
} from './components';
export type PredefinedColors = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'danger' | 'light' | 'medium' | 'dark';
export type Color = PredefinedColors | string;
export type Size = 'small' | 'default';
export type CssClassMap = { [className: string]: boolean };
export type HTMLLarAnimationControllerElement = HTMLElement;
export type ComponentRef = HTMLElement | Element | string | null;
export type ComponentProps<T = null> = {[key: string]: any};
export * from './utils/animation/animation-interface';
export * from './utils/input-interface';
export * from './global/config';
export * from './global/config';
export * from './utils/i18n';
export * from './utils/assets-helper';
export * from './components/internal/icon/utils';
export { Gesture, GestureDetail } from './utils/gesture';
export { LarvaConfig, setupConfig } from './utils/config';