@movable/ui 2.0.2 → 2.1.0
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/lib/index.d.ts +18 -0
- package/lib/index.mjs +4713 -3613
- package/lib/index.mjs.map +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -13,6 +13,10 @@ import { ForwardRefExoticComponent } from 'react';
|
|
|
13
13
|
import { GridProps } from '@mui/material/Grid';
|
|
14
14
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
15
15
|
import { LinkProps } from '@mui/material';
|
|
16
|
+
import { ListItemIconProps } from '@mui/material/ListItemIcon';
|
|
17
|
+
import { ListItemProps } from '@mui/material/ListItem';
|
|
18
|
+
import { ListItemTextProps } from '@mui/material/ListItemText';
|
|
19
|
+
import { ListProps } from '@mui/material/List';
|
|
16
20
|
import { MenuItemProps } from '@mui/material';
|
|
17
21
|
import { MenuProps } from '@mui/material';
|
|
18
22
|
import { OverridableComponent } from '@mui/material/OverridableComponent';
|
|
@@ -116,6 +120,20 @@ declare type IFilterDrawer = DrawerProps & {
|
|
|
116
120
|
mainProps?: BoxProps;
|
|
117
121
|
};
|
|
118
122
|
|
|
123
|
+
export declare function InkAttributeList({ label, attributes, ...listProps }: InkAttributeListProps): JSX_2.Element;
|
|
124
|
+
|
|
125
|
+
declare type InkAttributeListProps = ListProps & {
|
|
126
|
+
label: string;
|
|
127
|
+
attributes: InkAttributeProps[];
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
declare type InkAttributeProps = ListItemTextProps & {
|
|
131
|
+
listItemProps?: ListItemProps;
|
|
132
|
+
listItemIconProps?: ListItemIconProps & {
|
|
133
|
+
adornment: 'start' | 'end';
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
|
|
119
137
|
export declare function InkChip({ maxWidth, chipProps, size, }: InkChipPropType): JSX_2.Element;
|
|
120
138
|
|
|
121
139
|
export declare function InkChipGroup({ chipList, numTagsToDisplay, size, maxChipWidth, }: InkChipGroupProps): JSX_2.Element;
|