asma-core-ui 2.19.0 → 2.19.1
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/dist/asma-core-ui.es.js +3 -3
- package/dist/src/components/data-display/badge/StyledBadge.d.ts +4 -1
- package/dist/src/components/data-display/chip/StyledChip.d.ts +4 -1
- package/dist/src/components/feedback/dialog/StyledDialog.d.ts +2 -1
- package/dist/src/components/inputs/radio-button/StyledRadio.d.ts +3 -1
- package/dist/src/components/inputs/radio-button/StyledRadioGroup.d.ts +3 -1
- package/dist/src/components/inputs/rich-input/RichInput.d.ts +1 -0
- package/dist/src/components/inputs/slider/StyledSlider.d.ts +4 -1
- package/dist/src/components/inputs/switch/StyledSwitch.d.ts +3 -1
- package/package.json +1 -1
|
@@ -3,5 +3,6 @@ import type { ReactNode } from 'react';
|
|
|
3
3
|
export interface IStyledDialogProps extends DialogProps {
|
|
4
4
|
onCloseText?: ReactNode;
|
|
5
5
|
showCloseIcon?: boolean;
|
|
6
|
+
dataTest: string;
|
|
6
7
|
}
|
|
7
|
-
export declare const StyledDialog:
|
|
8
|
+
export declare const StyledDialog: React.FC<IStyledDialogProps>;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
import { type SliderProps } from '@mui/material';
|
|
2
|
-
export
|
|
2
|
+
export interface StyledSliderProps extends SliderProps {
|
|
3
|
+
dataTest: string;
|
|
4
|
+
}
|
|
5
|
+
export declare const StyledSlider: ({ dataTest, ...props }: StyledSliderProps) => JSX.Element;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { type SwitchProps as _SwitchProps } from '@mui/material';
|
|
2
2
|
export type SwitchProps = _SwitchProps;
|
|
3
|
-
export declare const StyledSwitch: (props:
|
|
3
|
+
export declare const StyledSwitch: ({ dataTest, ...props }: _SwitchProps & {
|
|
4
|
+
dataTest: string;
|
|
5
|
+
}) => JSX.Element;
|