@movable/ui 2.12.2 → 2.12.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/InternalUseOnlyIndicators/InternalUseOnlyAlert.d.ts +8 -0
- package/lib/components/InternalUseOnlyIndicators/InternalUseOnlyLabel.d.ts +6 -0
- package/lib/components/InternalUseOnlyIndicators/index.d.ts +2 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/index.d.ts +14 -0
- package/lib/index.mjs +1781 -1771
- package/lib/index.mjs.map +1 -1
- package/package.json +2 -1
- package/lib/components/Header/InternalUseOnlyLabel.d.ts +0 -6
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material';
|
|
2
|
+
type InternalUseOnlyAlertProp = {
|
|
3
|
+
message?: string;
|
|
4
|
+
sx?: SxProps;
|
|
5
|
+
messageSx?: SxProps;
|
|
6
|
+
};
|
|
7
|
+
export declare function InternalUseOnlyAlert({ message, sx, messageSx, }: InternalUseOnlyAlertProp): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
package/lib/index.d.ts
CHANGED
|
@@ -474,6 +474,20 @@ declare type InkWorkflowHeaderProps = {
|
|
|
474
474
|
ButtonGroup?: JSX.Element | ActionButtonPropType;
|
|
475
475
|
};
|
|
476
476
|
|
|
477
|
+
export declare function InternalUseOnlyAlert({ message, sx, messageSx, }: InternalUseOnlyAlertProp): JSX_2.Element;
|
|
478
|
+
|
|
479
|
+
declare type InternalUseOnlyAlertProp = {
|
|
480
|
+
message?: string;
|
|
481
|
+
sx?: SxProps;
|
|
482
|
+
messageSx?: SxProps;
|
|
483
|
+
};
|
|
484
|
+
|
|
485
|
+
export declare function InternalUseOnlyLabel({ sx }: InternalUseOnlyProp): JSX_2.Element;
|
|
486
|
+
|
|
487
|
+
declare type InternalUseOnlyProp = {
|
|
488
|
+
sx?: SxProps;
|
|
489
|
+
};
|
|
490
|
+
|
|
477
491
|
declare type IPageWrapperProps = {
|
|
478
492
|
title: string;
|
|
479
493
|
addTitleSuffix?: boolean;
|