@lumx/react 4.0.1-alpha.4 → 4.0.1-alpha.6
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/index.d.ts +5 -23
- package/index.js +358 -431
- package/index.js.map +1 -1
- package/package.json +6 -3
package/index.d.ts
CHANGED
|
@@ -5,8 +5,12 @@ import { GenericProps, HasTheme, ValueOf, HasCloseMode, TextElement, HeadingElem
|
|
|
5
5
|
export * from '@lumx/core/js/types';
|
|
6
6
|
import * as React$1 from 'react';
|
|
7
7
|
import React__default, { Ref, ReactElement, ReactNode, SyntheticEvent, MouseEventHandler, KeyboardEventHandler, AriaAttributes, DetailedHTMLProps, ButtonHTMLAttributes, InputHTMLAttributes, RefObject, ImgHTMLAttributes, CSSProperties, SetStateAction, Key, ElementType, ComponentProps } from 'react';
|
|
8
|
+
import { InputLabelProps } from '@lumx/core/js/components/InputLabel';
|
|
9
|
+
export { InputLabelProps } from '@lumx/core/js/components/InputLabel';
|
|
8
10
|
import { IconProps } from '@lumx/core/js/components/Icon';
|
|
9
11
|
export { IconProps, IconSizes } from '@lumx/core/js/components/Icon';
|
|
12
|
+
import { InputHelperProps } from '@lumx/core/js/components/InputHelper';
|
|
13
|
+
export { InputHelperProps } from '@lumx/core/js/components/InputHelper';
|
|
10
14
|
|
|
11
15
|
/** LumX Component Type. */
|
|
12
16
|
type Comp<P, T = HTMLElement> = {
|
|
@@ -1579,15 +1583,6 @@ interface InlineListProps extends GenericProps {
|
|
|
1579
1583
|
*/
|
|
1580
1584
|
declare const InlineList: Comp<InlineListProps, HTMLElement>;
|
|
1581
1585
|
|
|
1582
|
-
/**
|
|
1583
|
-
* Defines the props of the component.
|
|
1584
|
-
*/
|
|
1585
|
-
interface InputHelperProps extends GenericProps, HasTheme {
|
|
1586
|
-
/** Helper content. */
|
|
1587
|
-
children: string | ReactNode;
|
|
1588
|
-
/** Helper variant. */
|
|
1589
|
-
kind?: Kind;
|
|
1590
|
-
}
|
|
1591
1586
|
/**
|
|
1592
1587
|
* InputHelper component.
|
|
1593
1588
|
*
|
|
@@ -1597,19 +1592,6 @@ interface InputHelperProps extends GenericProps, HasTheme {
|
|
|
1597
1592
|
*/
|
|
1598
1593
|
declare const InputHelper: Comp<InputHelperProps, HTMLParagraphElement>;
|
|
1599
1594
|
|
|
1600
|
-
/**
|
|
1601
|
-
* Defines the props of the component.
|
|
1602
|
-
*/
|
|
1603
|
-
interface InputLabelProps extends GenericProps, HasTheme {
|
|
1604
|
-
/** Typography variant. */
|
|
1605
|
-
typography?: Typography;
|
|
1606
|
-
/** Label content. */
|
|
1607
|
-
children: string | ReactNode;
|
|
1608
|
-
/** Native htmlFor property. */
|
|
1609
|
-
htmlFor: string;
|
|
1610
|
-
/** Whether the component is required or not. */
|
|
1611
|
-
isRequired?: boolean;
|
|
1612
|
-
}
|
|
1613
1595
|
/**
|
|
1614
1596
|
* InputLabel component.
|
|
1615
1597
|
*
|
|
@@ -3166,4 +3148,4 @@ declare const ThemeProvider: React__default.FC<{
|
|
|
3166
3148
|
declare function useTheme(): ThemeContextValue;
|
|
3167
3149
|
|
|
3168
3150
|
export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonEmphasis, ButtonGroup, Checkbox, Chip, ChipGroup, CommentBlock, CommentBlockVariant, DatePicker, DatePickerControlled, DatePickerField, Dialog, Divider, DragHandle, Dropdown, ExpansionPanel, Flag, FlexBox, GenericBlock, GenericBlockGapSize, Grid, GridColumn, GridItem, Heading, HeadingLevelProvider, Icon, IconButton, ImageBlock, ImageBlockCaptionPosition, ImageLightbox, InlineList, InputHelper, InputLabel, Lightbox, Link, LinkPreview, List, ListDivider, ListItem, ListSubheader, Message, Mosaic, Navigation, Notification, Placement, Popover, PopoverDialog, PostBlock, Progress, ProgressCircular, ProgressLinear, ProgressTracker, ProgressTrackerProvider, ProgressTrackerStep, ProgressTrackerStepPanel, ProgressVariant, RadioButton, RadioGroup, RawInputText, RawInputTextarea, Select, SelectMultiple, SelectMultipleField, SelectVariant, SideNavigation, SideNavigationItem, SkeletonCircle, SkeletonRectangle, SkeletonRectangleVariant, SkeletonTypography, Slider, Slides, Slideshow, SlideshowControls, SlideshowItem, Switch, Tab, TabList, TabListLayout, TabPanel, TabProvider, Table, TableBody, TableCell, TableCellVariant, TableHeader, TableRow, Text, TextField, ThOrder, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, Toolbar, Tooltip, Uploader, UploaderVariant, UserBlock, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
|
|
3169
|
-
export type { AlertDialogProps, AutocompleteMultipleProps, AutocompleteProps, AvatarProps, AvatarSize, BadgeProps, BadgeWrapperProps, BaseButtonProps, ButtonGroupProps, ButtonProps, ButtonSize, CheckboxProps, ChipGroupProps, ChipProps, CommentBlockProps, DatePickerControlledProps, DatePickerFieldProps, DatePickerProps, DialogProps, DialogSizes, DividerProps, DragHandleProps, DropdownProps, Elevation, ExpansionPanelProps, FlagProps, FlexBoxProps, FlexHorizontalAlignment, FlexVerticalAlignment, FocusPoint, GapSize, GenericBlockProps, GridColumnGapSize, GridColumnProps, GridItemProps, GridProps, HeadingLevelProviderProps, HeadingProps, IconButtonProps, ImageBlockProps, ImageBlockSize, ImageLightboxProps, InlineListProps,
|
|
3151
|
+
export type { AlertDialogProps, AutocompleteMultipleProps, AutocompleteProps, AvatarProps, AvatarSize, BadgeProps, BadgeWrapperProps, BaseButtonProps, ButtonGroupProps, ButtonProps, ButtonSize, CheckboxProps, ChipGroupProps, ChipProps, CommentBlockProps, DatePickerControlledProps, DatePickerFieldProps, DatePickerProps, DialogProps, DialogSizes, DividerProps, DragHandleProps, DropdownProps, Elevation, ExpansionPanelProps, FlagProps, FlexBoxProps, FlexHorizontalAlignment, FlexVerticalAlignment, FocusPoint, GapSize, GenericBlockProps, GridColumnGapSize, GridColumnProps, GridItemProps, GridProps, HeadingLevelProviderProps, HeadingProps, IconButtonProps, ImageBlockProps, ImageBlockSize, ImageLightboxProps, InlineListProps, LightboxProps, LinkPreviewProps, LinkProps, ListDividerProps, ListItemProps, ListItemSize, ListProps, ListSubheaderProps, MarginAutoAlignment, MessageProps, MosaicProps, NavigationProps, NotificationProps, Offset, PopoverDialogProps, PopoverProps, PostBlockProps, ProgressCircularProps, ProgressCircularSize, ProgressLinearProps, ProgressProps, ProgressTrackerProps, ProgressTrackerProviderProps, ProgressTrackerStepPanelProps, ProgressTrackerStepProps, RadioButtonProps, RadioGroupProps, RawInputTextProps, RawInputTextareaProps, SelectMultipleProps, SelectProps, SideNavigationItemProps, SideNavigationProps, SkeletonCircleProps, SkeletonRectangleProps, SkeletonTypographyProps, SliderProps, SlidesProps, SlideshowControlsProps, SlideshowItemProps, SlideshowProps, SwitchProps, TabListProps, TabPanelProps, TabProps, TabProviderProps, TableBodyProps, TableCellProps, TableHeaderProps, TableProps, TableRowProps, TextFieldProps, TextProps, ThumbnailProps, ThumbnailSize, ToolbarProps, TooltipPlacement, TooltipProps, UploaderProps, UploaderSize, UserBlockProps, UserBlockSize };
|