@indice/ng-components 0.3.9 → 0.3.12-beta.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.
Files changed (48) hide show
  1. package/_styles.scss +131 -137
  2. package/esm2022/lib/controls/content-tile/content-tile.component.mjs +34 -6
  3. package/esm2022/lib/controls/date-picker/date-picker.component.mjs +3 -3
  4. package/esm2022/lib/controls/drop-down-menu/drop-down-menu.component.mjs +3 -3
  5. package/esm2022/lib/controls/list-view/list-view.component.mjs +3 -3
  6. package/esm2022/lib/controls/nav-links-list/nav-links-list.component.mjs +3 -3
  7. package/esm2022/lib/controls/notifications-indicator/notifications-indicator.component.mjs +3 -3
  8. package/esm2022/lib/controls/progress-bar/progress-bar.component.mjs +3 -3
  9. package/esm2022/lib/controls/side-pane/side-pane.component.mjs +48 -29
  10. package/esm2022/lib/controls/skeleton-loader/skeleton-loader.component.mjs +3 -3
  11. package/esm2022/lib/controls/stats-grid/stats-grid.component.mjs +3 -3
  12. package/esm2022/lib/controls/toggle-button/toggle-button.component.mjs +3 -3
  13. package/esm2022/lib/controls/toggle-buttons-list/toggle-buttons-list.component.mjs +3 -3
  14. package/esm2022/lib/controls/user-profile-menu/user-profile-menu.component.mjs +7 -3
  15. package/esm2022/lib/helpers/base-list.component.mjs +13 -8
  16. package/esm2022/lib/layouts/shell/shell-header/shell-header.component.mjs +12 -4
  17. package/esm2022/lib/layouts/shell/shell-layout/shell-layout.component.mjs +8 -6
  18. package/esm2022/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.mjs +3 -3
  19. package/esm2022/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +6 -3
  20. package/esm2022/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +8 -4
  21. package/esm2022/lib/layouts/views/form-layout/form-layout.component.mjs +1 -1
  22. package/esm2022/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +6 -4
  23. package/esm2022/lib/layouts/views/view-layout/view-layout.component.mjs +3 -3
  24. package/esm2022/lib/ng-components.module.mjs +5 -6
  25. package/esm2022/lib/pages/http-status/error/error.component.mjs +3 -3
  26. package/esm2022/lib/pages/http-status/page-not-found/page-not-found.component.mjs +3 -3
  27. package/esm2022/lib/pages/http-status/unauthorized/unauthorized.component.mjs +3 -3
  28. package/esm2022/lib/types.mjs +11 -1
  29. package/esm2022/public-api.mjs +1 -3
  30. package/fesm2022/indice-ng-components.mjs +146 -90
  31. package/fesm2022/indice-ng-components.mjs.map +1 -1
  32. package/lib/controls/content-tile/content-tile.component.d.ts +13 -2
  33. package/lib/controls/side-pane/side-pane.component.d.ts +9 -3
  34. package/lib/controls/user-profile-menu/user-profile-menu.component.d.ts +2 -1
  35. package/lib/helpers/base-list.component.d.ts +2 -1
  36. package/lib/layouts/shell/shell-header/shell-header.component.d.ts +3 -1
  37. package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +3 -2
  38. package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +3 -2
  39. package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +2 -1
  40. package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +2 -0
  41. package/lib/ng-components.module.d.ts +7 -9
  42. package/lib/types.d.ts +10 -1
  43. package/package.json +2 -2
  44. package/public-api.d.ts +0 -2
  45. package/esm2022/lib/controls/content-tile/content-tile-header/content-tile-header.component.mjs +0 -17
  46. package/esm2022/lib/controls/content-tile/content-tile-item/content-tile-item.component.mjs +0 -19
  47. package/lib/controls/content-tile/content-tile-header/content-tile-header.component.d.ts +0 -7
  48. package/lib/controls/content-tile/content-tile-item/content-tile-item.component.d.ts +0 -8
package/_styles.scss CHANGED
@@ -1,6 +1,22 @@
1
1
  @tailwind base;
2
2
 
3
3
  @layer base {
4
+ html {
5
+ scroll-behavior: smooth !important;
6
+ }
7
+
8
+ input {
9
+ outline: none;
10
+ }
11
+
12
+ input[type=number] {
13
+ outline: none;
14
+ }
15
+
16
+ textarea {
17
+ outline: none;
18
+ }
19
+
4
20
  h1 {
5
21
  @apply text-2xl;
6
22
  }
@@ -16,42 +32,13 @@
16
32
  a {
17
33
  @apply text-gray-600;
18
34
  }
19
-
20
- select {
21
- @apply block w-full rounded-sm border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
22
- disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
23
- }
24
-
25
- input[type=text] {
26
- @apply block w-full rounded-sm border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
27
- disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
28
- }
29
-
30
- input[type=password] {
31
- @apply block w-full rounded-sm border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
32
- disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
33
- }
34
-
35
- input[type=email] {
36
- @apply block w-full rounded-sm border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
37
- disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
38
- }
39
-
40
- input[type=number] {
41
- @apply block w-full rounded-sm border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
42
- disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
43
- }
44
-
45
- textarea {
46
- @apply block w-full rounded-sm border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
47
- disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
48
- }
35
+
49
36
  }
50
37
 
51
38
 
52
39
 
53
40
  .avatar-container {
54
- @apply inline-flex items-center justify-center h-8 w-8 rounded-full ;
41
+ @apply inline-flex items-center justify-center h-8 w-8 rounded-full overflow-hidden;
55
42
  }
56
43
 
57
44
  .avatar-container-large {
@@ -279,7 +266,7 @@
279
266
  }
280
267
 
281
268
  .tab-active {
282
- @apply border-blue-500 text-blue-600 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
269
+ @apply border-gray-500 text-gray-900 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
283
270
  }
284
271
 
285
272
  .tab {
@@ -477,11 +464,11 @@
477
464
  }
478
465
 
479
466
  .header-notifications-dropdown {
480
- @apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
467
+ @apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
481
468
  }
482
469
 
483
470
  .header-notifications-dropdown-with-username {
484
- @apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
471
+ @apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
485
472
  }
486
473
 
487
474
  .header-notifications-dropdown-view-all-button{
@@ -505,11 +492,11 @@
505
492
  }
506
493
 
507
494
  .langs-menu-expanded {
508
- @apply transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
495
+ @apply transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
509
496
  }
510
497
 
511
498
  .langs-menu-collapsed {
512
- @apply hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
499
+ @apply hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
513
500
  }
514
501
 
515
502
  .card-deck-busy{
@@ -533,7 +520,7 @@
533
520
  }
534
521
 
535
522
  .card {
536
- @apply relative h-full border border-gray-200 bg-white shadow-sm rounded-sm overflow-hidden;
523
+ @apply relative h-full border border-gray-200 bg-gray-50 shadow-sm rounded-lg sm:rounded-3xl overflow-hidden;;
537
524
  }
538
525
 
539
526
  .card-body {
@@ -545,11 +532,11 @@
545
532
  }
546
533
 
547
534
  .card-header {
548
- @apply inset-x-0 bg-gray-50 px-4 py-4 sm:px-6 border-b border-gray-200;
535
+ @apply inset-x-0 px-4 py-6 sm:py-4 sm:px-6 border-b bg-white border-gray-200;
549
536
  }
550
537
 
551
538
  .card-footer {
552
- @apply absolute bottom-0 inset-x-0 bg-gray-50 px-4 py-4 sm:px-6 border-t border-gray-200;
539
+ @apply absolute bottom-0 inset-x-0 bg-white px-4 py-4 sm:px-6 border-t border-gray-200;
553
540
  }
554
541
 
555
542
  .kpi-tile-title-container {
@@ -572,12 +559,10 @@
572
559
  @apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-2 sm:gap-x-6 p-4;
573
560
  }
574
561
 
575
-
576
562
  .gallery-deck-3 {
577
563
  @apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 p-4;
578
564
  }
579
565
 
580
-
581
566
  .gallery-deck-4 {
582
567
  @apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 lg:grid-cols-4 xl:gap-x-8 p-4;
583
568
  }
@@ -661,71 +646,74 @@
661
646
  }
662
647
 
663
648
 
649
+ .datepicker-container {
650
+ @apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 border border-gray-300;
651
+ }
664
652
 
665
- .datepicker-input {
666
- @apply block w-full rounded-sm border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
667
- disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
668
- }
669
- .datepicker-button {
670
- @apply relative inline-flex items-center px-1.5 py-1.5 border-t border-b border-r border-gray-300 text-sm rounded-r-sm text-gray-700 bg-gray-50 hover:bg-gray-100 focus:outline-0;
671
- }
653
+ .datepicker-input {
654
+ @apply w-full rounded-lg text-sm text-gray-900 pt-2 pl-2 pb-2 placeholder-gray-500 outline-none border-0 focus:outline-none focus:ring-0;
655
+ }
672
656
 
673
- .datepicker-background {
674
- @apply bg-gray-100 mt-10 rounded-sm shadow-md p-4 left-0 z-50 w-full;
675
- }
676
- .datepicker-btn-wrapper {
677
- @apply flex justify-between items-center mb-2;
678
- }
657
+ .datepicker-button {
658
+ @apply mr-1 text-xs focus:outline-none inline-flex items-center justify-center w-6 h-6 text-gray-800 hover:text-gray-900;
659
+ }
679
660
 
680
- .datepicker-selected-month {
681
- @apply text-lg font-bold text-gray-800;
682
- }
683
- .datepicker-selected-year {
684
- @apply ml-1 text-lg text-gray-600 font-normal;
685
- }
686
- .datepicker-nav-btn {
687
- @apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
688
- }
689
- .datepicker-nav-btn svg {
690
- @apply h-6 w-6 text-gray-500 inline-flex;
691
- }
692
- .datepicker-wrapper {
693
- @apply flex flex-wrap mb-3 -mx-1;
694
- }
695
- .datepicker-day-name {
696
- @apply text-gray-800 font-medium text-center text-sm uppercase;
697
- }
698
- .datepicker-content-wrapper {
699
- @apply flex flex-wrap -mx-1 items-center;
700
- }
701
- .datepicker-year {
702
- @apply cursor-pointer text-center hover:text-white text-sm rounded-sm leading-loose transition ease-in-out duration-100;
703
- }
704
- .datepicker-year.selected {
705
- @apply bg-gray-700 text-white font-medium;
706
- }
707
- .datepicker-year.not-selected {
708
- @apply text-gray-800 hover:bg-gray-800;
709
- }
661
+ .datepicker-background {
662
+ @apply bg-gray-100 mt-10 rounded-lg shadow-md p-4 left-0 z-50 w-full;
663
+ }
664
+ .datepicker-btn-wrapper {
665
+ @apply flex justify-between items-center mb-2;
666
+ }
710
667
 
711
- .datepicker-blank-days {
712
- @apply text-center border p-1 border-transparent text-sm opacity-50;
713
- }
668
+ .datepicker-selected-month {
669
+ @apply text-lg font-bold text-gray-800;
670
+ }
671
+ .datepicker-selected-year {
672
+ @apply ml-1 text-lg text-gray-600 font-normal;
673
+ }
674
+ .datepicker-nav-btn {
675
+ @apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
676
+ }
677
+ .datepicker-nav-btn svg {
678
+ @apply h-6 w-6 text-gray-500 inline-flex;
679
+ }
680
+ .datepicker-wrapper {
681
+ @apply flex flex-wrap mb-3 -mx-1;
682
+ }
683
+ .datepicker-day-name {
684
+ @apply text-gray-800 font-medium text-center text-sm uppercase;
685
+ }
686
+ .datepicker-content-wrapper {
687
+ @apply flex flex-wrap -mx-1 items-center;
688
+ }
689
+ .datepicker-year {
690
+ @apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
691
+ }
692
+ .datepicker-year.selected {
693
+ @apply bg-gray-700 text-white font-medium;
694
+ }
695
+ .datepicker-year.not-selected {
696
+ @apply text-gray-800 hover:bg-gray-800;
697
+ }
714
698
 
715
- .datepicker-days {
716
- @apply cursor-pointer text-center hover:text-white text-sm rounded-sm leading-loose transition ease-in-out duration-100;
717
- }
699
+ .datepicker-blank-days {
700
+ @apply text-center border p-1 border-transparent text-sm opacity-50;
701
+ }
718
702
 
719
- .datepicker-days.selected {
720
- @apply bg-gray-700 text-white font-medium;
721
- }
722
- .datepicker-days.not-selected {
723
- @apply text-gray-800 hover:bg-gray-800;
724
- }
703
+ .datepicker-days {
704
+ @apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
705
+ }
725
706
 
726
- .datepicker-days.out-of-range{
727
- @apply cursor-not-allowed opacity-25;
728
- }
707
+ .datepicker-days.selected {
708
+ @apply bg-gray-700 text-white font-medium;
709
+ }
710
+ .datepicker-days.not-selected {
711
+ @apply text-gray-800 hover:bg-gray-800;
712
+ }
713
+
714
+ .datepicker-days.out-of-range{
715
+ @apply cursor-not-allowed opacity-25;
716
+ }
729
717
 
730
718
 
731
719
  .dropdown-container {
@@ -733,8 +721,8 @@
733
721
  }
734
722
 
735
723
  .dropdown-button {
736
- @apply bg-white block w-full rounded-sm border-0 pl-3 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500
737
- text-xs leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
724
+ @apply bg-white block w-full rounded-lg border pl-3 py-1.5 pr-10 ring-0 placeholder:text-gray-300 focus:border-gray-500 hover:border-gray-400
725
+ text-sm leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:border-gray-300;
738
726
  }
739
727
 
740
728
  .dropdown-selected-text {
@@ -742,7 +730,7 @@
742
730
  }
743
731
 
744
732
  .dropdown-button-icon {
745
- @apply absolute inset-y-0 right-0 flex items-center pointer-events-none;
733
+ @apply absolute inset-y-0 right-1 flex items-center pointer-events-none;
746
734
  }
747
735
 
748
736
  .dropdown-arrow {
@@ -750,7 +738,7 @@
750
738
  }
751
739
 
752
740
  .dropdown-ul {
753
- @apply absolute z-50 mt-1 w-auto bg-white shadow-lg max-h-60 rounded-sm py-1 text-xs ring-1 ring-gray-300 ring-opacity-5 focus:outline-none overflow-x-hidden;
741
+ @apply absolute z-50 mt-1 w-auto bg-white shadow max-h-60 rounded-lg py-1 text-xs ring-1 ring-gray-300 ring-opacity-5 focus:outline-none overflow-x-hidden;
754
742
  }
755
743
 
756
744
  .dropdown-li {
@@ -779,11 +767,11 @@
779
767
 
780
768
 
781
769
  .form-layout-container {
782
- @apply bg-white shadow-sm border border-gray-200 rounded-sm;
770
+ @apply bg-white shadow-sm border border-gray-200 rounded-xl;
783
771
  }
784
772
 
785
773
  .form-header {
786
- @apply px-4 py-5 sm:px-6 bg-gray-50 sm:flex sm:items-center sm:justify-between;
774
+ @apply px-4 py-4 bg-gray-50 rounded-t-xl h-24 sm:flex sm:items-center sm:justify-between;
787
775
  }
788
776
 
789
777
  .form-header-inner {
@@ -807,7 +795,7 @@
807
795
  }
808
796
 
809
797
  .form-content-container {
810
- @apply border-t border-gray-200 px-4 py-5 sm:p-0;
798
+ @apply px-4 py-4;
811
799
  }
812
800
 
813
801
  .form-content-container-inner {
@@ -815,7 +803,7 @@
815
803
  }
816
804
 
817
805
  .form-header-search-input {
818
- @apply block w-60 bg-gray-50 rounded-sm text-sm text-gray-900 placeholder-gray-500 outline-none;
806
+ @apply block w-60 bg-gray-50 rounded-md text-sm text-gray-900 placeholder-gray-500 outline-none;
819
807
  }
820
808
 
821
809
  .field-label {
@@ -827,7 +815,7 @@
827
815
  }
828
816
 
829
817
  .form-actions {
830
- @apply px-4 py-3 bg-gray-100 text-gray-700 text-right sm:px-6 flex justify-end;
818
+ @apply -mx-4 -mb-4 mt-4 px-4 sm:px-6 py-3 bg-gray-100 text-gray-700 text-right flex justify-end rounded-b-xl;
831
819
  }
832
820
 
833
821
  /*
@@ -3119,11 +3107,11 @@
3119
3107
 
3120
3108
 
3121
3109
  .list-view-container {
3122
- @apply flex flex-col border border-gray-200;
3110
+ @apply flex flex-col border border-gray-200 rounded-lg;
3123
3111
  }
3124
3112
 
3125
3113
  .list-view-container-inner {
3126
- @apply overflow-hidden;
3114
+ @apply overflow-y-hidden overflow-x-auto rounded-lg;
3127
3115
  }
3128
3116
 
3129
3117
  .list-view-table {
@@ -3199,15 +3187,15 @@
3199
3187
  }
3200
3188
 
3201
3189
  .model-view-aside-header-container {
3202
- @apply bg-white shadow rounded-sm;
3190
+ @apply bg-white shadow-sm border border-gray-200 rounded-xl;
3203
3191
  }
3204
3192
 
3205
3193
  .model-view-aside-header-container-inner {
3206
- @apply flex flex-col justify-self-stretch bg-gray-50 border-b;
3194
+ @apply flex flex-col bg-gray-50 justify-self-stretch rounded-t-xl h-24;
3207
3195
  }
3208
3196
 
3209
3197
  .model-view-menu-container {
3210
- @apply mt-2 px-4 py-4 flow-root hidden sm:block;
3198
+ @apply bg-white px-4 py-4 flow-root hidden sm:block rounded-b-xl;
3211
3199
  }
3212
3200
 
3213
3201
  .model-view-menu-container-mobile {
@@ -3233,7 +3221,7 @@
3233
3221
 
3234
3222
 
3235
3223
  .nav-link {
3236
- @apply cursor-pointer text-white hover:bg-gray-700 hover:text-white hover:shadow-sm px-3 py-2 rounded-sm text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3224
+ @apply cursor-pointer text-white hover:bg-gray-700 hover:text-white hover:shadow-sm px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3237
3225
  }
3238
3226
 
3239
3227
  .sidebar .nav-link {
@@ -3241,11 +3229,11 @@
3241
3229
  }
3242
3230
 
3243
3231
  .nav-link-profile {
3244
- @apply flex items-center cursor-pointer px-4 py-2 text-xs text-gray-700 hover:bg-gray-100 whitespace-nowrap overflow-ellipsis overflow-hidden;
3232
+ @apply flex items-center cursor-pointer px-4 py-2 rounded-md text-xs text-gray-700 hover:bg-gray-100 whitespace-nowrap overflow-ellipsis overflow-hidden;
3245
3233
  }
3246
3234
 
3247
3235
  .nav-link-mobile {
3248
- @apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-sm text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3236
+ @apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3249
3237
  }
3250
3238
 
3251
3239
  .sidebar .nav-link-list-container {
@@ -3261,7 +3249,7 @@
3261
3249
  }
3262
3250
 
3263
3251
  .nav-link-active {
3264
- @apply cursor-default text-blue-300 bg-gray-900 hover:bg-gray-900 px-3 py-2 rounded-sm text-xs shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
3252
+ @apply cursor-default text-sky-600 bg-gray-900 hover:bg-gray-900 px-3 py-2 rounded-lg text-xs shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
3265
3253
  }
3266
3254
 
3267
3255
  .sidebar .nav-link-active {
@@ -3269,28 +3257,29 @@
3269
3257
  }
3270
3258
 
3271
3259
  .sidebar .nav-link-active-b {
3272
- @apply cursor-default bg-gray-900 border-b border-blue-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
3260
+ @apply cursor-default bg-gray-900 border-b border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
3273
3261
  }
3274
3262
 
3275
3263
  .sidebar .nav-link-active-l {
3276
- @apply cursor-default bg-gray-900 border-l border-blue-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
3264
+ @apply cursor-default bg-gray-900 border-l border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
3277
3265
  }
3278
3266
 
3279
3267
  .nav-link-profile-active {
3280
- @apply cursor-default block px-4 py-2 text-xs text-blue-300 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
3268
+ @apply cursor-default rounded-md block px-4 py-2 text-xs text-sky-900 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
3281
3269
  }
3282
3270
 
3283
3271
  .nav-link-mobile-active {
3284
- @apply cursor-default bg-gray-900 text-blue-300 block px-3 py-2 rounded-sm text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3272
+ @apply cursor-default bg-gray-900 text-sky-300 block px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3285
3273
  }
3286
-
3274
+
3287
3275
  .view-nav-link {
3288
- @apply cursor-pointer text-gray-600 hover:bg-gray-50 hover:text-gray-900 rounded-none py-2 px-4 flex items-center text-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
3276
+ @apply cursor-pointer rounded-md text-gray-600 hover:border-gray-50 border-transparent border-l-2 hover:bg-gray-50 hover:text-gray-900 py-2 px-4 flex items-center text-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
3289
3277
  }
3290
-
3278
+
3291
3279
  .view-nav-link-active {
3292
- @apply cursor-default bg-gray-50 border-gray-600 text-gray-900 border-l-4 py-2 px-3 flex items-center text-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
3280
+ @apply cursor-default bg-gray-100 border-gray-600 hover:border-gray-600 text-gray-900;
3293
3281
  }
3282
+
3294
3283
 
3295
3284
  .min-nav-link-text-width {
3296
3285
  width: 220px;
@@ -3312,11 +3301,11 @@
3312
3301
  }
3313
3302
 
3314
3303
  .header-notifications-dropdown {
3315
- @apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
3304
+ @apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
3316
3305
  }
3317
3306
 
3318
3307
  .header-notifications-dropdown-with-username {
3319
- @apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-sm shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
3308
+ @apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
3320
3309
  }
3321
3310
 
3322
3311
  .header-notifications-dropdown-view-all-button{
@@ -3545,11 +3534,11 @@
3545
3534
  }
3546
3535
 
3547
3536
  .shell-header-profile-dropdown {
3548
- @apply z-50 origin-top-right absolute right-0 mt-2 w-48 rounded-sm shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
3537
+ @apply z-50 origin-top-right absolute right-0 mt-2 w-48 rounded-lg shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
3549
3538
  }
3550
3539
 
3551
3540
  .shell-header-profile-dropdown-with-username {
3552
- @apply z-50 origin-top-right absolute right-0 mt-24 w-48 rounded-sm shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
3541
+ @apply z-50 origin-top-right absolute right-0 mt-24 w-48 rounded-lg shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
3553
3542
  }
3554
3543
 
3555
3544
 
@@ -3558,7 +3547,7 @@
3558
3547
  }
3559
3548
 
3560
3549
  .mobile-menu-button {
3561
- @apply inline-flex items-center justify-center p-2 rounded-sm outline-none text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-offset-gray-800 focus:ring-white;
3550
+ @apply inline-flex items-center justify-center p-2 rounded-lg outline-none text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-offset-gray-800 focus:ring-white;
3562
3551
  }
3563
3552
 
3564
3553
  .mobile-menu-container {
@@ -3698,7 +3687,7 @@
3698
3687
  }
3699
3688
 
3700
3689
  .side-pane-container {
3701
- @apply fixed inset-y-0 right-0 sm:pl-10 max-w-full flex transition-all duration-200 ease-in-out;
3690
+ @apply fixed inset-y-0 right-0 max-w-full flex transition-all duration-200 ease-in-out;
3702
3691
  }
3703
3692
 
3704
3693
  .side-pane-container-inner {
@@ -3710,7 +3699,7 @@
3710
3699
  }
3711
3700
 
3712
3701
  .side-pane-box-size-25 {
3713
- @apply w-screen max-w-xl;
3702
+ @apply w-screen max-w-2xl;
3714
3703
  }
3715
3704
 
3716
3705
  .side-pane-box-size-50 {
@@ -3721,6 +3710,11 @@
3721
3710
  @apply w-screen max-w-4xl;
3722
3711
  }
3723
3712
 
3713
+
3714
+ .side-pane-box-size-100 {
3715
+ @apply w-screen max-w-full;
3716
+ }
3717
+
3724
3718
  .side-pane {
3725
3719
  @apply flex flex-col bg-white shadow-xl overflow-y-hidden;
3726
3720
  }
@@ -3963,7 +3957,7 @@
3963
3957
  }
3964
3958
 
3965
3959
  .tab-active {
3966
- @apply border-blue-500 text-blue-600 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
3960
+ @apply border-gray-500 text-gray-900 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
3967
3961
  }
3968
3962
 
3969
3963
  .tab {
@@ -3997,7 +3991,7 @@
3997
3991
  }
3998
3992
 
3999
3993
  .toast-pill {
4000
- @apply max-w-sm w-full bg-white shadow-lg rounded-sm pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden;
3994
+ @apply max-w-sm w-full bg-white shadow-lg rounded-xl pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden;
4001
3995
  }
4002
3996
 
4003
3997
  .toast-context-padding {
@@ -4153,7 +4147,7 @@
4153
4147
  }
4154
4148
 
4155
4149
  .search-container {
4156
- @apply relative inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 hover:shadow-sm border border-gray-200;
4150
+ @apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 focus:shadow hover:shadow border border-gray-300;
4157
4151
  }
4158
4152
  /*
4159
4153
  .search-input {
@@ -4161,7 +4155,7 @@
4161
4155
  } */
4162
4156
 
4163
4157
  .search-input {
4164
- @apply w-60 rounded-sm text-sm text-gray-900 pt-2 pl-2 pb-2 placeholder-gray-500 outline-none border-0 focus:outline-none focus:ring-0;
4158
+ @apply w-64 rounded-lg text-sm text-gray-900 pt-2 pl-2 pb-2 placeholder-gray-500 outline-none border-0 focus:outline-none focus:ring-0;
4165
4159
  }
4166
4160
 
4167
4161
  .search-button {
@@ -4277,7 +4271,7 @@
4277
4271
  }
4278
4272
 
4279
4273
  .toggle-buttons-list-button {
4280
- @apply relative inline-flex items-center p-2 first:border-l first:rounded-l-sm last:rounded-r-sm border-t border-b border-r border-gray-300 bg-white text-xs text-gray-700 hover:text-gray-900 focus:z-10 focus:outline-none;
4274
+ @apply relative inline-flex items-center p-2 first:border-l first:rounded-l-lg last:rounded-r-lg border-t border-b border-r border-gray-300 bg-white text-xs text-gray-700 hover:text-gray-900 focus:z-10 focus:outline-none;
4281
4275
  }
4282
4276
 
4283
4277
  .toggle-buttons-list-button-selected {