@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
66 lines • 2.2 kB
JavaScript
// types
import { InputHelpMessagePosition, InputState, LABEL_TYPE, } from '../../../../components/input/types/inputTheme';
import { DeviceBreakpointsType } from '../../../../types/breakpoints/breakpoints';
import { COLORS } from '../../foundations/colors';
import { ActionBottomSheetVariantType } from '../actionBottomSheet/variants';
import { PopoverVariantType } from '../popover/variants';
import { InputDateVariantType } from './variants';
InputState;
const commonProps = {
inputVariant: InputDateVariantType.DEFAULT,
helpMessage: {
position: InputHelpMessagePosition.TOP,
},
actionBottomSheetVariant: ActionBottomSheetVariantType.DEFAULT,
popoverVariant: {
[]: PopoverVariantType.INPUT_DROPDOWN_LEVEL_ONE,
[]: PopoverVariantType.INPUT_DROPDOWN_LEVEL_ONE,
[]: PopoverVariantType.INPUT_DROPDOWN_LEVEL_ONE,
},
useActionBottomSheet: {
[]: false,
[]: true,
[]: true,
},
label: {
type: LABEL_TYPE.STANDARD,
},
};
export const INPUT_DATE_STYLES = {
[]: {
[]: {
...commonProps,
inputIcon: {
color: COLORS.ACCENT.color_accent_default_icon_100,
},
},
[]: {
...commonProps,
},
[]: {
...commonProps,
inputIcon: {
color: COLORS.ACCENT.color_accent_default_icon_100,
},
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
},
};
//# sourceMappingURL=styles.js.map