@innovaccer/design-system 2.14.1 → 2.15.0

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.
@@ -17,15 +17,15 @@
17
17
  width: 212px;
18
18
  }
19
19
 
20
- .Calendar--date--small {
20
+ .Calendar-date--small {
21
21
  height: 248px;
22
22
  }
23
23
 
24
- .Calendar--month--small {
24
+ .Calendar-month--small {
25
25
  height: 192px;
26
26
  }
27
27
 
28
- .Calendar--year--small {
28
+ .Calendar-year--small {
29
29
  height: 192px;
30
30
  }
31
31
 
@@ -37,15 +37,15 @@
37
37
  width: 316px;
38
38
  }
39
39
 
40
- .Calendar--date--large {
40
+ .Calendar-date--large {
41
41
  height: 324px;
42
42
  }
43
43
 
44
- .Calendar--month--large {
44
+ .Calendar-month--large {
45
45
  height: 272px;
46
46
  }
47
47
 
48
- .Calendar--year--large {
48
+ .Calendar-year--large {
49
49
  height: 272px;
50
50
  }
51
51
 
@@ -116,6 +116,14 @@
116
116
  background: var(--primary-lightest);
117
117
  }
118
118
 
119
+ .Calendar-valueWrapper--inRange .Calendar-inRangeValue:hover {
120
+ background: var(--primary-lighter);
121
+ }
122
+
123
+ .Calendar-valueWrapper--inRange .Calendar-inRangeValue:active {
124
+ background: var(--primary-light);
125
+ }
126
+
119
127
  .Calendar-valueWrapper--inRangeError {
120
128
  background: var(--alert-lightest);
121
129
  }
@@ -154,6 +162,10 @@
154
162
  }
155
163
 
156
164
  .Calendar-value:hover {
165
+ background: var(--secondary-light);
166
+ }
167
+
168
+ .Calendar-value:active {
157
169
  background: var(--secondary);
158
170
  }
159
171
 
@@ -177,19 +189,30 @@
177
189
  background: var(--alert-lightest);
178
190
  }
179
191
 
180
- .Calendar-value--currDateMonthYear,
192
+ .Calendar-value--currDateMonthYear {
193
+ background: var(--primary-lightest);
194
+ }
195
+
181
196
  .Calendar-value--currDateMonthYear:hover {
182
- background: var(--primary-lightest) !important;
197
+ background: var(--primary-lighter);
183
198
  }
184
199
 
185
- .Calendar-value--active,
186
- .Calendar-value--active:hover {
187
- background: var(--primary) !important;
200
+ .Calendar-value--currDateMonthYear:active {
201
+ background: var(--primary-lighter);
202
+ color: var(--primary-dark);
203
+ }
204
+
205
+ .Calendar-value--currDateMonthYear:active .Calendar-text {
206
+ color: var(--primary-dark);
207
+ }
208
+
209
+ .Calendar-value--active {
210
+ background: var(--primary);
188
211
  font-weight: var(--font-weight-bold);
189
212
  }
190
213
 
191
- .Calendar-yearValue,
192
- .Calendar-monthValue {
214
+ .Calendar-value--active:hover {
215
+ background: var(--primary-dark);
193
216
  }
194
217
 
195
218
  .Calendar-yearValue--small,
@@ -204,9 +227,6 @@
204
227
  width: var(--spacing-5);
205
228
  }
206
229
 
207
- .Calendar-dateValue {
208
- }
209
-
210
230
  .Calendar-dateValue--small {
211
231
  height: var(--spacing-xl);
212
232
  width: var(--spacing-xl);
@@ -1,5 +1,3 @@
1
- /* badge */
2
-
3
1
  .Checkbox {
4
2
  display: flex;
5
3
  -webkit-user-select: none;
@@ -54,13 +52,13 @@
54
52
  .Checkbox-wrapper {
55
53
  top: 0;
56
54
  left: 0;
57
- border: var(--border);
58
55
  border-radius: var(--spacing-s);
59
56
  display: flex;
60
57
  align-items: center;
61
58
  box-sizing: border-box;
62
59
  height: 100%;
63
60
  width: 100%;
61
+ justify-content: center;
64
62
  transition: var(--duration--fast-01) var(--standard-productive-curve);
65
63
  }
66
64
 
@@ -68,25 +66,30 @@
68
66
  outline: 0;
69
67
  }
70
68
 
71
- .Checkbox-input:focus ~ .Checkbox-wrapper {
69
+ .Checkbox-input ~ .Checkbox-wrapper--default {
70
+ border: var(--spacing-xs) solid var(--secondary-dark);
71
+ background-color: var(--shadow-0);
72
+ }
73
+
74
+ .Checkbox-input:focus ~ .Checkbox-wrapper--default {
72
75
  box-shadow: var(--shadow-spread) var(--secondary-shadow);
73
76
  }
74
77
 
75
- .Checkbox-input:hover ~ .Checkbox-wrapper {
78
+ .Checkbox-input:hover ~ .Checkbox-wrapper--default {
76
79
  border: var(--spacing-xs) solid var(--inverse-lightest);
77
80
  background-color: var(--shadow-0);
78
81
  }
79
82
 
80
- .Checkbox-input:active ~ .Checkbox-wrapper {
83
+ .Checkbox-input:active ~ .Checkbox-wrapper--default {
81
84
  border: var(--spacing-xs) solid var(--inverse-lightest);
82
- background-color: var(--shadow-0);
85
+ background-color: var(--secondary-light);
83
86
  }
84
87
 
85
88
  .Checkbox--disabled {
86
89
  pointer-events: none;
87
90
  }
88
91
 
89
- .Checkbox--disabled .Checkbox-wrapper {
92
+ .Checkbox--disabled .Checkbox-wrapper--default {
90
93
  border: var(--spacing-xs) solid var(--secondary-light);
91
94
  background-color: var(--secondary-lightest);
92
95
  }
@@ -123,3 +126,56 @@
123
126
  background-color: var(--primary-lighter);
124
127
  border: 0;
125
128
  }
129
+
130
+ /* Error State -> Default */
131
+
132
+ .Checkbox-wrapper--error {
133
+ border: var(--spacing-xs) solid var(--alert);
134
+ }
135
+
136
+ .Checkbox-input:focus ~ .Checkbox-wrapper--error {
137
+ box-shadow: var(--shadow-spread) var(--alert-shadow);
138
+ }
139
+
140
+ .Checkbox-input:hover ~ .Checkbox-wrapper--error {
141
+ border: var(--spacing-xs) solid var(--alert-dark);
142
+ }
143
+
144
+ .Checkbox-input:active ~ .Checkbox-wrapper--error {
145
+ border: var(--spacing-xs) solid var(--alert-darker);
146
+ background-color: var(--secondary-light);
147
+ }
148
+
149
+ .Checkbox--disabled .Checkbox-wrapper--error {
150
+ border: var(--spacing-xs) solid var(--alert-lighter);
151
+ background-color: var(--secondary-lightest);
152
+ }
153
+
154
+ /* Error State -> Checked & Indeterminate */
155
+
156
+ .Checkbox-input--checked ~ .Checkbox-wrapper--error,
157
+ .Checkbox-input--indeterminate ~ .Checkbox-wrapper--error {
158
+ border: var(--spacing-xs) solid var(--alert);
159
+ }
160
+
161
+ .Checkbox-input--checked:focus ~ .Checkbox-wrapper--error,
162
+ .Checkbox-input--indeterminate:focus ~ .Checkbox-wrapper--error {
163
+ border: var(--spacing-xs) solid var(--alert);
164
+ box-shadow: var(--shadow-spread) var(--primary-shadow);
165
+ }
166
+
167
+ .Checkbox-input--checked:hover ~ .Checkbox-wrapper--error,
168
+ .Checkbox-input--indeterminate:hover ~ .Checkbox-wrapper--error {
169
+ border: var(--spacing-xs) solid var(--alert-dark);
170
+ }
171
+
172
+ .Checkbox-input--checked:active ~ .Checkbox-wrapper--error,
173
+ .Checkbox-input--indeterminate:active ~ .Checkbox-wrapper--error {
174
+ background-color: var(--primary-darker);
175
+ border: var(--spacing-xs) solid var(--alert-darker);
176
+ }
177
+
178
+ .Checkbox--disabled .Checkbox-input--checked ~ .Checkbox-wrapper--error,
179
+ .Checkbox--disabled .Checkbox-input--indeterminate ~ .Checkbox-wrapper--error {
180
+ border: var(--spacing-xs) solid var(--alert-lighter);
181
+ }
@@ -23,7 +23,7 @@
23
23
  }
24
24
 
25
25
  .Chip-icon--left {
26
- padding-right: var(--spacing-m);
26
+ margin-right: var(--spacing-m);
27
27
  display: flex;
28
28
  align-items: center;
29
29
  }
@@ -127,13 +127,18 @@
127
127
  background: var(--secondary);
128
128
  }
129
129
 
130
- .Chip--input:focus-visible {
130
+ .Chip--input:focus-visible,
131
+ .Chip--input:focus {
131
132
  box-shadow: var(--shadow-spread) var(--secondary-shadow);
132
133
  outline: none;
133
134
  }
134
135
 
136
+ .Chip--input:active {
137
+ background: var(--secondary-dark);
138
+ }
139
+
135
140
  .Chip-input--disabled {
136
- background: var(--secondary-light);
141
+ background: var(--secondary-lighter);
137
142
  border: 0px;
138
143
  }
139
144
 
@@ -61,8 +61,8 @@
61
61
  color: var(--accent3);
62
62
  }
63
63
  .FileIcon--others {
64
- background: var(--warning-lightest);
65
- color: var(--warning);
64
+ background: var(--success-lightest);
65
+ color: var(--success);
66
66
  }
67
67
  .FileIcon--animate {
68
68
  animation: fadeIn var(--duration--moderate-01) var(--entrance-productive-curve);
@@ -18,6 +18,10 @@
18
18
  pointer-events: none;
19
19
  }
20
20
 
21
+ .HorizontalNav-menu--disabled:focus-visible {
22
+ outline: none;
23
+ }
24
+
21
25
  .HorizontalNav-menu--default:focus-visible {
22
26
  box-shadow: var(--shadow-spread) var(--secondary-shadow);
23
27
  outline: none;
@@ -43,20 +43,20 @@
43
43
 
44
44
  .Switch-input:focus ~ .Switch-wrapper {
45
45
  box-shadow: var(--shadow-spread) var(--secondary-shadow);
46
+ background-color: var(--secondary-light);
46
47
  }
47
48
 
48
49
  .Switch-input:focus ~ .Switch-wrapper--checked {
49
50
  box-shadow: var(--shadow-spread) var(--primary-shadow);
51
+ background-color: var(--primary);
50
52
  }
51
53
 
52
54
  .Switch-input:hover ~ .Switch-wrapper {
53
- background-color: var(--secondary-light);
54
- box-shadow: var(--shadow-s);
55
+ background-color: var(--secondary);
55
56
  }
56
57
 
57
58
  .Switch-input:hover ~ .Switch-wrapper--checked {
58
59
  background-color: var(--primary-dark);
59
- box-shadow: var(--shadow-s);
60
60
  }
61
61
 
62
62
  .Switch-input:active ~ .Switch-wrapper {
@@ -84,7 +84,7 @@
84
84
  height: 100%;
85
85
  width: 50%;
86
86
  background-color: var(--shadow-0);
87
- box-shadow: 0 0 var(--spacing-xs) 0 var(--shadow-20);
87
+ box-shadow: var(--shadow-m);
88
88
  border-radius: 50%;
89
89
  box-sizing: border-box;
90
90
  transition-duration: 80ms;
@@ -108,8 +108,8 @@
108
108
  pointer-events: none;
109
109
  }
110
110
 
111
- .Switch-wrapper--disabled:before {
112
- background-color: var(--secondary-lightest);
111
+ .Switch-wrapper--disabled {
112
+ background-color: var(--secondary-lighter);
113
113
  }
114
114
 
115
115
  .Switch-wrapper--checkedDisabled {
@@ -48,6 +48,11 @@
48
48
  .Toast-icon--right {
49
49
  cursor: pointer;
50
50
  margin-left: var(--spacing-2);
51
+ border-radius: 50%;
52
+ display: flex;
53
+ align-items: center;
54
+ padding-right: var(--spacing-m);
55
+ padding-left: var(--spacing-m);
51
56
  }
52
57
 
53
58
  .Toast-icon--info,
@@ -61,6 +66,50 @@
61
66
  color: var(--warning-darker);
62
67
  }
63
68
 
69
+ .Toast-close-icon--warning:focus,
70
+ .Toast-close-icon--warning:focus-visible {
71
+ outline: none;
72
+ box-shadow: var(--shadow-spread) color-mod(var(--warning-dark) a(0.16));
73
+ }
74
+
75
+ .Toast-close-icon--warning:hover,
76
+ .Toast-close-icon--warning:active {
77
+ background: var(--warning-dark);
78
+ }
79
+
80
+ .Toast-close-icon--success:focus,
81
+ .Toast-close-icon--success:focus-visible {
82
+ outline: none;
83
+ box-shadow: var(--shadow-spread) color-mod(var(--success-dark) a(0.16));
84
+ }
85
+
86
+ .Toast-close-icon--success:hover,
87
+ .Toast-close-icon--success:active {
88
+ background: var(--success-dark);
89
+ }
90
+
91
+ .Toast-close-icon--info:focus,
92
+ .Toast-close-icon--info:focus-visible {
93
+ outline: none;
94
+ box-shadow: var(--shadow-spread) color-mod(var(--primary-dark) a(0.16));
95
+ }
96
+
97
+ .Toast-close-icon--info:hover,
98
+ .Toast-close-icon--info:active {
99
+ background: var(--primary-dark);
100
+ }
101
+
102
+ .Toast-close-icon--alert:focus,
103
+ .Toast-close-icon--alert:focus-visible {
104
+ outline: none;
105
+ box-shadow: var(--shadow-spread) color-mod(var(--alert-dark) a(0.16));
106
+ }
107
+
108
+ .Toast-close-icon--alert:hover,
109
+ .Toast-close-icon--alert:active {
110
+ background: var(--alert-dark);
111
+ }
112
+
64
113
  .Toast-body {
65
114
  display: flex;
66
115
  flex-direction: column;
@@ -326,44 +326,19 @@
326
326
  "signature": "7a29a272635144f3122e629d21e02a22fc95ab86cad47f32d96dce31c1f046b5",
327
327
  "affectsGlobalScope": false
328
328
  },
329
- "../../core/accessibility/utils/isEnterKey.ts": {
330
- "version": "af66522dae744a18df5876f7f8b18c9721b95b77e66e8f44dc75ee5e08b2d857",
331
- "signature": "4c53ada96f2b2b75a91aee8c0794d478b52083fa76786176676768f2b20b4ac2",
332
- "affectsGlobalScope": false
333
- },
334
- "../../core/accessibility/utils/isSpaceKey.ts": {
335
- "version": "28bb2a0235686fc9d89706e2823f42a2b55cf733fdf364bb5c276a0f4f2da65a",
336
- "signature": "bd2100204d01589a25987744aad093fa839dddad21ddf8b7b832e1b750545e1e",
337
- "affectsGlobalScope": false
338
- },
339
- "../../core/accessibility/utils/useAccessibilityProps.ts": {
340
- "version": "74e89441fbacd6365fc156ae46d2fbcb43e89e9e2dbe65ef25fde1c2e546dea1",
341
- "signature": "c52129553f95c6160380d7af23042ca969a28bfa6c1281d5e4562873b880fd7f",
342
- "affectsGlobalScope": false
343
- },
344
- "../../core/accessibility/utils/index.ts": {
345
- "version": "44cfff757ea872d3a8c98fe17c5e73ce966724ef270a807fe9334ead39527878",
346
- "signature": "6427aee725c0b2c594f724f86482fe933cc3711d7ecf0bc86bd742cbf768877b",
347
- "affectsGlobalScope": false
348
- },
349
- "../../core/components/atoms/icon/Icon.tsx": {
350
- "version": "b338fa3c6308db54a6aa6fef8badfae54faf14abd23476c0a2e8943736124fba",
351
- "signature": "6e38c578d63e87920c2be85e89210227f76b482f68501f520f74ec154d8683a6",
352
- "affectsGlobalScope": false
353
- },
354
- "../../core/components/atoms/icon/index.tsx": {
355
- "version": "b37fb3563beee851955c6ea935b0c494b76d087c7473ced3472f1b6569b4a77d",
356
- "signature": "82aa83ce17783edbb08a8b94be47e61c080ff2cbdbf58a83ed2ee344808901ec",
357
- "affectsGlobalScope": false
358
- },
359
329
  "../../core/utils/uidGenerator.tsx": {
360
330
  "version": "9d501005944a0d31db11c9cbd778c58a2a337e1148e1c4a20e20f99bc00c26b5",
361
331
  "signature": "c6f84836d1161351fa4c6f1341109dfe045b758b470f73a8313d1d738b7cd1ef",
362
332
  "affectsGlobalScope": false
363
333
  },
334
+ "../../core/components/atoms/checkbox/CheckboxIcon.tsx": {
335
+ "version": "2051636f5cb59138be6497d44b918373144d93717c15f386785aa3dc88b95312",
336
+ "signature": "6da78c5022eeebd2559bbbe42c7f153e1e63dd9f4d6fbe27a90552aef60a515d",
337
+ "affectsGlobalScope": false
338
+ },
364
339
  "../../core/components/atoms/checkbox/Checkbox.tsx": {
365
- "version": "1e37b0fdc358585c608c5cb472d62486d4b1bbe84f0a9d89f6628e5054b9736d",
366
- "signature": "715f314f235a310f438c7d837646dc29e99233ffc0adce3ac038a20d4ac9f7cf",
340
+ "version": "6e7bdb7200a8abc7ed527a2aed2d26e675fefcfe40876deb1d22e8317efc4a26",
341
+ "signature": "a8465361acdffabca8badb5be1a772388fd94f09774d0765da4117696bd99c6e",
367
342
  "affectsGlobalScope": false
368
343
  },
369
344
  "../../core/components/atoms/checkbox/index.tsx": {
@@ -402,7 +377,7 @@
402
377
  "affectsGlobalScope": false
403
378
  },
404
379
  "../../core/components/atoms/dropdown/utility.tsx": {
405
- "version": "e465678de8420e23438dc3878b29565dda746ef61b2554ee0ce817f5517aa050",
380
+ "version": "db74fc4600fbe394bb56f76b2b9215285a818fd0b499a3095b91ef28c57d2884",
406
381
  "signature": "c49cda6f52cd0851c322cda3973e61ca2cce7da55c0410459ef61f8628139d45",
407
382
  "affectsGlobalScope": false
408
383
  },
@@ -442,12 +417,12 @@
442
417
  "affectsGlobalScope": false
443
418
  },
444
419
  "../../core/components/atoms/dropdown/Loading.tsx": {
445
- "version": "b66b5635f8afb6efd160366ceed786164d8b21093028eb644df521491120d7ee",
420
+ "version": "9a2f9ba5d476bed446c69e39ef70173d61a493e14bcf70be5e02a5bd1bcad1ec",
446
421
  "signature": "fec3cf0fcdb67e926fa4931314d138d81549539d58bb62c32c6fc184118c6cfc",
447
422
  "affectsGlobalScope": false
448
423
  },
449
424
  "../../core/components/atoms/dropdown/DropdownList.tsx": {
450
- "version": "64fd85ae90cebfade3a330af1ea2b819d30bf3bd60649273d510443b8e4e8398",
425
+ "version": "29d126c1419689b33cdadf44bcf193715fb8c60028669741b05f5b643340994e",
451
426
  "signature": "234919455eaca2c78423cb83922ab96afb3ecec5a0a6ddbf933118873cc88a3f",
452
427
  "affectsGlobalScope": false
453
428
  },
@@ -497,7 +472,7 @@
497
472
  "affectsGlobalScope": false
498
473
  },
499
474
  "../../core/components/organisms/calendar/Calendar.tsx": {
500
- "version": "eef16e4051fd0a373cd2544de001d5696cb9eb7d79b001e86db66cf12d6c38c0",
475
+ "version": "c40dcaa5e32d6eec5f2efa74c396e8cbbb25ca42ac13149d479a94043658fd59",
501
476
  "signature": "bd837ccd1ca55becef710a181dd2030665fc6a9d889f420e743d9bca9358e48e",
502
477
  "affectsGlobalScope": false
503
478
  },
@@ -556,6 +531,36 @@
556
531
  "signature": "059d7b3a44c7ac251a68e7de8c15e57592c85b6228221a5ef683cf398934605d",
557
532
  "affectsGlobalScope": false
558
533
  },
534
+ "../../core/accessibility/utils/isEnterKey.ts": {
535
+ "version": "af66522dae744a18df5876f7f8b18c9721b95b77e66e8f44dc75ee5e08b2d857",
536
+ "signature": "4c53ada96f2b2b75a91aee8c0794d478b52083fa76786176676768f2b20b4ac2",
537
+ "affectsGlobalScope": false
538
+ },
539
+ "../../core/accessibility/utils/isSpaceKey.ts": {
540
+ "version": "28bb2a0235686fc9d89706e2823f42a2b55cf733fdf364bb5c276a0f4f2da65a",
541
+ "signature": "bd2100204d01589a25987744aad093fa839dddad21ddf8b7b832e1b750545e1e",
542
+ "affectsGlobalScope": false
543
+ },
544
+ "../../core/accessibility/utils/useAccessibilityProps.ts": {
545
+ "version": "74e89441fbacd6365fc156ae46d2fbcb43e89e9e2dbe65ef25fde1c2e546dea1",
546
+ "signature": "c52129553f95c6160380d7af23042ca969a28bfa6c1281d5e4562873b880fd7f",
547
+ "affectsGlobalScope": false
548
+ },
549
+ "../../core/accessibility/utils/index.ts": {
550
+ "version": "44cfff757ea872d3a8c98fe17c5e73ce966724ef270a807fe9334ead39527878",
551
+ "signature": "6427aee725c0b2c594f724f86482fe933cc3711d7ecf0bc86bd742cbf768877b",
552
+ "affectsGlobalScope": false
553
+ },
554
+ "../../core/components/atoms/icon/Icon.tsx": {
555
+ "version": "b338fa3c6308db54a6aa6fef8badfae54faf14abd23476c0a2e8943736124fba",
556
+ "signature": "6e38c578d63e87920c2be85e89210227f76b482f68501f520f74ec154d8683a6",
557
+ "affectsGlobalScope": false
558
+ },
559
+ "../../core/components/atoms/icon/index.tsx": {
560
+ "version": "b37fb3563beee851955c6ea935b0c494b76d087c7473ced3472f1b6569b4a77d",
561
+ "signature": "82aa83ce17783edbb08a8b94be47e61c080ff2cbdbf58a83ed2ee344808901ec",
562
+ "affectsGlobalScope": false
563
+ },
559
564
  "../../core/components/atoms/_chip/index.tsx": {
560
565
  "version": "7718fd4a44588c4ea3c0fa74d40c726a2cfed66e9a743bc597c48f10ba7c7faa",
561
566
  "signature": "aa73b69cdec375984f99e6b85935c80de6625578affaca312cb3b5f5f3241897",
@@ -592,7 +597,7 @@
592
597
  "affectsGlobalScope": false
593
598
  },
594
599
  "../../core/components/organisms/datePicker/Trigger.tsx": {
595
- "version": "ace7f19b43310e23ee11a488e85333ac23ed573b6023658b0770c9aa28e12bac",
600
+ "version": "a84c4b8841f4ba06e37a55ffca3300b848a0fc2b8e8cbe3cff52a38f408fe609",
596
601
  "signature": "772d91f645ba2cb9f7298e7cc7749a50e7df28ce240e6d6c8765d83f20bdfd32",
597
602
  "affectsGlobalScope": false
598
603
  },
@@ -642,8 +647,8 @@
642
647
  "affectsGlobalScope": false
643
648
  },
644
649
  "../../core/components/atoms/input/Input.tsx": {
645
- "version": "3312502f29413125585d979dcf48ac8b007577fb64ff961c096e02692ffa6fda",
646
- "signature": "7963eec2c44fafbfc49e2fd06efd8b1908d08450b71f9827499553ac546b8d1c",
650
+ "version": "884b1c201b1182a0a72b276aecc8997d5413a2b601ed0a82df3a0893bccc5486",
651
+ "signature": "1f33a1ffc408d58e5aae839d760ccba8b7b37316dbef61e3f373e382e3cd8e85",
647
652
  "affectsGlobalScope": false
648
653
  },
649
654
  "../../core/components/atoms/input/index.tsx": {
@@ -667,8 +672,8 @@
667
672
  "affectsGlobalScope": false
668
673
  },
669
674
  "../../core/components/molecules/inputMask/InputMask.tsx": {
670
- "version": "cf211abf546d3165adf369f4c41a60cbfeff10dd1189e93c93363263bd81034c",
671
- "signature": "e449d4dac57ac1ba4764010049f697a6b2aed8934aeff8bc57065d0e7524bf42",
675
+ "version": "c07c8718bf6a3d4c6f31e34f656fbc92efafea46909f3cb9ea624ab6d163f18c",
676
+ "signature": "e262e3518d5b605bc1ccdd5b3f51bfca531d27b205ac0f9dcfb6982e6110c426",
672
677
  "affectsGlobalScope": false
673
678
  },
674
679
  "../../core/components/molecules/inputMask/index.tsx": {
@@ -947,7 +952,7 @@
947
952
  "affectsGlobalScope": false
948
953
  },
949
954
  "../../core/components/atoms/toast/Toast.tsx": {
950
- "version": "78fe949cd97edc7c6ea545feea3d45a6c6a2a399238786b75a9be73c81e5e8d4",
955
+ "version": "cf23bf7a0d94c575d43ecaa2e849069ac71ab83ef2d40fcee3597c0d35e51f78",
951
956
  "signature": "adf965d2aa0e431b85aa3b7aba520aa56cb92b289d4ffb7f2727b003556438ec",
952
957
  "affectsGlobalScope": false
953
958
  },
@@ -1163,7 +1168,7 @@
1163
1168
  },
1164
1169
  "../../core/components/atoms/popperWrapper/PopperWrapper.tsx": {
1165
1170
  "version": "cf879701320648ffea2a9853c37907d905bdee3e55f8c08e73b8c72bdb7237a0",
1166
- "signature": "50f55cacee085f27c950a295710085acdea8d7ca0f78e96a21d820dae7b1f770",
1171
+ "signature": "62d141618b6fcaee546483216860352bfe6229e8a3387ed285174c33627c3de1",
1167
1172
  "affectsGlobalScope": false
1168
1173
  },
1169
1174
  "../../core/components/atoms/popperWrapper/index.tsx": {
@@ -1192,7 +1197,7 @@
1192
1197
  "affectsGlobalScope": false
1193
1198
  },
1194
1199
  "../../core/components/molecules/stepper/Step.tsx": {
1195
- "version": "58031706ed376a5f2fb8762884e4ee0e7611fc38f634f1d1cf5588c764a61d95",
1200
+ "version": "24c97c539087827b4e65fb29350870c87768336543ff053398444b03663be00a",
1196
1201
  "signature": "272441305427b4d5b85edaff2df6af465c28fda2ff78e005056745a7e4f342dd",
1197
1202
  "affectsGlobalScope": false
1198
1203
  },
@@ -1207,12 +1212,12 @@
1207
1212
  "affectsGlobalScope": false
1208
1213
  },
1209
1214
  "../../core/components/organisms/dateRangePicker/Trigger.tsx": {
1210
- "version": "67bfdc2dccf016c9d72f3b9423f10260069a8657139200b97956efb91c77c058",
1215
+ "version": "fba568d72c7d10f03e95d4fd134e437afd8c8bf14ff9fef0042e7c357671c240",
1211
1216
  "signature": "8fb63e48afc23facf041aca8ebad538ec833649c1cb291890b8a7edb55a9b10c",
1212
1217
  "affectsGlobalScope": false
1213
1218
  },
1214
1219
  "../../core/components/organisms/dateRangePicker/SingleInputTrigger.tsx": {
1215
- "version": "54fd1443005143aeba4d35c9b1228fd6c96f79f7862099a7ec78cc7cf8583b2c",
1220
+ "version": "5967e3006585a5f91f00ae85ddcd08f6e8ae7f074d1c831068323a8eacc20431",
1216
1221
  "signature": "52e4e6fe9fd5d633812a50a1d0e4f4b07a343308ae3ce85e664cf1aa38566fa5",
1217
1222
  "affectsGlobalScope": false
1218
1223
  },
@@ -1537,7 +1542,7 @@
1537
1542
  "affectsGlobalScope": false
1538
1543
  },
1539
1544
  "../../core/utils/validators.ts": {
1540
- "version": "f64ecdd5308266b82c27f619129600458ac308c1e996953f98d81efe7fe4ff81",
1545
+ "version": "7e43c82f5d943ff68fede884cb963909ad3066540465ca20a57501774bb0ba2e",
1541
1546
  "signature": "f869aaae80c76d8dd252bb27085a6e1d16de0efbd9639f5a80269de1a68f73bf",
1542
1547
  "affectsGlobalScope": false
1543
1548
  },
@@ -4559,6 +4564,9 @@
4559
4564
  "*",
4560
4565
  "*",
4561
4566
  "*",
4567
+ "*",
4568
+ "*",
4569
+ "*",
4562
4570
  "*"
4563
4571
  ]
4564
4572
  },
@@ -4775,7 +4783,7 @@
4775
4783
  ],
4776
4784
  "../../core/components/atoms/checkbox/Checkbox.tsx": [
4777
4785
  "../../core/common.type.tsx",
4778
- "../../core/components/atoms/icon/index.tsx",
4786
+ "../../core/components/atoms/checkbox/CheckboxIcon.tsx",
4779
4787
  "../../core/components/atoms/text/index.tsx",
4780
4788
  "../../core/utils/types.tsx",
4781
4789
  "../../core/utils/uidGenerator.tsx",
@@ -4783,6 +4791,10 @@
4783
4791
  "../../node_modules/@types/react/index.d.ts",
4784
4792
  "../../node_modules/classnames/index.d.ts"
4785
4793
  ],
4794
+ "../../core/components/atoms/checkbox/CheckboxIcon.tsx": [
4795
+ "../../node_modules/@types/node/util.d.ts",
4796
+ "../../node_modules/@types/react/index.d.ts"
4797
+ ],
4786
4798
  "../../core/components/atoms/checkbox/index.tsx": [
4787
4799
  "../../core/components/atoms/checkbox/Checkbox.tsx",
4788
4800
  "../../node_modules/@types/node/util.d.ts"
@@ -4872,6 +4884,7 @@
4872
4884
  "../../core/components/atoms/dropdown/Loading.tsx": [
4873
4885
  "../../core/components/atoms/placeholderParagraph/index.tsx",
4874
4886
  "../../core/components/molecules/placeholder/index.tsx",
4887
+ "../../core/index.type.tsx",
4875
4888
  "../../node_modules/@types/node/util.d.ts",
4876
4889
  "../../node_modules/@types/react/index.d.ts"
4877
4890
  ],
@@ -5812,6 +5825,7 @@
5812
5825
  "../../node_modules/@types/node/util.d.ts"
5813
5826
  ],
5814
5827
  "../../core/components/organisms/calendar/Calendar.tsx": [
5828
+ "../../core/common.type.tsx",
5815
5829
  "../../core/components/organisms/calendar/config.ts",
5816
5830
  "../../core/components/organisms/calendar/types.ts",
5817
5831
  "../../core/components/organisms/calendar/utility.ts",
@@ -11554,6 +11568,7 @@
11554
11568
  "../../core/components/atoms/cardSubdued/CardSubdued.tsx",
11555
11569
  "../../core/components/atoms/cardSubdued/index.tsx",
11556
11570
  "../../core/components/atoms/checkbox/Checkbox.tsx",
11571
+ "../../core/components/atoms/checkbox/CheckboxIcon.tsx",
11557
11572
  "../../core/components/atoms/checkbox/index.tsx",
11558
11573
  "../../core/components/atoms/chip/Chip.tsx",
11559
11574
  "../../core/components/atoms/chip/index.tsx",
@@ -14,6 +14,7 @@ export interface CheckboxProps extends BaseProps, OmitNativeProps<HTMLInputEleme
14
14
  value?: string | number;
15
15
  tabIndex?: number;
16
16
  onChange?: (event: ChangeEvent) => void;
17
+ error?: boolean;
17
18
  id?: string;
18
19
  }
19
20
  export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
@@ -0,0 +1,5 @@
1
+ declare type CheckboxIconProp = {
2
+ name: string;
3
+ };
4
+ declare const CheckboxIcon: (props: CheckboxIconProp) => JSX.Element | null;
5
+ export default CheckboxIcon;
@@ -31,6 +31,7 @@ export interface InputProps extends BaseProps, BaseHtmlProps<HTMLInputElement> {
31
31
  onClick?: (e: React.MouseEvent<HTMLInputElement>) => void;
32
32
  onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
33
33
  onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
34
+ onPaste?: React.ClipboardEventHandler<HTMLInputElement>;
34
35
  actionIcon?: React.ReactElement<IconProps>;
35
36
  }
36
37
  export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;