@movable/ui 2.5.2 → 2.5.3
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 +3 -2
- package/lib/index.mjs +3320 -3309
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -142,7 +142,7 @@ declare type InkAttributeProps = ListItemTextProps & {
|
|
|
142
142
|
};
|
|
143
143
|
};
|
|
144
144
|
|
|
145
|
-
export declare function InkChip({ maxWidth, chipProps, size, }: InkChipPropType): JSX_2.Element;
|
|
145
|
+
export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, }: InkChipPropType): JSX_2.Element;
|
|
146
146
|
|
|
147
147
|
export declare function InkChipGroup({ chipList, numTagsToDisplay, size, maxChipWidth, }: InkChipGroupProps): JSX_2.Element;
|
|
148
148
|
|
|
@@ -154,9 +154,10 @@ declare type InkChipGroupProps = {
|
|
|
154
154
|
};
|
|
155
155
|
|
|
156
156
|
declare type InkChipPropType = {
|
|
157
|
-
maxWidth?: number;
|
|
157
|
+
maxWidth?: number | null;
|
|
158
158
|
chipProps: ChipProps;
|
|
159
159
|
size?: 'small' | 'medium';
|
|
160
|
+
expandOnHover?: boolean;
|
|
160
161
|
};
|
|
161
162
|
|
|
162
163
|
export declare function InkDialog({ Title, Content, Actions, onClose, hideCloseButton, ActionsProp, ...props }: InkDialogProps): JSX_2.Element;
|