asma-core-ui 2.18.35 → 2.18.36
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/Readme.md +2 -2
- package/dist/asma-core-ui.es.js +6 -6
- package/dist/src/components/custom/widget/widget-title/StyledWidgetTitle.d.ts +2 -5
- package/dist/src/components/data-display/badge/StyledBadge.d.ts +1 -5
- package/dist/src/components/data-display/chip/StyledChip.d.ts +1 -4
- package/dist/src/components/data-display/tooltip/StyledTooltip.d.ts +1 -4
- package/dist/src/components/data-display/typography/StyledTypography.d.ts +1 -4
- package/dist/src/components/data-grid/StyledDataGrid.d.ts +1 -1
- package/dist/src/components/data-grid/StyledGridActionsCellItem.d.ts +1 -3
- package/dist/src/components/data-grid/types.d.ts +0 -1
- package/dist/src/components/feedback/alert/StyledAlert.d.ts +1 -3
- package/dist/src/components/feedback/alert/StyledAlertTitle.d.ts +1 -3
- package/dist/src/components/feedback/dialog/StyledDialog.d.ts +1 -2
- package/dist/src/components/feedback/dialog/StyledDialogActions.d.ts +1 -3
- package/dist/src/components/feedback/dialog/StyledDialogContent.d.ts +1 -3
- package/dist/src/components/feedback/dialog/StyledDialogTitle.d.ts +1 -4
- package/dist/src/components/feedback/snack-bar/StyledAlertSnackbar.d.ts +0 -1
- package/dist/src/components/feedback/snack-bar/StyledSnackbar.d.ts +1 -3
- package/dist/src/components/inputs/checkbox/StyledCheckbox.d.ts +1 -3
- package/dist/src/components/inputs/checkbox/StyledCheckbox.stories.d.ts +1 -4
- package/dist/src/components/inputs/date-picker/StyledCalendarPicker.d.ts +1 -3
- package/dist/src/components/inputs/date-picker/StyledDatePicker.d.ts +1 -2
- package/dist/src/components/inputs/input-field/StyledInputField.d.ts +3 -4
- package/dist/src/components/inputs/radio-button/StyledRadio.d.ts +1 -3
- package/dist/src/components/inputs/radio-button/StyledRadioGroup.d.ts +1 -3
- package/dist/src/components/inputs/rich-input/RichInput.d.ts +0 -1
- package/dist/src/components/inputs/select/StyledSelect.d.ts +2 -3
- package/dist/src/components/inputs/select/StyledSelectItem.d.ts +1 -31
- package/dist/src/components/inputs/select-autocomplete/StyledSelectAutocomplete.d.ts +1 -1
- package/dist/src/components/inputs/slider/StyledSlider.d.ts +1 -4
- package/dist/src/components/inputs/switch/StyledSwitch.d.ts +1 -3
- package/dist/src/components/inputs/time-picker/StyledTimePicker.d.ts +0 -1
- package/dist/src/components/inputs/time-picker/components/TimePickerBody.d.ts +1 -3
- package/dist/src/components/inputs/time-picker/components/TimePickerColumn.d.ts +1 -3
- package/dist/src/components/layout/container/StyledContainer.d.ts +1 -3
- package/dist/src/components/miscellaneous/StyledFormControl.d.ts +1 -4
- package/dist/src/components/miscellaneous/StyledFormControlLabel.d.ts +1 -3
- package/dist/src/components/miscellaneous/StyledFormGroup.d.ts +1 -3
- package/dist/src/components/miscellaneous/StyledFormHelperText.d.ts +1 -4
- package/dist/src/components/miscellaneous/StyledFormLabel.d.ts +1 -6
- package/dist/src/components/miscellaneous/StyledInputLabel.d.ts +1 -4
- package/dist/src/components/miscellaneous/StyledStack.d.ts +1 -4
- package/dist/src/components/navigation/drawer/StyledDrawer.d.ts +1 -3
- package/dist/src/components/navigation/menu/StyledMenu.d.ts +1 -3
- package/dist/src/components/navigation/menu/StyledMenuItem.d.ts +1 -31
- package/dist/src/components/navigation/menu/StyledMenuList.d.ts +1 -20
- package/dist/src/components/navigation/tabs/StyledTab.d.ts +1 -3
- package/dist/src/components/navigation/tabs/StyledTabs.d.ts +1 -4
- package/dist/src/components/surfaces/accordion/StyledAccordion.d.ts +1 -6
- package/dist/src/components/surfaces/accordion/StyledAccordionDetails.d.ts +1 -3
- package/dist/src/components/surfaces/accordion/StyledAccordionSummary.d.ts +1 -27
- package/dist/src/components/table/StyledTable.d.ts +1 -1
- package/dist/src/components/table/types.d.ts +0 -1
- package/dist/src/components/utils/popover/StyledPopover.d.ts +1 -3
- package/package.json +1 -1
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { type BadgeProps } from '@mui/material';
|
|
3
|
-
export
|
|
4
|
-
dataTest?: string;
|
|
5
|
-
}
|
|
6
|
-
export declare const StyledBadge: React.FC<StyledBadgeProps>;
|
|
2
|
+
export declare const StyledBadge: ({ color, ...props }: BadgeProps) => JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import { type ChipProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledChip: ({ dataTest, ...props }: StyledChipProps) => JSX.Element;
|
|
2
|
+
export declare const StyledChip: (props: ChipProps) => JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import { type TooltipProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledTooltip: ({ dataTest, ...props }: StyledTooltipProps) => JSX.Element;
|
|
2
|
+
export declare const StyledTooltip: (props: TooltipProps) => JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import { type TypographyProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledTypography: ({ dataTest, ...props }: StyledTypographyProps) => JSX.Element;
|
|
2
|
+
export declare const StyledTypography: (props: TypographyProps) => JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { IBaseStyledDataGrid } from './types';
|
|
2
2
|
export declare const StyledDataGrid: {
|
|
3
|
-
(
|
|
3
|
+
(props: IBaseStyledDataGrid): JSX.Element;
|
|
4
4
|
defaultProps: {
|
|
5
5
|
disableHeaderPin: boolean;
|
|
6
6
|
disableRowActions: boolean;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
1
|
import { type GridActionsCellItemProps } from '@mui/x-data-grid';
|
|
2
2
|
import type { RefAttributes } from 'react';
|
|
3
|
-
export declare const StyledGridActionsCellItem: (
|
|
4
|
-
dataTest?: string | undefined;
|
|
5
|
-
}) => JSX.Element;
|
|
3
|
+
export declare const StyledGridActionsCellItem: (props: GridActionsCellItemProps & RefAttributes<HTMLButtonElement>) => JSX.Element;
|
|
@@ -5,6 +5,5 @@ export interface IBaseStyledDataGrid extends DataGridProps {
|
|
|
5
5
|
disableRowActions?: boolean;
|
|
6
6
|
disableHeaderPin?: boolean;
|
|
7
7
|
fixedColumns?: string[];
|
|
8
|
-
dataTest?: string;
|
|
9
8
|
rowActions?: (params: GridRowParams<any>) => ReactElement<GridActionsCellItemProps, string | JSXElementConstructor<any>>[];
|
|
10
9
|
}
|
|
@@ -1,4 +1,2 @@
|
|
|
1
1
|
import { type AlertTitleProps } from '@mui/material';
|
|
2
|
-
export declare const StyledAlertTitle: (
|
|
3
|
-
dataTest?: string | undefined;
|
|
4
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledAlertTitle: (props: AlertTitleProps) => JSX.Element;
|
|
@@ -3,6 +3,5 @@ import type { ReactNode } from 'react';
|
|
|
3
3
|
export interface IStyledDialogProps extends DialogProps {
|
|
4
4
|
onCloseText?: ReactNode;
|
|
5
5
|
showCloseIcon?: boolean;
|
|
6
|
-
dataTest?: string;
|
|
7
6
|
}
|
|
8
|
-
export declare const StyledDialog: ({ onCloseText, children, onClose,
|
|
7
|
+
export declare const StyledDialog: ({ onCloseText, children, onClose, showCloseIcon, ...rest }: IStyledDialogProps) => JSX.Element;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
1
|
import { type DialogActionsProps } from '@mui/material';
|
|
2
|
-
export declare const StyledDialogActions: (
|
|
3
|
-
dataTest?: string | undefined;
|
|
4
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledDialogActions: (props: DialogActionsProps) => JSX.Element;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
1
|
import { type DialogContentProps } from '@mui/material';
|
|
2
|
-
export declare const StyledDialogContent: ({ children, classes, className,
|
|
3
|
-
dataTest?: string | undefined;
|
|
4
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledDialogContent: ({ children, classes, className, ...rest }: DialogContentProps) => JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import type { DialogTitleProps } from '@mui/material/DialogTitle/DialogTitle';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledDialogTitle: ({ children, dataTest, ...rest }: StyledDialogTitleProps) => JSX.Element | null;
|
|
2
|
+
export declare const StyledDialogTitle: ({ children, ...rest }: DialogTitleProps) => JSX.Element | null;
|
|
@@ -6,7 +6,6 @@ interface StyledAlertSnackbarProps extends CustomContentProps {
|
|
|
6
6
|
alertClassName?: string;
|
|
7
7
|
alertVariant?: 'standard' | 'filled' | 'outlined';
|
|
8
8
|
closeButton?: boolean;
|
|
9
|
-
dataTest: string;
|
|
10
9
|
}
|
|
11
10
|
export declare const StyledAlertSnackbar: import("react").ForwardRefExoticComponent<StyledAlertSnackbarProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
11
|
export {};
|
|
@@ -1,4 +1,2 @@
|
|
|
1
1
|
import { type SnackbarProps } from '@mui/material';
|
|
2
|
-
export declare const StyledSnackbar: ({ children,
|
|
3
|
-
dataTest?: string | undefined;
|
|
4
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledSnackbar: ({ children, ...props }: SnackbarProps) => JSX.Element;
|
|
@@ -2,15 +2,12 @@
|
|
|
2
2
|
import type { StoryObj } from '@storybook/react';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: (
|
|
6
|
-
dataTest?: string | undefined;
|
|
7
|
-
}) => JSX.Element;
|
|
5
|
+
component: (props: import("@mui/material").CheckboxProps) => JSX.Element;
|
|
8
6
|
tags: string[];
|
|
9
7
|
argTypes: {};
|
|
10
8
|
args: {
|
|
11
9
|
disableRipple: true;
|
|
12
10
|
indeterminate: false;
|
|
13
|
-
dataTest: string;
|
|
14
11
|
};
|
|
15
12
|
};
|
|
16
13
|
export default meta;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { DayPicker } from 'react-day-picker';
|
|
3
3
|
export type CalendarProps = React.ComponentProps<typeof DayPicker>;
|
|
4
|
-
export declare const StyledCalendarPicker: ({
|
|
5
|
-
dataTest?: string | undefined;
|
|
6
|
-
}) => JSX.Element;
|
|
4
|
+
export declare const StyledCalendarPicker: ({ showOutsideDays, ...props }: CalendarProps) => JSX.Element;
|
|
@@ -5,7 +5,6 @@ type CommonDatePickerProps = {
|
|
|
5
5
|
inputClassName?: string;
|
|
6
6
|
onClear?: () => void;
|
|
7
7
|
allowClear?: boolean;
|
|
8
|
-
dataTest?: string;
|
|
9
8
|
} & CalendarProps;
|
|
10
9
|
type CompactRangeProps = {
|
|
11
10
|
mode: 'range';
|
|
@@ -33,5 +32,5 @@ type DefaultSingleProps = {
|
|
|
33
32
|
placeholderTo?: never;
|
|
34
33
|
};
|
|
35
34
|
export type DatePickerProps = CommonDatePickerProps & (CompactRangeProps | DefaultRangeProps | DefaultSingleProps);
|
|
36
|
-
export declare const StyledDatePicker: ({ placeholder, placeholderFrom, placeholderTo, compact, dateFormat, className, inputClassName, disabled, onClear, allowClear,
|
|
35
|
+
export declare const StyledDatePicker: ({ placeholder, placeholderFrom, placeholderTo, compact, dateFormat, className, inputClassName, disabled, onClear, allowClear, ...props }: DatePickerProps) => JSX.Element;
|
|
37
36
|
export {};
|
|
@@ -5,8 +5,7 @@ import { type TextFieldProps } from '@mui/material';
|
|
|
5
5
|
* inputRef to get Node of Input Element inside
|
|
6
6
|
*
|
|
7
7
|
*/
|
|
8
|
-
export declare const StyledInputField: (
|
|
9
|
-
allowClear?: boolean
|
|
10
|
-
onClear?: (
|
|
11
|
-
dataTest?: string | undefined;
|
|
8
|
+
export declare const StyledInputField: (props: TextFieldProps & {
|
|
9
|
+
allowClear?: boolean;
|
|
10
|
+
onClear?: () => void;
|
|
12
11
|
}) => JSX.Element;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
1
|
import { type RadioGroupProps } from '@mui/material';
|
|
2
|
-
export declare const StyledRadioGroup: (
|
|
3
|
-
dataTest?: string | undefined;
|
|
4
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledRadioGroup: (props: RadioGroupProps) => JSX.Element;
|
|
@@ -5,7 +5,6 @@ import { type SelectProps } from '@mui/material';
|
|
|
5
5
|
* inputRef to get Node of Input Element inside
|
|
6
6
|
*
|
|
7
7
|
*/
|
|
8
|
-
export declare const StyledSelect: (
|
|
9
|
-
allowClear?: boolean
|
|
10
|
-
dataTest?: string | undefined;
|
|
8
|
+
export declare const StyledSelect: (props: SelectProps & {
|
|
9
|
+
allowClear?: boolean;
|
|
11
10
|
}) => JSX.Element;
|
|
@@ -1,32 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { type MenuItemProps } from '@mui/material';
|
|
3
|
-
export declare const StyledSelectItem: (
|
|
4
|
-
autoFocus?: boolean | undefined;
|
|
5
|
-
classes?: Partial<import("@mui/material").MenuItemClasses> | undefined;
|
|
6
|
-
dense?: boolean | undefined;
|
|
7
|
-
disabled?: boolean | undefined;
|
|
8
|
-
disableGutters?: boolean | undefined;
|
|
9
|
-
divider?: boolean | undefined;
|
|
10
|
-
selected?: boolean | undefined;
|
|
11
|
-
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
12
|
-
} & Omit<{
|
|
13
|
-
action?: import("react").Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
14
|
-
centerRipple?: boolean | undefined;
|
|
15
|
-
children?: import("react").ReactNode;
|
|
16
|
-
classes?: Partial<import("@mui/material").ButtonBaseClasses> | undefined;
|
|
17
|
-
disabled?: boolean | undefined;
|
|
18
|
-
disableRipple?: boolean | undefined;
|
|
19
|
-
disableTouchRipple?: boolean | undefined;
|
|
20
|
-
focusRipple?: boolean | undefined;
|
|
21
|
-
focusVisibleClassName?: string | undefined;
|
|
22
|
-
LinkComponent?: import("react").ElementType<any> | undefined;
|
|
23
|
-
onFocusVisible?: import("react").FocusEventHandler<any> | undefined;
|
|
24
|
-
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
25
|
-
tabIndex?: number | undefined;
|
|
26
|
-
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
27
|
-
touchRippleRef?: import("react").Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
28
|
-
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
|
|
29
|
-
ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
30
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "sx" | "children" | "autoFocus" | "tabIndex" | "disabled" | "action" | "selected" | "dense" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableGutters" | "divider"> & {
|
|
31
|
-
dataTest?: string | undefined;
|
|
32
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledSelectItem: (item: MenuItemProps) => JSX.Element;
|
|
@@ -6,6 +6,6 @@ import { type AutocompleteProps, type ChipTypeMap } from '@mui/material';
|
|
|
6
6
|
* inputRef to get Node of Input Element inside
|
|
7
7
|
*
|
|
8
8
|
*/
|
|
9
|
-
export declare function StyledSelectAutocomplete<T, Multiple extends boolean | undefined = false, DisableClearable extends boolean | undefined = false, FreeSolo extends boolean | undefined = false, ChipComponent extends React.ElementType = ChipTypeMap['defaultComponent']>(
|
|
9
|
+
export declare function StyledSelectAutocomplete<T, Multiple extends boolean | undefined = false, DisableClearable extends boolean | undefined = false, FreeSolo extends boolean | undefined = false, ChipComponent extends React.ElementType = ChipTypeMap['defaultComponent']>(props: AutocompleteProps<T, Multiple, DisableClearable, FreeSolo, ChipComponent> & {
|
|
10
10
|
dataTest: string;
|
|
11
11
|
}): JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import { type SliderProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledSlider: ({ dataTest, ...props }: StyledSliderProps) => JSX.Element;
|
|
2
|
+
export declare const StyledSlider: (props: SliderProps) => JSX.Element;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
1
|
import { type SwitchProps as _SwitchProps } from '@mui/material';
|
|
2
2
|
export type SwitchProps = _SwitchProps;
|
|
3
|
-
export declare const StyledSwitch: (
|
|
4
|
-
dataTest?: string | undefined;
|
|
5
|
-
}) => JSX.Element;
|
|
3
|
+
export declare const StyledSwitch: (props: SwitchProps) => JSX.Element;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { StyledTimePickerProps } from '../StyledTimePicker';
|
|
3
3
|
type TimePickerBodyProps = Omit<StyledTimePickerProps, 'placeholder' | 'disabled' | 'inputClassName'>;
|
|
4
|
-
export declare const TimePickerBody: React.FC<TimePickerBodyProps
|
|
5
|
-
dataTest?: string;
|
|
6
|
-
}>;
|
|
4
|
+
export declare const TimePickerBody: React.FC<TimePickerBodyProps>;
|
|
7
5
|
export {};
|
|
@@ -3,6 +3,4 @@ import type { StyledTimePickerProps } from '../StyledTimePicker';
|
|
|
3
3
|
export type TimePickerColumnProps = Omit<StyledTimePickerProps, 'placeholder' | 'disabled' | 'inputClassName'> & {
|
|
4
4
|
type: 'hours' | 'minutes';
|
|
5
5
|
};
|
|
6
|
-
export declare const TimePickerColumn: React.FC<TimePickerColumnProps
|
|
7
|
-
dataTest?: string;
|
|
8
|
-
}>;
|
|
6
|
+
export declare const TimePickerColumn: React.FC<TimePickerColumnProps>;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import { type FormControlProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledFormControl: ({ dataTest, ...props }: StyledFormControlProps) => JSX.Element;
|
|
2
|
+
export declare const StyledFormControl: (props: FormControlProps) => JSX.Element;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
1
|
import { type FormControlLabelProps } from '@mui/material';
|
|
2
|
-
export declare const StyledFormControlLabel: (
|
|
3
|
-
dataTest?: string | undefined;
|
|
4
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledFormControlLabel: (props: FormControlLabelProps) => JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import { type FormHelperTextProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledFormHelperText: ({ dataTest, ...props }: StyledFormHelperTextProps) => JSX.Element;
|
|
2
|
+
export declare const StyledFormHelperText: (props: FormHelperTextProps) => JSX.Element;
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { type FormLabelProps } from '@mui/material';
|
|
3
|
-
export declare const StyledFormLabel: (
|
|
4
|
-
ref?: ((instance: HTMLLabelElement | null) => void) | import("react").RefObject<HTMLLabelElement> | null | undefined;
|
|
5
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "form" | "slot" | "title" | "color" | "sx" | "children" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "error" | "disabled" | "required" | "htmlFor" | "filled" | "focused"> & {
|
|
6
|
-
dataTest?: string | undefined;
|
|
7
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledFormLabel: (props: FormLabelProps) => JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import { type InputLabelProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledInputLabel: ({ dataTest, ...props }: StyledInputLabelProps) => JSX.Element;
|
|
2
|
+
export declare const StyledInputLabel: (props: InputLabelProps) => JSX.Element;
|
|
@@ -1,5 +1,2 @@
|
|
|
1
1
|
import { type StackProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledStack: ({ dataTest, ...props }: StyledStackProps) => JSX.Element;
|
|
2
|
+
export declare const StyledStack: (props: StackProps) => JSX.Element;
|
|
@@ -1,32 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { type MenuItemProps } from '@mui/material';
|
|
3
|
-
export declare const StyledMenuItem: (
|
|
4
|
-
autoFocus?: boolean | undefined;
|
|
5
|
-
classes?: Partial<import("@mui/material").MenuItemClasses> | undefined;
|
|
6
|
-
dense?: boolean | undefined;
|
|
7
|
-
disabled?: boolean | undefined;
|
|
8
|
-
disableGutters?: boolean | undefined;
|
|
9
|
-
divider?: boolean | undefined;
|
|
10
|
-
selected?: boolean | undefined;
|
|
11
|
-
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
12
|
-
} & Omit<{
|
|
13
|
-
action?: import("react").Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
14
|
-
centerRipple?: boolean | undefined;
|
|
15
|
-
children?: import("react").ReactNode;
|
|
16
|
-
classes?: Partial<import("@mui/material").ButtonBaseClasses> | undefined;
|
|
17
|
-
disabled?: boolean | undefined;
|
|
18
|
-
disableRipple?: boolean | undefined;
|
|
19
|
-
disableTouchRipple?: boolean | undefined;
|
|
20
|
-
focusRipple?: boolean | undefined;
|
|
21
|
-
focusVisibleClassName?: string | undefined;
|
|
22
|
-
LinkComponent?: import("react").ElementType<any> | undefined;
|
|
23
|
-
onFocusVisible?: import("react").FocusEventHandler<any> | undefined;
|
|
24
|
-
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
25
|
-
tabIndex?: number | undefined;
|
|
26
|
-
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
27
|
-
touchRippleRef?: import("react").Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
28
|
-
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
|
|
29
|
-
ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
30
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "sx" | "children" | "autoFocus" | "tabIndex" | "disabled" | "action" | "selected" | "dense" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableGutters" | "divider"> & {
|
|
31
|
-
dataTest?: string | undefined;
|
|
32
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledMenuItem: (props: MenuItemProps) => JSX.Element;
|
|
@@ -1,21 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { type MenuListProps } from '@mui/material';
|
|
3
|
-
export declare const StyledMenuList: (
|
|
4
|
-
autoFocus?: boolean | undefined;
|
|
5
|
-
autoFocusItem?: boolean | undefined;
|
|
6
|
-
children?: import("react").ReactNode;
|
|
7
|
-
disabledItemsFocusable?: boolean | undefined;
|
|
8
|
-
disableListWrap?: boolean | undefined;
|
|
9
|
-
variant?: "menu" | "selectedMenu" | undefined;
|
|
10
|
-
} & {
|
|
11
|
-
children?: import("react").ReactNode;
|
|
12
|
-
classes?: Partial<import("@mui/material").ListClasses> | undefined;
|
|
13
|
-
dense?: boolean | undefined;
|
|
14
|
-
disablePadding?: boolean | undefined;
|
|
15
|
-
subheader?: import("react").ReactNode;
|
|
16
|
-
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
17
|
-
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & {
|
|
18
|
-
ref?: ((instance: HTMLUListElement | null) => void) | import("react").RefObject<HTMLUListElement> | null | undefined;
|
|
19
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "sx" | "variant" | "children" | "autoFocus" | "dense" | "disabledItemsFocusable" | "disableListWrap" | "autoFocusItem" | "disablePadding" | "subheader"> & {
|
|
20
|
-
dataTest?: string | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledMenuList: (props: MenuListProps) => JSX.Element;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
1
|
import { type TabsProps } from '@mui/material';
|
|
2
2
|
import type { FC } from 'react';
|
|
3
|
-
export
|
|
4
|
-
dataTest?: string;
|
|
5
|
-
}
|
|
6
|
-
export declare const StyledTabs: FC<StyledTabsProps>;
|
|
3
|
+
export declare const StyledTabs: FC<TabsProps>;
|
|
@@ -1,7 +1,2 @@
|
|
|
1
1
|
import { type AccordionProps } from '@mui/material';
|
|
2
|
-
export
|
|
3
|
-
dataTest?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const StyledAccordion: ({ dataTest, ...props }: StyledAccordionProps & {
|
|
6
|
-
dataTest?: string | undefined;
|
|
7
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledAccordion: (props: AccordionProps) => JSX.Element;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
1
|
import { type AccordionDetailsProps } from '@mui/material';
|
|
2
|
-
export declare const StyledAccordionDetails: (
|
|
3
|
-
dataTest?: string | undefined;
|
|
4
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledAccordionDetails: (props: AccordionDetailsProps) => JSX.Element;
|
|
@@ -1,28 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { type AccordionSummaryProps } from '@mui/material';
|
|
3
|
-
export declare const StyledAccordionSummary: (
|
|
4
|
-
children?: import("react").ReactNode;
|
|
5
|
-
classes?: Partial<import("@mui/material").AccordionSummaryClasses> | undefined;
|
|
6
|
-
expandIcon?: import("react").ReactNode;
|
|
7
|
-
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
8
|
-
} & Omit<{
|
|
9
|
-
action?: import("react").Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
10
|
-
centerRipple?: boolean | undefined;
|
|
11
|
-
children?: import("react").ReactNode;
|
|
12
|
-
classes?: Partial<import("@mui/material").ButtonBaseClasses> | undefined;
|
|
13
|
-
disabled?: boolean | undefined;
|
|
14
|
-
disableRipple?: boolean | undefined;
|
|
15
|
-
disableTouchRipple?: boolean | undefined;
|
|
16
|
-
focusRipple?: boolean | undefined;
|
|
17
|
-
focusVisibleClassName?: string | undefined;
|
|
18
|
-
LinkComponent?: import("react").ElementType<any> | undefined;
|
|
19
|
-
onFocusVisible?: import("react").FocusEventHandler<any> | undefined;
|
|
20
|
-
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
21
|
-
tabIndex?: number | undefined;
|
|
22
|
-
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
23
|
-
touchRippleRef?: import("react").Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
24
|
-
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
25
|
-
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
26
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "sx" | "children" | "tabIndex" | "disabled" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "expandIcon"> & {
|
|
27
|
-
dataTest?: string | undefined;
|
|
28
|
-
}) => JSX.Element;
|
|
2
|
+
export declare const StyledAccordionSummary: (props: AccordionSummaryProps) => JSX.Element;
|
|
@@ -2,4 +2,4 @@ import type { StyledTableProps } from './types';
|
|
|
2
2
|
export declare const SELECT_COLUMN_ID = "select";
|
|
3
3
|
export declare const StyledTable: <TData extends {
|
|
4
4
|
id: string | number;
|
|
5
|
-
}, TCustomData = Record<string, unknown>>({ actions, autoSize, columns, data, customSubRowData, initialState, enableRowSelection, headerPin, loading, noRowsOverlay, tableInstanceRef, className, rowHeight, tdClassName, thClassName, getRowClassName, onRowClick, renderSubRows,
|
|
5
|
+
}, TCustomData = Record<string, unknown>>({ actions, autoSize, columns, data, customSubRowData, initialState, enableRowSelection, headerPin, loading, noRowsOverlay, tableInstanceRef, className, rowHeight, tdClassName, thClassName, getRowClassName, onRowClick, renderSubRows, ...rest }: StyledTableProps<TData, TCustomData>) => JSX.Element;
|