@vanduo-oss/framework 1.4.1 → 1.4.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/vanduo.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! Vanduo v1.4.1 | Built: 2026-05-23T09:27:52.907Z | git:4799a84 | development */
1
+ /*! Vanduo v1.4.2 | Built: 2026-05-23T19:59:36.731Z | git:adbe750 | development */
2
2
  *, :before, :after {
3
3
  box-sizing: border-box;
4
4
  }
@@ -56899,6 +56899,7 @@ a.vd-card:active {
56899
56899
  width: 100%;
56900
56900
  height: 100%;
56901
56901
  transition: var(--vd-modal-transition);
56902
+ --vd-modal-dialog-max-width: var(--vd-modal-width);
56902
56903
  outline: 0;
56903
56904
  display: none;
56904
56905
  position: fixed;
@@ -56915,8 +56916,8 @@ a.vd-card:active {
56915
56916
  }
56916
56917
 
56917
56918
  .vd-modal-dialog {
56918
- width: auto;
56919
- max-width: var(--vd-modal-width);
56919
+ width: min(calc(100% - 3.5rem), var(--vd-modal-dialog-max-width));
56920
+ max-width: var(--vd-modal-dialog-max-width);
56920
56921
  pointer-events: none;
56921
56922
  transition: var(--vd-modal-dialog-transition);
56922
56923
  z-index: 1060;
@@ -57019,16 +57020,16 @@ a.vd-card:active {
57019
57020
  margin: 0;
57020
57021
  }
57021
57022
 
57022
- .vd-modal-sm .vd-modal-dialog {
57023
- max-width: var(--vd-modal-width-sm);
57023
+ .vd-modal-dialog.vd-modal-sm, .vd-modal-sm .vd-modal-dialog {
57024
+ --vd-modal-dialog-max-width: var(--vd-modal-width-sm);
57024
57025
  }
57025
57026
 
57026
- .vd-modal-lg .vd-modal-dialog {
57027
- max-width: var(--vd-modal-width-lg);
57027
+ .vd-modal-dialog.vd-modal-lg, .vd-modal-lg .vd-modal-dialog {
57028
+ --vd-modal-dialog-max-width: var(--vd-modal-width-lg);
57028
57029
  }
57029
57030
 
57030
- .vd-modal-xl .vd-modal-dialog {
57031
- max-width: var(--vd-modal-width-xl);
57031
+ .vd-modal-dialog.vd-modal-xl, .vd-modal-xl .vd-modal-dialog {
57032
+ --vd-modal-dialog-max-width: var(--vd-modal-width-xl);
57032
57033
  }
57033
57034
 
57034
57035
  .vd-modal-fullscreen .vd-modal-dialog {
@@ -57068,6 +57069,7 @@ a.vd-card:active {
57068
57069
 
57069
57070
  @media (width <= 575.98px) {
57070
57071
  .vd-modal-dialog {
57072
+ width: calc(100% - 1rem);
57071
57073
  max-width: calc(100% - 1rem);
57072
57074
  margin: .5rem;
57073
57075
  }
@@ -63069,7 +63071,9 @@ input.vd-doc-search-input {
63069
63071
  padding: var(--vd-dp-padding);
63070
63072
  min-width: 17rem;
63071
63073
  display: none;
63072
- position: absolute;
63074
+ position: fixed;
63075
+ top: 0;
63076
+ left: 0;
63073
63077
  }
63074
63078
 
63075
63079
  .vd-datepicker-popup.is-open {
@@ -63259,7 +63263,9 @@ input.vd-doc-search-input {
63259
63263
  max-height: var(--vd-tp-max-height);
63260
63264
  min-width: 8rem;
63261
63265
  display: none;
63262
- position: absolute;
63266
+ position: fixed;
63267
+ top: 0;
63268
+ left: 0;
63263
63269
  overflow-y: auto;
63264
63270
  }
63265
63271