@visns-studio/visns-components 5.0.2 → 5.0.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.
package/package.json CHANGED
@@ -75,7 +75,7 @@
75
75
  "react-dom": "^17.0.0 || ^18.0.0"
76
76
  },
77
77
  "name": "@visns-studio/visns-components",
78
- "version": "5.0.2",
78
+ "version": "5.0.4",
79
79
  "description": "Various packages to assist in the development of our Custom Applications.",
80
80
  "main": "src/index.js",
81
81
  "files": [
@@ -584,44 +584,44 @@ function Form({
584
584
 
585
585
  if (['create', 'update'].includes(formType)) {
586
586
  fields.forEach((item) => {
587
+ // Skip createOnly fields if formType is 'update'
587
588
  if (formType === 'update' && item.createOnly) {
588
589
  return;
589
590
  }
590
591
 
592
+ // Check if the item is required
591
593
  if (item.required) {
592
- if (
593
- formData[item.id] === null ||
594
- formData[item.id] === ''
595
- ) {
594
+ // Check if formData[item.id] is null, undefined, or an empty string
595
+ if (!formData[item.id]) {
596
+ // Check for required_check dependency
596
597
  if (
597
- item.hasOwnProperty('required_check') &&
598
598
  item.required_check &&
599
599
  !formData[item.required_check]
600
600
  ) {
601
601
  validation += `${item.label} is a required field.<br/>`;
602
602
  _inputClass[item.id] = styles.inputError;
603
603
  } else {
604
- console.info('b', formData, item.id);
605
604
  validation += `${item.label} is a required field.<br/>`;
606
605
  _inputClass[item.id] = styles.inputError;
607
606
  }
608
607
  } else {
609
- _inputClass[item.id] = '';
608
+ _inputClass[item.id] = ''; // Clear error class if valid
610
609
  }
611
610
  } else if (
612
- item.hasOwnProperty('required_rely') &&
613
611
  item.required_rely &&
614
612
  formData[item.required_rely] &&
615
- (formData[item.id] === null ||
616
- formData[item.id] === '')
613
+ !formData[item.id]
617
614
  ) {
615
+ // Check if the dependent required field is empty when it should be filled
618
616
  validation += `${item.label} is a required field.<br/>`;
619
617
  _inputClass[item.id] = styles.inputError;
620
618
  } else {
621
- _inputClass[item.id] = '';
619
+ _inputClass[item.id] = ''; // Clear error class if not required
622
620
  }
623
621
  });
624
622
 
623
+ console.info(_inputClass);
624
+
625
625
  setInputClass(_inputClass);
626
626
  }
627
627
 
@@ -1371,7 +1371,10 @@ function Form({
1371
1371
  <div className={styles.modal}>
1372
1372
  <div className={styles.modal__header}>
1373
1373
  <h1>{formSettings[formType]?.title}</h1>
1374
- <button className={styles.modal__close} onClick={closeModal}>
1374
+ <button
1375
+ className={styles.modal__close}
1376
+ onClick={closeModal}
1377
+ >
1375
1378
  <CircleX strokeWidth={2} size={24} />
1376
1379
  </button>
1377
1380
  </div>
@@ -9,6 +9,7 @@ import {
9
9
  Calendar,
10
10
  ChatDots,
11
11
  Clipboard,
12
+ CloudUpload,
12
13
  DoubleSword,
13
14
  Draft,
14
15
  Envelope,
@@ -294,6 +295,48 @@ function Navigation({
294
295
  };
295
296
 
296
297
  const renderNav = (n) => {
298
+ const iconComponents = {
299
+ arrowCycle: ArrowCycle,
300
+ bookClose: BookClose,
301
+ bookOpen: BookOpen,
302
+ briefcase: Briefcase,
303
+ calendar: Calendar,
304
+ chatDots: ChatDots,
305
+ clipboard: Clipboard,
306
+ cloudUpload: CloudUpload,
307
+ doubleSword: DoubleSword,
308
+ draft: Draft,
309
+ envelope: Envelope,
310
+ file: File,
311
+ folder: Folder,
312
+ folderAdd: FolderAdd,
313
+ gear: Gear,
314
+ grid: Grid,
315
+ home: Home,
316
+ homeAlt1: HomeAlt1,
317
+ inbox: Inbox,
318
+ info: Info,
319
+ lightBulb: LightBulb,
320
+ microphone: Microphone,
321
+ money: Money,
322
+ newspaper: Newspaper,
323
+ paper: Paper,
324
+ peopleGroup: PeopleGroup,
325
+ peopleMultiple: PeopleMultiple,
326
+ question: Question,
327
+ questionFill: QuestionFill,
328
+ search: Search,
329
+ settingsVertical: SettingsVertical,
330
+ signOut: SignOut,
331
+ shippingBoxV1: ShippingBoxV1,
332
+ statisticUp: StatisticUp,
333
+ textAlignLeft: TextAlignLeft,
334
+ ticket: Ticket,
335
+ utensils: Utensils,
336
+ };
337
+
338
+ const IconComponent = iconComponents[n.icon];
339
+
297
340
  let navItemClasses;
298
341
 
299
342
  if (n.class.includes('active')) {
@@ -111,30 +111,72 @@ select:not(:placeholder-shown) + .fi__span {
111
111
  }
112
112
 
113
113
  .grid__subcontent {
114
- flex: 0 1 85%;
115
- background: white;
114
+ flex: 0 1 80%;
115
+ background: var(--tertiary-color);
116
116
  border-radius: var(--br);
117
- border: 1px solid var(--border-color);
117
+ border: 1px solid rgba(var(--primary-rgb), 0.05);
118
118
  box-sizing: border-box;
119
- padding: 0;
120
- margin: 0.5rem 0;
119
+ padding: 2px;
120
+ margin: 8px 0;
121
121
  height: auto;
122
122
  position: relative;
123
123
  }
124
124
 
125
+ .grid__subcontent h2 {
126
+ color: var(--primary-color);
127
+ font-size: 1.35em;
128
+ padding: 0;
129
+ margin: 0 0 30px 0;
130
+ }
131
+
125
132
  .gridtxt__header {
126
133
  width: 100%;
127
134
  display: block;
128
- background: var(--border-color);
135
+ background: rgba(var(--primary-rgb), 0.05);
129
136
  box-sizing: border-box;
130
137
  padding: 10px 20px;
131
- border-top-left-radius: var(--br);
132
- border-top-right-radius: var(--br);
138
+ border-radius: var(--br);
133
139
  margin-bottom: 0;
134
140
  font-weight: 700;
135
141
  text-align: center;
136
142
  color: var(--paragraph-color);
137
- position: relative;
143
+ }
144
+
145
+ .gridtxt__header span {
146
+ font-weight: 700;
147
+ }
148
+
149
+ .gridtxt > ul {
150
+ width: 100%;
151
+ display: flex;
152
+ justify-content: flex-start;
153
+ flex-direction: row;
154
+ flex-wrap: wrap;
155
+ list-style: none;
156
+ box-sizing: border-box;
157
+ padding: 0.85rem;
158
+ margin: 0;
159
+ }
160
+
161
+ .gridtxt > ul li {
162
+ flex: 0 0 calc(50% - 10px);
163
+ padding: 0.85rem;
164
+ box-sizing: border-box;
165
+ border: 1px solid rgba(var(--primary-rgb), 0.095);
166
+ color: var(--paragraph-color);
167
+ background: rgba(var(--primary-rgb), 0.015);
168
+ margin: 5px;
169
+ border-radius: var(--br);
170
+ line-height: 1.45;
171
+ font-size: 1rem;
172
+ }
173
+
174
+ .gridtxt > ul .fw-grid-item {
175
+ flex: 0 0 calc(100% - 10px);
176
+ }
177
+
178
+ .gridtxt > ul .notecolor {
179
+ border: 1px solid var(--secondary-color);
138
180
  }
139
181
 
140
182
  .formcontainer {
@@ -163,7 +205,7 @@ select:not(:placeholder-shown) + .fi__span {
163
205
  .fi__span {
164
206
  position: absolute;
165
207
  transition: all 200ms;
166
- opacity: 0.8;
208
+ opacity: 1;
167
209
  left: 0;
168
210
  padding: 19px 20px;
169
211
  transform-origin: top left;
@@ -136,15 +136,14 @@
136
136
 
137
137
  .grid__subcontent {
138
138
  flex: 0 1 80%;
139
- background: var(--item-color);
139
+ background: var(--tertiary-color);
140
140
  border-radius: var(--br);
141
- border: 1px solid rgba(var(--item-color-rgb), 1.15);
141
+ border: 1px solid rgba(var(--primary-rgb), 0.05);
142
142
  box-sizing: border-box;
143
143
  padding: 2px;
144
144
  margin: 8px 0;
145
145
  height: auto;
146
146
  position: relative;
147
- box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
148
147
  }
149
148
 
150
149
  .grid__subcontent h2 {
@@ -157,10 +156,10 @@
157
156
  .gridtxt__header {
158
157
  width: 100%;
159
158
  display: block;
160
- background: rgba(var(--item-color-rgb), 1.05);
159
+ background: rgba(var(--primary-rgb), 0.05);
161
160
  box-sizing: border-box;
162
161
  padding: 10px 20px;
163
- border-radius: 0;
162
+ border-radius: var(--br);
164
163
  margin-bottom: 0;
165
164
  font-weight: 700;
166
165
  text-align: center;
@@ -187,12 +186,13 @@
187
186
  flex: 0 0 calc(50% - 10px);
188
187
  padding: 0.85rem;
189
188
  box-sizing: border-box;
190
- border: 1px solid rgba(var(--primary-color-rgb), 0.15);
189
+ border: 1px solid rgba(var(--primary-rgb), 0.095);
191
190
  color: var(--paragraph-color);
192
- background: rgba(var(--tertiary-color-rgb), 0.95);
191
+ background: rgba(var(--primary-rgb), 0.015);
193
192
  margin: 5px;
194
193
  border-radius: var(--br);
195
194
  line-height: 1.45;
195
+ font-size: 1rem;
196
196
  }
197
197
 
198
198
  .gridtxt > ul .fw-grid-item {
@@ -561,4 +561,48 @@
561
561
  color: var(--primary-color);
562
562
  background: var(--highlight-color);
563
563
  border: 1px solid rgba(var(--highlight-color-rgb), 1.05);
564
+ }
565
+
566
+ .crmtitle {
567
+ min-height: auto;
568
+ padding: 1rem;
569
+ margin: 0;
570
+ background: white;
571
+ border-radius: var(--br);
572
+ border: 1px solid rgba(var(--primary-rgb), 0.15);
573
+ position: relative;
574
+ display: flex;
575
+ align-items: center;
576
+ justify-content: space-between;
577
+
578
+ h1 {
579
+ font-weight: 700;
580
+ font-size: 1.25rem;
581
+ margin: 0;
582
+ padding: 0;
583
+ line-height: 1;
584
+
585
+ a {
586
+ text-decoration: none;
587
+ color: var(--secondary-color);
588
+ font-weight: 300;
589
+ }
590
+
591
+ svg {
592
+ color: rgba(var(--primary-rgb), 0.5);
593
+ position: relative;
594
+ top: 2px;
595
+ margin: 0 0.5rem;
596
+ max-width: 15px;
597
+ }
598
+ }
599
+
600
+ .titleInfo {
601
+ width: max-content;
602
+ }
603
+
604
+ .titleInfo span {
605
+ font-size: 0.875em;
606
+ color: rgba(var(--paragraph-color-rgb), 0.65);
607
+ }
564
608
  }
@@ -111,13 +111,13 @@
111
111
  }
112
112
 
113
113
  .grid__subcontent {
114
- flex: 0 1 85%;
115
- background: white;
114
+ flex: 0 1 80%;
115
+ background: var(--tertiary-color);
116
116
  border-radius: var(--br);
117
- border: 1px solid var(--border-color);
117
+ border: 1px solid rgba(var(--primary-rgb), 0.05);
118
118
  box-sizing: border-box;
119
- padding: 0;
120
- margin: 5px;
119
+ padding: 2px;
120
+ margin: 8px 0;
121
121
  height: auto;
122
122
  position: relative;
123
123
  }
@@ -132,36 +132,43 @@
132
132
  .gridtxt__header {
133
133
  width: 100%;
134
134
  display: block;
135
- background: var(--border-color);
135
+ background: rgba(var(--primary-rgb), 0.05);
136
136
  box-sizing: border-box;
137
137
  padding: 10px 20px;
138
- border-top-left-radius: var(--br);
139
- border-top-right-radius: var(--br);
138
+ border-radius: var(--br);
140
139
  margin-bottom: 0;
141
140
  font-weight: 700;
142
141
  text-align: center;
143
142
  color: var(--paragraph-color);
144
- position: relative;
145
143
  }
146
144
 
147
145
  .gridtxt__header span {
148
146
  font-weight: 700;
149
147
  }
150
148
 
151
- .gridtxt__header .btn {
152
- font-size: 0.85em;
153
- padding: 0.25em;
149
+ .gridtxt > ul {
150
+ width: 100%;
154
151
  display: flex;
155
- flex-wrap: nowrap;
156
- align-items: center;
157
- float: left;
158
- position: relative;
159
- top: -4px;
152
+ justify-content: flex-start;
153
+ flex-direction: row;
154
+ flex-wrap: wrap;
155
+ list-style: none;
156
+ box-sizing: border-box;
157
+ padding: 0.85rem;
158
+ margin: 0;
160
159
  }
161
160
 
162
- .gridtxt__header .btn svg {
163
- max-width: 15px;
164
- margin-right: 5px;
161
+ .gridtxt > ul li {
162
+ flex: 0 0 calc(50% - 10px);
163
+ padding: 0.85rem;
164
+ box-sizing: border-box;
165
+ border: 1px solid rgba(var(--primary-rgb), 0.095);
166
+ color: var(--paragraph-color);
167
+ background: rgba(var(--primary-rgb), 0.015);
168
+ margin: 5px;
169
+ border-radius: var(--br);
170
+ line-height: 1.45;
171
+ font-size: 1rem;
165
172
  }
166
173
 
167
174
  .formcontainer {
@@ -305,9 +312,9 @@ input[type='file']:hover {
305
312
  .fi__span {
306
313
  position: absolute;
307
314
  transition: all 200ms;
308
- opacity: 0.8;
315
+ opacity: 1;
309
316
  left: 0;
310
- padding: 19px 20px;
317
+ padding: 0 1rem;
311
318
  transform-origin: top left;
312
319
  cursor: text;
313
320
  }
@@ -369,7 +376,7 @@ select:not(:placeholder-shown) + .fi__span {
369
376
  transform: translateY(-110%) translateX(10px) scale(0.75);
370
377
  opacity: 1;
371
378
  padding: 0;
372
- background: var(--bg-color);
379
+ background: var(--tertiary-color);
373
380
  font-weight: 300;
374
381
  transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1);
375
382
  }
@@ -378,7 +385,7 @@ select:not(:placeholder-shown) + .fi__span {
378
385
  transform: translateY(-110%) translateX(10px) scale(0.75);
379
386
  opacity: 1;
380
387
  padding: 0;
381
- background: var(--bg-color);
388
+ background: var(--tertiary-color);
382
389
  font-weight: 300;
383
390
  transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1);
384
391
  }
@@ -434,49 +441,6 @@ select:not(:placeholder-shown) + .fi__span {
434
441
  border-color: red !important;
435
442
  }
436
443
 
437
- .AutocompletePlace {
438
- position: relative;
439
- }
440
-
441
- .AutocompletePlace svg {
442
- position: absolute;
443
- right: 0.5em;
444
- top: 0.5em;
445
- color: var(--paragraph-color);
446
- cursor: pointer;
447
- }
448
-
449
- .AutocompletePlace .toggleActive {
450
- color: var(--highlight-color);
451
- }
452
-
453
- .AutocompletePlace-input {
454
- padding: 0.65rem 3rem 0.65rem 0.95rem !important;
455
- height: 51.5px;
456
- }
457
-
458
- .AutocompletePlace-results {
459
- position: absolute;
460
- background-color: white;
461
- padding: 0;
462
- margin: 0;
463
- border: 1px solid rgba(var(--primary-color-rgb), 0.25);
464
- border-radius: var(--br);
465
- overflow: hidden;
466
- z-index: 999;
467
- }
468
-
469
- .AutocompletePlace-items {
470
- list-style: none;
471
- border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
472
- cursor: pointer;
473
- padding: 10px 10px;
474
- }
475
-
476
- .AutocompletePlace-items:hover {
477
- background-color: rgba(var(--paragraph-color-rgb), 0.065);
478
- }
479
-
480
444
  .react-datepicker-wrapper {
481
445
  width: 100% !important;
482
446
  }
@@ -506,49 +506,6 @@ select:not(:placeholder-shown) + .fi__span {
506
506
  border-color: red !important;
507
507
  }
508
508
 
509
- .AutocompletePlace {
510
- position: relative;
511
- }
512
-
513
- .AutocompletePlace svg {
514
- position: absolute;
515
- right: 0.5em;
516
- top: 0.5em;
517
- color: var(--paragraph-color);
518
- cursor: pointer;
519
- }
520
-
521
- .AutocompletePlace .toggleActive {
522
- color: var(--highlight-color);
523
- }
524
-
525
- .AutocompletePlace-input {
526
- padding: 0.65rem 3rem 0.65rem 0.95rem !important;
527
- height: 51.5px;
528
- }
529
-
530
- .AutocompletePlace-results {
531
- position: absolute;
532
- background-color: white;
533
- padding: 0;
534
- margin: 0;
535
- border: 1px solid rgba(var(--primary-color), 0.25);
536
- border-radius: var(--br);
537
- overflow: hidden;
538
- z-index: 999;
539
- }
540
-
541
- .AutocompletePlace-items {
542
- list-style: none;
543
- border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
544
- cursor: pointer;
545
- padding: 10px 10px;
546
- }
547
-
548
- .AutocompletePlace-items:hover {
549
- background-color: rgba(var(--paragraph-color-rgb), 0.065);
550
- }
551
-
552
509
  .react-datepicker-wrapper {
553
510
  width: 100% !important;
554
511
  }
@@ -4,41 +4,33 @@
4
4
 
5
5
  .AutocompletePlace {
6
6
  position: relative;
7
+ width: 100%;
7
8
 
8
9
  > svg {
9
10
  position: absolute;
10
11
  right: 0.5em;
11
- top: 0.5em;
12
- color: var(--primary-color);
12
+ top: 0.95rem;
13
+ color: var(--paragraph-color);
13
14
  cursor: pointer;
14
15
  }
15
- }
16
16
 
17
- .AutocompletePlace.toggleActive {
18
- color: var(--highlight-color);
17
+ .toggleActive {
18
+ color: var(--secondary-color);
19
+ }
19
20
  }
20
21
 
21
22
  .AutocompletePlace-input {
22
23
  padding: 0.65rem 3rem 0.65rem 0.95rem !important;
23
- }
24
-
25
- .AutocompletePlace-results {
26
- position: absolute;
27
- background-color: white;
28
- padding: 0;
29
- margin: 0;
30
- border: 1px solid rgba(var(--primary-color-rgb), 0.25);
31
- border-radius: var(--br);
32
- overflow: hidden;
24
+ height: 38px;
33
25
  }
34
26
 
35
27
  .AutocompletePlace-items {
36
28
  list-style: none;
37
- border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
29
+ border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
38
30
  cursor: pointer;
39
- padding: 10px 10px;
40
- }
31
+ padding: 5px;
41
32
 
42
- .AutocompletePlace-items:hover {
43
- background-color: rgba(var(--primary-color-rgb), 0.065);
33
+ &:hover {
34
+ background-color: rgba(var(--paragraph-rgb), 0.065);
35
+ }
44
36
  }
@@ -52,7 +52,7 @@
52
52
  .fi__span {
53
53
  position: absolute;
54
54
  transition: all 200ms;
55
- opacity: 0.8;
55
+ opacity: 1;
56
56
  left: 0;
57
57
  transform-origin: top left;
58
58
  cursor: text;
@@ -131,7 +131,7 @@ select:not(:placeholder-shown) + .fi__span {
131
131
  transform: translateY(-110%) translateX(10px) scale(0.75);
132
132
  opacity: 1;
133
133
  padding: 0;
134
- background: var(--bg-color);
134
+ background: var(--tertiary-color);
135
135
  font-weight: 300;
136
136
  transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1);
137
137
  }
@@ -140,7 +140,7 @@ select:not(:placeholder-shown) + .fi__span {
140
140
  transform: translateY(-110%) translateX(10px) scale(0.75);
141
141
  opacity: 1;
142
142
  padding: 0;
143
- background: var(--bg-color);
143
+ background: var(--tertiary-color);
144
144
  font-weight: 300;
145
145
  transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1);
146
146
  z-index: 999;
@@ -27,7 +27,7 @@
27
27
  .fi__span {
28
28
  position: absolute;
29
29
  transition: all 200ms;
30
- opacity: 0.8;
30
+ opacity: 1;
31
31
  left: 0;
32
32
  transform-origin: top left;
33
33
  cursor: text;
@@ -105,7 +105,7 @@ select:not(:placeholder-shown) + .fi__span {
105
105
  transform: translateY(-110%) translateX(10px) scale(0.75);
106
106
  opacity: 1;
107
107
  padding: 0;
108
- background: var(--bg-color);
108
+ background: var(--tertiary-color);
109
109
  font-weight: 300;
110
110
  transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1);
111
111
  }
@@ -114,7 +114,7 @@ select:not(:placeholder-shown) + .fi__span {
114
114
  transform: translateY(-110%) translateX(10px) scale(0.75);
115
115
  opacity: 1;
116
116
  padding: 0;
117
- background: var(--bg-color);
117
+ background: var(--tertiary-color);
118
118
  font-weight: 300;
119
119
  transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1);
120
120
  z-index: 999;
@@ -265,4 +265,4 @@ input[type='file'] {
265
265
  border-radius: var(--br);
266
266
  }
267
267
  }
268
- }
268
+ }
@@ -828,56 +828,4 @@
828
828
  max-width: 20px;
829
829
  }
830
830
  }
831
- }
832
-
833
- .AutocompletePlace-results {
834
- z-index: 999;
835
- }
836
-
837
- .AutocompletePlace {
838
- position: relative;
839
-
840
- > svg {
841
- position: absolute;
842
- right: 0.5em;
843
- top: 0.5em;
844
- color: var(--paragraph-color);
845
- cursor: pointer;
846
- }
847
-
848
- .toggleActive {
849
- color: var(--secondary-color);
850
- }
851
- }
852
-
853
- .AutocompletePlace-input {
854
- padding: 0.65rem 3rem 0.65rem 0.95rem !important;
855
- height: 38px;
856
- }
857
-
858
- .AutocompletePlace-results {
859
- width: 400px;
860
- position: absolute;
861
- background-color: var(--tertiary-color);
862
- padding: 0;
863
- margin: 0;
864
- border: 1px solid rgba(var(--primary-rgb), 0.25);
865
- border-radius: var(--br);
866
- overflow: hidden;
867
-
868
- ul {
869
- padding: 0;
870
- margin: 0;
871
- }
872
- }
873
-
874
- .AutocompletePlace-items {
875
- list-style: none;
876
- border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
877
- cursor: pointer;
878
- padding: 10px 10px;
879
-
880
- &:hover {
881
- background-color: rgba(var(--paragraph-rgb), 0.065);
882
- }
883
- }
831
+ }
@@ -110,4 +110,51 @@ input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
110
110
  .popup-content {
111
111
  border-radius: var(--br);
112
112
  padding: 0 !important;
113
+ }
114
+
115
+ .AutocompletePlace-results {
116
+ z-index: 999;
117
+ width: 500px;
118
+ position: absolute;
119
+ background-color: var(--tertiary-color);
120
+ padding: 0;
121
+ margin: 0;
122
+ border: 1px solid rgba(var(--primary-rgb), 0.25);
123
+ border-radius: var(--br);
124
+ overflow: hidden;
125
+ font-size: 1rem;
126
+ max-height: 150px;
127
+ overflow-y: auto;
128
+
129
+
130
+ ul {
131
+ font-size: 1rem;
132
+ padding: 0;
133
+ margin: 0;
134
+ }
135
+ }
136
+
137
+ .vs-datagrid--row:hover {
138
+ .InovuaReactDataGrid__row-cell-wrap {
139
+ background: rgb(240, 240, 240) !important;
140
+ cursor: pointer;
141
+ }
142
+ }
143
+
144
+ .InovuaReactDataGrid {
145
+ letter-spacing: 0.015rem !important;
146
+ color: black !important;
147
+ }
148
+
149
+ .InovuaReactDataGrid__header {
150
+ color: var(--primary-color) !important;
151
+ }
152
+
153
+ .InovuaReactDataGrid__row-hover-target:hover {
154
+ color: black !important;
155
+ background: rgb(240, 240, 240) !important;
156
+ }
157
+
158
+ .InovuaReactDataGrid__row:hover {
159
+ cursor: pointer;
113
160
  }