@agilekit/ui 0.0.407-alpha.0 → 0.0.410-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agilekit/ui",
3
- "version": "0.0.407-alpha.0",
3
+ "version": "0.0.410-alpha.0",
4
4
  "description": "Agile's product component library",
5
5
  "author": "Michael de Lima Alves <michaelalves@outlook.com>",
6
6
  "license": "MIT",
@@ -143,5 +143,5 @@
143
143
  "react-spring": "*"
144
144
  },
145
145
  "bugs": {},
146
- "gitHead": "9f3823f222722afb939e75a13e16f4ebd32cc5c0"
146
+ "gitHead": "af10aaf915d4e9e801f2621929471f8d0c5aed4f"
147
147
  }
@@ -178,7 +178,7 @@
178
178
  }
179
179
 
180
180
  &::after {
181
- top: calc(#{(($font-size-base * $line-height-base - $custom-control-indicator-size) / 2)} + #{$custom-control-indicator-border-width * 2});
181
+ top: math.div((4 * $line-height-base - $custom-control-indicator-size), 2) + 40 * 2;
182
182
  left: calc(#{-($custom-switch-width + $custom-control-gutter)} + #{$custom-control-indicator-border-width * 2});
183
183
  width: $custom-switch-indicator-size;
184
184
  height: $custom-switch-indicator-size;
@@ -145,7 +145,6 @@ $body-color: $gray-900 !default;
145
145
 
146
146
 
147
147
  // Links
148
- //
149
148
  // Style anchor elements.
150
149
 
151
150
  $link-color: theme-color("primary") !default;
@@ -484,7 +483,7 @@ $input-height-inner-sm: ($input-btn-font-size-sm * $input-btn-line-height-sm) +
484
483
  $input-height-sm: 29 + $input-height-border !default;
485
484
 
486
485
  $input-height-inner-lg: ($input-btn-font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;
487
- $input-height-lg: $input-height-inner-lg + $input-height-border !default;
486
+ $input-height-lg: 46 + $input-height-border !default;
488
487
 
489
488
  $input-transition: border-color .15s ease-in-out,
490
489
  box-shadow .15s ease-in-out !default;
@@ -551,7 +550,7 @@ $custom-radio-indicator-icon-checked: str-replace(url("data:image/svg+xml,%3csvg
551
550
 
552
551
  $custom-switch-width: $custom-control-indicator-size * 1.75 !default;
553
552
  $custom-switch-indicator-border-radius: math.div($custom-control-indicator-size, 2) !default;
554
- $custom-switch-indicator-size: $custom-control-indicator-size - $custom-control-indicator-border-width * 4 !default;
553
+ $custom-switch-indicator-size: 16 - $custom-control-indicator-border-width * 4 !default;
555
554
 
556
555
  $custom-select-padding-y: $input-btn-padding-y !default;
557
556
  $custom-select-padding-x: $input-btn-padding-x !default;
@@ -656,7 +655,7 @@ $dropdown-bg: $white !default;
656
655
  $dropdown-border-color: rgba($black, .15) !default;
657
656
  $dropdown-border-radius: $border-radius !default;
658
657
  $dropdown-border-width: $border-width !default;
659
- $dropdown-inner-border-radius: $dropdown-border-radius - $dropdown-border-width !default;
658
+ $dropdown-inner-border-radius: 4 - $dropdown-border-width !default;
660
659
  $dropdown-divider-bg: $gray-200 !default;
661
660
  $dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
662
661
 
@@ -722,7 +721,7 @@ $navbar-brand-font-size: $font-size-lg !default;
722
721
  // Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
723
722
  $nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;
724
723
  $navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
725
- $navbar-brand-padding-y: math.div((#{$nav-link-height} - #{$navbar-brand-height}), 2) !default;
724
+ $navbar-brand-padding-y: math.div(($nav-link-height - $navbar-brand-height), 2) !default;
726
725
 
727
726
  $navbar-toggler-padding-y: .25rem !default;
728
727
  $navbar-toggler-padding-x: .75rem !default;
@@ -793,14 +792,14 @@ $card-spacer-x: 1.25rem !default;
793
792
  $card-border-width: $border-width !default;
794
793
  $card-border-radius: $border-radius !default;
795
794
  $card-border-color: rgba($black, .125) !default;
796
- $card-inner-border-radius: $card-border-radius - $card-border-width !default;
795
+ $card-inner-border-radius: 4 - $card-border-width !default;
797
796
  $card-cap-bg: rgba($black, .03) !default;
798
797
  $card-cap-color: inherit !default;
799
798
  $card-bg: $white !default;
800
799
 
801
800
  $card-img-overlay-padding: 1.25rem !default;
802
801
 
803
- $card-group-margin: math.div(#{$grid-gutter-width}, 2) !default;
802
+ $card-group-margin: math.div($grid-gutter-width, 2) !default;
804
803
  $card-deck-margin: $card-group-margin !default;
805
804
 
806
805
  $card-columns-count: 3 !default;
@@ -34,7 +34,7 @@
34
34
 
35
35
  .embed-responsive-#{$embed-responsive-aspect-ratio-x}by#{$embed-responsive-aspect-ratio-y} {
36
36
  &::before {
37
- padding-top: percentage(math.div($embed-responsive-aspect-ratio-y / $embed-responsive-aspect-ratio-x));
37
+ padding-top: percentage(math.div($embed-responsive-aspect-ratio-y, $embed-responsive-aspect-ratio-x));
38
38
  }
39
39
  }
40
40
  }