@dynamic-framework/ui-react 1.15.0 → 1.15.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.15.0",
6
+ "version": "1.15.1",
7
7
  "description": "React Dynamic Framework",
8
8
  "license": "MIT",
9
9
  "repository": {
@@ -147,5 +147,5 @@
147
147
  "react-dom": "^18.2.0",
148
148
  "react-i18next": "^13.3.1"
149
149
  },
150
- "gitHead": "a37c9aa8e3eac83d13f9c2b8837334aa35ad0128"
150
+ "gitHead": "56e25786b838432037aba3847643edb0ce677538"
151
151
  }
@@ -7,7 +7,7 @@ $body-text-align: null !default;
7
7
  // custom
8
8
  $body-color-mapping: "gray-900" !default;
9
9
  $body-color: map-get($all-colors, $body-color-mapping) !default;
10
- $body-bg-mapping: "white" !default;
10
+ $body-bg-mapping: "secondary-soft" !default;
11
11
  $body-bg: map-get($all-colors, $body-bg-mapping) !default;
12
12
 
13
13
  $body-secondary-color: var(--#{$prefix}body-color-rgb) !default;
@@ -34,7 +34,7 @@ $btn-link-disabled-color: $gray-600 !default;
34
34
 
35
35
  $btn-border-radius: $border-radius-sm !default;
36
36
  $btn-border-radius-sm: $border-radius-sm !default;
37
- $btn-border-radius-lg: $border-radius-lg !default;
37
+ $btn-border-radius-lg: $border-radius !default;
38
38
 
39
39
  $btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
40
40
 
@@ -121,11 +121,11 @@
121
121
  --#{$prefix}heading-color: #{$headings-color};
122
122
 
123
123
  --#{$prefix}link-color: rgb(var(--#{$prefix}link-color-rgb));
124
- --#{$prefix}link-color-rgb: var(--#{$prefix}#{$link-color-mapping});
124
+ --#{$prefix}link-color-rgb: var(--#{$prefix}#{$link-color-mapping}-rgb);
125
125
  --#{$prefix}link-decoration: #{$link-decoration};
126
126
 
127
127
  --#{$prefix}link-hover-color: rgb(var(--#{$prefix}link-hover-color-rgb));
128
- --#{$prefix}link-hover-color-rgb: var(--#{$prefix}#{$link-hover-color-mapping});
128
+ --#{$prefix}link-hover-color-rgb: var(--#{$prefix}#{$link-hover-color-mapping}-rgb);
129
129
 
130
130
  @if $link-hover-decoration != null {
131
131
  --#{$prefix}link-hover-decoration: #{$link-hover-decoration};