@agilekit/ui 0.0.390-alpha.0 → 0.0.391-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.
|
|
3
|
+
"version": "0.0.391-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": "
|
|
146
|
+
"gitHead": "784b7efd2505fc665218ff63a5dd41cb1adff44f"
|
|
147
147
|
}
|
|
@@ -477,13 +477,13 @@ $input-plaintext-color: $body-color !default;
|
|
|
477
477
|
|
|
478
478
|
$input-height-border: calc($input-border-width * 2) !default;
|
|
479
479
|
|
|
480
|
-
$input-height-inner: calc(($input-btn-font-size * $input-btn-line-height)+($input-btn-padding-y * 2)) !default;
|
|
480
|
+
$input-height-inner: calc(($input-btn-font-size * $input-btn-line-height) + ($input-btn-padding-y * 2)) !default;
|
|
481
481
|
$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;
|
|
482
482
|
|
|
483
|
-
$input-height-inner-sm: calc(($input-btn-font-size-sm * $input-btn-line-height-sm)+($input-btn-padding-y-sm * 2)) !default;
|
|
483
|
+
$input-height-inner-sm: calc(($input-btn-font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2)) !default;
|
|
484
484
|
$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;
|
|
485
485
|
|
|
486
|
-
$input-height-inner-lg: calc(($input-btn-font-size-lg * $input-btn-line-height-lg)+($input-btn-padding-y-lg * 2)) !default;
|
|
486
|
+
$input-height-inner-lg: calc(($input-btn-font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2)) !default;
|
|
487
487
|
$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;
|
|
488
488
|
|
|
489
489
|
$input-transition: border-color .15s ease-in-out,
|
|
@@ -568,7 +568,7 @@ $custom-select-indicator-color: $gray-800 !default;
|
|
|
568
568
|
$custom-select-indicator: str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e"), "#", "%23") !default;
|
|
569
569
|
$custom-select-background: $custom-select-indicator no-repeat right $custom-select-padding-x center / $custom-select-bg-size !default; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
|
|
570
570
|
|
|
571
|
-
$custom-select-feedback-icon-padding-right: calc($input-height-inner * 3 / 4
|
|
571
|
+
$custom-select-feedback-icon-padding-right: calc($input-height-inner * 3 / 4 + $custom-select-padding-x + $custom-select-indicator-padding) !default;
|
|
572
572
|
$custom-select-feedback-icon-position: center right calc($custom-select-padding-x + $custom-select-indicator-padding) !default;
|
|
573
573
|
$custom-select-feedback-icon-size: calc(($input-height-inner / 2) ($input-height-inner / 2)) !default;
|
|
574
574
|
|
|
@@ -720,7 +720,7 @@ $navbar-nav-link-padding-x: .5rem !default;
|
|
|
720
720
|
|
|
721
721
|
$navbar-brand-font-size: $font-size-lg !default;
|
|
722
722
|
// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
|
|
723
|
-
$nav-link-height: calc($font-size-base * $line-height-base
|
|
723
|
+
$nav-link-height: calc($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;
|
|
724
724
|
$navbar-brand-height: calc($navbar-brand-font-size * $line-height-base) !default;
|
|
725
725
|
$navbar-brand-padding-y: calc(($nav-link-height - $navbar-brand-height) / 2) !default;
|
|
726
726
|
|