@wizishop/angular-components 14.4.26 → 14.4.28

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.
@@ -3474,7 +3474,62 @@ wac-calendar {
3474
3474
  z-index: 2;
3475
3475
  }
3476
3476
  }
3477
- .wac-expanded-panel {
3477
+
3478
+ .nwbSelect {
3479
+
3480
+ &__container {
3481
+ position: absolute;
3482
+ top: 100%;
3483
+ margin-top: rem(14);
3484
+ left: 0;
3485
+ width: auto;
3486
+ border: 1px solid $wac-border-light;
3487
+ border-radius: 3px;
3488
+ display: flex;
3489
+ flex-direction: column;
3490
+ justify-content: flex-start;
3491
+ align-items: flex-start;
3492
+ background-color: $wac-white;
3493
+ max-height: 400px;
3494
+ height: auto;
3495
+ visibility: visible;
3496
+ opacity: 1;
3497
+ z-index: 999;
3498
+ box-shadow: 3px 3px 20px $wac-select-box-shadow;
3499
+
3500
+ &__item {
3501
+ border: none;
3502
+ background-color: transparent;
3503
+ width: 100%;
3504
+ font-size: rem(14);
3505
+ line-height: rem(40);
3506
+ cursor: pointer;
3507
+ transition: 0.3s ease;
3508
+ position: relative;
3509
+ display: flex;
3510
+ justify-content: flex-start;
3511
+ align-content: center;
3512
+ align-items: center;
3513
+ font-weight: 400;
3514
+ padding: 0 20px;
3515
+
3516
+ &:empty {
3517
+ display: none;
3518
+ }
3519
+
3520
+ &:hover,
3521
+ &:focus {
3522
+ background-color: $wac-gray-background;
3523
+ color: $wac-main-text;
3524
+ }
3525
+
3526
+ &--selected {
3527
+ background-color: $wac-hover-multiple-search !important;
3528
+ color: $wac-main-text !important;
3529
+ }
3530
+ }
3531
+ }
3532
+ }.wac-expanded-panel {
3478
3533
  width: 100%;
3479
3534
  display: flex;
3480
3535
  flex-direction: column;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "14.4.26",
3
+ "version": "14.4.28",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~14.0.6",
6
6
  "@angular/cdk": "^14.0.5",