@quidgest/ui 0.7.15 → 0.7.17

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/ui.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Quidgest Framework v0.7.15
2
+ * Quidgest Framework v0.7.17
3
3
  * (c) 2023 Quidgest - Consultores de Gestão, SA
4
4
  */
5
5
 
@@ -186,6 +186,8 @@ $outline-width: 2px !default;
186
186
  $outline-style: solid !default;
187
187
  $outline-color: rgb(var(--q-theme-info-rgb) / 0.5) !default;
188
188
  $outline: $outline-width $outline-style $outline-color;
189
+ $input-padding-y: 0.26rem;
190
+ $input-padding-x: 0.25rem;
189
191
  *,
190
192
  ::after,
191
193
  ::before {
@@ -419,9 +421,6 @@ $btn-outline: var(--q-theme-primary-light);
419
421
  cursor: pointer;
420
422
  }
421
423
  }
422
- $input-padding-y: 0.26rem;
423
- $input-padding-x: 0.25rem;
424
- $input-height: 31.89px;
425
424
  .q-field {
426
425
  $this: &;
427
426
  display: flex;
@@ -438,14 +437,14 @@ $input-height: 31.89px;
438
437
  &__control {
439
438
  display: flex;
440
439
  align-items: center;
441
- height: $input-height;
440
+ height: inherit;
442
441
  width: 100%;
443
442
  border-radius: inherit;
444
443
  border-width: 1px;
445
444
  background-color: transparent;
446
445
  padding: $input-padding-y $input-padding-x;
447
446
  font-size: 0.9rem;
448
- line-height: 1.5rem;
447
+ line-height: 1.5;
449
448
  transition: color var(--transition-duration) var(--transition-timing-function);
450
449
  &:focus-within {
451
450
  outline: $outline;
@@ -527,7 +526,7 @@ $input-height: 31.89px;
527
526
  &__append {
528
527
  display: flex;
529
528
  align-items: flex-end;
530
- height: $input-height;
529
+ height: inherit;
531
530
  > * {
532
531
  border-radius: 0;
533
532
  min-width: 40px;
@@ -539,7 +538,8 @@ $input-height: 31.89px;
539
538
  align-items: center;
540
539
  justify-content: center;
541
540
  text-align: center;
542
- padding: 0.25rem 0.5rem;
541
+ padding: $input-padding-y $input-padding-x;
542
+ line-height: 1.5;
543
543
  font-size: $font-size-base;
544
544
  border-width: 1px;
545
545
  background-color: rgb(var(--q-theme-on-background-rgb) / 0.1);
@@ -552,7 +552,7 @@ $input-height: 31.89px;
552
552
  }
553
553
  > .q-field__control {
554
554
  display: flex;
555
- align-items: flex-end;
555
+ align-items: stretch;
556
556
  height: auto;
557
557
  border-width: 0;
558
558
  padding: 0;
@@ -696,9 +696,17 @@ $overlay-arrow-height: 0.5rem;
696
696
  $this: &;
697
697
  --q-overlay-bg: var(--q-theme-background);
698
698
  --q-overlay-color: var(--q-theme-on-background);
699
- --q-overlay-border-color: rgb(var(--q-theme-on-background-rgb) / 0.1);
699
+
700
+ --q-overlay-border-color: #c4c5ca;
700
701
  position: absolute;
701
702
  z-index: 1070;
703
+ &__underlay {
704
+ position: fixed;
705
+ inset: 0;
706
+ &--blur {
707
+ backdrop-filter: blur(2px);
708
+ }
709
+ }
702
710
  &__content {
703
711
  display: block;
704
712
  position: relative;
@@ -709,6 +717,7 @@ $overlay-arrow-height: 0.5rem;
709
717
  background-clip: padding-box;
710
718
  border: $overlay-border-width solid var(--q-overlay-border-color);
711
719
  border-radius: $border-radius;
720
+ outline: none;
712
721
  box-shadow:
713
722
  0 0 #0000,
714
723
  0 0 #0000,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@quidgest/ui",
3
3
  "private": false,
4
4
  "description": "Quidgest's UI framework",
5
- "version": "0.7.15",
5
+ "version": "0.7.17",
6
6
  "author": {
7
7
  "name": "Quidgest"
8
8
  },