@dynamic-framework/ui-react 1.8.1 → 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/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 +37 -34
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +37 -34
- 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
|
@@ -7109,6 +7109,12 @@ textarea.form-control-lg {
|
|
|
7109
7109
|
border: var(--bs-input-group-border-width) solid var(--bs-input-group-border-color);
|
|
7110
7110
|
border-radius: var(--bs-input-group-border-radius);
|
|
7111
7111
|
}
|
|
7112
|
+
.d-input:has(.form-control:not(:-moz-placeholder-shown, :focus)) .input-group {
|
|
7113
|
+
border-color: var(--bs-input-group-hover-border-color);
|
|
7114
|
+
}
|
|
7115
|
+
.d-input:has(.form-control:not(:placeholder-shown, :focus)) .input-group {
|
|
7116
|
+
border-color: var(--bs-input-group-hover-border-color);
|
|
7117
|
+
}
|
|
7112
7118
|
.d-input:has(.form-control.is-valid) .input-group {
|
|
7113
7119
|
border-color: var(--bs-form-valid-border-color);
|
|
7114
7120
|
}
|
|
@@ -9706,7 +9712,7 @@ label {
|
|
|
9706
9712
|
}
|
|
9707
9713
|
|
|
9708
9714
|
.d-popover {
|
|
9709
|
-
--bs-popover-min-width: max-content;
|
|
9715
|
+
--bs-popover-min-width: var(--bs-popover-component-min-width, max-content);
|
|
9710
9716
|
--bs-popover-z-index: 1;
|
|
9711
9717
|
position: relative;
|
|
9712
9718
|
width: 100%;
|
|
@@ -10363,7 +10369,7 @@ label {
|
|
|
10363
10369
|
.pagination {
|
|
10364
10370
|
--bs-pagination-page-item-size: 2.125rem;
|
|
10365
10371
|
--bs-pagination-page-link-bg: transparent;
|
|
10366
|
-
--bs-pagination-page-border-radius:
|
|
10372
|
+
--bs-pagination-page-border-radius: var(--bs-border-radius);
|
|
10367
10373
|
--bs-pagination-arrow-font-size: var(--bs-ref-fs-small);
|
|
10368
10374
|
--bs-pagination-arrow-padding-y: var(--bs-ref-spacer-1);
|
|
10369
10375
|
--bs-pagination-arrow-padding-x: var(--bs-ref-spacer-2);
|