@dynamic-framework/ui-react 1.32.0 → 1.32.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 +5 -3
- package/dist/css/dynamic-ui-non-root.min.css +2 -2
- package/dist/css/dynamic-ui-root.css +15 -15
- package/dist/css/dynamic-ui-root.min.css +2 -2
- package/dist/css/dynamic-ui.css +19 -17
- package/dist/css/dynamic-ui.min.css +2 -2
- package/dist/index.esm.js +14 -21
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +14 -21
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/style/abstracts/variables/_colors.scss +14 -14
- package/src/style/base/_buttons.scss +2 -2
- package/src/style/components/_d-input-pin.scss +1 -0
- package/src/style/root/_root.scss +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* dynamic-framework 1.32.
|
|
2
|
+
* dynamic-framework 1.32.2
|
|
3
3
|
* bootstrap ^5.3.3
|
|
4
4
|
* license https://github.com/dynamic-framework/dynamic-ui/blob/master/libraries/dynamic-ui-react/LICENSE.md
|
|
5
5
|
*/
|
|
@@ -8912,8 +8912,8 @@ body {
|
|
|
8912
8912
|
[class*=btn-link-] {
|
|
8913
8913
|
--bs-btn-text-decoration: var(--bs-link-decoration);
|
|
8914
8914
|
}
|
|
8915
|
-
[class*=btn-link-]
|
|
8916
|
-
text-decoration: underline;
|
|
8915
|
+
[class*=btn-link-]:hover {
|
|
8916
|
+
--bs-btn-text-decoration: underline;
|
|
8917
8917
|
}
|
|
8918
8918
|
|
|
8919
8919
|
.btn-link {
|
|
@@ -9619,6 +9619,7 @@ label .d-icon {
|
|
|
9619
9619
|
background-size: calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
|
|
9620
9620
|
}
|
|
9621
9621
|
.d-input-pin:has(.form-control.is-valid) .form-control {
|
|
9622
|
+
padding: 0.75rem 1rem;
|
|
9622
9623
|
background: var(--bs-white);
|
|
9623
9624
|
border-color: var(--bs-success);
|
|
9624
9625
|
box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
|
|
@@ -9634,6 +9635,7 @@ label .d-icon {
|
|
|
9634
9635
|
background-size: calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
|
|
9635
9636
|
}
|
|
9636
9637
|
.d-input-pin:has(.form-control.is-invalid) .form-control {
|
|
9638
|
+
padding: 0.75rem 1rem;
|
|
9637
9639
|
background: var(--bs-white);
|
|
9638
9640
|
border-color: var(--bs-danger);
|
|
9639
9641
|
box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
|