@itilite/lumina-ui 1.1.2 → 1.1.4

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.
@@ -81,6 +81,8 @@ function Avatar({
81
81
  width = 28,
82
82
  size = "normal"
83
83
  }) {
84
+ var _a;
85
+ const firstChar = (_a = name == null ? void 0 : name[0]) == null ? void 0 : _a.toUpperCase();
84
86
  return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
85
87
  "div",
86
88
  {
@@ -90,7 +92,7 @@ function Avatar({
90
92
  "div",
91
93
  {
92
94
  style: {
93
- backgroundColor: COLOR_MAP[name[0]],
95
+ backgroundColor: COLOR_MAP[firstChar],
94
96
  height,
95
97
  width
96
98
  },
@@ -99,7 +101,7 @@ function Avatar({
99
101
  `tw-text-white tw-font-medium tw-rounded-full tw-flex tw-items-center tw-justify-center`,
100
102
  className
101
103
  ),
102
- children: name[0]
104
+ children: firstChar
103
105
  }
104
106
  ) : img ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
105
107
  "img",
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  Avatar,
3
3
  Avatar_default
4
- } from "../../chunk-X76GNSBB.mjs";
4
+ } from "../../chunk-IWO2Y5QX.mjs";
5
5
  import "../../chunk-FWCSY2DS.mjs";
6
6
  export {
7
7
  Avatar,
@@ -0,0 +1,89 @@
1
+ // src/atom/Avatar/Avatar.tsx
2
+ import clsx from "clsx";
3
+ import { jsx } from "react/jsx-runtime";
4
+ var COLOR_MAP = {
5
+ A: "#6455BF",
6
+ B: "#C46273",
7
+ C: "#52A79E",
8
+ D: "#DF8654",
9
+ E: "#B8639F",
10
+ F: "#6455BF",
11
+ G: "#C46273",
12
+ H: "#52A79E",
13
+ I: "#DF8654",
14
+ J: "#B8639F",
15
+ K: "#6455BF",
16
+ L: "#C46273",
17
+ M: "#52A79E",
18
+ N: "#DF8654",
19
+ O: "#B8639F",
20
+ P: "#6455BF",
21
+ Q: "#C46273",
22
+ R: "#52A79E",
23
+ S: "#DF8654",
24
+ T: "#B8639F",
25
+ U: "#6455BF",
26
+ V: "#C46273",
27
+ W: "#52A79E",
28
+ X: "#DF8654",
29
+ Y: "#B8639F",
30
+ Z: "#6455BF",
31
+ 0: "#6455BF",
32
+ 1: "#C46273",
33
+ 6: "#C46273",
34
+ 2: "#52A79E",
35
+ 7: "#52A79E",
36
+ 3: "#DF8654",
37
+ 8: "#DF8654",
38
+ 4: "#B8639F",
39
+ 9: "#B8639F"
40
+ };
41
+ function Avatar({
42
+ img,
43
+ className,
44
+ name,
45
+ height = 28,
46
+ width = 28,
47
+ size = "normal"
48
+ }) {
49
+ var _a;
50
+ const firstChar = (_a = name == null ? void 0 : name[0]) == null ? void 0 : _a.toUpperCase();
51
+ return /* @__PURE__ */ jsx(
52
+ "div",
53
+ {
54
+ style: { height, width },
55
+ className: "tw-rounded-full tw-flex tw-items-center",
56
+ children: !img && name ? /* @__PURE__ */ jsx(
57
+ "div",
58
+ {
59
+ style: {
60
+ backgroundColor: COLOR_MAP[firstChar],
61
+ height,
62
+ width
63
+ },
64
+ className: clsx(
65
+ { "tw-text-font-size-10": size === "small" },
66
+ `tw-text-white tw-font-medium tw-rounded-full tw-flex tw-items-center tw-justify-center`,
67
+ className
68
+ ),
69
+ children: firstChar
70
+ }
71
+ ) : img ? /* @__PURE__ */ jsx(
72
+ "img",
73
+ {
74
+ src: img,
75
+ style: { height, width },
76
+ alt: name,
77
+ className: clsx("tw-rounded-full tw-object-cover", className)
78
+ }
79
+ ) : null
80
+ }
81
+ );
82
+ }
83
+ Avatar.displayName = "Avatar";
84
+ var Avatar_default = Avatar;
85
+
86
+ export {
87
+ Avatar,
88
+ Avatar_default
89
+ };
package/dist/index.js CHANGED
@@ -506,6 +506,8 @@ function Avatar({
506
506
  width = 28,
507
507
  size = "normal"
508
508
  }) {
509
+ var _a;
510
+ const firstChar = (_a = name == null ? void 0 : name[0]) == null ? void 0 : _a.toUpperCase();
509
511
  return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
510
512
  "div",
511
513
  {
@@ -515,7 +517,7 @@ function Avatar({
515
517
  "div",
516
518
  {
517
519
  style: {
518
- backgroundColor: COLOR_MAP[name[0]],
520
+ backgroundColor: COLOR_MAP[firstChar],
519
521
  height,
520
522
  width
521
523
  },
@@ -524,7 +526,7 @@ function Avatar({
524
526
  `tw-text-white tw-font-medium tw-rounded-full tw-flex tw-items-center tw-justify-center`,
525
527
  className
526
528
  ),
527
- children: name[0]
529
+ children: firstChar
528
530
  }
529
531
  ) : img ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
530
532
  "img",
package/dist/index.mjs CHANGED
@@ -1,12 +1,9 @@
1
- import {
2
- Switch_default
3
- } from "./chunk-MNARBWAJ.mjs";
4
- import {
5
- Avatar_default
6
- } from "./chunk-X76GNSBB.mjs";
7
1
  import {
8
2
  Radio_default
9
3
  } from "./chunk-2EBPXGRY.mjs";
4
+ import {
5
+ Avatar_default
6
+ } from "./chunk-IWO2Y5QX.mjs";
10
7
  import {
11
8
  Modal_default
12
9
  } from "./chunk-UQJ3BDM4.mjs";
@@ -16,6 +13,9 @@ import {
16
13
  import {
17
14
  Checkbox_default
18
15
  } from "./chunk-UQZNUEZE.mjs";
16
+ import {
17
+ Switch_default
18
+ } from "./chunk-MNARBWAJ.mjs";
19
19
  import {
20
20
  Tag_default
21
21
  } from "./chunk-4VZB2KR2.mjs";
package/dist/styles.css CHANGED
@@ -102,183 +102,22 @@
102
102
 
103
103
 
104
104
  /* CSS Modules */
105
- /* src/atom/Tooltip/Tooltip.module.scss */
106
- .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
107
- background-color: white !important;
108
- color: #111827;
109
- border-radius: 0.5rem;
110
- padding: 0.625rem;
111
- --tw-text-opacity: 1;
112
- color: rgb(33 40 55 / var(--tw-text-opacity, 1));
113
- }
114
- .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
115
- background-color: white !important;
116
- }
117
-
118
- /* src/atom/Radio/Radio.module.scss */
119
- .Radio-module__radio___1CPAk {
120
- display: flex;
121
- align-items: center;
122
- }
123
- .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
124
- height: 16px;
125
- width: 16px;
126
- }
127
- .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
128
- height: 20px;
129
- width: 20px;
130
- }
131
- .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
132
- height: 24px;
133
- width: 24px;
134
- }
135
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
136
- border-color: #EC5D25;
137
- background-color: #EC5D25;
138
- }
139
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
140
- border-color: #B94710;
141
- background-color: #B94710;
142
- }
143
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
144
- outline: 2px solid #0A65E7;
145
- }
146
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
147
- cursor: not-allowed;
148
- }
149
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
150
- border-color: #B6BAC3;
151
- background-color: #B6BAC3;
152
- }
153
- .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
154
- transform: scale(0.375);
155
- background-color: #FFFFFF;
156
- }
157
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
158
- border-color: #B6BAC3;
159
- }
160
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
161
- border-color: #6B7280;
162
- }
163
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
164
- outline: 2px solid #0A65E7;
165
- }
166
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
167
- cursor: not-allowed;
168
- }
169
- .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
170
- border-color: #B6BAC3;
171
- background-color: #F9FAFB;
172
- }
173
- .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
174
- color: #363E4F;
175
- font-weight: 400;
176
- font-size: 0.875rem;
177
- line-height: 20px;
178
- }
179
- .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
180
- color: #363E4F;
181
- font-weight: 500;
182
- font-size: 0.875rem;
183
- line-height: 20px;
184
- }
185
-
186
- /* src/atom/Checkbox/Checkbox.module.scss */
187
- .Checkbox-module__checkbox___xxg5L {
188
- display: flex;
189
- align-items: center;
190
- }
191
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
192
- height: 16px;
193
- width: 16px;
194
- }
195
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
196
- height: 20px;
197
- width: 20px;
198
- }
199
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
200
- inset-inline-start: 27%;
201
- }
202
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
203
- height: 24px;
204
- width: 24px;
205
- }
206
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
207
- inset-inline-start: 33%;
208
- }
209
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
210
- border-color: #ec5d25;
211
- background-color: #ec5d25;
212
- }
213
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
214
- .ant-checkbox-checked:not(.ant-checkbox-disabled)
215
- .ant-checkbox-inner {
216
- --tw-bg-opacity: 1;
217
- background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
218
- }
219
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
220
- outline: 2px solid #0a65e7;
221
- }
222
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
223
- cursor: not-allowed;
224
- }
225
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
226
- opacity: 0.5;
227
- border-color: #ec5d25;
228
- background-color: #ec5d25;
229
- }
230
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
231
- border-color: #ffffff;
232
- }
233
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
234
- border-color: #b6bac3;
235
- }
236
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
237
- border-color: #6b7280;
238
- }
239
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
240
- outline: 2px solid #0a65e7;
241
- }
242
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
243
- cursor: not-allowed;
244
- }
245
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
246
- border-color: #b6bac3;
247
- background-color: #f9fafb;
248
- }
249
- .Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
250
- color: #363e4f;
251
- }
252
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
253
- color: #363e4f;
254
- font-weight: 400;
255
- font-size: 0.875rem;
256
- line-height: 20px;
257
- }
258
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
259
- color: #363e4f;
260
- font-weight: 500;
261
- font-size: 0.875rem;
262
- line-height: 20px;
263
- }
264
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
265
- opacity: 0.5;
266
- border-color: #ec5d25;
267
- background-color: #ec5d25;
105
+ /* src/atom/Switch/Switch.module.scss */
106
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
107
+ height: 0.75rem;
108
+ min-width: 1.5rem
268
109
  }
269
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
270
- border-color: #ffffff;
110
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
111
+ height: 0.5rem;
112
+ width: 0.5rem
271
113
  }
272
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
273
- border-color: #ec5d25 !important;
274
- background-color: #ec5d25 !important;
114
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
115
+ --tw-bg-opacity: 1;
116
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
275
117
  }
276
- .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
277
- inset-inline-start: 50%;
278
- width: 60%;
279
- height: 3px;
280
- border-radius: 4px;
281
- background: white;
118
+ .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
119
+ --tw-bg-opacity: 1;
120
+ background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
282
121
  }
283
122
 
284
123
  /* src/atom/Tag/Tag.module.scss */
@@ -570,6 +409,185 @@
570
409
  outline: none;
571
410
  }
572
411
 
412
+ /* src/atom/Tooltip/Tooltip.module.scss */
413
+ .Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
414
+ background-color: white !important;
415
+ color: #111827;
416
+ border-radius: 0.5rem;
417
+ padding: 0.625rem;
418
+ --tw-text-opacity: 1;
419
+ color: rgb(33 40 55 / var(--tw-text-opacity, 1));
420
+ }
421
+ .Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
422
+ background-color: white !important;
423
+ }
424
+
425
+ /* src/atom/Checkbox/Checkbox.module.scss */
426
+ .Checkbox-module__checkbox___xxg5L {
427
+ display: flex;
428
+ align-items: center;
429
+ }
430
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
431
+ height: 16px;
432
+ width: 16px;
433
+ }
434
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
435
+ height: 20px;
436
+ width: 20px;
437
+ }
438
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
439
+ inset-inline-start: 27%;
440
+ }
441
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
442
+ height: 24px;
443
+ width: 24px;
444
+ }
445
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
446
+ inset-inline-start: 33%;
447
+ }
448
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
449
+ border-color: #ec5d25;
450
+ background-color: #ec5d25;
451
+ }
452
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
453
+ .ant-checkbox-checked:not(.ant-checkbox-disabled)
454
+ .ant-checkbox-inner {
455
+ --tw-bg-opacity: 1;
456
+ background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
457
+ }
458
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
459
+ outline: 2px solid #0a65e7;
460
+ }
461
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
462
+ cursor: not-allowed;
463
+ }
464
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
465
+ opacity: 0.5;
466
+ border-color: #ec5d25;
467
+ background-color: #ec5d25;
468
+ }
469
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
470
+ border-color: #ffffff;
471
+ }
472
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
473
+ border-color: #b6bac3;
474
+ }
475
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
476
+ border-color: #6b7280;
477
+ }
478
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
479
+ outline: 2px solid #0a65e7;
480
+ }
481
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
482
+ cursor: not-allowed;
483
+ }
484
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
485
+ border-color: #b6bac3;
486
+ background-color: #f9fafb;
487
+ }
488
+ .Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
489
+ color: #363e4f;
490
+ }
491
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
492
+ color: #363e4f;
493
+ font-weight: 400;
494
+ font-size: 0.875rem;
495
+ line-height: 20px;
496
+ }
497
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
498
+ color: #363e4f;
499
+ font-weight: 500;
500
+ font-size: 0.875rem;
501
+ line-height: 20px;
502
+ }
503
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
504
+ opacity: 0.5;
505
+ border-color: #ec5d25;
506
+ background-color: #ec5d25;
507
+ }
508
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
509
+ border-color: #ffffff;
510
+ }
511
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
512
+ border-color: #ec5d25 !important;
513
+ background-color: #ec5d25 !important;
514
+ }
515
+ .Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
516
+ inset-inline-start: 50%;
517
+ width: 60%;
518
+ height: 3px;
519
+ border-radius: 4px;
520
+ background: white;
521
+ }
522
+
523
+ /* src/atom/Radio/Radio.module.scss */
524
+ .Radio-module__radio___1CPAk {
525
+ display: flex;
526
+ align-items: center;
527
+ }
528
+ .Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
529
+ height: 16px;
530
+ width: 16px;
531
+ }
532
+ .Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
533
+ height: 20px;
534
+ width: 20px;
535
+ }
536
+ .Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
537
+ height: 24px;
538
+ width: 24px;
539
+ }
540
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
541
+ border-color: #EC5D25;
542
+ background-color: #EC5D25;
543
+ }
544
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
545
+ border-color: #B94710;
546
+ background-color: #B94710;
547
+ }
548
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
549
+ outline: 2px solid #0A65E7;
550
+ }
551
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
552
+ cursor: not-allowed;
553
+ }
554
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
555
+ border-color: #B6BAC3;
556
+ background-color: #B6BAC3;
557
+ }
558
+ .Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
559
+ transform: scale(0.375);
560
+ background-color: #FFFFFF;
561
+ }
562
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
563
+ border-color: #B6BAC3;
564
+ }
565
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
566
+ border-color: #6B7280;
567
+ }
568
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
569
+ outline: 2px solid #0A65E7;
570
+ }
571
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
572
+ cursor: not-allowed;
573
+ }
574
+ .Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
575
+ border-color: #B6BAC3;
576
+ background-color: #F9FAFB;
577
+ }
578
+ .Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
579
+ color: #363E4F;
580
+ font-weight: 400;
581
+ font-size: 0.875rem;
582
+ line-height: 20px;
583
+ }
584
+ .Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
585
+ color: #363E4F;
586
+ font-weight: 500;
587
+ font-size: 0.875rem;
588
+ line-height: 20px;
589
+ }
590
+
573
591
  /* src/atom/Modal/Modal.module.scss */
574
592
  .Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
575
593
  margin-top: 0;
@@ -631,7 +649,7 @@
631
649
  }
632
650
  .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
633
651
  padding: 0 1.5rem 1.5rem;
634
- max-height: 80vh;
652
+ max-height: 65vh;
635
653
  overflow: auto;
636
654
  }
637
655
  .Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
@@ -641,22 +659,4 @@
641
659
  }
642
660
  .Modal-module__modal___PKrAi .ant-btn-primary {
643
661
  margin-inline-start: 0.5rem;
644
- }
645
-
646
- /* src/atom/Switch/Switch.module.scss */
647
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
648
- height: 0.75rem;
649
- min-width: 1.5rem
650
- }
651
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
652
- height: 0.5rem;
653
- width: 0.5rem
654
- }
655
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
656
- --tw-bg-opacity: 1;
657
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
658
- }
659
- .Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
660
- --tw-bg-opacity: 1;
661
- background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
662
662
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itilite/lumina-ui",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Itilite Lumina Design System UI Components",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",