@movable/ui 2.5.2 → 2.6.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 +11 -2
- package/lib/index.mjs +5894 -5263
- package/lib/index.mjs.map +1 -1
- package/package.json +4 -2
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;
|
|
@@ -375,6 +376,12 @@ declare type InkWorkflowHeaderProps = {
|
|
|
375
376
|
ButtonGroup?: JSX.Element | ActionButtonPropType;
|
|
376
377
|
};
|
|
377
378
|
|
|
379
|
+
declare type IPageWrapperProps = {
|
|
380
|
+
title: string;
|
|
381
|
+
addTitleSuffix?: boolean;
|
|
382
|
+
description?: string;
|
|
383
|
+
};
|
|
384
|
+
|
|
378
385
|
declare type LayoutDetailsProps = GridProps & {
|
|
379
386
|
Header: JSX.Element;
|
|
380
387
|
children: React.ReactNode;
|
|
@@ -418,6 +425,8 @@ declare type PageHeaderActionButtonsProps = {
|
|
|
418
425
|
dropdownAction?: DropdownActionType;
|
|
419
426
|
};
|
|
420
427
|
|
|
428
|
+
export declare const PageWrapper: ({ title, addTitleSuffix, description, children, }: PropsWithChildren<IPageWrapperProps>) => JSX_2.Element;
|
|
429
|
+
|
|
421
430
|
declare type PrimaryButtonType = ButtonProps & {
|
|
422
431
|
label: string;
|
|
423
432
|
loading?: boolean;
|