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