@itilite/lumina-ui 1.1.6 → 1.1.7

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,15 @@
1
1
  import {
2
2
  RangePicker_default
3
- } from "./chunk-TED2WCDG.mjs";
4
- import "./chunk-ZTRM4HZJ.mjs";
3
+ } from "./chunk-B63IXC6M.mjs";
4
+ import {
5
+ Slider_default
6
+ } from "./chunk-D3N7VFER.mjs";
5
7
  import {
6
8
  Modal_default
7
9
  } from "./chunk-UQJ3BDM4.mjs";
10
+ import {
11
+ Switch_default
12
+ } from "./chunk-MNARBWAJ.mjs";
8
13
  import {
9
14
  Tag_default
10
15
  } from "./chunk-4VZB2KR2.mjs";
@@ -22,16 +27,14 @@ import {
22
27
  } from "./chunk-2EBPXGRY.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
@@ -144,6 +144,9 @@
144
144
  .tw-grid {
145
145
  display: grid
146
146
  }
147
+ .tw-h-0 {
148
+ height: 0px
149
+ }
147
150
  .tw-h-10 {
148
151
  height: 2.5rem
149
152
  }
@@ -378,6 +381,10 @@
378
381
  --tw-bg-opacity: 1;
379
382
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1))
380
383
  }
384
+ .tw-bg-color-surface-dark {
385
+ --tw-bg-opacity: 1;
386
+ background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1))
387
+ }
381
388
  .tw-bg-gray-200 {
382
389
  --tw-bg-opacity: 1;
383
390
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
@@ -474,6 +481,9 @@
474
481
  .tw-text-center {
475
482
  text-align: center
476
483
  }
484
+ .tw-text-\[13px\] {
485
+ font-size: 13px
486
+ }
477
487
  .tw-text-font-size-10 {
478
488
  font-size: 0.625rem
479
489
  }
@@ -494,6 +504,9 @@
494
504
  .tw-leading-7 {
495
505
  line-height: 1.75rem
496
506
  }
507
+ .tw-leading-\[18px\] {
508
+ line-height: 18px
509
+ }
497
510
  .tw-text-\[\#6B7280\] {
498
511
  --tw-text-opacity: 1;
499
512
  color: rgb(107 114 128 / var(--tw-text-opacity, 1))
@@ -684,113 +697,173 @@
684
697
 
685
698
 
686
699
  /* 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 {
700
+ /* src/atom/Checkbox/Checkbox.module.scss */
701
+ .Checkbox-module__checkbox___xxg5L {
717
702
  display: flex;
718
703
  align-items: center;
719
704
  }
720
- .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
705
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
721
706
  height: 16px;
722
707
  width: 16px;
723
708
  }
724
- .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
709
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
725
710
  height: 20px;
726
711
  width: 20px;
727
712
  }
728
- .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
713
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
714
+ inset-inline-start: 27%;
715
+ }
716
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
729
717
  height: 24px;
730
718
  width: 24px;
731
719
  }
732
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
733
- border-color: #EC5D25;
734
- background-color: #EC5D25;
720
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
721
+ inset-inline-start: 33%;
735
722
  }
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;
723
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
724
+ border-color: #ec5d25;
725
+ background-color: #ec5d25;
739
726
  }
740
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
741
- outline: 2px solid #0A65E7;
727
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
728
+ .ant-checkbox-checked:not(.ant-checkbox-disabled)
729
+ .ant-checkbox-inner {
730
+ --tw-bg-opacity: 1;
731
+ background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
742
732
  }
743
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
733
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
734
+ outline: 2px solid #0a65e7;
735
+ }
736
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
744
737
  cursor: not-allowed;
745
738
  }
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;
739
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
740
+ opacity: 0.5;
741
+ border-color: #ec5d25;
742
+ background-color: #ec5d25;
749
743
  }
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;
744
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
745
+ border-color: #ffffff;
753
746
  }
754
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
755
- border-color: #B6BAC3;
747
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
748
+ border-color: #b6bac3;
756
749
  }
757
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
758
- border-color: #6B7280;
750
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
751
+ border-color: #6b7280;
759
752
  }
760
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
761
- outline: 2px solid #0A65E7;
753
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
754
+ outline: 2px solid #0a65e7;
762
755
  }
763
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
756
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
764
757
  cursor: not-allowed;
765
758
  }
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;
759
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
760
+ border-color: #b6bac3;
761
+ background-color: #f9fafb;
769
762
  }
770
- .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
771
- color: #363E4F;
763
+ .Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
764
+ color: #363e4f;
765
+ }
766
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
767
+ color: #363e4f;
772
768
  font-weight: 400;
773
769
  font-size: 0.875rem;
774
770
  line-height: 20px;
775
771
  }
776
- .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
777
- color: #363E4F;
772
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
773
+ color: #363e4f;
778
774
  font-weight: 500;
779
775
  font-size: 0.875rem;
780
776
  line-height: 20px;
781
777
  }
778
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
779
+ opacity: 0.5;
780
+ border-color: #ec5d25;
781
+ background-color: #ec5d25;
782
+ }
783
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
784
+ border-color: #ffffff;
785
+ }
786
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
787
+ border-color: #ec5d25 !important;
788
+ background-color: #ec5d25 !important;
789
+ }
790
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
791
+ inset-inline-start: 50%;
792
+ width: 60%;
793
+ height: 3px;
794
+ border-radius: 4px;
795
+ background: white;
796
+ }
782
797
 
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;
798
+ /* src/atom/Slider/Slider.module.scss */
799
+ .Slider-module__label___9Uea- {
800
+ font-size: 13px;
801
+ line-height: 18px;
789
802
  --tw-text-opacity: 1;
790
- color: rgb(33 40 55 / var(--tw-text-opacity, 1));
803
+ color: rgb(54 62 79 / var(--tw-text-opacity, 1));
791
804
  }
792
- .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
793
- background-color: white !important;
805
+
806
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle::after {
807
+ box-shadow: 0 0 0 2px #ec5d25;
808
+ transform: scale(1.25);
809
+ }
810
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle::before {
811
+ content: unset;
812
+ }
813
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle:hover::after, .Slider-module__slider___JCS-c.ant-slider .ant-slider-handle:active::after {
814
+ inset-inline-start: -1px;
815
+ inset-block-start: -1px;
816
+ }
817
+ .Slider-module__slider___JCS-c.ant-slider .ant-slider-track {
818
+ --tw-bg-opacity: 1;
819
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
820
+ height: 2px;
821
+ }
822
+ .Slider-module__slider___JCS-c.Slider-module__disableFill___rjbsy.ant-slider .ant-slider-handle::after {
823
+ box-shadow: 0 4px 4px 0 rgba(250, 166, 102, 0.2);
824
+ --tw-bg-opacity: 1;
825
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
826
+ width: 12px;
827
+ height: 12px;
828
+ top: -2px;
829
+ }
830
+ .Slider-module__slider___JCS-c.Slider-module__disableFill___rjbsy.ant-slider .ant-slider-handle::before {
831
+ content: "";
832
+ position: absolute;
833
+ width: 5px;
834
+ height: 5px;
835
+ background: white;
836
+ border-radius: 50%;
837
+ top: 4px;
838
+ left: 54%;
839
+ transform: translate(-50%, -50%);
840
+ z-index: 1;
841
+ }
842
+ .Slider-module__slider___JCS-c.Slider-module__disableFill___rjbsy.ant-slider .ant-slider-track {
843
+ background-color: transparent;
844
+ }
845
+ .Slider-module__slider___JCS-c.Slider-module__disableFill___rjbsy .ant-slider-rail {
846
+ height: 0.125rem;
847
+ --tw-bg-opacity: 1;
848
+ background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
849
+ }
850
+
851
+ /* src/atom/Switch/Switch.module.scss */
852
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
853
+ height: 0.75rem;
854
+ min-width: 1.5rem
855
+ }
856
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
857
+ height: 0.5rem;
858
+ width: 0.5rem
859
+ }
860
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
861
+ --tw-bg-opacity: 1;
862
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
863
+ }
864
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
865
+ --tw-bg-opacity: 1;
866
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
794
867
  }
795
868
 
796
869
  /* src/atom/Button/Button.module.scss */
@@ -987,6 +1060,87 @@
987
1060
  outline: none;
988
1061
  }
989
1062
 
1063
+ /* src/atom/Tooltip/Tooltip.module.scss */
1064
+ .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
1065
+ background-color: white !important;
1066
+ color: #111827;
1067
+ border-radius: 0.5rem;
1068
+ padding: 0.625rem;
1069
+ --tw-text-opacity: 1;
1070
+ color: rgb(33 40 55 / var(--tw-text-opacity, 1));
1071
+ }
1072
+ .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
1073
+ background-color: white !important;
1074
+ }
1075
+
1076
+ /* src/atom/Radio/Radio.module.scss */
1077
+ .Radio-module__radio___1CPAk {
1078
+ display: flex;
1079
+ align-items: center;
1080
+ }
1081
+ .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
1082
+ height: 16px;
1083
+ width: 16px;
1084
+ }
1085
+ .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
1086
+ height: 20px;
1087
+ width: 20px;
1088
+ }
1089
+ .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
1090
+ height: 24px;
1091
+ width: 24px;
1092
+ }
1093
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
1094
+ border-color: #EC5D25;
1095
+ background-color: #EC5D25;
1096
+ }
1097
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
1098
+ border-color: #B94710;
1099
+ background-color: #B94710;
1100
+ }
1101
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
1102
+ outline: 2px solid #0A65E7;
1103
+ }
1104
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
1105
+ cursor: not-allowed;
1106
+ }
1107
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
1108
+ border-color: #B6BAC3;
1109
+ background-color: #B6BAC3;
1110
+ }
1111
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
1112
+ transform: scale(0.375);
1113
+ background-color: #FFFFFF;
1114
+ }
1115
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
1116
+ border-color: #B6BAC3;
1117
+ }
1118
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
1119
+ border-color: #6B7280;
1120
+ }
1121
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
1122
+ outline: 2px solid #0A65E7;
1123
+ }
1124
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
1125
+ cursor: not-allowed;
1126
+ }
1127
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
1128
+ border-color: #B6BAC3;
1129
+ background-color: #F9FAFB;
1130
+ }
1131
+ .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
1132
+ color: #363E4F;
1133
+ font-weight: 400;
1134
+ font-size: 0.875rem;
1135
+ line-height: 20px;
1136
+ }
1137
+ .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
1138
+ color: #363E4F;
1139
+ font-weight: 500;
1140
+ font-size: 0.875rem;
1141
+ line-height: 20px;
1142
+ }
1143
+
990
1144
  /* src/atom/Tag/Tag.module.scss */
991
1145
  .Tag-module__tag___PIkhI {
992
1146
  border-radius: 0.25rem;
@@ -1155,102 +1309,14 @@
1155
1309
  margin-inline-start: 0.5rem;
1156
1310
  }
1157
1311
 
1158
- /* src/atom/Checkbox/Checkbox.module.scss */
1159
- .Checkbox-module__checkbox___xxg5L {
1312
+ /* src/atom/LoadingSpinner/LoadingSpinner.module.scss */
1313
+ .LoadingSpinner-module__spinnerContainer___DiPLf {
1160
1314
  display: flex;
1315
+ justify-content: center;
1161
1316
  align-items: center;
1162
- }
1163
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
1164
- height: 16px;
1165
- width: 16px;
1166
- }
1167
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
1168
- height: 20px;
1169
- width: 20px;
1170
- }
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 {
1175
- height: 24px;
1176
- width: 24px;
1177
- }
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;
1184
- }
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));
1190
- }
1191
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
1192
- outline: 2px solid #0a65e7;
1193
- }
1194
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
1195
- cursor: not-allowed;
1196
- }
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;
1201
- }
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;
1204
- }
1205
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
1206
- border-color: #b6bac3;
1207
- }
1208
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
1209
- border-color: #6b7280;
1210
- }
1211
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
1212
- outline: 2px solid #0a65e7;
1213
- }
1214
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
1215
- cursor: not-allowed;
1216
- }
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;
1223
- }
1224
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
1225
- color: #363e4f;
1226
- font-weight: 400;
1227
- font-size: 0.875rem;
1228
- line-height: 20px;
1229
- }
1230
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
1231
- color: #363e4f;
1232
- font-weight: 500;
1233
- font-size: 0.875rem;
1234
- line-height: 20px;
1235
- }
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;
1317
+ height: 100%;
1318
+ margin-top: 2rem;
1319
+ margin-bottom: 2rem;
1254
1320
  }
1255
1321
 
1256
1322
  /* src/atom/RangePicker/RangePicker.module.scss */
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.7",
4
4
  "description": "Itilite Lumina Design System UI Components",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",