@movable/ui 2.13.2 → 2.13.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/components/Chip/InkChip.d.ts +2 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.mjs +363 -345
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ type InkChipPropType = {
|
|
|
4
4
|
chipProps: ChipProps;
|
|
5
5
|
size?: 'small' | 'medium';
|
|
6
6
|
expandOnHover?: boolean;
|
|
7
|
+
truncation?: 'end' | 'middle';
|
|
7
8
|
};
|
|
8
|
-
export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, }: InkChipPropType): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, truncation, }: InkChipPropType): import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
export {};
|
package/lib/index.d.ts
CHANGED
|
@@ -218,7 +218,7 @@ export declare type InkCheckboxGroupProps = {
|
|
|
218
218
|
helperText?: string;
|
|
219
219
|
};
|
|
220
220
|
|
|
221
|
-
export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, }: InkChipPropType): JSX_2.Element;
|
|
221
|
+
export declare function InkChip({ maxWidth, chipProps, size, expandOnHover, truncation, }: InkChipPropType): JSX_2.Element;
|
|
222
222
|
|
|
223
223
|
export declare function InkChipGroup({ chipList, numTagsToDisplay, size, maxChipWidth, }: InkChipGroupProps): JSX_2.Element;
|
|
224
224
|
|
|
@@ -234,6 +234,7 @@ declare type InkChipPropType = {
|
|
|
234
234
|
chipProps: ChipProps;
|
|
235
235
|
size?: 'small' | 'medium';
|
|
236
236
|
expandOnHover?: boolean;
|
|
237
|
+
truncation?: 'end' | 'middle';
|
|
237
238
|
};
|
|
238
239
|
|
|
239
240
|
export declare function InkDialog({ Title, Content, Actions, onClose, hideCloseButton, ActionsProp, ...props }: InkDialogProps): JSX_2.Element;
|