sccoreui 6.2.53 → 6.2.55
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/App.scss
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:list";
|
|
1
3
|
@import url("./assets/theme.css");
|
|
2
4
|
@import url("./assets/sccoreui.css");
|
|
3
5
|
@import url("./assets/flex.css");
|
|
4
6
|
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
|
|
5
7
|
@import url("./assets/sccoreicons.css");
|
|
8
|
+
@import "./mixin.scss";
|
|
6
9
|
|
|
7
10
|
// variables
|
|
8
11
|
|
|
@@ -100,6 +103,23 @@ code {
|
|
|
100
103
|
// font-weight: var(--fw-400);
|
|
101
104
|
// }
|
|
102
105
|
|
|
106
|
+
// ============= Button styles =============== //
|
|
107
|
+
// .btn-primary {
|
|
108
|
+
// @include btn(primary);
|
|
109
|
+
// }
|
|
110
|
+
|
|
111
|
+
// .btn-secondary {
|
|
112
|
+
// @include btn(secondary);
|
|
113
|
+
// }
|
|
114
|
+
|
|
115
|
+
// .btn-outline {
|
|
116
|
+
// @include btn(outline);
|
|
117
|
+
// }
|
|
118
|
+
|
|
119
|
+
// .btn-text {
|
|
120
|
+
// @include btn(text);
|
|
121
|
+
// }
|
|
122
|
+
|
|
103
123
|
// ============= custom progress steps =============== //
|
|
104
124
|
|
|
105
125
|
.progress-container {
|
|
@@ -143,6 +163,49 @@ code {
|
|
|
143
163
|
}
|
|
144
164
|
}
|
|
145
165
|
|
|
166
|
+
// .col-gr-icon-lg {
|
|
167
|
+
// width: 20px;
|
|
168
|
+
// animation: scaleImgLarge 0.4s forwards;
|
|
169
|
+
// }
|
|
170
|
+
|
|
171
|
+
// .col-gr-icon-sm {
|
|
172
|
+
// width: 0px;
|
|
173
|
+
// animation: scaleImgsmall 0.4s forwards;
|
|
174
|
+
// }
|
|
175
|
+
|
|
176
|
+
// @keyframes scaleImgLarge {
|
|
177
|
+
// 0% {
|
|
178
|
+
// width: 0;
|
|
179
|
+
// }
|
|
180
|
+
// 100% {
|
|
181
|
+
// width: 20px;
|
|
182
|
+
// }
|
|
183
|
+
// }
|
|
184
|
+
|
|
185
|
+
// @keyframes scaleImgsmall {
|
|
186
|
+
// 100% {
|
|
187
|
+
// width: 20px;
|
|
188
|
+
// }
|
|
189
|
+
// 0% {
|
|
190
|
+
// width: 0px;
|
|
191
|
+
// }
|
|
192
|
+
// }
|
|
193
|
+
|
|
194
|
+
.col-gr-icon {
|
|
195
|
+
width: 0;
|
|
196
|
+
transition: width 0.4s ease;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.col-gr-icon-active {
|
|
200
|
+
width: 20px;
|
|
201
|
+
transition: width 0.4s ease; /* Ensure transition applies both ways */
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.no-content {
|
|
205
|
+
text-align: center;
|
|
206
|
+
padding: 10px;
|
|
207
|
+
}
|
|
208
|
+
|
|
146
209
|
.progress-step-item {
|
|
147
210
|
&.horizontal {
|
|
148
211
|
&:nth-of-type(1) {
|
package/dist/assets/sccoreui.css
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
--surface-700: #616161;
|
|
23
23
|
--surface-800: #424242;
|
|
24
24
|
--surface-900: #212121;
|
|
25
|
-
--gray-25
|
|
25
|
+
--gray-25: #fcfcfd;
|
|
26
26
|
--gray-50: #f9fafb;
|
|
27
27
|
--gray-100: #f2f4f7;
|
|
28
28
|
--gray-200: #eaecf0;
|
|
@@ -131,7 +131,7 @@ a {
|
|
|
131
131
|
|
|
132
132
|
.p-link {
|
|
133
133
|
font-size: 1rem;
|
|
134
|
-
font-family:
|
|
134
|
+
font-family: "Lato", sans-serif;
|
|
135
135
|
border-radius: 6px;
|
|
136
136
|
}
|
|
137
137
|
.p-link:focus {
|
|
@@ -166,7 +166,7 @@ a {
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
:root {
|
|
169
|
-
--blue-25
|
|
169
|
+
--blue-25: #f1efff;
|
|
170
170
|
--blue-50: #e3dfff;
|
|
171
171
|
--blue-100: #d5cfff;
|
|
172
172
|
--blue-200: #c7bfff;
|
|
@@ -177,7 +177,7 @@ a {
|
|
|
177
177
|
--blue-700: #3b1eff;
|
|
178
178
|
--blue-800: #2504ff;
|
|
179
179
|
--blue-900: #1f00ea;
|
|
180
|
-
--green-25
|
|
180
|
+
--green-25: #f6fef9;
|
|
181
181
|
--green-50: #ecfdf3;
|
|
182
182
|
--green-100: #d1fadf;
|
|
183
183
|
--green-200: #a6f4c5;
|
|
@@ -188,7 +188,7 @@ a {
|
|
|
188
188
|
--green-700: #027a48;
|
|
189
189
|
--green-800: #05603a;
|
|
190
190
|
--green-900: #054f31;
|
|
191
|
-
--yellow-25
|
|
191
|
+
--yellow-25: #fff4ef;
|
|
192
192
|
--yellow-50: #fefbf3;
|
|
193
193
|
--yellow-100: #faedc4;
|
|
194
194
|
--yellow-200: #f6de95;
|
|
@@ -199,7 +199,7 @@ a {
|
|
|
199
199
|
--yellow-700: #a47d06;
|
|
200
200
|
--yellow-800: #816204;
|
|
201
201
|
--yellow-900: #5e4803;
|
|
202
|
-
--cyan-25
|
|
202
|
+
--cyan-25: #e5f3ff;
|
|
203
203
|
--cyan-50: #d5ebff;
|
|
204
204
|
--cyan-100: #bfe1ff;
|
|
205
205
|
--cyan-200: #aad8ff;
|
|
@@ -220,7 +220,7 @@ a {
|
|
|
220
220
|
--pink-700: #a5326b;
|
|
221
221
|
--pink-800: #822854;
|
|
222
222
|
--pink-900: #5e1d3d;
|
|
223
|
-
--indigo-25
|
|
223
|
+
--indigo-25: #f1efff;
|
|
224
224
|
--indigo-50: #e3dfff;
|
|
225
225
|
--indigo-100: #d5cfff;
|
|
226
226
|
--indigo-200: #c7bfff;
|
|
@@ -241,7 +241,7 @@ a {
|
|
|
241
241
|
--teal-700: #0e8174;
|
|
242
242
|
--teal-800: #0b655b;
|
|
243
243
|
--teal-900: #084a42;
|
|
244
|
-
--orange-25
|
|
244
|
+
--orange-25: #fffcf5;
|
|
245
245
|
--orange-50: #fffaeb;
|
|
246
246
|
--orange-100: #fef0c7;
|
|
247
247
|
--orange-200: #fedf89;
|
|
@@ -272,7 +272,7 @@ a {
|
|
|
272
272
|
--purple-700: #763cad;
|
|
273
273
|
--purple-800: #5c2f88;
|
|
274
274
|
--purple-900: #432263;
|
|
275
|
-
--red-25
|
|
275
|
+
--red-25: #fffbfa;
|
|
276
276
|
--red-50: #fef3f2;
|
|
277
277
|
--red-100: #fee4e2;
|
|
278
278
|
--red-200: #fecdca;
|
|
@@ -283,7 +283,7 @@ a {
|
|
|
283
283
|
--red-700: #b42318;
|
|
284
284
|
--red-800: #912018;
|
|
285
285
|
--red-900: #7a271a;
|
|
286
|
-
--primary-25
|
|
286
|
+
--primary-25: #f5f6fd;
|
|
287
287
|
--primary-50: #e2e5fa;
|
|
288
288
|
--primary-100: #ced4f6;
|
|
289
289
|
--primary-200: #a8b2ef;
|
|
@@ -325,7 +325,7 @@ a {
|
|
|
325
325
|
.p-autocomplete-multiple-container
|
|
326
326
|
.p-autocomplete-input-token
|
|
327
327
|
input {
|
|
328
|
-
|
|
328
|
+
font-family: "Lato", sans-serif;
|
|
329
329
|
font-size: 1rem;
|
|
330
330
|
color: #495057;
|
|
331
331
|
padding: 0;
|
|
@@ -933,7 +933,7 @@ a {
|
|
|
933
933
|
padding: 0.375rem 0;
|
|
934
934
|
}
|
|
935
935
|
.p-chips .p-chips-multiple-container .p-chips-input-token input {
|
|
936
|
-
font-family:
|
|
936
|
+
font-family: "Lato", sans-serif;
|
|
937
937
|
font-size: var(--fs-14);
|
|
938
938
|
color: #495057;
|
|
939
939
|
padding: 0;
|
|
@@ -1043,7 +1043,7 @@ a {
|
|
|
1043
1043
|
}
|
|
1044
1044
|
|
|
1045
1045
|
.p-dropdown .p-dropdown-label.p-inputtext {
|
|
1046
|
-
|
|
1046
|
+
height: auto;
|
|
1047
1047
|
}
|
|
1048
1048
|
|
|
1049
1049
|
.p-inputgroup > .p-dropdown > .p-dropdown-label {
|
|
@@ -1509,7 +1509,7 @@ a {
|
|
|
1509
1509
|
/* ====== Customised input start ========== */
|
|
1510
1510
|
|
|
1511
1511
|
.p-inputtext {
|
|
1512
|
-
font-family:
|
|
1512
|
+
font-family: "Lato", sans-serif;
|
|
1513
1513
|
font-size: var(--fs-16);
|
|
1514
1514
|
color: var(--gray-900);
|
|
1515
1515
|
background: #ffffff;
|
|
@@ -1544,7 +1544,7 @@ a {
|
|
|
1544
1544
|
.p-inputtext.p-invalid:enabled:focus {
|
|
1545
1545
|
outline: 0 none;
|
|
1546
1546
|
outline-offset: 0;
|
|
1547
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--red-100);
|
|
1547
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--red-100);
|
|
1548
1548
|
border-radius: 8px;
|
|
1549
1549
|
border: 1px solid var(--red-300);
|
|
1550
1550
|
}
|
|
@@ -1761,8 +1761,7 @@ a {
|
|
|
1761
1761
|
.p-multiselect:not(.p-disabled).p-focus {
|
|
1762
1762
|
outline: 0 none;
|
|
1763
1763
|
outline-offset: 0;
|
|
1764
|
-
box-shadow: 0 0 0 0.1rem #
|
|
1765
|
-
|
|
1764
|
+
box-shadow: 0 0 0 0.1rem #c7d2fe;
|
|
1766
1765
|
}
|
|
1767
1766
|
.p-multiselect.p-multiselect-clearable .p-multiselect-label {
|
|
1768
1767
|
padding-right: 1.75rem;
|
|
@@ -2341,7 +2340,8 @@ a {
|
|
|
2341
2340
|
/* ##################################### Basic Button CSS changes Start #################################################### */
|
|
2342
2341
|
|
|
2343
2342
|
/* Default Button Classes */
|
|
2344
|
-
.p-button,
|
|
2343
|
+
.p-button,
|
|
2344
|
+
.p-button-sm {
|
|
2345
2345
|
color: #ffffff;
|
|
2346
2346
|
background: var(--primary-500);
|
|
2347
2347
|
line-height: 20px;
|
|
@@ -2365,7 +2365,8 @@ a {
|
|
|
2365
2365
|
.p-button:focus {
|
|
2366
2366
|
outline: 0 none;
|
|
2367
2367
|
outline-offset: 0;
|
|
2368
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
2368
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
2369
|
+
0px 0px 0px 2px var(--primary-100);
|
|
2369
2370
|
border: 1px solid var(--primary-600);
|
|
2370
2371
|
}
|
|
2371
2372
|
|
|
@@ -2391,8 +2392,9 @@ a {
|
|
|
2391
2392
|
outline: 0 none;
|
|
2392
2393
|
outline-offset: 0;
|
|
2393
2394
|
background: transparent;
|
|
2394
|
-
border: 1px solid var(--gray-300);
|
|
2395
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
2395
|
+
border: 1px solid var(--gray-300);
|
|
2396
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
2397
|
+
0px 0px 0px 2px var(--gray-100);
|
|
2396
2398
|
}
|
|
2397
2399
|
|
|
2398
2400
|
/* Button with No Background and No Outline */
|
|
@@ -2553,31 +2555,32 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
2553
2555
|
.p-button.p-button-secondary:not(button):not(a):not(.p-disabled):hover,
|
|
2554
2556
|
.p-buttonset.p-button-secondary > .p-button:enabled:hover,
|
|
2555
2557
|
.p-buttonset.p-button-secondary
|
|
2556
|
-
> .p-button:not(button):not(a):not(.p-disabled):hover,
|
|
2558
|
+
> .p-button:not(button):not(a):not(.p-disabled):hover,
|
|
2557
2559
|
.p-splitbutton.p-button-secondary > .p-button:enabled:hover,
|
|
2558
2560
|
.p-splitbutton.p-button-secondary
|
|
2559
|
-
> .p-button:not(button):not(a):not(.p-disabled):hover,
|
|
2561
|
+
> .p-button:not(button):not(a):not(.p-disabled):hover,
|
|
2560
2562
|
.p-fileupload-choose.p-button-secondary:enabled:hover,
|
|
2561
2563
|
.p-fileupload-choose.p-button-secondary:not(button):not(a):not(
|
|
2562
|
-
|
|
2564
|
+
.p-disabled
|
|
2563
2565
|
):hover {
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2566
|
+
background: var(--primary-100);
|
|
2567
|
+
color: var(--primary-800);
|
|
2568
|
+
border-color: var(--primary-100);
|
|
2569
|
+
}
|
|
2568
2570
|
.p-button.p-button-secondary:enabled:focus,
|
|
2569
2571
|
.p-button.p-button-secondary:not(button):not(a):not(.p-disabled):focus,
|
|
2570
2572
|
.p-buttonset.p-button-secondary > .p-button:enabled:focus,
|
|
2571
2573
|
.p-buttonset.p-button-secondary
|
|
2572
|
-
> .p-button:not(button):not(a):not(.p-disabled):focus,
|
|
2574
|
+
> .p-button:not(button):not(a):not(.p-disabled):focus,
|
|
2573
2575
|
.p-splitbutton.p-button-secondary > .p-button:enabled:focus,
|
|
2574
2576
|
.p-splitbutton.p-button-secondary
|
|
2575
|
-
> .p-button:not(button):not(a):not(.p-disabled):focus,
|
|
2577
|
+
> .p-button:not(button):not(a):not(.p-disabled):focus,
|
|
2576
2578
|
.p-fileupload-choose.p-button-secondary:enabled:focus,
|
|
2577
2579
|
.p-fileupload-choose.p-button-secondary:not(button):not(a):not(
|
|
2578
|
-
|
|
2580
|
+
.p-disabled
|
|
2579
2581
|
):focus {
|
|
2580
|
-
|
|
2582
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
2583
|
+
0px 0px 0px 2px var(--primary-100);
|
|
2581
2584
|
}
|
|
2582
2585
|
.p-button.p-button-secondary:enabled:active,
|
|
2583
2586
|
.p-button.p-button-secondary:not(button):not(a):not(.p-disabled):active,
|
|
@@ -2586,125 +2589,125 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
2586
2589
|
> .p-button:not(button):not(a):not(.p-disabled):active,
|
|
2587
2590
|
.p-splitbutton.p-button-secondary > .p-button:enabled:active,
|
|
2588
2591
|
.p-splitbutton.p-button-secondary
|
|
2589
|
-
> .p-button:not(button):not(a):not(.p-disabled):active,
|
|
2592
|
+
> .p-button:not(button):not(a):not(.p-disabled):active,
|
|
2590
2593
|
.p-fileupload-choose.p-button-secondary:enabled:active,
|
|
2591
2594
|
.p-fileupload-choose.p-button-secondary:not(button):not(a):not(
|
|
2592
|
-
|
|
2595
|
+
.p-disabled
|
|
2593
2596
|
):active {
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2597
|
+
background: var(--primary-100);
|
|
2598
|
+
color: var(--primary-800);
|
|
2599
|
+
border-color: var(--primary-100);
|
|
2600
|
+
}
|
|
2601
|
+
.p-button.p-button-secondary.p-button-outlined,
|
|
2602
|
+
.p-buttonset.p-button-secondary > .p-button.p-button-outlined,
|
|
2603
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-outlined,
|
|
2604
|
+
.p-fileupload-choose.p-button-secondary.p-button-outlined {
|
|
2605
|
+
background-color: transparent;
|
|
2606
|
+
color: #344054;
|
|
2607
|
+
border: 1px solid #d0d5dd;
|
|
2608
|
+
height: 44px !important;
|
|
2609
|
+
}
|
|
2610
|
+
.p-button.p-button-secondary.p-button-outlined:enabled:hover,
|
|
2611
|
+
.p-button.p-button-secondary.p-button-outlined:not(button):not(a):not(
|
|
2609
2612
|
.p-disabled
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2613
|
+
):hover,
|
|
2614
|
+
.p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:hover,
|
|
2615
|
+
.p-buttonset.p-button-secondary
|
|
2616
|
+
> .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover,
|
|
2617
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:hover,
|
|
2618
|
+
.p-splitbutton.p-button-secondary
|
|
2619
|
+
> .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):hover,
|
|
2620
|
+
.p-fileupload-choose.p-button-secondary.p-button-outlined:enabled:hover,
|
|
2621
|
+
.p-fileupload-choose.p-button-secondary.p-button-outlined:not(button):not(
|
|
2622
|
+
a
|
|
2623
|
+
):not(.p-disabled):hover {
|
|
2624
|
+
background: rgba(100, 116, 139, 0.04);
|
|
2625
|
+
color: #344054;
|
|
2626
|
+
border: 1px solid #d0d5dd;
|
|
2627
|
+
}
|
|
2628
|
+
.p-button.p-button-secondary.p-button-outlined:enabled:active,
|
|
2629
|
+
.p-button.p-button-secondary.p-button-outlined:not(button):not(a):not(
|
|
2630
|
+
.p-disabled
|
|
2631
|
+
):active,
|
|
2632
|
+
.p-buttonset.p-button-secondary > .p-button.p-button-outlined:enabled:active,
|
|
2633
|
+
.p-buttonset.p-button-secondary
|
|
2634
|
+
> .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active,
|
|
2635
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-outlined:enabled:active,
|
|
2636
|
+
.p-splitbutton.p-button-secondary
|
|
2637
|
+
> .p-button.p-button-outlined:not(button):not(a):not(.p-disabled):active,
|
|
2638
|
+
.p-fileupload-choose.p-button-secondary.p-button-outlined:enabled:active,
|
|
2639
|
+
.p-fileupload-choose.p-button-secondary.p-button-outlined:not(button):not(
|
|
2640
|
+
a
|
|
2638
2641
|
):not(.p-disabled):active {
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2642
|
+
background: rgba(100, 116, 139, 0.16);
|
|
2643
|
+
color: #64748b;
|
|
2644
|
+
border: 1px solid;
|
|
2645
|
+
}
|
|
2646
|
+
.p-button.p-button-secondary.p-button-text,
|
|
2647
|
+
.p-buttonset.p-button-secondary > .p-button.p-button-text,
|
|
2648
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-text,
|
|
2649
|
+
.p-fileupload-choose.p-button-secondary.p-button-text {
|
|
2650
|
+
background-color: transparent;
|
|
2651
|
+
color: #64748b;
|
|
2652
|
+
border-color: transparent;
|
|
2653
|
+
}
|
|
2654
|
+
.p-button.p-button-secondary.p-button-text:enabled:hover,
|
|
2655
|
+
.p-button.p-button-secondary.p-button-text:not(button):not(a):not(
|
|
2653
2656
|
.p-disabled
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2657
|
+
):hover,
|
|
2658
|
+
.p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:hover,
|
|
2659
|
+
.p-buttonset.p-button-secondary
|
|
2660
|
+
> .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover,
|
|
2661
|
+
.p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:hover,
|
|
2659
2662
|
.p-splitbutton.p-button-secondary
|
|
2660
2663
|
> .p-button.p-button-text:not(button):not(a):not(.p-disabled):hover,
|
|
2661
|
-
|
|
2662
|
-
|
|
2664
|
+
.p-fileupload-choose.p-button-secondary.p-button-text:enabled:hover,
|
|
2665
|
+
.p-fileupload-choose.p-button-secondary.p-button-text:not(button):not(a):not(
|
|
2663
2666
|
.p-disabled
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2667
|
+
):hover {
|
|
2668
|
+
background: rgba(100, 116, 139, 0.04);
|
|
2669
|
+
border-color: transparent;
|
|
2670
|
+
color: #64748b;
|
|
2671
|
+
}
|
|
2672
|
+
.p-button.p-button-secondary.p-button-text:enabled:active,
|
|
2673
|
+
.p-button.p-button-secondary.p-button-text:not(button):not(a):not(
|
|
2671
2674
|
.p-disabled
|
|
2672
2675
|
):active,
|
|
2673
2676
|
.p-buttonset.p-button-secondary > .p-button.p-button-text:enabled:active,
|
|
2674
2677
|
.p-buttonset.p-button-secondary
|
|
2675
|
-
> .p-button.p-button-text:not(button):not(a):not(.p-disabled):active,
|
|
2678
|
+
> .p-button.p-button-text:not(button):not(a):not(.p-disabled):active,
|
|
2676
2679
|
.p-splitbutton.p-button-secondary > .p-button.p-button-text:enabled:active,
|
|
2677
2680
|
.p-splitbutton.p-button-secondary
|
|
2678
|
-
> .p-button.p-button-text:not(button):not(a):not(.p-disabled):active,
|
|
2681
|
+
> .p-button.p-button-text:not(button):not(a):not(.p-disabled):active,
|
|
2679
2682
|
.p-fileupload-choose.p-button-secondary.p-button-text:enabled:active,
|
|
2680
2683
|
.p-fileupload-choose.p-button-secondary.p-button-text:not(button):not(a):not(
|
|
2681
|
-
|
|
2684
|
+
.p-disabled
|
|
2682
2685
|
):active {
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2686
|
+
background: rgba(100, 116, 139, 0.16);
|
|
2687
|
+
border-color: transparent;
|
|
2688
|
+
color: #64748b;
|
|
2689
|
+
}
|
|
2690
|
+
/* ##################################### Basic Button CSS changes END #################################################### */
|
|
2691
|
+
|
|
2692
|
+
.p-button.p-button-info,
|
|
2693
|
+
.p-buttonset.p-button-info > .p-button,
|
|
2694
|
+
.p-splitbutton.p-button-info > .p-button,
|
|
2695
|
+
.p-fileupload-choose.p-button-info {
|
|
2696
|
+
color: #ffffff;
|
|
2697
|
+
background: #3b82f6;
|
|
2698
|
+
border: 1px solid #3b82f6;
|
|
2699
|
+
}
|
|
2700
|
+
.p-button.p-button-info:enabled:hover,
|
|
2701
|
+
.p-button.p-button-info:not(button):not(a):not(.p-disabled):hover,
|
|
2702
|
+
.p-buttonset.p-button-info > .p-button:enabled:hover,
|
|
2703
|
+
.p-buttonset.p-button-info
|
|
2701
2704
|
> .p-button:not(button):not(a):not(.p-disabled):hover,
|
|
2702
|
-
|
|
2703
|
-
|
|
2705
|
+
.p-splitbutton.p-button-info > .p-button:enabled:hover,
|
|
2706
|
+
.p-splitbutton.p-button-info
|
|
2704
2707
|
> .p-button:not(button):not(a):not(.p-disabled):hover,
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
+
.p-fileupload-choose.p-button-info:enabled:hover,
|
|
2709
|
+
.p-fileupload-choose.p-button-info:not(button):not(a):not(.p-disabled):hover {
|
|
2710
|
+
background: #2563eb;
|
|
2708
2711
|
color: #ffffff;
|
|
2709
2712
|
border-color: #2563eb;
|
|
2710
2713
|
}
|
|
@@ -3241,7 +3244,7 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
3241
3244
|
border-color: transparent;
|
|
3242
3245
|
color: #a855f7;
|
|
3243
3246
|
}
|
|
3244
|
-
|
|
3247
|
+
/* Button Changes Done Here For Danger Button */
|
|
3245
3248
|
.p-button.p-button-danger,
|
|
3246
3249
|
.p-buttonset.p-button-danger > .p-button,
|
|
3247
3250
|
.p-splitbutton.p-button-danger > .p-button,
|
|
@@ -3288,9 +3291,9 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
3288
3291
|
.p-fileupload-choose.p-button-danger:not(button):not(a):not(
|
|
3289
3292
|
.p-disabled
|
|
3290
3293
|
):active {
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
+
color: #ffffff;
|
|
3295
|
+
background: var(--red-700);
|
|
3296
|
+
border: 1px solid var(--red-700);
|
|
3294
3297
|
}
|
|
3295
3298
|
/* Error Secondary color CSS changes Start */
|
|
3296
3299
|
.p-button.p-button-danger-secondary,
|
|
@@ -3311,7 +3314,9 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
3311
3314
|
.p-splitbutton.p-button-danger-secondary
|
|
3312
3315
|
> .p-button:not(button):not(a):not(.p-disabled):hover,
|
|
3313
3316
|
.p-fileupload-choose.p-button-danger-secondary:enabled:hover,
|
|
3314
|
-
.p-fileupload-choose.p-button-danger-secondary:not(button):not(a):not(
|
|
3317
|
+
.p-fileupload-choose.p-button-danger-secondary:not(button):not(a):not(
|
|
3318
|
+
.p-disabled
|
|
3319
|
+
):hover {
|
|
3315
3320
|
background: var(--red-100);
|
|
3316
3321
|
border: 1px solid var(--red-100);
|
|
3317
3322
|
color: var(--red-800);
|
|
@@ -3329,12 +3334,12 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
3329
3334
|
.p-fileupload-choose.p-button-danger-secondary:not(button):not(a):not(
|
|
3330
3335
|
.p-disabled
|
|
3331
3336
|
):active {
|
|
3332
|
-
|
|
3337
|
+
background: var(--red-100);
|
|
3333
3338
|
border: 1px solid var(--red-100);
|
|
3334
3339
|
color: var(--red-800);
|
|
3335
|
-
|
|
3340
|
+
}
|
|
3336
3341
|
|
|
3337
|
-
|
|
3342
|
+
.p-button.p-button-danger-secondary:enabled:focus,
|
|
3338
3343
|
.p-button.p-button-danger-secondary:not(button):not(a):not(.p-disabled):focus,
|
|
3339
3344
|
.p-buttonset.p-button-danger-secondary > .p-button:enabled:focus,
|
|
3340
3345
|
.p-buttonset.p-button-danger-secondary
|
|
@@ -3343,7 +3348,9 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
3343
3348
|
.p-splitbutton.p-button-danger-secondary
|
|
3344
3349
|
> .p-button:not(button):not(a):not(.p-disabled):focus,
|
|
3345
3350
|
.p-fileupload-choose.p-button-danger-secondary:enabled:focus,
|
|
3346
|
-
.p-fileupload-choose.p-button-danger-secondary:not(button):not(a):not(
|
|
3351
|
+
.p-fileupload-choose.p-button-danger-secondary:not(button):not(a):not(
|
|
3352
|
+
.p-disabled
|
|
3353
|
+
):focus {
|
|
3347
3354
|
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--red-100);
|
|
3348
3355
|
}
|
|
3349
3356
|
|
|
@@ -3387,9 +3394,9 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
3387
3394
|
.p-fileupload-choose.p-button-danger.p-button-outlined:not(button):not(a):not(
|
|
3388
3395
|
.p-disabled
|
|
3389
3396
|
):active {
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3397
|
+
background: var(--red-50);
|
|
3398
|
+
color: var(--red-800);
|
|
3399
|
+
border: 1px solid var(--red-300);
|
|
3393
3400
|
}
|
|
3394
3401
|
.p-button.p-button-danger.p-button-text,
|
|
3395
3402
|
.p-buttonset.p-button-danger > .p-button.p-button-text,
|
|
@@ -5051,7 +5058,7 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
5051
5058
|
border-radius: 50%;
|
|
5052
5059
|
}
|
|
5053
5060
|
.p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
|
|
5054
|
-
|
|
5061
|
+
background: var(--gray-50);
|
|
5055
5062
|
/* border-color: var(--gray-50); */
|
|
5056
5063
|
font-weight: 500;
|
|
5057
5064
|
color: var(--gray-800);
|
|
@@ -6093,7 +6100,6 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
6093
6100
|
.p-breadcrumb ul li .p-menuitem-link:focus {
|
|
6094
6101
|
outline: 0 none;
|
|
6095
6102
|
outline-offset: 0;
|
|
6096
|
-
|
|
6097
6103
|
}
|
|
6098
6104
|
.p-breadcrumb ul li .p-menuitem-link .p-menuitem-text {
|
|
6099
6105
|
color: var(--gray-600);
|
|
@@ -7929,7 +7935,7 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
7929
7935
|
}
|
|
7930
7936
|
.p-terminal .p-terminal-input {
|
|
7931
7937
|
font-size: 1rem;
|
|
7932
|
-
font-family:
|
|
7938
|
+
font-family: "Lato", sans-serif;
|
|
7933
7939
|
}
|
|
7934
7940
|
|
|
7935
7941
|
.p-badge {
|
|
@@ -8027,7 +8033,7 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
8027
8033
|
background: var(--primary-700);
|
|
8028
8034
|
height: 2px;
|
|
8029
8035
|
bottom: 0;
|
|
8030
|
-
|
|
8036
|
+
|
|
8031
8037
|
transition: 500ms cubic-bezier(0.35, 0, 0.25, 1);
|
|
8032
8038
|
}
|
|
8033
8039
|
|
|
@@ -8043,7 +8049,8 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px var(--gray-100);
|
|
|
8043
8049
|
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #b1b3f8, 0 1px 2px 0 black;
|
|
8044
8050
|
} */
|
|
8045
8051
|
.p-button.p-button-secondary:enabled:focus {
|
|
8046
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8052
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8053
|
+
0px 0px 0px 2px var(--primary-100);
|
|
8047
8054
|
/* Changed the box shadow for Secondary Button */
|
|
8048
8055
|
}
|
|
8049
8056
|
.p-button.p-button-success:enabled:focus {
|
|
@@ -8213,18 +8220,18 @@ button:after {
|
|
|
8213
8220
|
@keyframes ripple {
|
|
8214
8221
|
0% {
|
|
8215
8222
|
transform: scale(0, 0);
|
|
8216
|
-
opacity:
|
|
8223
|
+
opacity: 0.2;
|
|
8217
8224
|
}
|
|
8218
8225
|
20% {
|
|
8219
|
-
transform: scale(
|
|
8220
|
-
opacity:
|
|
8226
|
+
transform: scale(15, 15);
|
|
8227
|
+
opacity: 0.2;
|
|
8221
8228
|
}
|
|
8222
8229
|
100% {
|
|
8223
|
-
opacity: 0;
|
|
8224
|
-
transform: scale(
|
|
8230
|
+
opacity: 0.2;
|
|
8231
|
+
transform: scale(20, 20);
|
|
8225
8232
|
}
|
|
8226
8233
|
}
|
|
8227
|
-
@-webkit-keyframes ripple {
|
|
8234
|
+
/* @-webkit-keyframes ripple {
|
|
8228
8235
|
0% {
|
|
8229
8236
|
transform: scale(0, 0);
|
|
8230
8237
|
opacity: 1;
|
|
@@ -8265,10 +8272,11 @@ button:after {
|
|
|
8265
8272
|
opacity: 0;
|
|
8266
8273
|
transform: scale(40, 40);
|
|
8267
8274
|
}
|
|
8268
|
-
}
|
|
8275
|
+
} */
|
|
8269
8276
|
|
|
8270
8277
|
button:focus:not(:active)::after {
|
|
8271
8278
|
animation: ripple 1s ease-out;
|
|
8279
|
+
/* transition: background 0.4s linear; */
|
|
8272
8280
|
}
|
|
8273
8281
|
|
|
8274
8282
|
button.remove-ripple:focus:not(:active)::after {
|
|
@@ -8305,7 +8313,8 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8305
8313
|
.p-calendar-w-btn-left .p-datepicker-trigger:focus {
|
|
8306
8314
|
outline: 0 none;
|
|
8307
8315
|
outline-offset: 0;
|
|
8308
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8316
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8317
|
+
0px 0px 0px 2px var(--primary-100);
|
|
8309
8318
|
border: 1px solid var(--primary-300);
|
|
8310
8319
|
border-right: 0px;
|
|
8311
8320
|
}
|
|
@@ -8326,17 +8335,14 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8326
8335
|
color: #495057;
|
|
8327
8336
|
border-radius: 12px;
|
|
8328
8337
|
}
|
|
8329
|
-
|
|
8330
|
-
}
|
|
8331
|
-
|
|
8332
|
-
|
|
8338
|
+
}
|
|
8333
8339
|
|
|
8334
8340
|
/* breadcrumbs classes for background colors and hover background colors */
|
|
8335
|
-
.last-item-bg-color
|
|
8341
|
+
.last-item-bg-color > .p-breadcrumb-list .p-menuitem.px-4:hover {
|
|
8336
8342
|
background-color: var(--primary-50);
|
|
8337
8343
|
border-radius: 6px;
|
|
8338
8344
|
}
|
|
8339
|
-
.last-item-bg-color-gray-50
|
|
8345
|
+
.last-item-bg-color-gray-50 > .p-breadcrumb-list .p-menuitem.px-4:hover {
|
|
8340
8346
|
background-color: var(--gray-50);
|
|
8341
8347
|
border-radius: 6px;
|
|
8342
8348
|
}
|
|
@@ -8349,7 +8355,6 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8349
8355
|
}
|
|
8350
8356
|
} */
|
|
8351
8357
|
|
|
8352
|
-
|
|
8353
8358
|
.last-item-bg-color ul li:last-child {
|
|
8354
8359
|
background-color: var(--primary-50);
|
|
8355
8360
|
border-radius: 6px;
|
|
@@ -8369,46 +8374,44 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8369
8374
|
rotate: 180deg;
|
|
8370
8375
|
}
|
|
8371
8376
|
|
|
8372
|
-
.p-dropdown-item.p-highlight{
|
|
8377
|
+
.p-dropdown-item.p-highlight {
|
|
8373
8378
|
display: flex;
|
|
8374
8379
|
align-items: center;
|
|
8375
8380
|
justify-content: space-between;
|
|
8376
8381
|
}
|
|
8377
8382
|
|
|
8378
8383
|
/* tabs component clasess for changing the style */
|
|
8379
|
-
.tab-view-border-light .p-tabview-nav{
|
|
8380
|
-
border-bottom: 1px solid var(--gray-200)
|
|
8384
|
+
.tab-view-border-light .p-tabview-nav {
|
|
8385
|
+
border-bottom: 1px solid var(--gray-200); /* adding bottom border only bottom border tabs */
|
|
8381
8386
|
}
|
|
8382
8387
|
|
|
8383
8388
|
/*some tabs responsive section these tabs are worked as responsive in all devices */
|
|
8384
|
-
.tab-view-bg-dark.responsive
|
|
8385
|
-
|
|
8386
|
-
|
|
8387
|
-
|
|
8388
|
-
}
|
|
8389
|
-
@media
|
|
8390
|
-
.tab-view-bg-dark.responsive .p-tabview-nav{
|
|
8391
|
-
|
|
8389
|
+
.tab-view-bg-dark.responsive .p-tabview-nav {
|
|
8390
|
+
display: flex;
|
|
8391
|
+
flex-direction: row;
|
|
8392
|
+
padding: 4px;
|
|
8393
|
+
}
|
|
8394
|
+
@media screen and (max-width: 768px) {
|
|
8395
|
+
.tab-view-bg-dark.responsive .p-tabview-nav {
|
|
8396
|
+
flex-direction: column;
|
|
8392
8397
|
}
|
|
8393
8398
|
}
|
|
8394
|
-
.tab-view-shadow-box.responsive .p-tabview-nav{
|
|
8395
|
-
display: flex
|
|
8396
|
-
flex-direction: row
|
|
8399
|
+
.tab-view-shadow-box.responsive .p-tabview-nav {
|
|
8400
|
+
display: flex;
|
|
8401
|
+
flex-direction: row;
|
|
8397
8402
|
}
|
|
8398
|
-
@media
|
|
8399
|
-
|
|
8400
|
-
|
|
8401
|
-
|
|
8403
|
+
@media screen and (max-width: 768px) {
|
|
8404
|
+
.tab-view-shadow-box.responsive .p-tabview-nav {
|
|
8405
|
+
flex-direction: column;
|
|
8406
|
+
}
|
|
8402
8407
|
}
|
|
8403
8408
|
|
|
8404
8409
|
/* some tabs responsive section these tabs are worked as responsive in all devices */
|
|
8405
8410
|
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
.tab-view-bg-dark.expand .p-tabview-nav{
|
|
8411
|
+
.tab-view-bg-dark.expand .p-tabview-nav {
|
|
8409
8412
|
padding: 4px;
|
|
8410
|
-
|
|
8411
|
-
.tab-view-border-light.expand .p-tabview-nav li .p-tabview-nav-link{
|
|
8413
|
+
}
|
|
8414
|
+
.tab-view-border-light.expand .p-tabview-nav li .p-tabview-nav-link {
|
|
8412
8415
|
padding-left: 88px;
|
|
8413
8416
|
padding-right: 88px;
|
|
8414
8417
|
}
|
|
@@ -8438,20 +8441,25 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8438
8441
|
.tab-view-bg-dark.not-expand .p-tabview-nav li.p-unselectable-text {
|
|
8439
8442
|
margin-right: 8px !important;
|
|
8440
8443
|
}
|
|
8441
|
-
.tab-view-bg-dark.expand .p-tabview-nav li .p-tabview-nav-link{
|
|
8444
|
+
.tab-view-bg-dark.expand .p-tabview-nav li .p-tabview-nav-link {
|
|
8442
8445
|
padding-left: 88px;
|
|
8443
8446
|
padding-right: 88px;
|
|
8444
|
-
border-radius: 6px
|
|
8447
|
+
border-radius: 6px;
|
|
8445
8448
|
}
|
|
8446
|
-
.tab-view-bg-dark.not-expand.border-no-radius
|
|
8449
|
+
.tab-view-bg-dark.not-expand.border-no-radius
|
|
8450
|
+
.p-tabview-nav
|
|
8451
|
+
.p-tabview-ink-bar {
|
|
8447
8452
|
display: block !important;
|
|
8448
8453
|
}
|
|
8449
|
-
.tab-view-bg-dark.expand.border-no-radius .p-tabview-nav .p-tabview-ink-bar{
|
|
8454
|
+
.tab-view-bg-dark.expand.border-no-radius .p-tabview-nav .p-tabview-ink-bar {
|
|
8450
8455
|
display: block !important;
|
|
8451
8456
|
}
|
|
8452
|
-
.tab-view-bg-dark.not-expand.border-no-radius
|
|
8457
|
+
.tab-view-bg-dark.not-expand.border-no-radius
|
|
8458
|
+
.p-tabview-nav
|
|
8459
|
+
li
|
|
8460
|
+
.p-tabview-nav-link {
|
|
8453
8461
|
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
8454
|
-
padding: 8px 12px 8px 12px
|
|
8462
|
+
padding: 8px 12px 8px 12px;
|
|
8455
8463
|
cursor: pointer;
|
|
8456
8464
|
border-radius: 0px;
|
|
8457
8465
|
font-weight: normal;
|
|
@@ -8461,19 +8469,22 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8461
8469
|
margin-right: 16px;
|
|
8462
8470
|
}
|
|
8463
8471
|
|
|
8464
|
-
.tab-view-bg-dark.expand.border-no-radius
|
|
8472
|
+
.tab-view-bg-dark.expand.border-no-radius
|
|
8473
|
+
.p-tabview-nav
|
|
8474
|
+
li
|
|
8475
|
+
.p-tabview-nav-link {
|
|
8465
8476
|
padding-left: 88px;
|
|
8466
8477
|
padding-right: 88px;
|
|
8467
|
-
border-radius: 0px
|
|
8478
|
+
border-radius: 0px;
|
|
8468
8479
|
}
|
|
8469
|
-
.tab-view-shadow-box .p-tabview-nav{
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
|
|
8480
|
+
.tab-view-shadow-box .p-tabview-nav {
|
|
8481
|
+
background-color: var(--gray-100);
|
|
8482
|
+
border-radius: 8px;
|
|
8483
|
+
padding: 4px;
|
|
8473
8484
|
}
|
|
8474
8485
|
|
|
8475
|
-
.tab-view-shadow-box .p-tabview-nav li .p-tabview-nav-link{
|
|
8476
|
-
background-color: transparent
|
|
8486
|
+
.tab-view-shadow-box .p-tabview-nav li .p-tabview-nav-link {
|
|
8487
|
+
background-color: transparent;
|
|
8477
8488
|
border-radius: 6px;
|
|
8478
8489
|
}
|
|
8479
8490
|
.tab-view-shadow-box .p-tabview-nav .p-tabview-ink-bar {
|
|
@@ -8498,57 +8509,60 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8498
8509
|
margin-right: 8px;
|
|
8499
8510
|
}
|
|
8500
8511
|
|
|
8501
|
-
.tab-view-shadow-box.expand .p-tabview-nav li .p-tabview-nav-link{
|
|
8512
|
+
.tab-view-shadow-box.expand .p-tabview-nav li .p-tabview-nav-link {
|
|
8502
8513
|
padding-left: 88px;
|
|
8503
8514
|
padding-right: 88px;
|
|
8504
8515
|
}
|
|
8505
8516
|
|
|
8506
|
-
.p-highlight .tab-badge{
|
|
8517
|
+
.p-highlight .tab-badge {
|
|
8507
8518
|
background: var(--primary-50);
|
|
8508
8519
|
mix-blend-mode: multiply;
|
|
8509
8520
|
}
|
|
8510
8521
|
|
|
8511
|
-
.tab-view-bg-dark.border-no-radius
|
|
8522
|
+
.tab-view-bg-dark.border-no-radius
|
|
8523
|
+
.p-tabview-nav
|
|
8524
|
+
li
|
|
8525
|
+
.p-tabview-nav-link:not(.p-disabled):focus {
|
|
8512
8526
|
outline: 0 none;
|
|
8513
8527
|
outline-offset: 0;
|
|
8514
8528
|
box-shadow: none;
|
|
8515
8529
|
}
|
|
8516
|
-
.tab-view-border-light.no-shadow
|
|
8530
|
+
.tab-view-border-light.no-shadow
|
|
8531
|
+
.p-tabview-nav
|
|
8532
|
+
li
|
|
8533
|
+
.p-tabview-nav-link:not(.p-disabled):focus {
|
|
8517
8534
|
outline: 0 none;
|
|
8518
8535
|
outline-offset: 0;
|
|
8519
8536
|
box-shadow: none;
|
|
8520
8537
|
}
|
|
8521
|
-
.tab-view-border-light.border
|
|
8538
|
+
.tab-view-border-light.border
|
|
8539
|
+
.p-tabview-nav
|
|
8540
|
+
li
|
|
8541
|
+
.p-tabview-nav-link:not(.p-disabled):focus {
|
|
8522
8542
|
outline: 0 none;
|
|
8523
8543
|
outline-offset: 0;
|
|
8524
8544
|
box-shadow: none;
|
|
8525
8545
|
}
|
|
8526
8546
|
|
|
8527
|
-
|
|
8528
8547
|
/* tags component chip image css classes */
|
|
8529
8548
|
.chip-image img {
|
|
8530
|
-
height: 16px
|
|
8531
|
-
width: auto
|
|
8532
|
-
margin: 4px
|
|
8549
|
+
height: 16px;
|
|
8550
|
+
width: auto;
|
|
8551
|
+
margin: 4px;
|
|
8533
8552
|
}
|
|
8534
8553
|
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
8554
|
/* content dividers classes for removing border and adding background top bottom borders */
|
|
8538
8555
|
|
|
8539
|
-
.divider-top-bottom.p-divider-horizontal::before{
|
|
8556
|
+
.divider-top-bottom.p-divider-horizontal::before {
|
|
8540
8557
|
border-top: 0px;
|
|
8541
8558
|
width: 0px;
|
|
8542
8559
|
}
|
|
8543
8560
|
|
|
8544
|
-
.devider-background.p-divider-horizontal::before{
|
|
8561
|
+
.devider-background.p-divider-horizontal::before {
|
|
8545
8562
|
border-top: 0px;
|
|
8546
8563
|
width: 0px;
|
|
8547
8564
|
}
|
|
8548
8565
|
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
8566
|
/* pagination classes ++++++++++ */
|
|
8553
8567
|
@media screen and (min-width: 768px) {
|
|
8554
8568
|
.p-paginator-pages {
|
|
@@ -8568,7 +8582,7 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8568
8582
|
border-radius: 8px;
|
|
8569
8583
|
}
|
|
8570
8584
|
|
|
8571
|
-
.bg-square .p-paginator-pages .p-paginator-page{
|
|
8585
|
+
.bg-square .p-paginator-pages .p-paginator-page {
|
|
8572
8586
|
border-radius: 8px;
|
|
8573
8587
|
}
|
|
8574
8588
|
|
|
@@ -8582,13 +8596,13 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8582
8596
|
top: 0px !important;
|
|
8583
8597
|
}
|
|
8584
8598
|
|
|
8585
|
-
.p-paginator.p-component.paginator-boxes
|
|
8599
|
+
.p-paginator.p-component.paginator-boxes > .p-disabled {
|
|
8586
8600
|
border-color: var(--gray-400) !important;
|
|
8587
8601
|
}
|
|
8588
|
-
.p-paginator
|
|
8602
|
+
.p-paginator > .p-dropdown > .p-dropdown-trigger {
|
|
8589
8603
|
padding-top: 0px;
|
|
8590
8604
|
}
|
|
8591
|
-
.p-paginator
|
|
8605
|
+
.p-paginator > .p-dropdown {
|
|
8592
8606
|
display: flex;
|
|
8593
8607
|
align-items: center;
|
|
8594
8608
|
border: 1px solid var(--gray-400);
|
|
@@ -8598,10 +8612,9 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8598
8612
|
/* Progress siders calsses for styling the component */
|
|
8599
8613
|
.progress-slider .p-slider-range {
|
|
8600
8614
|
border-radius: 4px;
|
|
8601
|
-
background-color: var(--primary-500)
|
|
8615
|
+
background-color: var(--primary-500);
|
|
8602
8616
|
}
|
|
8603
8617
|
|
|
8604
|
-
|
|
8605
8618
|
/* Avatar classes for changing avatar styles */
|
|
8606
8619
|
|
|
8607
8620
|
.p-avatar-focus:hover {
|
|
@@ -8621,8 +8634,6 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8621
8634
|
width: 8px;
|
|
8622
8635
|
}
|
|
8623
8636
|
|
|
8624
|
-
|
|
8625
|
-
|
|
8626
8637
|
/* Badges classes for styling the badges */
|
|
8627
8638
|
|
|
8628
8639
|
.p-dropdown-badge > .p-dropdown-label {
|
|
@@ -8657,7 +8668,6 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8657
8668
|
padding-right: 36px;
|
|
8658
8669
|
}
|
|
8659
8670
|
|
|
8660
|
-
|
|
8661
8671
|
/* Loader icon css changes for styling animation*/
|
|
8662
8672
|
.svgAnimation {
|
|
8663
8673
|
display: inline-block;
|
|
@@ -8665,27 +8675,25 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8665
8675
|
animation: animation-61bdi0 1.3s linear infinite;
|
|
8666
8676
|
}
|
|
8667
8677
|
|
|
8668
|
-
|
|
8669
|
-
|
|
8670
8678
|
@keyframes animation-61bdi0 {
|
|
8671
8679
|
0% {
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
|
|
8675
|
-
|
|
8680
|
+
-webkit-transform: rotate(0deg);
|
|
8681
|
+
-moz-transform: rotate(0deg);
|
|
8682
|
+
-ms-transform: rotate(0deg);
|
|
8683
|
+
transform: rotate(0deg);
|
|
8676
8684
|
}
|
|
8677
|
-
|
|
8685
|
+
|
|
8678
8686
|
100% {
|
|
8679
|
-
|
|
8680
|
-
|
|
8681
|
-
|
|
8682
|
-
|
|
8687
|
+
-webkit-transform: rotate(360deg);
|
|
8688
|
+
-moz-transform: rotate(360deg);
|
|
8689
|
+
-ms-transform: rotate(360deg);
|
|
8690
|
+
transform: rotate(360deg);
|
|
8683
8691
|
}
|
|
8684
8692
|
}
|
|
8685
8693
|
|
|
8686
8694
|
.animation {
|
|
8687
8695
|
stroke: currentColor;
|
|
8688
|
-
stroke-dasharray: 80px,200px;
|
|
8696
|
+
stroke-dasharray: 80px, 200px;
|
|
8689
8697
|
stroke-dashoffset: 0;
|
|
8690
8698
|
-webkit-animation: animation-1p2h4ri 1.8s ease-in-out infinite;
|
|
8691
8699
|
animation: animation-1p2h4ri ease-in-out infinite;
|
|
@@ -8693,51 +8701,48 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8693
8701
|
|
|
8694
8702
|
@keyframes animation-1p2h4ri {
|
|
8695
8703
|
0% {
|
|
8696
|
-
|
|
8697
|
-
|
|
8704
|
+
stroke-dasharray: 1px, 200px;
|
|
8705
|
+
stroke-dashoffset: 0;
|
|
8698
8706
|
}
|
|
8699
8707
|
50% {
|
|
8700
|
-
|
|
8701
|
-
|
|
8708
|
+
stroke-dasharray: 100px, 200px;
|
|
8709
|
+
stroke-dashoffset: -15px;
|
|
8702
8710
|
}
|
|
8703
|
-
|
|
8711
|
+
|
|
8704
8712
|
100% {
|
|
8705
|
-
|
|
8706
|
-
|
|
8713
|
+
stroke-dasharray: 100px, 200px;
|
|
8714
|
+
stroke-dashoffset: -125px;
|
|
8707
8715
|
}
|
|
8708
8716
|
}
|
|
8709
8717
|
|
|
8710
|
-
|
|
8711
|
-
.p-megamenu-start{
|
|
8718
|
+
.p-megamenu-start {
|
|
8712
8719
|
width: auto;
|
|
8713
|
-
|
|
8714
|
-
}
|
|
8715
|
-
@media screen and (max-width:768px) {
|
|
8716
|
-
.p-megamenu-start{
|
|
8717
|
-
width: 100%;
|
|
8718
8720
|
}
|
|
8721
|
+
@media screen and (max-width: 768px) {
|
|
8722
|
+
.p-megamenu-start {
|
|
8723
|
+
width: 100%;
|
|
8724
|
+
}
|
|
8719
8725
|
}
|
|
8720
8726
|
/* mega menu classes */
|
|
8721
8727
|
.p-megamenu-mobile-active .megamenu-closeicon {
|
|
8722
8728
|
display: flex;
|
|
8723
8729
|
}
|
|
8724
|
-
|
|
8725
|
-
.p-megamenu-mobile-active
|
|
8726
|
-
|
|
8730
|
+
|
|
8731
|
+
.p-megamenu-mobile-active .megamenu-hamburgermenu {
|
|
8732
|
+
display: none;
|
|
8727
8733
|
}
|
|
8728
8734
|
|
|
8729
8735
|
.megamenu-closeicon {
|
|
8730
|
-
|
|
8736
|
+
display: none;
|
|
8731
8737
|
}
|
|
8732
8738
|
.megamenu-hamburgermenu {
|
|
8733
|
-
|
|
8739
|
+
display: flex;
|
|
8734
8740
|
}
|
|
8735
8741
|
|
|
8736
|
-
|
|
8737
|
-
.p-dropdown-xl.p-dropdown{
|
|
8742
|
+
.p-dropdown-xl.p-dropdown {
|
|
8738
8743
|
height: 44px;
|
|
8739
8744
|
}
|
|
8740
|
-
.p-dropdown-xl .p-dropdown-label.p-placeholder{
|
|
8745
|
+
.p-dropdown-xl .p-dropdown-label.p-placeholder {
|
|
8741
8746
|
height: 24px;
|
|
8742
8747
|
}
|
|
8743
8748
|
|
|
@@ -8745,28 +8750,25 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8745
8750
|
padding-top: 0px;
|
|
8746
8751
|
}
|
|
8747
8752
|
|
|
8748
|
-
|
|
8749
|
-
.tab-view-bg-dark.p-tabview-nav-container.p-tabview-nav-content{
|
|
8753
|
+
.tab-view-bg-dark.p-tabview-nav-container.p-tabview-nav-content {
|
|
8750
8754
|
border-bottom: none;
|
|
8751
8755
|
}
|
|
8752
8756
|
|
|
8753
|
-
|
|
8754
|
-
|
|
8755
|
-
|
|
8756
|
-
width: 320px;
|
|
8757
|
+
.p-autocomplete.p-autocomplete-lg .p-inputtext {
|
|
8758
|
+
height: 40px;
|
|
8759
|
+
width: 320px;
|
|
8757
8760
|
}
|
|
8758
8761
|
|
|
8759
|
-
.p-autocomplete.p-autocomplete-xl .p-inputtext{
|
|
8762
|
+
.p-autocomplete.p-autocomplete-xl .p-inputtext {
|
|
8760
8763
|
height: 40px;
|
|
8761
8764
|
width: 320px;
|
|
8762
8765
|
}
|
|
8763
8766
|
|
|
8764
|
-
.p-multiselect-item.p-highlight>span{
|
|
8767
|
+
.p-multiselect-item.p-highlight > span {
|
|
8765
8768
|
width: 100%;
|
|
8766
8769
|
}
|
|
8767
8770
|
|
|
8768
|
-
|
|
8769
|
-
.p-autocomplete-multiple-container.p-component.p-inputtext{
|
|
8771
|
+
.p-autocomplete-multiple-container.p-component.p-inputtext {
|
|
8770
8772
|
height: 40px;
|
|
8771
8773
|
padding: 4px 14px;
|
|
8772
8774
|
line-height: 20px;
|
|
@@ -8774,9 +8776,6 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8774
8776
|
|
|
8775
8777
|
/* SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
|
|
8776
8778
|
|
|
8777
|
-
|
|
8778
|
-
|
|
8779
|
-
|
|
8780
8779
|
/* New button classes added for different Size Variations ++++++++++++++++++++++++++++ */
|
|
8781
8780
|
.p-button.p-button-xs {
|
|
8782
8781
|
height: 32px;
|
|
@@ -8793,9 +8792,9 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8793
8792
|
}
|
|
8794
8793
|
|
|
8795
8794
|
.p-button.p-button-md {
|
|
8796
|
-
height: 44px
|
|
8797
|
-
line-height: 24px
|
|
8798
|
-
font-size: 16px
|
|
8795
|
+
height: 44px;
|
|
8796
|
+
line-height: 24px;
|
|
8797
|
+
font-size: 16px;
|
|
8799
8798
|
padding: 10px 18px;
|
|
8800
8799
|
}
|
|
8801
8800
|
.p-button.p-button-lg {
|
|
@@ -8840,7 +8839,6 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8840
8839
|
padding: 10px;
|
|
8841
8840
|
}
|
|
8842
8841
|
|
|
8843
|
-
|
|
8844
8842
|
.p-button.p-button-dual-icon.p-button-md {
|
|
8845
8843
|
width: auto;
|
|
8846
8844
|
padding: 10px 18px;
|
|
@@ -8850,7 +8848,7 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8850
8848
|
padding: 12px;
|
|
8851
8849
|
}
|
|
8852
8850
|
|
|
8853
|
-
.p-button.p-button-dual-icon.p-button-lg{
|
|
8851
|
+
.p-button.p-button-dual-icon.p-button-lg {
|
|
8854
8852
|
width: auto;
|
|
8855
8853
|
padding: 12px 20px;
|
|
8856
8854
|
font-size: 16px;
|
|
@@ -8859,7 +8857,6 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8859
8857
|
padding: 14px;
|
|
8860
8858
|
}
|
|
8861
8859
|
|
|
8862
|
-
|
|
8863
8860
|
.p-button.p-button-dual-icon.p-button-xl {
|
|
8864
8861
|
width: auto;
|
|
8865
8862
|
padding: 16px 28px;
|
|
@@ -8878,23 +8875,25 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8878
8875
|
}
|
|
8879
8876
|
.p-button.p-button-google:enabled:hover {
|
|
8880
8877
|
background: var(--gray-50);
|
|
8881
|
-
color: var(--gray-700);
|
|
8878
|
+
color: var(--gray-700);
|
|
8882
8879
|
}
|
|
8883
8880
|
.p-button.p-button-google:focus {
|
|
8884
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8881
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8882
|
+
0px 0px 0px 2px var(--gray-100);
|
|
8885
8883
|
}
|
|
8886
8884
|
/* Facebook */
|
|
8887
8885
|
.p-button.p-button-facebook {
|
|
8888
|
-
background: #
|
|
8886
|
+
background: #1877f2;
|
|
8889
8887
|
border: none;
|
|
8890
8888
|
color: #ffffff;
|
|
8891
8889
|
}
|
|
8892
8890
|
.p-button.p-button-facebook:enabled:hover {
|
|
8893
|
-
background: #
|
|
8894
|
-
color: #ffffff;
|
|
8891
|
+
background: #0c63d4;
|
|
8892
|
+
color: #ffffff;
|
|
8895
8893
|
}
|
|
8896
8894
|
.p-button.p-button-facebook:focus {
|
|
8897
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8895
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8896
|
+
0px 0px 0px 2px var(--gray-100);
|
|
8898
8897
|
}
|
|
8899
8898
|
/* Apple */
|
|
8900
8899
|
.p-button.p-button-apple {
|
|
@@ -8904,26 +8903,28 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
8904
8903
|
}
|
|
8905
8904
|
.p-button.p-button-apple:enabled:hover {
|
|
8906
8905
|
background: #000000;
|
|
8907
|
-
color: #ffffff;
|
|
8906
|
+
color: #ffffff;
|
|
8908
8907
|
}
|
|
8909
8908
|
.p-button.p-button-apple:focus {
|
|
8910
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8909
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8910
|
+
0px 0px 0px 2px var(--gray-100);
|
|
8911
8911
|
}
|
|
8912
8912
|
/* Twitter */
|
|
8913
8913
|
.p-button.p-button-twitter {
|
|
8914
|
-
background: #
|
|
8914
|
+
background: #1da1f2;
|
|
8915
8915
|
border: none;
|
|
8916
8916
|
color: #ffffff;
|
|
8917
8917
|
}
|
|
8918
8918
|
.p-button.p-button-twitter:enabled:hover {
|
|
8919
|
-
background: #
|
|
8920
|
-
color: #ffffff;
|
|
8919
|
+
background: #0c8bd9;
|
|
8920
|
+
color: #ffffff;
|
|
8921
8921
|
}
|
|
8922
8922
|
.p-button.p-button-twitter:focus {
|
|
8923
|
-
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8923
|
+
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05),
|
|
8924
|
+
0px 0px 0px 2px var(--gray-100);
|
|
8924
8925
|
}
|
|
8925
8926
|
|
|
8926
8927
|
.sc_multiSelect.p-inputwrapper-filled.p-multiselect.p-multiselect-clearable
|
|
8927
8928
|
.p-multiselect-label {
|
|
8928
8929
|
padding-right: 3.8rem !important;
|
|
8929
|
-
}
|
|
8930
|
+
}
|
|
@@ -197,9 +197,11 @@ const ColumnGroup = (props) => {
|
|
|
197
197
|
}, [(_d = (_c = (_b = (_a = gridApi === null || gridApi === void 0 ? void 0 : gridApi.current) === null || _a === void 0 ? void 0 : _a.api) === null || _b === void 0 ? void 0 : _b.columnModel) === null || _c === void 0 ? void 0 : _c.columnDefs) === null || _d === void 0 ? void 0 : _d.length]);
|
|
198
198
|
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `${(columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length) > 0
|
|
199
199
|
? "bg-primary-50 h-38"
|
|
200
|
-
: "bg-white icon-38x38"} hover:bg-primary-25 br-8 cursor-pointer px-2 flex align-items-cente gap-1 zoom_animate`, ref: btnRef, onClick: showColumnOptions }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "grid-01", size: 18, color: (columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length) > 0
|
|
200
|
+
: "bg-white icon-38x38"} hover:bg-primary-25 br-8 sc_icon_hover cursor-pointer px-2 flex align-items-cente gap-1 zoom_animate`, ref: btnRef, onClick: showColumnOptions }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "grid-01", size: 18, color: (columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length) > 0
|
|
201
201
|
? "text-primary-400"
|
|
202
|
-
: "text-gray-500" }), (columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length) > 0 && ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-center" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-primary-400 font-semibold ml-1" }, { children: columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 text-primary-400 font-semibold" }, { children: [(0, jsx_runtime_1.jsx)("p", Object.assign({ className: "ml-2 text-primary-400" }, { children: "Selected" })), (0, jsx_runtime_1.jsx)(button_1.Button, { onClick: (e) => clearListItems(e), className: "h-auto p-0 pad_0", text: true, icon: (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "x-close", color: "text-primary-400", size: 18 }) })] }))] })))] })), (0, jsx_runtime_1.jsxs)(overlaypanel_1.OverlayPanel, Object.assign({ ref: columnGroupRef, className: "column-group p-1", onHide: handleHide }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "column-header" }, { children: [(0, jsx_runtime_1.jsx)("h3", Object.assign({ className: "my-0" }, { children: "Grouping" })), (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "my-0 mb-4" }, { children: "Select one or two columns for sorting" }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "column-body" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "p-input-icon-right w-full p-2 bg-gray-50" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "p-input-suffix top-0", style: { right: "20px" } }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "search-md" }) })), (0, jsx_runtime_1.jsx)(inputtext_1.InputText, { onChange: (e) => setSearchedText(e.target.value), value: searchText, disabled: false, placeholder: "Enter any column name", className: "text-lg font-normal text-gray-500 hover:text-gray-900 w-full" })] })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "flex flex-column gap-1
|
|
203
|
-
|
|
202
|
+
: "text-gray-500" }), (columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length) > 0 && ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center justify-content-center" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-primary-400 font-semibold ml-1" }, { children: columnsSelectedForGroup === null || columnsSelectedForGroup === void 0 ? void 0 : columnsSelectedForGroup.length })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-2 text-primary-400 font-semibold" }, { children: [(0, jsx_runtime_1.jsx)("p", Object.assign({ className: "ml-2 text-primary-400" }, { children: "Selected" })), (0, jsx_runtime_1.jsx)(button_1.Button, { onClick: (e) => clearListItems(e), className: "h-auto p-0 pad_0", text: true, icon: (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "x-close", color: "text-primary-400", size: 18 }) })] }))] })))] })), (0, jsx_runtime_1.jsxs)(overlaypanel_1.OverlayPanel, Object.assign({ ref: columnGroupRef, className: "column-group p-1", onHide: handleHide }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "column-header" }, { children: [(0, jsx_runtime_1.jsx)("h3", Object.assign({ className: "my-0" }, { children: "Grouping" })), (0, jsx_runtime_1.jsx)("p", Object.assign({ className: "my-0 mb-4" }, { children: "Select one or two columns for sorting" }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "column-body" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "p-input-icon-right w-full p-2 bg-gray-50" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "p-input-suffix top-0", style: { right: "20px" } }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "search-md" }) })), (0, jsx_runtime_1.jsx)(inputtext_1.InputText, { onChange: (e) => setSearchedText(e.target.value), value: searchText, disabled: false, placeholder: "Enter any column name", className: "text-lg font-normal text-gray-500 hover:text-gray-900 w-full" })] })), (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "flex flex-column gap-1 m-1 max-h-15rem max-w-30rem overflow-y-auto" }, { children: renderColumns.length > 0 ? (renderColumns === null || renderColumns === void 0 ? void 0 : renderColumns.map((column, index) => ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center" }, { children: [checkedColumns.has(column === null || column === void 0 ? void 0 : column.id) && ((0, jsx_runtime_1.jsx)("img", { onDragStart: (e) => onDragStart(e, index), onDragOver: onDragOver, onDrop: (e) => onDrop(e, index), src: drag_and_drop_icon_png_1.default, width: 20, height: 20, className: checkedColumns.has(column === null || column === void 0 ? void 0 : column.id)
|
|
203
|
+
? "col-gr-icon-active mr-2"
|
|
204
|
+
: "col-gr-icon" })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: `flex gap-2 ${checkedColumns.has(column === null || column === void 0 ? void 0 : column.id) && "bg-primary-25"} hover:bg-primary-25 border-round-sm p-3 w-full` }, { children: [(0, jsx_runtime_1.jsx)(checkbox_1.Checkbox, { checked: checkedColumns.has(column === null || column === void 0 ? void 0 : column.id), onChange: (e) => onSelectedCheckbox(column, e), disabled: checkedColumns.size === 2 &&
|
|
205
|
+
!checkedColumns.has(column === null || column === void 0 ? void 0 : column.id) }), (0, jsx_runtime_1.jsx)("label", Object.assign({ className: "max-w-28rem line-clamp line-clamp-1 inline-block", title: column.headerName }, { children: column.headerName }))] }))] }), column === null || column === void 0 ? void 0 : column.id)))) : ((0, jsx_runtime_1.jsx)("div", Object.assign({ className: "no-content" }, { children: "No Content" }))) }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "column-footer gap-2 border-top-1 border-gray-200 flex align-items-center justify-content-between" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { className: "cursor-pointer", text: true, label: "Remove Grouping", onClick: (e) => clearListItems(e) }), (0, jsx_runtime_1.jsx)(button_1.Button, { className: "cursor-pointer", label: "Save Grouping", onClick: (e) => clearSearchAndSaveGrouping(e), disabled: (checkedColumns === null || checkedColumns === void 0 ? void 0 : checkedColumns.size) === 0 })] }))] }))] }));
|
|
204
206
|
};
|
|
205
207
|
exports.default = ColumnGroup;
|