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