@indice/ng-components 0.3.2-beta.8 → 0.3.2-beta.81
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/_styles.scss +108 -98
- package/esm2022/lib/controls/content-tile/content-tile.component.mjs +34 -6
- package/esm2022/lib/controls/date-picker/date-picker.component.mjs +3 -3
- package/esm2022/lib/controls/drop-down-menu/drop-down-menu.component.mjs +3 -3
- package/esm2022/lib/controls/nav-links-list/nav-links-list.component.mjs +3 -3
- package/esm2022/lib/controls/notifications-indicator/notifications-indicator.component.mjs +3 -3
- package/esm2022/lib/controls/side-pane/side-pane.component.mjs +48 -29
- package/esm2022/lib/controls/skeleton-loader/skeleton-loader.component.mjs +3 -3
- package/esm2022/lib/controls/user-profile-menu/user-profile-menu.component.mjs +3 -3
- package/esm2022/lib/helpers/base-list.component.mjs +10 -5
- package/esm2022/lib/layouts/shell/shell-header/shell-header.component.mjs +6 -3
- package/esm2022/lib/layouts/shell/shell-layout/shell-layout.component.mjs +8 -6
- package/esm2022/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +6 -3
- package/esm2022/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +8 -4
- package/esm2022/lib/layouts/views/form-layout/form-layout.component.mjs +1 -1
- package/esm2022/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +6 -4
- package/esm2022/lib/layouts/views/view-layout/view-layout.component.mjs +3 -3
- package/esm2022/lib/ng-components.module.mjs +2 -4
- package/esm2022/lib/pages/http-status/error/error.component.mjs +3 -3
- package/esm2022/lib/pages/http-status/page-not-found/page-not-found.component.mjs +3 -3
- package/esm2022/lib/pages/http-status/unauthorized/unauthorized.component.mjs +3 -3
- package/esm2022/lib/types.mjs +10 -1
- package/esm2022/public-api.mjs +1 -3
- package/fesm2022/indice-ng-components.mjs +117 -72
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/lib/controls/content-tile/content-tile.component.d.ts +13 -2
- package/lib/controls/side-pane/side-pane.component.d.ts +9 -3
- package/lib/helpers/base-list.component.d.ts +2 -1
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +2 -1
- package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +3 -2
- package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +3 -2
- package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +2 -1
- package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +2 -0
- package/lib/ng-components.module.d.ts +7 -9
- package/lib/types.d.ts +8 -1
- package/package.json +1 -1
- package/public-api.d.ts +0 -2
- package/esm2022/lib/controls/content-tile/content-tile-header/content-tile-header.component.mjs +0 -17
- package/esm2022/lib/controls/content-tile/content-tile-item/content-tile-item.component.mjs +0 -19
- package/lib/controls/content-tile/content-tile-header/content-tile-header.component.d.ts +0 -7
- package/lib/controls/content-tile/content-tile-item/content-tile-item.component.d.ts +0 -8
package/_styles.scss
CHANGED
|
@@ -17,35 +17,36 @@
|
|
|
17
17
|
@apply text-gray-600;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
select {
|
|
21
|
-
@apply block w-full rounded-
|
|
20
|
+
/* select {
|
|
21
|
+
@apply block w-full rounded-lg 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
22
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
input[type=text] {
|
|
26
|
-
@apply block w-full rounded-
|
|
26
|
+
@apply block w-full rounded-lg 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
27
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
input[type=password] {
|
|
31
|
-
@apply block w-full rounded-
|
|
31
|
+
@apply block w-full rounded-lg 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
32
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
input[type=email] {
|
|
36
|
-
@apply block w-full rounded-
|
|
36
|
+
@apply block w-full rounded-lg 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
37
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
input[type=number] {
|
|
41
|
-
@apply block w-full rounded-
|
|
41
|
+
@apply block w-full rounded-lg 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
42
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
textarea {
|
|
46
|
-
@apply block w-full rounded-
|
|
46
|
+
@apply block w-full rounded-lg 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
47
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
48
|
-
}
|
|
48
|
+
} */
|
|
49
|
+
|
|
49
50
|
}
|
|
50
51
|
|
|
51
52
|
|
|
@@ -477,11 +478,11 @@
|
|
|
477
478
|
}
|
|
478
479
|
|
|
479
480
|
.header-notifications-dropdown {
|
|
480
|
-
@apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-
|
|
481
|
+
@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
482
|
}
|
|
482
483
|
|
|
483
484
|
.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-
|
|
485
|
+
@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
486
|
}
|
|
486
487
|
|
|
487
488
|
.header-notifications-dropdown-view-all-button{
|
|
@@ -505,11 +506,11 @@
|
|
|
505
506
|
}
|
|
506
507
|
|
|
507
508
|
.langs-menu-expanded {
|
|
508
|
-
@apply transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-
|
|
509
|
+
@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
510
|
}
|
|
510
511
|
|
|
511
512
|
.langs-menu-collapsed {
|
|
512
|
-
@apply hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-
|
|
513
|
+
@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
514
|
}
|
|
514
515
|
|
|
515
516
|
.card-deck-busy{
|
|
@@ -659,71 +660,74 @@
|
|
|
659
660
|
}
|
|
660
661
|
|
|
661
662
|
|
|
663
|
+
.datepicker-container {
|
|
664
|
+
@apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 border border-gray-300;
|
|
665
|
+
}
|
|
662
666
|
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
}
|
|
667
|
-
.datepicker-button {
|
|
668
|
-
@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;
|
|
669
|
-
}
|
|
667
|
+
.datepicker-input {
|
|
668
|
+
@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;
|
|
669
|
+
}
|
|
670
670
|
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
.datepicker-btn-wrapper {
|
|
675
|
-
@apply flex justify-between items-center mb-2;
|
|
676
|
-
}
|
|
671
|
+
.datepicker-button {
|
|
672
|
+
@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;
|
|
673
|
+
}
|
|
677
674
|
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
.datepicker-nav-btn {
|
|
685
|
-
@apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
|
|
686
|
-
}
|
|
687
|
-
.datepicker-nav-btn svg {
|
|
688
|
-
@apply h-6 w-6 text-gray-500 inline-flex;
|
|
689
|
-
}
|
|
690
|
-
.datepicker-wrapper {
|
|
691
|
-
@apply flex flex-wrap mb-3 -mx-1;
|
|
692
|
-
}
|
|
693
|
-
.datepicker-day-name {
|
|
694
|
-
@apply text-gray-800 font-medium text-center text-sm uppercase;
|
|
695
|
-
}
|
|
696
|
-
.datepicker-content-wrapper {
|
|
697
|
-
@apply flex flex-wrap -mx-1 items-center;
|
|
698
|
-
}
|
|
699
|
-
.datepicker-year {
|
|
700
|
-
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
701
|
-
}
|
|
702
|
-
.datepicker-year.selected {
|
|
703
|
-
@apply bg-gray-700 text-white font-medium;
|
|
704
|
-
}
|
|
705
|
-
.datepicker-year.not-selected {
|
|
706
|
-
@apply text-gray-800 hover:bg-gray-800;
|
|
707
|
-
}
|
|
675
|
+
.datepicker-background {
|
|
676
|
+
@apply bg-gray-100 mt-10 rounded-lg shadow-md p-4 left-0 z-50 w-full;
|
|
677
|
+
}
|
|
678
|
+
.datepicker-btn-wrapper {
|
|
679
|
+
@apply flex justify-between items-center mb-2;
|
|
680
|
+
}
|
|
708
681
|
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
682
|
+
.datepicker-selected-month {
|
|
683
|
+
@apply text-lg font-bold text-gray-800;
|
|
684
|
+
}
|
|
685
|
+
.datepicker-selected-year {
|
|
686
|
+
@apply ml-1 text-lg text-gray-600 font-normal;
|
|
687
|
+
}
|
|
688
|
+
.datepicker-nav-btn {
|
|
689
|
+
@apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
|
|
690
|
+
}
|
|
691
|
+
.datepicker-nav-btn svg {
|
|
692
|
+
@apply h-6 w-6 text-gray-500 inline-flex;
|
|
693
|
+
}
|
|
694
|
+
.datepicker-wrapper {
|
|
695
|
+
@apply flex flex-wrap mb-3 -mx-1;
|
|
696
|
+
}
|
|
697
|
+
.datepicker-day-name {
|
|
698
|
+
@apply text-gray-800 font-medium text-center text-sm uppercase;
|
|
699
|
+
}
|
|
700
|
+
.datepicker-content-wrapper {
|
|
701
|
+
@apply flex flex-wrap -mx-1 items-center;
|
|
702
|
+
}
|
|
703
|
+
.datepicker-year {
|
|
704
|
+
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
705
|
+
}
|
|
706
|
+
.datepicker-year.selected {
|
|
707
|
+
@apply bg-gray-700 text-white font-medium;
|
|
708
|
+
}
|
|
709
|
+
.datepicker-year.not-selected {
|
|
710
|
+
@apply text-gray-800 hover:bg-gray-800;
|
|
711
|
+
}
|
|
712
712
|
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
713
|
+
.datepicker-blank-days {
|
|
714
|
+
@apply text-center border p-1 border-transparent text-sm opacity-50;
|
|
715
|
+
}
|
|
716
716
|
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
.datepicker-days.not-selected {
|
|
721
|
-
@apply text-gray-800 hover:bg-gray-800;
|
|
722
|
-
}
|
|
717
|
+
.datepicker-days {
|
|
718
|
+
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
719
|
+
}
|
|
723
720
|
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
721
|
+
.datepicker-days.selected {
|
|
722
|
+
@apply bg-gray-700 text-white font-medium;
|
|
723
|
+
}
|
|
724
|
+
.datepicker-days.not-selected {
|
|
725
|
+
@apply text-gray-800 hover:bg-gray-800;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.datepicker-days.out-of-range{
|
|
729
|
+
@apply cursor-not-allowed opacity-25;
|
|
730
|
+
}
|
|
727
731
|
|
|
728
732
|
|
|
729
733
|
.dropdown-container {
|
|
@@ -731,8 +735,8 @@
|
|
|
731
735
|
}
|
|
732
736
|
|
|
733
737
|
.dropdown-button {
|
|
734
|
-
@apply bg-white block w-full rounded-
|
|
735
|
-
text-
|
|
738
|
+
@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
|
|
739
|
+
text-sm leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:border-gray-300;
|
|
736
740
|
}
|
|
737
741
|
|
|
738
742
|
.dropdown-selected-text {
|
|
@@ -740,7 +744,7 @@
|
|
|
740
744
|
}
|
|
741
745
|
|
|
742
746
|
.dropdown-button-icon {
|
|
743
|
-
@apply absolute inset-y-0 right-
|
|
747
|
+
@apply absolute inset-y-0 right-1 flex items-center pointer-events-none;
|
|
744
748
|
}
|
|
745
749
|
|
|
746
750
|
.dropdown-arrow {
|
|
@@ -748,7 +752,7 @@
|
|
|
748
752
|
}
|
|
749
753
|
|
|
750
754
|
.dropdown-ul {
|
|
751
|
-
@apply absolute z-50 mt-1 w-auto bg-white shadow
|
|
755
|
+
@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;
|
|
752
756
|
}
|
|
753
757
|
|
|
754
758
|
.dropdown-li {
|
|
@@ -813,7 +817,7 @@
|
|
|
813
817
|
}
|
|
814
818
|
|
|
815
819
|
.form-header-search-input {
|
|
816
|
-
@apply block w-60 bg-gray-50 rounded-
|
|
820
|
+
@apply block w-60 bg-gray-50 rounded-md text-sm text-gray-900 placeholder-gray-500 outline-none;
|
|
817
821
|
}
|
|
818
822
|
|
|
819
823
|
.field-label {
|
|
@@ -3231,7 +3235,7 @@
|
|
|
3231
3235
|
|
|
3232
3236
|
|
|
3233
3237
|
.nav-link {
|
|
3234
|
-
@apply cursor-pointer text-white hover:bg-gray-700 hover:text-white hover:shadow-sm px-3 py-2 rounded-
|
|
3238
|
+
@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;
|
|
3235
3239
|
}
|
|
3236
3240
|
|
|
3237
3241
|
.sidebar .nav-link {
|
|
@@ -3239,11 +3243,11 @@
|
|
|
3239
3243
|
}
|
|
3240
3244
|
|
|
3241
3245
|
.nav-link-profile {
|
|
3242
|
-
@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;
|
|
3246
|
+
@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;
|
|
3243
3247
|
}
|
|
3244
3248
|
|
|
3245
3249
|
.nav-link-mobile {
|
|
3246
|
-
@apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-
|
|
3250
|
+
@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;
|
|
3247
3251
|
}
|
|
3248
3252
|
|
|
3249
3253
|
.sidebar .nav-link-list-container {
|
|
@@ -3259,7 +3263,7 @@
|
|
|
3259
3263
|
}
|
|
3260
3264
|
|
|
3261
3265
|
.nav-link-active {
|
|
3262
|
-
@apply cursor-default text-
|
|
3266
|
+
@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;
|
|
3263
3267
|
}
|
|
3264
3268
|
|
|
3265
3269
|
.sidebar .nav-link-active {
|
|
@@ -3267,28 +3271,29 @@
|
|
|
3267
3271
|
}
|
|
3268
3272
|
|
|
3269
3273
|
.sidebar .nav-link-active-b {
|
|
3270
|
-
@apply cursor-default bg-gray-900 border-b border-
|
|
3274
|
+
@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;
|
|
3271
3275
|
}
|
|
3272
3276
|
|
|
3273
3277
|
.sidebar .nav-link-active-l {
|
|
3274
|
-
@apply cursor-default
|
|
3278
|
+
@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;
|
|
3275
3279
|
}
|
|
3276
3280
|
|
|
3277
3281
|
.nav-link-profile-active {
|
|
3278
|
-
@apply cursor-default block px-4 py-2 text-xs text-
|
|
3282
|
+
@apply cursor-default rounded-md block px-4 py-2 text-xs text-sky-900 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3279
3283
|
}
|
|
3280
3284
|
|
|
3281
3285
|
.nav-link-mobile-active {
|
|
3282
|
-
@apply cursor-default bg-gray-900 text-
|
|
3286
|
+
@apply cursor-default bg-gray-900 text-sky-300 block px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3283
3287
|
}
|
|
3284
|
-
|
|
3288
|
+
|
|
3285
3289
|
.view-nav-link {
|
|
3286
|
-
@apply cursor-pointer text-gray-600 hover:bg-gray-50 hover:text-gray-900
|
|
3290
|
+
@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;
|
|
3287
3291
|
}
|
|
3288
|
-
|
|
3292
|
+
|
|
3289
3293
|
.view-nav-link-active {
|
|
3290
|
-
@apply cursor-default bg-gray-
|
|
3294
|
+
@apply cursor-default bg-gray-100 border-gray-600 hover:border-gray-600 text-gray-900;
|
|
3291
3295
|
}
|
|
3296
|
+
|
|
3292
3297
|
|
|
3293
3298
|
.min-nav-link-text-width {
|
|
3294
3299
|
width: 220px;
|
|
@@ -3310,11 +3315,11 @@
|
|
|
3310
3315
|
}
|
|
3311
3316
|
|
|
3312
3317
|
.header-notifications-dropdown {
|
|
3313
|
-
@apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-
|
|
3318
|
+
@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;
|
|
3314
3319
|
}
|
|
3315
3320
|
|
|
3316
3321
|
.header-notifications-dropdown-with-username {
|
|
3317
|
-
@apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-
|
|
3322
|
+
@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;
|
|
3318
3323
|
}
|
|
3319
3324
|
|
|
3320
3325
|
.header-notifications-dropdown-view-all-button{
|
|
@@ -3540,11 +3545,11 @@
|
|
|
3540
3545
|
}
|
|
3541
3546
|
|
|
3542
3547
|
.shell-header-profile-dropdown {
|
|
3543
|
-
@apply z-50 origin-top-right absolute right-0 mt-2 w-48 rounded-
|
|
3548
|
+
@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;
|
|
3544
3549
|
}
|
|
3545
3550
|
|
|
3546
3551
|
.shell-header-profile-dropdown-with-username {
|
|
3547
|
-
@apply z-50 origin-top-right absolute right-0 mt-24 w-48 rounded-
|
|
3552
|
+
@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;
|
|
3548
3553
|
}
|
|
3549
3554
|
|
|
3550
3555
|
|
|
@@ -3553,7 +3558,7 @@
|
|
|
3553
3558
|
}
|
|
3554
3559
|
|
|
3555
3560
|
.mobile-menu-button {
|
|
3556
|
-
@apply inline-flex items-center justify-center p-2 rounded-
|
|
3561
|
+
@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;
|
|
3557
3562
|
}
|
|
3558
3563
|
|
|
3559
3564
|
.mobile-menu-container {
|
|
@@ -3693,7 +3698,7 @@
|
|
|
3693
3698
|
}
|
|
3694
3699
|
|
|
3695
3700
|
.side-pane-container {
|
|
3696
|
-
@apply fixed inset-y-0 right-0
|
|
3701
|
+
@apply fixed inset-y-0 right-0 max-w-full flex transition-all duration-200 ease-in-out;
|
|
3697
3702
|
}
|
|
3698
3703
|
|
|
3699
3704
|
.side-pane-container-inner {
|
|
@@ -3705,7 +3710,7 @@
|
|
|
3705
3710
|
}
|
|
3706
3711
|
|
|
3707
3712
|
.side-pane-box-size-25 {
|
|
3708
|
-
@apply w-screen max-w-
|
|
3713
|
+
@apply w-screen max-w-2xl;
|
|
3709
3714
|
}
|
|
3710
3715
|
|
|
3711
3716
|
.side-pane-box-size-50 {
|
|
@@ -3716,6 +3721,11 @@
|
|
|
3716
3721
|
@apply w-screen max-w-4xl;
|
|
3717
3722
|
}
|
|
3718
3723
|
|
|
3724
|
+
|
|
3725
|
+
.side-pane-box-size-100 {
|
|
3726
|
+
@apply w-screen max-w-full;
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3719
3729
|
.side-pane {
|
|
3720
3730
|
@apply flex flex-col bg-white shadow-xl overflow-y-hidden;
|
|
3721
3731
|
}
|
|
@@ -3992,7 +4002,7 @@
|
|
|
3992
4002
|
}
|
|
3993
4003
|
|
|
3994
4004
|
.toast-pill {
|
|
3995
|
-
@apply max-w-sm w-full bg-white shadow-lg rounded-
|
|
4005
|
+
@apply max-w-sm w-full bg-white shadow-lg rounded-xl pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden;
|
|
3996
4006
|
}
|
|
3997
4007
|
|
|
3998
4008
|
.toast-context-padding {
|
|
@@ -4148,7 +4158,7 @@
|
|
|
4148
4158
|
}
|
|
4149
4159
|
|
|
4150
4160
|
.search-container {
|
|
4151
|
-
@apply relative inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 hover:shadow
|
|
4161
|
+
@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;
|
|
4152
4162
|
}
|
|
4153
4163
|
/*
|
|
4154
4164
|
.search-input {
|
|
@@ -4156,7 +4166,7 @@
|
|
|
4156
4166
|
} */
|
|
4157
4167
|
|
|
4158
4168
|
.search-input {
|
|
4159
|
-
@apply w-
|
|
4169
|
+
@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;
|
|
4160
4170
|
}
|
|
4161
4171
|
|
|
4162
4172
|
.search-button {
|
|
@@ -4272,7 +4282,7 @@
|
|
|
4272
4282
|
}
|
|
4273
4283
|
|
|
4274
4284
|
.toggle-buttons-list-button {
|
|
4275
|
-
@apply relative inline-flex items-center p-2 first:border-l first:rounded-l-
|
|
4285
|
+
@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;
|
|
4276
4286
|
}
|
|
4277
4287
|
|
|
4278
4288
|
.toggle-buttons-list-button-selected {
|
|
@@ -1,9 +1,37 @@
|
|
|
1
|
-
import { Component, ContentChild, ContentChildren, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
import { ContentTileHeaderComponent } from './content-tile-header/content-tile-header.component';
|
|
3
|
-
import { ContentTileItemComponent } from './content-tile-item/content-tile-item.component';
|
|
1
|
+
import { Component, ContentChild, ContentChildren, EventEmitter, Input, Output, TemplateRef } from '@angular/core';
|
|
4
2
|
import * as i0 from "@angular/core";
|
|
5
3
|
import * as i1 from "@angular/router";
|
|
6
4
|
import * as i2 from "@angular/common";
|
|
5
|
+
export class ContentTileHeaderComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.template = undefined;
|
|
8
|
+
}
|
|
9
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: ContentTileHeaderComponent, selector: "lib-content-tile-header", queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
|
|
11
|
+
}
|
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileHeaderComponent, decorators: [{
|
|
13
|
+
type: Component,
|
|
14
|
+
args: [{ selector: 'lib-content-tile-header', template: '<ng-content></ng-content>' }]
|
|
15
|
+
}], ctorParameters: () => [], propDecorators: { template: [{
|
|
16
|
+
type: ContentChild,
|
|
17
|
+
args: [TemplateRef]
|
|
18
|
+
}] } });
|
|
19
|
+
export class ContentTileItemComponent {
|
|
20
|
+
constructor() {
|
|
21
|
+
this.template = undefined;
|
|
22
|
+
}
|
|
23
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
24
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: ContentTileItemComponent, selector: "lib-content-tile-item", inputs: { title: "title" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
|
|
25
|
+
}
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileItemComponent, decorators: [{
|
|
27
|
+
type: Component,
|
|
28
|
+
args: [{ selector: 'lib-content-tile-item', template: '<ng-content></ng-content>' }]
|
|
29
|
+
}], ctorParameters: () => [], propDecorators: { title: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}], template: [{
|
|
32
|
+
type: ContentChild,
|
|
33
|
+
args: [TemplateRef]
|
|
34
|
+
}] } });
|
|
7
35
|
export class ContentTileComponent {
|
|
8
36
|
set items(refs) {
|
|
9
37
|
if (refs) {
|
|
@@ -32,11 +60,11 @@ export class ContentTileComponent {
|
|
|
32
60
|
return false;
|
|
33
61
|
}
|
|
34
62
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileComponent, deps: [{ token: i1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
35
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: ContentTileComponent, selector: "lib-content-tile", inputs: { title: "title", busy: "busy", showAction: ["show-action", "showAction"], showFooter: ["show-footer", "showFooter"], actionText: ["action-text", "actionText"] }, outputs: { tileAction: "tile-action" }, queries: [{ propertyName: "header", first: true, predicate: ContentTileHeaderComponent, descendants: true }, { propertyName: "items", predicate: ContentTileItemComponent, read: ContentTileItemComponent }], ngImport: i0, template: "<div class=\"card\" [class.card-deck-busy]=\"busy\">\r\n <div class=\"card-body\">\r\n <div class=\"kpi-tile-title-container flex align-top\">\r\n <
|
|
63
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: ContentTileComponent, selector: "lib-content-tile", inputs: { title: "title", busy: "busy", showAction: ["show-action", "showAction"], showFooter: ["show-footer", "showFooter"], actionText: ["action-text", "actionText"] }, outputs: { tileAction: "tile-action" }, queries: [{ propertyName: "header", first: true, predicate: ContentTileHeaderComponent, descendants: true }, { propertyName: "items", predicate: ContentTileItemComponent, read: ContentTileItemComponent }], ngImport: i0, template: "<div class=\"card bg-white\" [class.card-deck-busy]=\"busy\">\r\n <div class=\"card-body\">\r\n <div class=\"kpi-tile-title-container flex align-top\">\r\n <button type=\"button\" *ngIf=\"!header\" class=\"kpi-tile-action text-left flex-1 uppercase\" \r\n (click)=\"emitTileAction($event)\">{{(this.itemTemplates[selectedIndex].title ?? title) ?? '-'}}\r\n </button>\r\n <ng-container *ngIf=\"header && header.template\">\r\n <div class=\"flex-1\">\r\n <ng-template [ngTemplateOutlet]=\"header.template\"></ng-template>\r\n </div>\r\n </ng-container>\r\n <div *ngIf=\"showAction\" class=\"float-right align-top\">\r\n <button type=\"button\" class=\"kpi-tile-action text-xs uppercase\" (click)=\"emitTileAction($event)\">{{actionText}}</button>\r\n </div>\r\n </div>\r\n <div class=\"flex items-center\" *ngIf=\"itemTemplates\">\r\n <ng-template [ngTemplateOutlet]=\"itemTemplates[selectedIndex].template\"></ng-template>\r\n </div>\r\n <div class=\"tile-card-footer opacity-25 hover:opacity-75\" *ngIf=\"itemTemplates && itemTemplates.length>1\">\r\n <nav class=\"flex items-center justify-between px-4 sm:px-0\">\r\n <div class=\"flex w-0 flex-1\"></div>\r\n <div class=\"flex items-center justify-between px-2\">\r\n <ng-container *ngFor=\"let item of itemTemplates; index as i\">\r\n <button type=\"button\"\r\n title=\"details\"\r\n (click)=\"selectedIndex=i\"\r\n [disabled]=\"selectedIndex===i\"\r\n class=\"tile-card-item-btn\"\r\n [class.tile-card-item-btn-available]=\"selectedIndex!==i\"\r\n [class.tile-card-item-btn-selected]=\"selectedIndex===i\">\r\n </button>\r\n </ng-container>\r\n </div>\r\n <div class=\"flex w-0 flex-1 justify-end\"></div>\r\n </nav>\r\n </div>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
36
64
|
}
|
|
37
65
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileComponent, decorators: [{
|
|
38
66
|
type: Component,
|
|
39
|
-
args: [{ selector: 'lib-content-tile', template: "<div class=\"card\" [class.card-deck-busy]=\"busy\">\r\n <div class=\"card-body\">\r\n <div class=\"kpi-tile-title-container flex align-top\">\r\n <
|
|
67
|
+
args: [{ selector: 'lib-content-tile', template: "<div class=\"card bg-white\" [class.card-deck-busy]=\"busy\">\r\n <div class=\"card-body\">\r\n <div class=\"kpi-tile-title-container flex align-top\">\r\n <button type=\"button\" *ngIf=\"!header\" class=\"kpi-tile-action text-left flex-1 uppercase\" \r\n (click)=\"emitTileAction($event)\">{{(this.itemTemplates[selectedIndex].title ?? title) ?? '-'}}\r\n </button>\r\n <ng-container *ngIf=\"header && header.template\">\r\n <div class=\"flex-1\">\r\n <ng-template [ngTemplateOutlet]=\"header.template\"></ng-template>\r\n </div>\r\n </ng-container>\r\n <div *ngIf=\"showAction\" class=\"float-right align-top\">\r\n <button type=\"button\" class=\"kpi-tile-action text-xs uppercase\" (click)=\"emitTileAction($event)\">{{actionText}}</button>\r\n </div>\r\n </div>\r\n <div class=\"flex items-center\" *ngIf=\"itemTemplates\">\r\n <ng-template [ngTemplateOutlet]=\"itemTemplates[selectedIndex].template\"></ng-template>\r\n </div>\r\n <div class=\"tile-card-footer opacity-25 hover:opacity-75\" *ngIf=\"itemTemplates && itemTemplates.length>1\">\r\n <nav class=\"flex items-center justify-between px-4 sm:px-0\">\r\n <div class=\"flex w-0 flex-1\"></div>\r\n <div class=\"flex items-center justify-between px-2\">\r\n <ng-container *ngFor=\"let item of itemTemplates; index as i\">\r\n <button type=\"button\"\r\n title=\"details\"\r\n (click)=\"selectedIndex=i\"\r\n [disabled]=\"selectedIndex===i\"\r\n class=\"tile-card-item-btn\"\r\n [class.tile-card-item-btn-available]=\"selectedIndex!==i\"\r\n [class.tile-card-item-btn-selected]=\"selectedIndex===i\">\r\n </button>\r\n </ng-container>\r\n </div>\r\n <div class=\"flex w-0 flex-1 justify-end\"></div>\r\n </nav>\r\n </div>\r\n </div>\r\n</div>\r\n" }]
|
|
40
68
|
}], ctorParameters: () => [{ type: i1.Router }], propDecorators: { title: [{
|
|
41
69
|
type: Input
|
|
42
70
|
}], busy: [{
|
|
@@ -60,4 +88,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImpor
|
|
|
60
88
|
type: ContentChild,
|
|
61
89
|
args: [ContentTileHeaderComponent]
|
|
62
90
|
}] } });
|
|
63
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
91
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGVudC10aWxlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25nLWNvbXBvbmVudHMvc3JjL2xpYi9jb250cm9scy9jb250ZW50LXRpbGUvY29udGVudC10aWxlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25nLWNvbXBvbmVudHMvc3JjL2xpYi9jb250cm9scy9jb250ZW50LXRpbGUvY29udGVudC10aWxlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLGVBQWUsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBYSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7QUFJdEksTUFBTSxPQUFPLDBCQUEwQjtJQUVyQztRQUQyQixhQUFRLEdBQW9CLFNBQVMsQ0FBQztJQUNqRCxDQUFDOzhHQUZOLDBCQUEwQjtrR0FBMUIsMEJBQTBCLHFHQUN2QixXQUFXLGdEQUZnQywyQkFBMkI7OzJGQUN6RSwwQkFBMEI7a0JBRHRDLFNBQVM7bUJBQUMsRUFBQyxRQUFRLEVBQUUseUJBQXlCLEVBQUUsUUFBUSxFQUFFLDJCQUEyQixFQUFDO3dEQUUxRCxRQUFRO3NCQUFsQyxZQUFZO3VCQUFDLFdBQVc7O0FBTTNCLE1BQU0sT0FBTyx3QkFBd0I7SUFHbkM7UUFEMkIsYUFBUSxHQUFvQixTQUFTLENBQUM7SUFDakQsQ0FBQzs4R0FITix3QkFBd0I7a0dBQXhCLHdCQUF3QiwrSEFFckIsV0FBVyxnREFIK0IsMkJBQTJCOzsyRkFDeEUsd0JBQXdCO2tCQURwQyxTQUFTO21CQUFDLEVBQUMsUUFBUSxFQUFFLHVCQUF1QixFQUFHLFFBQVEsRUFBRSwyQkFBMkIsRUFBQzt3REFFM0UsS0FBSztzQkFBYixLQUFLO2dCQUNxQixRQUFRO3NCQUFsQyxZQUFZO3VCQUFDLFdBQVc7O0FBUTNCLE1BQU0sT0FBTyxvQkFBb0I7SUFZL0IsSUFDSSxLQUFLLENBQUMsSUFBeUM7UUFDakQsSUFBSSxJQUFJLEVBQUUsQ0FBQztZQUNULElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO1FBQ3RDLENBQUM7SUFDSCxDQUFDO0lBR0QsWUFBb0IsTUFBYztRQUFkLFdBQU0sR0FBTixNQUFNLENBQVE7UUFsQnpCLFVBQUssR0FBdUIsU0FBUyxDQUFDO1FBQ3RDLFNBQUksR0FBRyxLQUFLLENBQUM7UUFDQSxlQUFVLEdBQXdCLElBQUksQ0FBQztRQUN2QyxlQUFVLEdBQXdCLElBQUksQ0FBQztRQUN2QyxlQUFVLEdBQVcsYUFBYSxDQUFDO1FBQ3pELDRDQUE0QztRQUNyQixlQUFVLEdBQXNCLElBQUksWUFBWSxFQUFPLENBQUM7UUFDeEUsa0JBQWEsR0FBRyxDQUFDLENBQUM7UUFFbEIsa0JBQWEsR0FBVSxFQUFFLENBQUM7UUFRUyxXQUFNLEdBQTJDLFNBQVMsQ0FBQztJQUMvRCxDQUFDO0lBRXZDLFFBQVE7SUFDUixDQUFDO0lBRU0sY0FBYyxDQUFDLE1BQVc7UUFDL0IsTUFBTSxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3hCLE1BQU0sQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUN6QixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUM3QixPQUFPLEtBQUssQ0FBQztJQUNmLENBQUM7OEdBOUJVLG9CQUFvQjtrR0FBcEIsb0JBQW9CLCtTQW1CakIsMEJBQTBCLDJEQVB2Qix3QkFBd0IsUUFBVSx3QkFBd0IsNkJDakM3RSxpOURBc0NBOzsyRkRqQmEsb0JBQW9CO2tCQUpoQyxTQUFTOytCQUNFLGtCQUFrQjsyRUFLbkIsS0FBSztzQkFBYixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSztnQkFDZ0IsVUFBVTtzQkFBL0IsS0FBSzt1QkFBQyxhQUFhO2dCQUNFLFVBQVU7c0JBQS9CLEtBQUs7dUJBQUMsYUFBYTtnQkFDRSxVQUFVO3NCQUEvQixLQUFLO3VCQUFDLGFBQWE7Z0JBRUcsVUFBVTtzQkFBaEMsTUFBTTt1QkFBQyxhQUFhO2dCQUtqQixLQUFLO3NCQURSLGVBQWU7dUJBQUMsd0JBQXdCLEVBQUUsRUFBRSxJQUFJLEVBQUUsd0JBQXdCLEVBQUU7Z0JBT25DLE1BQU07c0JBQS9DLFlBQVk7dUJBQUMsMEJBQTBCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBDb250ZW50Q2hpbGQsIENvbnRlbnRDaGlsZHJlbiwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQsIFF1ZXJ5TGlzdCwgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuXHJcbkBDb21wb25lbnQoe3NlbGVjdG9yOiAnbGliLWNvbnRlbnQtdGlsZS1oZWFkZXInLCB0ZW1wbGF0ZTogJzxuZy1jb250ZW50PjwvbmctY29udGVudD4nfSlcclxuZXhwb3J0IGNsYXNzIENvbnRlbnRUaWxlSGVhZGVyQ29tcG9uZW50IHtcclxuICBAQ29udGVudENoaWxkKFRlbXBsYXRlUmVmKSB0ZW1wbGF0ZTogYW55IHwgdW5kZWZpbmVkID0gdW5kZWZpbmVkO1xyXG4gIGNvbnN0cnVjdG9yKCkgeyB9XHJcbn1cclxuXHJcblxyXG5AQ29tcG9uZW50KHtzZWxlY3RvcjogJ2xpYi1jb250ZW50LXRpbGUtaXRlbScsICB0ZW1wbGF0ZTogJzxuZy1jb250ZW50PjwvbmctY29udGVudD4nfSlcclxuZXhwb3J0IGNsYXNzIENvbnRlbnRUaWxlSXRlbUNvbXBvbmVudCB7XHJcbiAgQElucHV0KCkgdGl0bGU6IHN0cmluZyB8IHVuZGVmaW5lZDtcclxuICBAQ29udGVudENoaWxkKFRlbXBsYXRlUmVmKSB0ZW1wbGF0ZTogYW55IHwgdW5kZWZpbmVkID0gdW5kZWZpbmVkO1xyXG4gIGNvbnN0cnVjdG9yKCkgeyB9XHJcbn1cclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLWNvbnRlbnQtdGlsZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbnRlbnQtdGlsZS5jb21wb25lbnQuaHRtbCdcclxufSlcclxuZXhwb3J0IGNsYXNzIENvbnRlbnRUaWxlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuXHJcbiAgQElucHV0KCkgdGl0bGU6IHN0cmluZyB8IHVuZGVmaW5lZCA9IHVuZGVmaW5lZDtcclxuICBASW5wdXQoKSBidXN5ID0gZmFsc2U7XHJcbiAgQElucHV0KCdzaG93LWFjdGlvbicpIHNob3dBY3Rpb246IGJvb2xlYW4gfCB1bmRlZmluZWQgPSB0cnVlO1xyXG4gIEBJbnB1dCgnc2hvdy1mb290ZXInKSBzaG93Rm9vdGVyOiBib29sZWFuIHwgdW5kZWZpbmVkID0gdHJ1ZTtcclxuICBASW5wdXQoJ2FjdGlvbi10ZXh0JykgYWN0aW9uVGV4dDogc3RyaW5nID0gJ86gzrXPgc65z4PPg8+Mz4TOtc+BzrEnO1xyXG4gIC8vIHRzbGludDpkaXNhYmxlLW5leHQtbGluZTpuby1vdXRwdXQtcmVuYW1lXHJcbiAgQE91dHB1dCgndGlsZS1hY3Rpb24nKSB0aWxlQWN0aW9uOiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG4gIHB1YmxpYyBzZWxlY3RlZEluZGV4ID0gMDtcclxuXHJcbiAgcHVibGljIGl0ZW1UZW1wbGF0ZXM6IGFueVtdID0gW107XHJcbiAgQENvbnRlbnRDaGlsZHJlbihDb250ZW50VGlsZUl0ZW1Db21wb25lbnQsIHsgcmVhZDogQ29udGVudFRpbGVJdGVtQ29tcG9uZW50IH0pXHJcbiAgc2V0IGl0ZW1zKHJlZnM6IFF1ZXJ5TGlzdDxDb250ZW50VGlsZUl0ZW1Db21wb25lbnQ+KSB7XHJcbiAgICBpZiAocmVmcykge1xyXG4gICAgICB0aGlzLml0ZW1UZW1wbGF0ZXMgPSByZWZzLnRvQXJyYXkoKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIEBDb250ZW50Q2hpbGQoQ29udGVudFRpbGVIZWFkZXJDb21wb25lbnQpIGhlYWRlcjogQ29udGVudFRpbGVIZWFkZXJDb21wb25lbnQgfCB1bmRlZmluZWQgPSB1bmRlZmluZWQ7XHJcbiAgY29uc3RydWN0b3IocHJpdmF0ZSByb3V0ZXI6IFJvdXRlcikgeyB9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGVtaXRUaWxlQWN0aW9uKCRldmVudDogYW55KTogYm9vbGVhbiB7XHJcbiAgICAkZXZlbnQucHJldmVudERlZmF1bHQoKTtcclxuICAgICRldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcclxuICAgIHRoaXMudGlsZUFjdGlvbi5lbWl0KCRldmVudCk7XHJcbiAgICByZXR1cm4gZmFsc2U7XHJcbiAgfVxyXG5cclxufVxyXG5cclxuIiwiPGRpdiBjbGFzcz1cImNhcmQgYmctd2hpdGVcIiBbY2xhc3MuY2FyZC1kZWNrLWJ1c3ldPVwiYnVzeVwiPlxyXG4gIDxkaXYgY2xhc3M9XCJjYXJkLWJvZHlcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJrcGktdGlsZS10aXRsZS1jb250YWluZXIgZmxleCBhbGlnbi10b3BcIj5cclxuICAgICAgPGJ1dHRvbiB0eXBlPVwiYnV0dG9uXCIgKm5nSWY9XCIhaGVhZGVyXCIgY2xhc3M9XCJrcGktdGlsZS1hY3Rpb24gdGV4dC1sZWZ0IGZsZXgtMSB1cHBlcmNhc2VcIiBcclxuICAgICAgICAgICAgICAoY2xpY2spPVwiZW1pdFRpbGVBY3Rpb24oJGV2ZW50KVwiPnt7KHRoaXMuaXRlbVRlbXBsYXRlc1tzZWxlY3RlZEluZGV4XS50aXRsZSA/PyB0aXRsZSkgPz8gJy0nfX1cclxuICAgICAgICA8L2J1dHRvbj5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImhlYWRlciAmJiBoZWFkZXIudGVtcGxhdGVcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleC0xXCI+XHJcbiAgICAgICAgICA8bmctdGVtcGxhdGUgW25nVGVtcGxhdGVPdXRsZXRdPVwiaGVhZGVyLnRlbXBsYXRlXCI+PC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgIDxkaXYgKm5nSWY9XCJzaG93QWN0aW9uXCIgY2xhc3M9XCJmbG9hdC1yaWdodCBhbGlnbi10b3BcIj5cclxuICAgICAgICA8YnV0dG9uIHR5cGU9XCJidXR0b25cIiBjbGFzcz1cImtwaS10aWxlLWFjdGlvbiB0ZXh0LXhzIHVwcGVyY2FzZVwiIChjbGljayk9XCJlbWl0VGlsZUFjdGlvbigkZXZlbnQpXCI+e3thY3Rpb25UZXh0fX08L2J1dHRvbj5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlclwiICpuZ0lmPVwiaXRlbVRlbXBsYXRlc1wiPlxyXG4gICAgICA8bmctdGVtcGxhdGUgW25nVGVtcGxhdGVPdXRsZXRdPVwiaXRlbVRlbXBsYXRlc1tzZWxlY3RlZEluZGV4XS50ZW1wbGF0ZVwiPjwvbmctdGVtcGxhdGU+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJ0aWxlLWNhcmQtZm9vdGVyIG9wYWNpdHktMjUgaG92ZXI6b3BhY2l0eS03NVwiICpuZ0lmPVwiaXRlbVRlbXBsYXRlcyAmJiBpdGVtVGVtcGxhdGVzLmxlbmd0aD4xXCI+XHJcbiAgICAgIDxuYXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBqdXN0aWZ5LWJldHdlZW4gcHgtNCBzbTpweC0wXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggdy0wIGZsZXgtMVwiPjwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBqdXN0aWZ5LWJldHdlZW4gcHgtMlwiPlxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgaXRlbSBvZiBpdGVtVGVtcGxhdGVzOyBpbmRleCBhcyBpXCI+XHJcbiAgICAgICAgICAgIDxidXR0b24gdHlwZT1cImJ1dHRvblwiXHJcbiAgICAgICAgICAgICAgICAgICAgdGl0bGU9XCJkZXRhaWxzXCJcclxuICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwic2VsZWN0ZWRJbmRleD1pXCJcclxuICAgICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwic2VsZWN0ZWRJbmRleD09PWlcIlxyXG4gICAgICAgICAgICAgICAgICAgIGNsYXNzPVwidGlsZS1jYXJkLWl0ZW0tYnRuXCJcclxuICAgICAgICAgICAgICAgICAgICBbY2xhc3MudGlsZS1jYXJkLWl0ZW0tYnRuLWF2YWlsYWJsZV09XCJzZWxlY3RlZEluZGV4IT09aVwiXHJcbiAgICAgICAgICAgICAgICAgICAgW2NsYXNzLnRpbGUtY2FyZC1pdGVtLWJ0bi1zZWxlY3RlZF09XCJzZWxlY3RlZEluZGV4PT09aVwiPlxyXG4gICAgICAgICAgICA8L2J1dHRvbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IHctMCBmbGV4LTEganVzdGlmeS1lbmRcIj48L2Rpdj5cclxuICAgICAgPC9uYXY+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuPC9kaXY+XHJcbiJdfQ==
|