asma-core-ui 1.9.8 → 1.9.9
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/feedback/dialog/StyledDialog.d.ts +1 -2
- package/dist/src/components/inputs/button/StyledButton.d.ts +1 -1
- package/dist/src/components/inputs/checkbox/StyledCheckbox.d.ts +4 -1
- package/dist/src/components/inputs/checkbox/StyledCheckbox.stories.d.ts +3 -1
- package/dist/src/components/inputs/input-field/StyledInputField.d.ts +4 -2
- package/dist/src/components/inputs/time-picker/StyledTimePicker.d.ts +1 -0
- package/dist/src/components/inputs/time-picker/components/TimePickerColumn.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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:
|
|
7
|
+
export declare const StyledDialog: ({ onCloseText, children, onClose, showCloseIcon, ...rest }: IStyledDialogProps) => JSX.Element;
|
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
import type { StoryObj } from '@storybook/react';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: (
|
|
5
|
+
component: import("react").FC<import("@mui/material").CheckboxProps & {
|
|
6
|
+
dataTest: string;
|
|
7
|
+
}>;
|
|
6
8
|
tags: string[];
|
|
7
9
|
argTypes: {};
|
|
8
10
|
args: {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { type TextFieldProps } from '@mui/material';
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
@@ -5,7 +6,8 @@ import { type TextFieldProps } from '@mui/material';
|
|
|
5
6
|
* inputRef to get Node of Input Element inside
|
|
6
7
|
*
|
|
7
8
|
*/
|
|
8
|
-
export declare const StyledInputField:
|
|
9
|
+
export declare const StyledInputField: React.FC<TextFieldProps & {
|
|
9
10
|
allowClear?: boolean;
|
|
10
11
|
onClear?: () => void;
|
|
11
|
-
|
|
12
|
+
dataTest: string;
|
|
13
|
+
}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { StyledTimePickerProps } from '../StyledTimePicker';
|
|
3
|
-
export type TimePickerColumnProps = Omit<StyledTimePickerProps, 'placeholder' | 'disabled' | 'inputClassName'> & {
|
|
3
|
+
export type TimePickerColumnProps = Omit<StyledTimePickerProps, 'placeholder' | 'disabled' | 'inputClassName' | 'dataTest'> & {
|
|
4
4
|
type: 'hours' | 'minutes';
|
|
5
5
|
};
|
|
6
6
|
export declare const TimePickerColumn: React.FC<TimePickerColumnProps>;
|