@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.
@@ -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 {};
@@ -0,0 +1,6 @@
1
+ import { SxProps } from '@mui/material';
2
+ type InternalUseOnlyProp = {
3
+ sx?: SxProps;
4
+ };
5
+ export declare function InternalUseOnlyLabel({ sx }: InternalUseOnlyProp): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,2 @@
1
+ export { InternalUseOnlyLabel } from './InternalUseOnlyLabel';
2
+ export { InternalUseOnlyAlert } from './InternalUseOnlyAlert';
@@ -21,3 +21,4 @@ export { InkDrawer } from './InkDrawer';
21
21
  export * from './InkCheckboxGroup';
22
22
  export * from './InkRadioGroup';
23
23
  export * from './InkTextField';
24
+ export { InternalUseOnlyLabel, InternalUseOnlyAlert, } from './InternalUseOnlyIndicators';
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;