@itilite/lumina-ui 1.1.6 → 1.1.8

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/index.js CHANGED
@@ -67,6 +67,7 @@ __export(index_exports, {
67
67
  Radio: () => Radio_default,
68
68
  RangePicker: () => RangePicker_default,
69
69
  Select: () => Select_default,
70
+ Slider: () => Slider_default,
70
71
  Switch: () => Switch_default,
71
72
  Tag: () => Tag_default,
72
73
  Tooltip: () => Tooltip_default
@@ -1130,7 +1131,8 @@ var Select = ({
1130
1131
  [isOpen, handleInputInteraction]
1131
1132
  );
1132
1133
  const InputWrapper = ({ children }) => {
1133
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Tooltip_default, { title: disabledTooltip, children });
1134
+ if (disabled && disabledTooltip)
1135
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Tooltip_default, { title: disabledTooltip, children });
1134
1136
  return children;
1135
1137
  };
1136
1138
  return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(InputWrapper, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
@@ -1930,6 +1932,75 @@ function CustomRangePicker(props) {
1930
1932
  }
1931
1933
  CustomRangePicker.displayName = "RangePicker";
1932
1934
  var RangePicker_default = CustomRangePicker;
1935
+
1936
+ // src/atom/Slider/Slider.tsx
1937
+ var import_antd9 = require("antd");
1938
+ var import_clsx10 = __toESM(require("clsx"));
1939
+
1940
+ // src/atom/Slider/Slider.module.scss
1941
+ var Slider_module_default = { "label": "Slider-module__label___9Uea-", "slider": "Slider-module__slider___JCS-c", "disableFill": "Slider-module__disableFill___rjbsy" };
1942
+
1943
+ // src/atom/Slider/Slider.tsx
1944
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1945
+ function Slider(props) {
1946
+ const {
1947
+ label = "",
1948
+ className = "",
1949
+ onChange,
1950
+ onAfterChange,
1951
+ defaultValue = [],
1952
+ value,
1953
+ step = 10,
1954
+ range = true,
1955
+ disabled = false,
1956
+ min,
1957
+ max,
1958
+ marks,
1959
+ dots,
1960
+ included,
1961
+ reverse,
1962
+ vertical,
1963
+ tipFormatter,
1964
+ tooltipVisible,
1965
+ tooltipPlacement,
1966
+ disableFill = false
1967
+ } = props;
1968
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_jsx_runtime16.Fragment, { children: [
1969
+ label && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: Slider_module_default.label, children: label }),
1970
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1971
+ import_antd9.Slider,
1972
+ {
1973
+ className: (0, import_clsx10.default)(
1974
+ Slider_module_default.slider,
1975
+ className,
1976
+ Slider_module_default[disableFill ? "disableFill" : ""]
1977
+ ),
1978
+ "data-testid": "lumina-slider",
1979
+ range,
1980
+ step,
1981
+ defaultValue,
1982
+ value,
1983
+ onChange,
1984
+ onAfterChange,
1985
+ disabled,
1986
+ min,
1987
+ max,
1988
+ marks,
1989
+ dots,
1990
+ included,
1991
+ reverse,
1992
+ vertical,
1993
+ tooltip: {
1994
+ formatter: tipFormatter,
1995
+ open: tooltipVisible,
1996
+ placement: tooltipPlacement
1997
+ }
1998
+ }
1999
+ )
2000
+ ] });
2001
+ }
2002
+ Slider.displayName = "Slider";
2003
+ var Slider_default = Slider;
1933
2004
  // Annotate the CommonJS export names for ESM import in node:
1934
2005
  0 && (module.exports = {
1935
2006
  Avatar,
@@ -1940,6 +2011,7 @@ var RangePicker_default = CustomRangePicker;
1940
2011
  Radio,
1941
2012
  RangePicker,
1942
2013
  Select,
2014
+ Slider,
1943
2015
  Switch,
1944
2016
  Tag,
1945
2017
  Tooltip
package/dist/index.mjs CHANGED
@@ -1,10 +1,12 @@
1
1
  import {
2
- RangePicker_default
3
- } from "./chunk-TED2WCDG.mjs";
4
- import "./chunk-ZTRM4HZJ.mjs";
2
+ Slider_default
3
+ } from "./chunk-D3N7VFER.mjs";
5
4
  import {
6
5
  Modal_default
7
6
  } from "./chunk-UQJ3BDM4.mjs";
7
+ import {
8
+ Switch_default
9
+ } from "./chunk-MNARBWAJ.mjs";
8
10
  import {
9
11
  Tag_default
10
12
  } from "./chunk-4VZB2KR2.mjs";
@@ -14,24 +16,25 @@ import {
14
16
  import {
15
17
  Button_default
16
18
  } from "./chunk-AF2RKLH6.mjs";
19
+ import {
20
+ Radio_default
21
+ } from "./chunk-2EBPXGRY.mjs";
17
22
  import {
18
23
  Checkbox_default
19
24
  } from "./chunk-UQZNUEZE.mjs";
20
25
  import {
21
- Radio_default
22
- } from "./chunk-2EBPXGRY.mjs";
26
+ RangePicker_default
27
+ } from "./chunk-B63IXC6M.mjs";
23
28
  import {
24
29
  Select_default
25
- } from "./chunk-I5GBZ3UX.mjs";
30
+ } from "./chunk-IQHBVGA4.mjs";
26
31
  import {
27
32
  Tooltip_default
28
33
  } from "./chunk-MLCMZRUC.mjs";
29
34
  import {
30
35
  LoadingSpinner_default
31
36
  } from "./chunk-QKTMWS4J.mjs";
32
- import {
33
- Switch_default
34
- } from "./chunk-MNARBWAJ.mjs";
37
+ import "./chunk-ZTRM4HZJ.mjs";
35
38
  import "./chunk-FWCSY2DS.mjs";
36
39
  export {
37
40
  Avatar_default as Avatar,
@@ -42,6 +45,7 @@ export {
42
45
  Radio_default as Radio,
43
46
  RangePicker_default as RangePicker,
44
47
  Select_default as Select,
48
+ Slider_default as Slider,
45
49
  Switch_default as Switch,
46
50
  Tag_default as Tag,
47
51
  Tooltip_default as Tooltip
package/dist/styles.css CHANGED
@@ -474,6 +474,9 @@
474
474
  .tw-text-center {
475
475
  text-align: center
476
476
  }
477
+ .tw-text-\[13px\] {
478
+ font-size: 13px
479
+ }
477
480
  .tw-text-font-size-10 {
478
481
  font-size: 0.625rem
479
482
  }
@@ -494,6 +497,9 @@
494
497
  .tw-leading-7 {
495
498
  line-height: 1.75rem
496
499
  }
500
+ .tw-leading-\[18px\] {
501
+ line-height: 18px
502
+ }
497
503
  .tw-text-\[\#6B7280\] {
498
504
  --tw-text-opacity: 1;
499
505
  color: rgb(107 114 128 / var(--tw-text-opacity, 1))
@@ -684,115 +690,6 @@
684
690
 
685
691
 
686
692
  /* CSS Modules */
687
- /* src/atom/Switch/Switch.module.scss */
688
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
689
- height: 0.75rem;
690
- min-width: 1.5rem
691
- }
692
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
693
- height: 0.5rem;
694
- width: 0.5rem
695
- }
696
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
697
- --tw-bg-opacity: 1;
698
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
699
- }
700
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
701
- --tw-bg-opacity: 1;
702
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
703
- }
704
-
705
- /* src/atom/LoadingSpinner/LoadingSpinner.module.scss */
706
- .LoadingSpinner-module__spinnerContainer___DiPLf {
707
- display: flex;
708
- justify-content: center;
709
- align-items: center;
710
- height: 100%;
711
- margin-top: 2rem;
712
- margin-bottom: 2rem;
713
- }
714
-
715
- /* src/atom/Radio/Radio.module.scss */
716
- .Radio-module__radio___1CPAk {
717
- display: flex;
718
- align-items: center;
719
- }
720
- .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
721
- height: 16px;
722
- width: 16px;
723
- }
724
- .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
725
- height: 20px;
726
- width: 20px;
727
- }
728
- .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
729
- height: 24px;
730
- width: 24px;
731
- }
732
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
733
- border-color: #EC5D25;
734
- background-color: #EC5D25;
735
- }
736
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
737
- border-color: #B94710;
738
- background-color: #B94710;
739
- }
740
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
741
- outline: 2px solid #0A65E7;
742
- }
743
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
744
- cursor: not-allowed;
745
- }
746
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
747
- border-color: #B6BAC3;
748
- background-color: #B6BAC3;
749
- }
750
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
751
- transform: scale(0.375);
752
- background-color: #FFFFFF;
753
- }
754
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
755
- border-color: #B6BAC3;
756
- }
757
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
758
- border-color: #6B7280;
759
- }
760
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
761
- outline: 2px solid #0A65E7;
762
- }
763
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
764
- cursor: not-allowed;
765
- }
766
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
767
- border-color: #B6BAC3;
768
- background-color: #F9FAFB;
769
- }
770
- .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
771
- color: #363E4F;
772
- font-weight: 400;
773
- font-size: 0.875rem;
774
- line-height: 20px;
775
- }
776
- .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
777
- color: #363E4F;
778
- font-weight: 500;
779
- font-size: 0.875rem;
780
- line-height: 20px;
781
- }
782
-
783
- /* src/atom/Tooltip/Tooltip.module.scss */
784
- .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
785
- background-color: white !important;
786
- color: #111827;
787
- border-radius: 0.5rem;
788
- padding: 0.625rem;
789
- --tw-text-opacity: 1;
790
- color: rgb(33 40 55 / var(--tw-text-opacity, 1));
791
- }
792
- .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
793
- background-color: white !important;
794
- }
795
-
796
693
  /* src/atom/Button/Button.module.scss */
797
694
  .Button-module__button___cLCyl {
798
695
  display: flex;
@@ -987,6 +884,56 @@
987
884
  outline: none;
988
885
  }
989
886
 
887
+ /* src/atom/Switch/Switch.module.scss */
888
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
889
+ height: 0.75rem;
890
+ min-width: 1.5rem
891
+ }
892
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
893
+ height: 0.5rem;
894
+ width: 0.5rem
895
+ }
896
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
897
+ --tw-bg-opacity: 1;
898
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
899
+ }
900
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
901
+ --tw-bg-opacity: 1;
902
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
903
+ }
904
+
905
+ /* src/atom/Slider/Slider.module.scss */
906
+ .Slider-module__label___9Uea- {
907
+ font-size: 13px;
908
+ line-height: 18px;
909
+ --tw-text-opacity: 1;
910
+ color: rgb(54 62 79 / var(--tw-text-opacity, 1));
911
+ }
912
+
913
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle::after {
914
+ box-shadow: 0 0 0 2px #ec5d25;
915
+ transform: scale(1.25);
916
+ }
917
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle::before {
918
+ content: unset;
919
+ }
920
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle:hover::after, .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle:active::after {
921
+ inset-inline-start: -1px;
922
+ inset-block-start: -1px;
923
+ }
924
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-track {
925
+ --tw-bg-opacity: 1;
926
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
927
+ height: 2px;
928
+ }
929
+ .Slider-module__slider___JCS-c.Slider-module__disableFill___rjbsy.ant-slider .ant-slider-track {
930
+ background-color: transparent;
931
+ }
932
+ .Slider-module__slider___JCS-c.Slider-module__disableFill___rjbsy .ant-slider-rail {
933
+ --tw-bg-opacity: 1;
934
+ background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
935
+ }
936
+
990
937
  /* src/atom/Tag/Tag.module.scss */
991
938
  .Tag-module__tag___PIkhI {
992
939
  border-radius: 0.25rem;
@@ -1082,6 +1029,127 @@
1082
1029
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1))
1083
1030
  }
1084
1031
 
1032
+ /* src/atom/Tooltip/Tooltip.module.scss */
1033
+ .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
1034
+ background-color: white !important;
1035
+ color: #111827;
1036
+ border-radius: 0.5rem;
1037
+ padding: 0.625rem;
1038
+ --tw-text-opacity: 1;
1039
+ color: rgb(33 40 55 / var(--tw-text-opacity, 1));
1040
+ }
1041
+ .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
1042
+ background-color: white !important;
1043
+ }
1044
+
1045
+ /* src/atom/Checkbox/Checkbox.module.scss */
1046
+ .Checkbox-module__checkbox___xxg5L {
1047
+ display: flex;
1048
+ align-items: center;
1049
+ }
1050
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
1051
+ height: 16px;
1052
+ width: 16px;
1053
+ }
1054
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
1055
+ height: 20px;
1056
+ width: 20px;
1057
+ }
1058
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
1059
+ inset-inline-start: 27%;
1060
+ }
1061
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
1062
+ height: 24px;
1063
+ width: 24px;
1064
+ }
1065
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
1066
+ inset-inline-start: 33%;
1067
+ }
1068
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
1069
+ border-color: #ec5d25;
1070
+ background-color: #ec5d25;
1071
+ }
1072
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
1073
+ .ant-checkbox-checked:not(.ant-checkbox-disabled)
1074
+ .ant-checkbox-inner {
1075
+ --tw-bg-opacity: 1;
1076
+ background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
1077
+ }
1078
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
1079
+ outline: 2px solid #0a65e7;
1080
+ }
1081
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
1082
+ cursor: not-allowed;
1083
+ }
1084
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
1085
+ opacity: 0.5;
1086
+ border-color: #ec5d25;
1087
+ background-color: #ec5d25;
1088
+ }
1089
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
1090
+ border-color: #ffffff;
1091
+ }
1092
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
1093
+ border-color: #b6bac3;
1094
+ }
1095
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
1096
+ border-color: #6b7280;
1097
+ }
1098
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
1099
+ outline: 2px solid #0a65e7;
1100
+ }
1101
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
1102
+ cursor: not-allowed;
1103
+ }
1104
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
1105
+ border-color: #b6bac3;
1106
+ background-color: #f9fafb;
1107
+ }
1108
+ .Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
1109
+ color: #363e4f;
1110
+ }
1111
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
1112
+ color: #363e4f;
1113
+ font-weight: 400;
1114
+ font-size: 0.875rem;
1115
+ line-height: 20px;
1116
+ }
1117
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
1118
+ color: #363e4f;
1119
+ font-weight: 500;
1120
+ font-size: 0.875rem;
1121
+ line-height: 20px;
1122
+ }
1123
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
1124
+ opacity: 0.5;
1125
+ border-color: #ec5d25;
1126
+ background-color: #ec5d25;
1127
+ }
1128
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
1129
+ border-color: #ffffff;
1130
+ }
1131
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
1132
+ border-color: #ec5d25 !important;
1133
+ background-color: #ec5d25 !important;
1134
+ }
1135
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
1136
+ inset-inline-start: 50%;
1137
+ width: 60%;
1138
+ height: 3px;
1139
+ border-radius: 4px;
1140
+ background: white;
1141
+ }
1142
+
1143
+ /* src/atom/LoadingSpinner/LoadingSpinner.module.scss */
1144
+ .LoadingSpinner-module__spinnerContainer___DiPLf {
1145
+ display: flex;
1146
+ justify-content: center;
1147
+ align-items: center;
1148
+ height: 100%;
1149
+ margin-top: 2rem;
1150
+ margin-bottom: 2rem;
1151
+ }
1152
+
1085
1153
  /* src/atom/Modal/Modal.module.scss */
1086
1154
  .Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
1087
1155
  margin-top: 0;
@@ -1155,103 +1223,73 @@
1155
1223
  margin-inline-start: 0.5rem;
1156
1224
  }
1157
1225
 
1158
- /* src/atom/Checkbox/Checkbox.module.scss */
1159
- .Checkbox-module__checkbox___xxg5L {
1226
+ /* src/atom/Radio/Radio.module.scss */
1227
+ .Radio-module__radio___1CPAk {
1160
1228
  display: flex;
1161
1229
  align-items: center;
1162
1230
  }
1163
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
1231
+ .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
1164
1232
  height: 16px;
1165
1233
  width: 16px;
1166
1234
  }
1167
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
1235
+ .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
1168
1236
  height: 20px;
1169
1237
  width: 20px;
1170
1238
  }
1171
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
1172
- inset-inline-start: 27%;
1173
- }
1174
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
1239
+ .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
1175
1240
  height: 24px;
1176
1241
  width: 24px;
1177
1242
  }
1178
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
1179
- inset-inline-start: 33%;
1180
- }
1181
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
1182
- border-color: #ec5d25;
1183
- background-color: #ec5d25;
1243
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
1244
+ border-color: #EC5D25;
1245
+ background-color: #EC5D25;
1184
1246
  }
1185
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
1186
- .ant-checkbox-checked:not(.ant-checkbox-disabled)
1187
- .ant-checkbox-inner {
1188
- --tw-bg-opacity: 1;
1189
- background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
1247
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
1248
+ border-color: #B94710;
1249
+ background-color: #B94710;
1190
1250
  }
1191
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
1192
- outline: 2px solid #0a65e7;
1251
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
1252
+ outline: 2px solid #0A65E7;
1193
1253
  }
1194
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
1254
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
1195
1255
  cursor: not-allowed;
1196
1256
  }
1197
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
1198
- opacity: 0.5;
1199
- border-color: #ec5d25;
1200
- background-color: #ec5d25;
1257
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
1258
+ border-color: #B6BAC3;
1259
+ background-color: #B6BAC3;
1201
1260
  }
1202
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
1203
- border-color: #ffffff;
1261
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
1262
+ transform: scale(0.375);
1263
+ background-color: #FFFFFF;
1204
1264
  }
1205
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
1206
- border-color: #b6bac3;
1265
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
1266
+ border-color: #B6BAC3;
1207
1267
  }
1208
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
1209
- border-color: #6b7280;
1268
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
1269
+ border-color: #6B7280;
1210
1270
  }
1211
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
1212
- outline: 2px solid #0a65e7;
1271
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
1272
+ outline: 2px solid #0A65E7;
1213
1273
  }
1214
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
1274
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
1215
1275
  cursor: not-allowed;
1216
1276
  }
1217
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
1218
- border-color: #b6bac3;
1219
- background-color: #f9fafb;
1220
- }
1221
- .Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
1222
- color: #363e4f;
1277
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
1278
+ border-color: #B6BAC3;
1279
+ background-color: #F9FAFB;
1223
1280
  }
1224
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
1225
- color: #363e4f;
1281
+ .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
1282
+ color: #363E4F;
1226
1283
  font-weight: 400;
1227
1284
  font-size: 0.875rem;
1228
1285
  line-height: 20px;
1229
1286
  }
1230
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
1231
- color: #363e4f;
1287
+ .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
1288
+ color: #363E4F;
1232
1289
  font-weight: 500;
1233
1290
  font-size: 0.875rem;
1234
1291
  line-height: 20px;
1235
1292
  }
1236
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
1237
- opacity: 0.5;
1238
- border-color: #ec5d25;
1239
- background-color: #ec5d25;
1240
- }
1241
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
1242
- border-color: #ffffff;
1243
- }
1244
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
1245
- border-color: #ec5d25 !important;
1246
- background-color: #ec5d25 !important;
1247
- }
1248
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
1249
- inset-inline-start: 50%;
1250
- width: 60%;
1251
- height: 3px;
1252
- border-radius: 4px;
1253
- background: white;
1254
- }
1255
1293
 
1256
1294
  /* src/atom/RangePicker/RangePicker.module.scss */
1257
1295
  .RangePicker-module__range_start___hGQp-::after {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itilite/lumina-ui",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
4
  "description": "Itilite Lumina Design System UI Components",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",