@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
60 lines • 2.06 kB
JavaScript
import { InputHelpMessagePosition, InputState, LABEL_TYPE, } from '../../../../../components/input/types/inputTheme';
import { DeviceBreakpointsType } from '../../../../../types/breakpoints/breakpoints';
import { PopoverVariantType } from '../popover/variants';
import { ActionBottomSheetVariantType } from '../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 getInputDateStyles = (COLORS) => {
return {
[]: {
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
[]: {
...commonProps,
},
},
};
};
//# sourceMappingURL=styles.js.map