@itilite/lumina-ui 0.0.4 → 0.0.6

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.
Files changed (50) hide show
  1. package/dist/cjs/index.css +1 -0
  2. package/dist/cjs/index.js +22861 -0
  3. package/dist/cjs/index.js.map +1 -0
  4. package/dist/cjs/types/components/Button/Button.d.ts +4 -0
  5. package/dist/cjs/types/components/Button/index.d.ts +1 -0
  6. package/dist/cjs/types/components/Button/types.d.ts +18 -0
  7. package/dist/cjs/types/components/Checkbox/Checkbox.d.ts +4 -0
  8. package/dist/cjs/types/components/Checkbox/index.d.ts +1 -0
  9. package/dist/cjs/types/components/Checkbox/types.d.ts +11 -0
  10. package/dist/cjs/types/components/Modal/Modal.d.ts +3 -0
  11. package/dist/cjs/types/components/Modal/index.d.ts +1 -0
  12. package/dist/cjs/types/components/Modal/types.d.ts +21 -0
  13. package/dist/cjs/types/components/Radio/Radio.d.ts +4 -0
  14. package/dist/cjs/types/components/Radio/index.d.ts +1 -0
  15. package/dist/cjs/types/components/Radio/types.d.ts +11 -0
  16. package/dist/cjs/types/components/Switch/Switch.d.ts +4 -0
  17. package/dist/cjs/types/components/Switch/index.d.ts +1 -0
  18. package/dist/cjs/types/components/Switch/types.d.ts +7 -0
  19. package/dist/cjs/types/components/Tooltip/Tooltip.d.ts +3 -0
  20. package/dist/cjs/types/components/Tooltip/index.d.ts +1 -0
  21. package/dist/cjs/types/components/Tooltip/types.d.ts +8 -0
  22. package/dist/cjs/types/components/index.d.ts +6 -0
  23. package/dist/cjs/types/index.d.ts +1 -0
  24. package/dist/esm/index.css +1 -0
  25. package/dist/esm/index.js +22836 -0
  26. package/dist/esm/index.js.map +1 -0
  27. package/dist/esm/types/components/Button/Button.d.ts +4 -0
  28. package/dist/esm/types/components/Button/index.d.ts +1 -0
  29. package/dist/esm/types/components/Button/types.d.ts +18 -0
  30. package/dist/esm/types/components/Checkbox/Checkbox.d.ts +4 -0
  31. package/dist/esm/types/components/Checkbox/index.d.ts +1 -0
  32. package/dist/esm/types/components/Checkbox/types.d.ts +11 -0
  33. package/dist/esm/types/components/Modal/Modal.d.ts +3 -0
  34. package/dist/esm/types/components/Modal/index.d.ts +1 -0
  35. package/dist/esm/types/components/Modal/types.d.ts +21 -0
  36. package/dist/esm/types/components/Radio/Radio.d.ts +4 -0
  37. package/dist/esm/types/components/Radio/index.d.ts +1 -0
  38. package/dist/esm/types/components/Radio/types.d.ts +11 -0
  39. package/dist/esm/types/components/Switch/Switch.d.ts +4 -0
  40. package/dist/esm/types/components/Switch/index.d.ts +1 -0
  41. package/dist/esm/types/components/Switch/types.d.ts +7 -0
  42. package/dist/esm/types/components/Tooltip/Tooltip.d.ts +3 -0
  43. package/dist/esm/types/components/Tooltip/index.d.ts +1 -0
  44. package/dist/esm/types/components/Tooltip/types.d.ts +8 -0
  45. package/dist/esm/types/components/index.d.ts +6 -0
  46. package/dist/esm/types/index.d.ts +1 -0
  47. package/package.json +89 -94
  48. package/src/components/Button/Button.module.scss +2 -2
  49. package/src/components/Button/Button.tsx +4 -1
  50. package/src/components/Button/types.ts +1 -0
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { ButtonProps } from "./types";
3
+ declare const Button: React.FC<ButtonProps>;
4
+ export default Button;
@@ -0,0 +1 @@
1
+ export { default as Button } from "./Button";
@@ -0,0 +1,18 @@
1
+ export interface ButtonProps {
2
+ id?: string;
3
+ name?: string;
4
+ type?: "primary" | "secondary" | "critical" | undefined;
5
+ variant?: "subtle" | "text" | "link";
6
+ size?: "large" | "small";
7
+ shape?: "circle" | "default" | "round";
8
+ icon?: React.ReactNode;
9
+ iconPosition?: "start" | "end";
10
+ className?: string;
11
+ children?: React.ReactNode;
12
+ onClick?: (event: React.MouseEvent<HTMLElement>) => void;
13
+ href?: string;
14
+ disabled?: boolean;
15
+ loading?: boolean;
16
+ onHoverUnderline?: boolean;
17
+ analytics?: Record<string, unknown>;
18
+ }
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { CheckboxProps } from "./types";
3
+ declare const Checkbox: React.FC<CheckboxProps>;
4
+ export default Checkbox;
@@ -0,0 +1 @@
1
+ export { default as Checkbox } from "./Checkbox";
@@ -0,0 +1,11 @@
1
+ import { CheckboxChangeEvent } from 'antd/es/checkbox';
2
+ export interface CheckboxProps {
3
+ checked?: boolean;
4
+ className?: string;
5
+ onChange?: (e: CheckboxChangeEvent) => void;
6
+ children?: React.ReactNode;
7
+ size?: "large" | "small" | "medium";
8
+ variant?: "normal" | "emphasized";
9
+ disabled?: boolean;
10
+ indeterminate?: boolean;
11
+ }
@@ -0,0 +1,3 @@
1
+ import { ModalProps } from "./types";
2
+ declare const Modal: React.FC<ModalProps>;
3
+ export default Modal;
@@ -0,0 +1 @@
1
+ export { default as Modal } from "./Modal";
@@ -0,0 +1,21 @@
1
+ export interface ModalProps {
2
+ className?: string | undefined;
3
+ title?: string | undefined;
4
+ children?: React.ReactNode;
5
+ open?: boolean;
6
+ handleOk?: ((e: React.MouseEvent<HTMLButtonElement>) => void) | undefined;
7
+ handleCancel?: ((e: React.MouseEvent<HTMLButtonElement>) => void) | undefined;
8
+ okText?: string | undefined;
9
+ cancelText?: string | undefined;
10
+ closeIcon?: React.ReactNode;
11
+ bodyClassName?: string | undefined;
12
+ outsideClickDisable?: boolean;
13
+ hideCross?: boolean;
14
+ okButtonLoading?: boolean;
15
+ okButtonDisabled?: boolean;
16
+ variant?: "primary" | "secondary";
17
+ okBtnClasses?: string | undefined;
18
+ cancelButtonAnalytics?: object | undefined;
19
+ okButtonAnalytics?: object | undefined;
20
+ footerMargintopDisable?: boolean;
21
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { RadioProps } from "./types";
3
+ declare const Radio: React.FC<RadioProps>;
4
+ export default Radio;
@@ -0,0 +1 @@
1
+ export { default as Radio } from "./Radio";
@@ -0,0 +1,11 @@
1
+ import { RadioChangeEvent } from "antd/lib/radio";
2
+ export interface RadioProps {
3
+ checked?: boolean;
4
+ className?: string;
5
+ onChange?: (event: RadioChangeEvent) => void;
6
+ children?: React.ReactNode;
7
+ size?: "large" | "small" | "medium";
8
+ variant?: "normal" | "emphasized";
9
+ disabled?: boolean;
10
+ extra?: React.ReactNode;
11
+ }
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { SwitchProps } from "./types";
3
+ declare const Switch: React.FC<SwitchProps>;
4
+ export default Switch;
@@ -0,0 +1 @@
1
+ export { default as Switch } from "./Switch";
@@ -0,0 +1,7 @@
1
+ export interface SwitchProps {
2
+ size?: "default" | "small";
3
+ className?: string | undefined;
4
+ onChange?: (checked: boolean, event: React.MouseEvent<HTMLButtonElement> | React.KeyboardEvent<HTMLButtonElement>) => void;
5
+ disabled?: boolean;
6
+ checked?: boolean;
7
+ }
@@ -0,0 +1,3 @@
1
+ import { TooltipProps } from "./types";
2
+ declare const Tooltip: React.FC<TooltipProps>;
3
+ export default Tooltip;
@@ -0,0 +1 @@
1
+ export { default as Tooltip } from "./Tooltip";
@@ -0,0 +1,8 @@
1
+ export interface TooltipProps {
2
+ children?: React.ReactNode;
3
+ title?: string | undefined;
4
+ placement?: "top" | "left" | "right" | "bottom" | "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom" | undefined;
5
+ color?: string | undefined;
6
+ className?: string | undefined;
7
+ mode?: "light" | "dark";
8
+ }
@@ -0,0 +1,6 @@
1
+ export * from "./Button";
2
+ export * from "./Switch";
3
+ export * from "./Modal";
4
+ export * from "./Tooltip";
5
+ export * from './Checkbox';
6
+ export * from './Radio';
@@ -0,0 +1 @@
1
+ export * from "./components";
@@ -0,0 +1 @@
1
+ .Button-module__button___18Bed{@apply tw-flex tw-justify-center tw-gap-1 tw-items-center tw-rounded-lg}.Button-module__button___18Bed.Button-module__size_large___Gohrm{height:56px;@apply tw-px-4}.Button-module__button___18Bed.Button-module__size_large___Gohrm.Button-module__shape_circle___1CtM2{width:56px}.Button-module__button___18Bed.Button-module__size_normal___Ym8Ah{height:40px;@apply tw-px-3}.Button-module__button___18Bed.Button-module__size_normal___Ym8Ah.Button-module__shape_circle___1CtM2{width:40px}.Button-module__button___18Bed.Button-module__size_small___mGHht{height:32px;@apply tw-px-2}.Button-module__button___18Bed.Button-module__size_small___mGHht.Button-module__shape_circle___1CtM2{width:32px}.Button-module__button___18Bed.Button-module__type_primary___WbRH0{border-width:1px;@apply tw-bg-color-action-primary;@apply tw-border;@apply tw-border-solid;@apply tw-border-color-border-primary-default;box-shadow:0 1px 0 0 rgba(17,24,39,.1)}.Button-module__button___18Bed.Button-module__type_primary___WbRH0.ant-btn-primary:active,.Button-module__button___18Bed.Button-module__type_primary___WbRH0.ant-btn-primary:hover{@apply tw-bg-color-action-primary;box-shadow:0 2px 4px 0 rgba(17,24,39,.1)}.Button-module__button___18Bed.Button-module__type_primary___WbRH0.Button-module__variant_subtle___G4bvs,.Button-module__button___18Bed.Button-module__type_primary___WbRH0.Button-module__variant_subtle___G4bvs:hover{@apply tw-text-color-text-primary-hover}.Button-module__button___18Bed.Button-module__type_primary___WbRH0:focus-visible{outline:2px solid rgba(236,93,37,.38)}.Button-module__button___18Bed.Button-module__type_primary___WbRH0.Button-module__variant_link___mo-UB,.Button-module__button___18Bed.Button-module__type_primary___WbRH0.Button-module__variant_link___mo-UB:hover,.Button-module__button___18Bed.Button-module__type_primary___WbRH0.Button-module__variant_subtle___G4bvs,.Button-module__button___18Bed.Button-module__type_primary___WbRH0.Button-module__variant_subtle___G4bvs:hover,.Button-module__button___18Bed.Button-module__type_primary___WbRH0.Button-module__variant_text___r7oFS,.Button-module__button___18Bed.Button-module__type_primary___WbRH0.Button-module__variant_text___r7oFS:hover{@apply tw-text-color-text-primary}.Button-module__button___18Bed.Button-module__type_secondary___HXHdT{border-style:solid;border-width:1px;@apply tw-bg-color-surface-dark;@apply tw-border-color-surface-dark;box-shadow:0 1px 0 0 rgba(17,24,39,.1)}.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.ant-btn-primary:active,.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.ant-btn-primary:hover{@apply tw-bg-color-surface-dark;box-shadow:0 2px 4px 0 rgba(17,24,39,.1)}.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.ant-btn-primary:focus-visible{outline:2px solid rgba(236,93,37,.38)}.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.Button-module__variant_link___mo-UB,.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.Button-module__variant_link___mo-UB:hover,.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.Button-module__variant_subtle___G4bvs,.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.Button-module__variant_subtle___G4bvs:hover,.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.Button-module__variant_text___r7oFS,.Button-module__button___18Bed.Button-module__type_secondary___HXHdT.Button-module__variant_text___r7oFS:hover{@apply tw-text-color-text-default}.Button-module__button___18Bed.Button-module__type_critical___Y0vJw{border-width:1px;@apply tw-bg-color-action-critical;@apply tw-border-solid;@apply tw-border-color-border-critical-default;box-shadow:0 1px 0 0 rgba(17,24,39,.1)}.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.ant-btn-primary:active,.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.ant-btn-primary:hover{@apply tw-bg-color-action-critical;box-shadow:0 2px 4px 0 rgba(17,24,39,.1)}.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.ant-btn-primary:focus-visible{outline:2px solid rgba(236,93,37,.38)}.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.Button-module__variant_link___mo-UB,.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.Button-module__variant_link___mo-UB:hover,.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.Button-module__variant_subtle___G4bvs,.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.Button-module__variant_subtle___G4bvs:hover,.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.Button-module__variant_text___r7oFS,.Button-module__button___18Bed.Button-module__type_critical___Y0vJw.Button-module__variant_text___r7oFS:hover{@apply tw-text-color-text-critical}.Button-module__button___18Bed.Button-module__variant_subtle___G4bvs{@apply tw-bg-color-white;@apply tw-border;@apply tw-border-solid;@apply tw-border-color-border-default-subtle;box-shadow:0 1px 0 0 rgba(17,24,39,.1)}.Button-module__button___18Bed.Button-module__variant_subtle___G4bvs.ant-btn-default:hover{box-shadow:0 2px 4px 0 rgba(17,24,39,.15);@apply tw-border-color-border-default-subtle}.Button-module__button___18Bed.Button-module__variant_subtle___G4bvs.ant-btn-default:focus-visible{outline:2px solid rgba(236,93,37,.38)}.Button-module__button___18Bed.Button-module__variant_text___r7oFS{@apply tw-bg-transparent;@apply tw-border-0;@apply tw-border-none;box-shadow:none}.Button-module__button___18Bed.Button-module__variant_text___r7oFS.ant-btn-default:hover{box-shadow:0 2px 4px 0 rgba(17,24,39,.15);@apply tw-border-none;@apply tw-bg-color-surface-default-subtle}.Button-module__button___18Bed.Button-module__variant_text___r7oFS.ant-btn-default:active{@apply tw-bg-color-surface-default-hover}.Button-module__button___18Bed.Button-module__variant_text___r7oFS.ant-btn:focus-visible{outline:2px solid rgba(236,93,37,.2)}.Button-module__button___18Bed.Button-module__variant_link___mo-UB,.Button-module__button___18Bed.Button-module__variant_link___mo-UB.ant-btn-default:hover{box-shadow:none;@apply tw-border-none;@apply tw-bg-transparent}.Button-module__button___18Bed.Button-module__variant_link___mo-UB.ant-btn-default:hover.Button-module__onHoverUnderline___OyHzj{text-decoration:underline}.Button-module__button___18Bed.Button-module__variant_link___mo-UB.ant-btn-default:active{@apply tw-bg-transparent}.Button-module__button___18Bed.Button-module__variant_link___mo-UB.ant-btn:focus-visible{outline:none}.Switch-module__switch___PKzsW.ant-switch.ant-switch-checked,.Switch-module__switch___PKzsW.ant-switch.ant-switch-checked:hover,.Switch-module__switch___PKzsW.ant-switch.ant-switch-small,.Switch-module__switch___PKzsW.ant-switch.ant-switch-small .ant-switch-handle{@apply tw-bg-color-action-primary}.Modal-module__modal___yNG-7.Modal-module__footerMargintopDisable___nTwgB .Modal-module__ant-modal-footer___6Tkcf{margin-top:0;@apply tw-mt-0}.Modal-module__modal___yNG-7 .ant-modal-footer .primaryFooter{padding:24px;@apply tw-p-6;@apply tw-flex tw-justify-end}.Modal-module__modal___yNG-7 .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___XrUvJ,.Modal-module__modal___yNG-7 .ant-modal-footer .primaryFooter .Modal-module__okBtn___QgnAx{min-width:92px}.Modal-module__modal___yNG-7 .ant-modal-footer .secondaryFooter{padding:24px;@apply tw-p-6;@apply tw-pt-0;@apply tw-flex tw-justify-end}.Modal-module__modal___yNG-7 .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___XrUvJ,.Modal-module__modal___yNG-7 .ant-modal-footer .secondaryFooter .Modal-module__okBtn___QgnAx{width:50%}.Modal-module__modal___yNG-7 .ant-modal-content{padding:0;@apply tw-rounded-xl;@apply tw-p-0}.Modal-module__modal___yNG-7 .ant-modal-content .ant-modal-header{@apply tw-p-4 sm:tw-p-6 tw-mb-0}.Modal-module__modal___yNG-7 .ant-modal-content .ant-modal-header .ant-modal-title{justify-content:flex-start;@apply tw-font-medium tw-text-font-size-50 tw-leading-7 tw-text-color-surface-dark tw-pr-5}.Modal-module__modal___yNG-7 .ant-modal-content .ant-modal-close,.Modal-module__modal___yNG-7 .ant-modal-content .ant-modal-close .ant-modal-close-x{display:flex;@apply tw-flex tw-items-center tw-justify-center}.Modal-module__modal___yNG-7 .ant-modal-content .ant-modal-body{max-height:80vh;overflow:auto;padding:0 1.5rem 1.5rem}.Modal-module__modal___yNG-7 .ant-modal-content .ant-modal-close{@apply tw-top-6 tw-right-6 tw-pb-1}.Modal-module__modal___yNG-7 .ant-btn-primary{margin-inline-start:.5rem;@apply tw-ms-2}.Tooltip-module__light___KHW7i .ant-tooltip-content .ant-tooltip-inner{background-color:#fff!important;color:#111827;@apply tw-text-color-border-dark-subtle tw-rounded-lg tw-p-2.5}.Tooltip-module__light___KHW7i .ant-tooltip-arrow:before{background-color:#fff!important}.Checkbox-module__checkbox___D0D4S{align-items:center;display:flex}.Checkbox-module__checkbox___D0D4S.Checkbox-module__size_small___xrnwa .ant-checkbox .ant-checkbox-inner{height:16px;width:16px}.Checkbox-module__checkbox___D0D4S.Checkbox-module__size_medium___V0L7S .ant-checkbox .ant-checkbox-inner{height:20px;width:20px}.Checkbox-module__checkbox___D0D4S.Checkbox-module__size_medium___V0L7S .ant-checkbox .ant-checkbox-inner:after{inset-inline-start:27%}.Checkbox-module__checkbox___D0D4S.Checkbox-module__size_large___3FuMo .ant-checkbox .ant-checkbox-inner{height:24px;width:24px}.Checkbox-module__checkbox___D0D4S.Checkbox-module__size_large___3FuMo .ant-checkbox .ant-checkbox-inner:after{inset-inline-start:33%}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_checked___pQSFb .ant-checkbox-checked .ant-checkbox-inner{background-color:#ec5d25;border-color:#ec5d25}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_checked___pQSFb.ant-checkbox-wrapper:hover .ant-checkbox-checked:not(.ant-checkbox-disabled) .ant-checkbox-inner{@apply tw-bg-color-text-primary-hover}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_checked___pQSFb .ant-checkbox-checked:focus-visible{outline:2px solid #0a65e7}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_checked___pQSFb.Checkbox-module__disabled___WagIC{@apply tw-cursor-not-allowed}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_checked___pQSFb.Checkbox-module__disabled___WagIC .ant-checkbox-checked .ant-checkbox-inner{background-color:#ec5d25;border-color:#ec5d25;opacity:.5}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_checked___pQSFb.Checkbox-module__disabled___WagIC .ant-checkbox-checked .ant-checkbox-inner:after{border-color:#fff}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_unchecked___nhedk .ant-checkbox .ant-checkbox-inner{border-color:#b6bac3}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_unchecked___nhedk .ant-checkbox:hover .ant-checkbox-inner{border-color:#6b7280}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_unchecked___nhedk .ant-checkbox:focus-visible{outline:2px solid #0a65e7}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_unchecked___nhedk.Checkbox-module__disabled___WagIC{@apply tw-cursor-not-allowed}.Checkbox-module__checkbox___D0D4S.Checkbox-module__type_unchecked___nhedk.Checkbox-module__disabled___WagIC .ant-checkbox .ant-checkbox-inner{background-color:#f9fafb;border-color:#b6bac3}.Checkbox-module__checkbox___D0D4S .ant-checkbox-disabled+span{color:#363e4f}.Checkbox-module__checkbox___D0D4S.Checkbox-module__variant_normal___2gugg{color:#363e4f;font-size:.875rem;font-weight:400;line-height:20px}.Checkbox-module__checkbox___D0D4S.Checkbox-module__variant_emphasized___tLXw0{color:#363e4f;font-size:.875rem;font-weight:500;line-height:20px}.Checkbox-module__checkbox___D0D4S.Checkbox-module__variant_indeterminate___swxxo.Checkbox-module__disabled___WagIC .ant-checkbox-indeterminate .ant-checkbox-inner{background-color:#ec5d25;border-color:#ec5d25;opacity:.5}.Checkbox-module__checkbox___D0D4S.Checkbox-module__variant_indeterminate___swxxo.Checkbox-module__disabled___WagIC .ant-checkbox-indeterminate .ant-checkbox-inner:after{border-color:#fff}.Checkbox-module__checkbox___D0D4S.Checkbox-module__variant_indeterminate___swxxo .ant-checkbox-indeterminate .ant-checkbox-inner{background-color:#ec5d25!important;border-color:#ec5d25!important}.Checkbox-module__checkbox___D0D4S.Checkbox-module__variant_indeterminate___swxxo .ant-checkbox-indeterminate .ant-checkbox-inner:after{background:#fff;border-radius:4px;height:3px;inset-inline-start:50%;width:60%}.Radio-module__radio___qhO7H{align-items:center;display:flex}.Radio-module__radio___qhO7H.Radio-module__size_small___SUyKK .ant-radio .ant-radio-inner{height:16px;width:16px}.Radio-module__radio___qhO7H.Radio-module__size_medium___ew0Kp .ant-radio .ant-radio-inner{height:20px;width:20px}.Radio-module__radio___qhO7H.Radio-module__size_large___DOsUo .ant-radio .ant-radio-inner{height:24px;width:24px}.Radio-module__radio___qhO7H.Radio-module__type_checked___amYVs .ant-radio-checked .ant-radio-inner{background-color:#ec5d25;border-color:#ec5d25}.Radio-module__radio___qhO7H.Radio-module__type_checked___amYVs .ant-radio-checked:hover .ant-radio-inner{background-color:#b94710;border-color:#b94710}.Radio-module__radio___qhO7H.Radio-module__type_checked___amYVs .ant-radio-checked:focus-visible{outline:2px solid #0a65e7}.Radio-module__radio___qhO7H.Radio-module__type_checked___amYVs.Radio-module__disabled___RZ0be{@apply tw-cursor-not-allowed}.Radio-module__radio___qhO7H.Radio-module__type_checked___amYVs.Radio-module__disabled___RZ0be .ant-radio-checked .ant-radio-inner{background-color:#b6bac3;border-color:#b6bac3}.Radio-module__radio___qhO7H.Radio-module__type_checked___amYVs.Radio-module__disabled___RZ0be .ant-radio-checked .ant-radio-inner:after{background-color:#fff;transform:scale(.375)}.Radio-module__radio___qhO7H.Radio-module__type_unchecked___GQtug .ant-radio .ant-radio-inner{border-color:#b6bac3}.Radio-module__radio___qhO7H.Radio-module__type_unchecked___GQtug .ant-radio:hover .ant-radio-inner{border-color:#6b7280}.Radio-module__radio___qhO7H.Radio-module__type_unchecked___GQtug .ant-radio:focus-visible{outline:2px solid #0a65e7}.Radio-module__radio___qhO7H.Radio-module__type_unchecked___GQtug.Radio-module__disabled___RZ0be{@apply tw-cursor-not-allowed}.Radio-module__radio___qhO7H.Radio-module__type_unchecked___GQtug.Radio-module__disabled___RZ0be .ant-radio .ant-radio-inner{background-color:#f9fafb;border-color:#b6bac3}.Radio-module__radio___qhO7H.Radio-module__variant_normal___fJgIP{color:#363e4f;font-size:.875rem;font-weight:400;line-height:20px}.Radio-module__radio___qhO7H.Radio-module__variant_emphasized___Ih1mU{color:#363e4f;font-size:.875rem;font-weight:500;line-height:20px}