@dynamic-framework/ui-react 1.8.0 → 1.9.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/README.md +6 -2
- package/dist/css/dynamic-ui-non-root.css +8 -2
- package/dist/css/dynamic-ui-non-root.min.css +1 -1
- package/dist/css/dynamic-ui.css +8 -2
- package/dist/css/dynamic-ui.min.css +1 -1
- package/dist/index.esm.js +40 -37
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +40 -37
- package/dist/index.js.map +1 -1
- package/dist/types/hooks/useInputCurrency.d.ts +1 -1
- package/package.json +5 -3
- package/src/style/components/_d-input.scss +7 -0
- package/src/style/components/_d-paginator.scss +1 -1
- package/src/style/components/_d-popover.scss +1 -1
package/dist/css/dynamic-ui.css
CHANGED
|
@@ -7400,6 +7400,12 @@ textarea.form-control-lg {
|
|
|
7400
7400
|
border: var(--bs-input-group-border-width) solid var(--bs-input-group-border-color);
|
|
7401
7401
|
border-radius: var(--bs-input-group-border-radius);
|
|
7402
7402
|
}
|
|
7403
|
+
.d-input:has(.form-control:not(:-moz-placeholder-shown, :focus)) .input-group {
|
|
7404
|
+
border-color: var(--bs-input-group-hover-border-color);
|
|
7405
|
+
}
|
|
7406
|
+
.d-input:has(.form-control:not(:placeholder-shown, :focus)) .input-group {
|
|
7407
|
+
border-color: var(--bs-input-group-hover-border-color);
|
|
7408
|
+
}
|
|
7403
7409
|
.d-input:has(.form-control.is-valid) .input-group {
|
|
7404
7410
|
border-color: var(--bs-form-valid-border-color);
|
|
7405
7411
|
}
|
|
@@ -9997,7 +10003,7 @@ label {
|
|
|
9997
10003
|
}
|
|
9998
10004
|
|
|
9999
10005
|
.d-popover {
|
|
10000
|
-
--bs-popover-min-width: max-content;
|
|
10006
|
+
--bs-popover-min-width: var(--bs-popover-component-min-width, max-content);
|
|
10001
10007
|
--bs-popover-z-index: 1;
|
|
10002
10008
|
position: relative;
|
|
10003
10009
|
width: 100%;
|
|
@@ -10654,7 +10660,7 @@ label {
|
|
|
10654
10660
|
.pagination {
|
|
10655
10661
|
--bs-pagination-page-item-size: 2.125rem;
|
|
10656
10662
|
--bs-pagination-page-link-bg: transparent;
|
|
10657
|
-
--bs-pagination-page-border-radius:
|
|
10663
|
+
--bs-pagination-page-border-radius: var(--bs-border-radius);
|
|
10658
10664
|
--bs-pagination-arrow-font-size: var(--bs-ref-fs-small);
|
|
10659
10665
|
--bs-pagination-arrow-padding-y: var(--bs-ref-spacer-1);
|
|
10660
10666
|
--bs-pagination-arrow-padding-x: var(--bs-ref-spacer-2);
|