@dynamic-framework/ui-react 1.22.0 → 1.23.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 +26 -26
- package/dist/css/dynamic-ui-non-root.min.css +2 -2
- package/dist/css/dynamic-ui-root.css +25 -25
- package/dist/css/dynamic-ui-root.min.css +2 -2
- package/dist/css/dynamic-ui.css +50 -50
- package/dist/css/dynamic-ui.min.css +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/style/abstracts/_+import.scss +6 -6
- package/src/style/abstracts/_mixins.scss +3 -3
- package/src/style/abstracts/variables/_tooltip.scss +5 -5
- package/src/style/base/_+import.scss +30 -30
- package/src/style/base/_tooltip.scss +2 -2
- package/src/style/components/_+import.scss +1 -1
- package/src/style/components/_d-carousel.scss +1 -1
- package/src/style/components/_d-datepicker.scss +1 -1
- package/src/style/dynamic-ui-non-root.scss +1 -1
- package/src/style/dynamic-ui.scss +1 -1
- package/src/style/helpers/_+import.scss +12 -12
- package/src/style/root/_+import.scss +1 -1
- package/src/style/root/_root.scss +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* dynamic-framework 1.
|
|
2
|
+
* dynamic-framework 1.23.0
|
|
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
|
*/
|
|
@@ -3000,10 +3000,10 @@ textarea.form-control-lg {
|
|
|
3000
3000
|
max-width: 100%;
|
|
3001
3001
|
padding: var(--bs-ref-spacer-1) var(--bs-ref-spacer-2);
|
|
3002
3002
|
margin-top: 0.1rem;
|
|
3003
|
-
font-size: var(--bs-
|
|
3003
|
+
font-size: var(--bs-body-font-size);
|
|
3004
3004
|
color: var(--bs-white);
|
|
3005
3005
|
background-color: var(--bs-success);
|
|
3006
|
-
border-radius: var(--bs-
|
|
3006
|
+
border-radius: var(--bs-ref-spacer-1);
|
|
3007
3007
|
}
|
|
3008
3008
|
|
|
3009
3009
|
.was-validated :valid ~ .valid-feedback,
|
|
@@ -3070,10 +3070,10 @@ textarea.form-control-lg {
|
|
|
3070
3070
|
max-width: 100%;
|
|
3071
3071
|
padding: var(--bs-ref-spacer-1) var(--bs-ref-spacer-2);
|
|
3072
3072
|
margin-top: 0.1rem;
|
|
3073
|
-
font-size: var(--bs-
|
|
3073
|
+
font-size: var(--bs-body-font-size);
|
|
3074
3074
|
color: var(--bs-white);
|
|
3075
3075
|
background-color: var(--bs-danger);
|
|
3076
|
-
border-radius: var(--bs-
|
|
3076
|
+
border-radius: var(--bs-ref-spacer-1);
|
|
3077
3077
|
}
|
|
3078
3078
|
|
|
3079
3079
|
.was-validated :invalid ~ .invalid-feedback,
|
|
@@ -5469,14 +5469,14 @@ textarea.form-control-lg {
|
|
|
5469
5469
|
}
|
|
5470
5470
|
.tooltip {
|
|
5471
5471
|
--bs-tooltip-zindex: 1080;
|
|
5472
|
-
--bs-tooltip-max-width:
|
|
5472
|
+
--bs-tooltip-max-width: 300px;
|
|
5473
5473
|
--bs-tooltip-padding-x: var(--bs-ref-spacer-2);
|
|
5474
5474
|
--bs-tooltip-padding-y: var(--bs-ref-spacer-1);
|
|
5475
5475
|
--bs-tooltip-margin: ;
|
|
5476
|
-
--bs-tooltip-font-size: var(--bs-
|
|
5477
|
-
--bs-tooltip-color: var(--bs-
|
|
5478
|
-
--bs-tooltip-bg: var(--bs-
|
|
5479
|
-
--bs-tooltip-border-radius: var(--bs-
|
|
5476
|
+
--bs-tooltip-font-size: var(--bs-body-font-size);
|
|
5477
|
+
--bs-tooltip-color: var(--bs-body-bg);
|
|
5478
|
+
--bs-tooltip-bg: var(--bs-emphasis-color);
|
|
5479
|
+
--bs-tooltip-border-radius: var(--bs-ref-spacer-1);
|
|
5480
5480
|
--bs-tooltip-opacity: 1;
|
|
5481
5481
|
--bs-tooltip-arrow-width: 0.8rem;
|
|
5482
5482
|
--bs-tooltip-arrow-height: 0.4rem;
|
|
@@ -7864,36 +7864,36 @@ label .d-icon {
|
|
|
7864
7864
|
--bs-tooltip-font-size: var(--bs-tooltip-lg-font-size);
|
|
7865
7865
|
}
|
|
7866
7866
|
.tooltip.tooltip-primary {
|
|
7867
|
-
--bs-tooltip-color: var(--bs-
|
|
7868
|
-
--bs-tooltip-bg: var(--bs-
|
|
7867
|
+
--bs-tooltip-color: var(--bs-white);
|
|
7868
|
+
--bs-tooltip-bg: var(--bs-primary);
|
|
7869
7869
|
}
|
|
7870
7870
|
.tooltip.tooltip-secondary {
|
|
7871
|
-
--bs-tooltip-color: var(--bs-
|
|
7872
|
-
--bs-tooltip-bg: var(--bs-
|
|
7871
|
+
--bs-tooltip-color: var(--bs-white);
|
|
7872
|
+
--bs-tooltip-bg: var(--bs-secondary);
|
|
7873
7873
|
}
|
|
7874
7874
|
.tooltip.tooltip-success {
|
|
7875
|
-
--bs-tooltip-color: var(--bs-
|
|
7876
|
-
--bs-tooltip-bg: var(--bs-
|
|
7875
|
+
--bs-tooltip-color: var(--bs-white);
|
|
7876
|
+
--bs-tooltip-bg: var(--bs-success);
|
|
7877
7877
|
}
|
|
7878
7878
|
.tooltip.tooltip-info {
|
|
7879
|
-
--bs-tooltip-color: var(--bs-
|
|
7880
|
-
--bs-tooltip-bg: var(--bs-
|
|
7879
|
+
--bs-tooltip-color: var(--bs-white);
|
|
7880
|
+
--bs-tooltip-bg: var(--bs-info);
|
|
7881
7881
|
}
|
|
7882
7882
|
.tooltip.tooltip-warning {
|
|
7883
|
-
--bs-tooltip-color: var(--bs-
|
|
7884
|
-
--bs-tooltip-bg: var(--bs-
|
|
7883
|
+
--bs-tooltip-color: var(--bs-gray-700);
|
|
7884
|
+
--bs-tooltip-bg: var(--bs-warning);
|
|
7885
7885
|
}
|
|
7886
7886
|
.tooltip.tooltip-danger {
|
|
7887
|
-
--bs-tooltip-color: var(--bs-
|
|
7888
|
-
--bs-tooltip-bg: var(--bs-
|
|
7887
|
+
--bs-tooltip-color: var(--bs-white);
|
|
7888
|
+
--bs-tooltip-bg: var(--bs-danger);
|
|
7889
7889
|
}
|
|
7890
7890
|
.tooltip.tooltip-light {
|
|
7891
|
-
--bs-tooltip-color: var(--bs-
|
|
7892
|
-
--bs-tooltip-bg: var(--bs-
|
|
7891
|
+
--bs-tooltip-color: var(--bs-gray-700);
|
|
7892
|
+
--bs-tooltip-bg: var(--bs-light);
|
|
7893
7893
|
}
|
|
7894
7894
|
.tooltip.tooltip-dark {
|
|
7895
|
-
--bs-tooltip-color: var(--bs-
|
|
7896
|
-
--bs-tooltip-bg: var(--bs-
|
|
7895
|
+
--bs-tooltip-color: var(--bs-white);
|
|
7896
|
+
--bs-tooltip-bg: var(--bs-dark);
|
|
7897
7897
|
}
|
|
7898
7898
|
|
|
7899
7899
|
:root {
|