@recursyve/nice-ui-kit.v2 15.0.0-beta.124 → 15.0.0-beta.125

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recursyve/nice-ui-kit.v2",
3
- "version": "15.0.0-beta.124",
3
+ "version": "15.0.0-beta.125",
4
4
  "exports": {
5
5
  ".": {
6
6
  "sass": "./_index.scss",
@@ -1528,6 +1528,16 @@ table {
1528
1528
  }
1529
1529
  }
1530
1530
 
1531
+ @mixin _calendar_body_active_not_selected {
1532
+ .cdk-program-focused .mat-calendar-body-active {
1533
+ & > .mat-calendar-body-cell-content {
1534
+ &:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
1535
+ @content;
1536
+ }
1537
+ }
1538
+ }
1539
+ }
1540
+
1531
1541
  @include _calendar_body_hover {
1532
1542
  @apply bg-primary/30 #{!important};
1533
1543
  }
@@ -1536,6 +1546,10 @@ table {
1536
1546
  @apply bg-primary/20 #{!important};
1537
1547
  }
1538
1548
 
1549
+ @include _calendar_body_active_not_selected {
1550
+ @apply text-on-primary #{!important};
1551
+ }
1552
+
1539
1553
  .mat-datepicker-content {
1540
1554
  &.mat-accent {
1541
1555
  @include _calendar_body_hover {
@@ -1545,6 +1559,10 @@ table {
1545
1559
  @include _calendar_body_in_range {
1546
1560
  @apply bg-accent/20 #{!important};
1547
1561
  }
1562
+
1563
+ @include _calendar_body_active_not_selected {
1564
+ @apply text-on-accent #{!important};
1565
+ }
1548
1566
  }
1549
1567
 
1550
1568
  &.mat-warn {
@@ -1555,5 +1573,9 @@ table {
1555
1573
  @include _calendar_body_in_range {
1556
1574
  @apply bg-warn/20 #{!important};
1557
1575
  }
1576
+
1577
+ @include _calendar_body_active_not_selected {
1578
+ @apply text-on-warn #{!important};
1579
+ }
1558
1580
  }
1559
1581
  }