@dynamic-framework/ui-react 1.17.0 → 1.17.1

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
@@ -3,7 +3,7 @@
3
3
  "sideEffects": [
4
4
  "*.css"
5
5
  ],
6
- "version": "1.17.0",
6
+ "version": "1.17.1",
7
7
  "description": "React Dynamic Framework",
8
8
  "license": "https://github.com/dynamic-framework/dynamic-ui/blob/master/libraries/dynamic-ui-react/LICENSE.md",
9
9
  "repository": {
@@ -149,5 +149,5 @@
149
149
  "react-dom": "^18.2.0",
150
150
  "react-i18next": "^13.3.1"
151
151
  },
152
- "gitHead": "260d49f5eadf47639dd830517d98b5882c54fe23"
152
+ "gitHead": "cb4961253c750d22816d61859c53540863845041"
153
153
  }
@@ -45,7 +45,7 @@
45
45
  // scss-docs-start df-btn-outline-variant-mixin
46
46
  @mixin df-button-outline-variant(
47
47
  $color-name,
48
- $default-color: var(--#{$prefix}#{$color-name}-600),
48
+ $default-color: var(--#{$prefix}#{$color-name}-500),
49
49
  $hover-bg-color: var(--#{$prefix}#{$color-name}-100),
50
50
  $focus-bg-color: var(--#{$prefix}#{$color-name}-100),
51
51
  $active-bg-color: var(--#{$prefix}#{$color-name}-200),
@@ -1,7 +1,7 @@
1
1
  // Badges
2
2
 
3
3
  // scss-docs-start badge-variables
4
- $badge-font-size: $small-font-size !default;
4
+ $badge-font-size: var(--#{$prefix}body-font-size) !default;
5
5
  $badge-font-weight: $font-weight-normal !default;
6
6
  $badge-color: var(--#{$prefix}gray-900) !default;
7
7
  $badge-padding-y: var(--#{$prefix}ref-spacer-1) !default;
@@ -28,5 +28,5 @@ $link-color: map-get($all-colors, $link-color-mapping) !default;
28
28
  $link-hover-color: map-get($all-colors, $link-hover-color-mapping) !default;
29
29
  // end custom
30
30
 
31
- $link-decoration: underline !default;
31
+ $link-decoration: none !default;
32
32
  $link-hover-decoration: underline !default;
@@ -8,10 +8,10 @@ $border-color-translucent: rgba(var(--#{$prefix}black-rgb), .175) !default;
8
8
  // scss-docs-end border-variables
9
9
 
10
10
  // scss-docs-start border-radius-variables
11
- $border-radius: var(--#{$prefix}ref-spacer-4) !default;
12
- $border-radius-sm: var(--#{$prefix}ref-spacer-2) !default;
13
- $border-radius-lg: var(--#{$prefix}ref-spacer-6) !default;
14
- $border-radius-xl: var(--#{$prefix}ref-spacer-8) !default;
15
- $border-radius-xxl: var(--#{$prefix}ref-spacer-10) !default;
11
+ $border-radius: 1rem !default;
12
+ $border-radius-sm: .5rem !default;
13
+ $border-radius-lg: 1.5rem !default;
14
+ $border-radius-xl: 2rem !default;
15
+ $border-radius-xxl: 2.5rem !default;
16
16
  $border-radius-pill: 50rem !default;
17
17
  // scss-docs-end border-radius-variables
@@ -52,6 +52,7 @@
52
52
 
53
53
  .d-step-number {
54
54
  z-index: var(--#{$prefix}step-current-step-z-index);
55
+ margin-bottom: 0;
55
56
  font-weight: var(--#{$prefix}step-current-step-font-weight);
56
57
  color: var(--#{$prefix}step-current-step-color);
57
58
  }