@dynamic-framework/ui-react 1.32.3 → 1.34.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.
Files changed (31) hide show
  1. package/dist/css/bootstrap-icons.css +2078 -0
  2. package/dist/css/bootstrap-icons.json +2052 -0
  3. package/dist/css/bootstrap-icons.min.css +5 -0
  4. package/dist/css/bootstrap-icons.scss +2090 -0
  5. package/dist/css/dynamic-ui-non-root.css +21 -8
  6. package/dist/css/dynamic-ui-non-root.min.css +3 -3
  7. package/dist/css/dynamic-ui-root.css +2 -2
  8. package/dist/css/dynamic-ui-root.min.css +2 -2
  9. package/dist/css/dynamic-ui.css +21 -8
  10. package/dist/css/dynamic-ui.min.css +3 -3
  11. package/dist/css/fonts/bootstrap-icons.woff +0 -0
  12. package/dist/css/fonts/bootstrap-icons.woff2 +0 -0
  13. package/dist/index.esm.js +148 -57
  14. package/dist/index.esm.js.map +1 -1
  15. package/dist/index.js +164 -63
  16. package/dist/index.js.map +1 -1
  17. package/dist/types/components/DInputCheck/DInputCheck.d.ts +2 -1
  18. package/dist/types/components/DQuickActionButton/DQuickActionButton.d.ts +4 -9
  19. package/dist/types/components/DSelect/DSelect.d.ts +3 -1
  20. package/dist/types/components/DSelect/components/DSelectPlaceholder.d.ts +2 -0
  21. package/dist/types/contexts/DContext.d.ts +9 -0
  22. package/dist/types/hooks/index.d.ts +2 -0
  23. package/dist/types/hooks/useMediaBreakpointUp.d.ts +6 -0
  24. package/dist/types/hooks/useMediaQuery.d.ts +1 -0
  25. package/dist/types/utils/getCssVariable.d.ts +1 -0
  26. package/dist/types/utils/index.d.ts +2 -0
  27. package/dist/types/utils/mediaQuery.d.ts +2 -0
  28. package/package.json +96 -88
  29. package/src/style/abstracts/variables/_forms.scss +1 -1
  30. package/src/style/base/_form-check.scss +18 -0
  31. package/src/style/components/_d-quick-action-button.scss +4 -2
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * dynamic-framework 1.32.3
3
- * bootstrap ^5.3.3
2
+ * dynamic-framework 1.34.0
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
  */
6
6
  @charset "UTF-8";
@@ -3794,22 +3794,22 @@ textarea.form-control-lg {
3794
3794
  .form-check {
3795
3795
  display: block;
3796
3796
  min-height: 1em;
3797
- padding-left: 0.5em;
3797
+ padding-left: 1em;
3798
3798
  margin-bottom: 0.125rem;
3799
3799
  }
3800
3800
  .form-check .form-check-input {
3801
3801
  float: left;
3802
- margin-left: -0.5em;
3802
+ margin-left: -1em;
3803
3803
  }
3804
3804
 
3805
3805
  .form-check-reverse {
3806
- padding-right: 0.5em;
3806
+ padding-right: 1em;
3807
3807
  padding-left: 0;
3808
3808
  text-align: right;
3809
3809
  }
3810
3810
  .form-check-reverse .form-check-input {
3811
3811
  float: right;
3812
- margin-right: -0.5em;
3812
+ margin-right: -1em;
3813
3813
  margin-left: 0;
3814
3814
  }
3815
3815
 
@@ -8005,6 +8005,17 @@ body {
8005
8005
  --bs-form-check-input-focus-box-shadow: 0 0 0 0.25rem var(--bs-focus-ring-color);
8006
8006
  }
8007
8007
 
8008
+ .form-check .form-text {
8009
+ --bs-form-text-padding: 0 var(--bs-ref-spacer-2);
8010
+ display: flex;
8011
+ }
8012
+ .form-check:has(.form-check-input.is-valid) .form-text {
8013
+ color: var(--bs-form-valid-border-color);
8014
+ }
8015
+ .form-check:has(.form-check-input.is-invalid) .form-text {
8016
+ color: var(--bs-form-invalid-border-color);
8017
+ }
8018
+
8008
8019
  .form-control {
8009
8020
  --bs-form-control-text-align: var(--bs-form-control-component-text-align, "left");
8010
8021
  text-align: var(--bs-form-control-text-align);
@@ -9718,12 +9729,14 @@ label .d-icon {
9718
9729
  border-radius: var(--bs-quick-action-button-border-radius);
9719
9730
  box-shadow: var(--bs-quick-action-button-box-shadow);
9720
9731
  }
9721
- .d-quick-action-button:hover {
9732
+ .d-quick-action-button.d-quick-action-button-feedback:hover {
9733
+ text-decoration: none;
9722
9734
  background: var(--bs-quick-action-button-hover-bg);
9723
9735
  border-color: var(--bs-quick-action-button-hover-border-color);
9724
9736
  box-shadow: var(--bs-quick-action-button-hover-box-shadow);
9725
9737
  }
9726
- .d-quick-action-button:active {
9738
+ .d-quick-action-button.d-quick-action-button-feedback:active {
9739
+ text-decoration: none;
9727
9740
  background: var(--bs-quick-action-button-active-bg);
9728
9741
  border-color: var(--bs-quick-action-button-active-border-color);
9729
9742
  box-shadow: var(--bs-quick-action-button-active-box-shadow);