@dynamic-framework/ui-react 1.16.1 → 1.16.2
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/dist/css/dynamic-ui-non-root.css +11 -11
- package/dist/css/dynamic-ui-non-root.min.css +2 -2
- package/dist/css/dynamic-ui-root.css +3 -3
- package/dist/css/dynamic-ui-root.min.css +2 -2
- package/dist/css/dynamic-ui.css +13 -13
- package/dist/css/dynamic-ui.min.css +2 -2
- package/package.json +2 -2
- package/src/style/abstracts/variables/_body.scss +1 -1
- package/src/style/abstracts/variables/_cards.scss +1 -1
- package/src/style/abstracts/variables/_forms.scss +1 -1
- package/src/style/abstracts/variables/_list-group.scss +2 -2
- package/src/style/abstracts/variables/_modals.scss +0 -1
- package/src/style/abstracts/variables/_offcanvas.scss +1 -2
- package/src/style/abstracts/variables/_typography.scss +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sideEffects": [
|
|
4
4
|
"*.css"
|
|
5
5
|
],
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.2",
|
|
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": "
|
|
152
|
+
"gitHead": "9c47276ac4c6569f160108a6fd189ece032b3ba0"
|
|
153
153
|
}
|
|
@@ -16,7 +16,7 @@ $body-secondary-bg: var(--#{$prefix}gray-200) !default;
|
|
|
16
16
|
$body-tertiary-color: var(--#{$prefix}body-color-rgb) !default;
|
|
17
17
|
$body-tertiary-bg: var(--#{$prefix}gray-100) !default;
|
|
18
18
|
|
|
19
|
-
$body-emphasis-color: var(--#{$prefix}black) !default;
|
|
19
|
+
$body-emphasis-color: var(--#{$prefix}black-rgb) !default;
|
|
20
20
|
// end custom
|
|
21
21
|
|
|
22
22
|
// Links
|
|
@@ -6,7 +6,7 @@ $card-spacer-x: $spacer !default;
|
|
|
6
6
|
$card-title-spacer-y: $spacer * .5 !default;
|
|
7
7
|
$card-title-color: null !default;
|
|
8
8
|
$card-subtitle-color: null !default;
|
|
9
|
-
$card-border-width:
|
|
9
|
+
$card-border-width: 0px !default; // stylelint-disable-line length-zero-no-unit
|
|
10
10
|
$card-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
11
11
|
$card-border-radius: var(--#{$prefix}border-radius) !default;
|
|
12
12
|
$card-box-shadow: var(--#{$prefix}box-shadow-sm) !default;
|
|
@@ -98,7 +98,7 @@ $form-check-size-multiplier: 1.5 !default;
|
|
|
98
98
|
// end custom
|
|
99
99
|
$form-check-input-width: 1em * $form-check-size-multiplier !default;
|
|
100
100
|
$form-check-min-height: $font-size-base * $line-height-base * $form-check-size-multiplier !default;
|
|
101
|
-
$form-check-padding-start: $form-check-input-width
|
|
101
|
+
$form-check-padding-start: $form-check-input-width - .5em * $form-check-size-multiplier !default;
|
|
102
102
|
$form-check-margin-bottom: .125rem * $form-check-size-multiplier !default;
|
|
103
103
|
$form-check-label-color: null !default;
|
|
104
104
|
$form-check-label-cursor: null !default;
|
|
@@ -7,8 +7,8 @@ $list-group-border-color: var(--#{$prefix}gray-300) !default;
|
|
|
7
7
|
$list-group-border-width: 1px !default;
|
|
8
8
|
$list-group-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
9
9
|
|
|
10
|
-
$list-group-item-padding-y:
|
|
11
|
-
$list-group-item-padding-x:
|
|
10
|
+
$list-group-item-padding-y: .75rem !default;
|
|
11
|
+
$list-group-item-padding-x: 1rem !default;
|
|
12
12
|
|
|
13
13
|
// fusv-disable
|
|
14
14
|
$list-group-item-bg-scale: 0% !default;
|
|
@@ -51,7 +51,6 @@ $modal-md: 500px !default;
|
|
|
51
51
|
$modal-lg: 800px !default;
|
|
52
52
|
$modal-xl: 1140px !default;
|
|
53
53
|
|
|
54
|
-
$modal-fade-transform: var(--#{$prefix}modal-fade-transform, translate(0, 100vh)) !default;
|
|
55
54
|
$modal-show-transform: none !default;
|
|
56
55
|
$modal-transition: transform .5s ease-out !default;
|
|
57
56
|
$modal-scale-transform: scale(1.02) !default;
|
|
@@ -13,8 +13,7 @@ $offcanvas-transition-duration: .3s !default;
|
|
|
13
13
|
$offcanvas-border-color: $modal-content-border-color !default;
|
|
14
14
|
$offcanvas-border-width: $modal-content-border-width !default;
|
|
15
15
|
$offcanvas-title-line-height: $modal-title-line-height !default;
|
|
16
|
-
$offcanvas-bg-color: var(--#{$prefix}
|
|
17
|
-
$offcanvas-color: var(--#{$prefix}body-color) !default;
|
|
16
|
+
$offcanvas-bg-color: var(--#{$prefix}white) !default;
|
|
18
17
|
$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;
|
|
19
18
|
$offcanvas-backdrop-bg: $modal-backdrop-bg !default;
|
|
20
19
|
$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Font, line-height, and color for body text, headings, and more.
|
|
4
4
|
|
|
5
5
|
// scss-docs-start font-variables
|
|
6
|
-
$font-family-sans-serif: "Source Sans
|
|
6
|
+
$font-family-sans-serif: "Source Sans 3", sans-serif !default;
|
|
7
7
|
$font-family-monospace: sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace !default;
|
|
8
8
|
$font-family-base: var(--#{$prefix}font-sans-serif) !default;
|
|
9
9
|
$font-family-code: var(--#{$prefix}font-monospace) !default;
|