@quidgest/ui 0.7.0 → 0.7.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/index.d.ts CHANGED
@@ -3090,7 +3090,11 @@ export declare const QTextField: {
3090
3090
  maxLength: number;
3091
3091
  }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3092
3092
  $slots: {
3093
+ "label.prepend"?(_: {}): any;
3094
+ "label.append"?(_: {}): any;
3095
+ prepend?(_: {}): any;
3093
3096
  append?(_: {}): any;
3097
+ extras?(_: {}): any;
3094
3098
  };
3095
3099
  });
3096
3100
 
package/dist/ui.css CHANGED
@@ -462,6 +462,13 @@ body *::-webkit-scrollbar-track {
462
462
  .q-field__control:focus-within {
463
463
  outline: 2px solid rgb(var(--q-theme-primary-rgb)/0.25);
464
464
  }
465
+ .q-field__extras {
466
+ display: flex;
467
+ gap: 0.25rem;
468
+ align-items: center;
469
+ color: rgb(var(--q-theme-on-background-rgb)/0.8);
470
+ margin-top: 0.25rem;
471
+ }
465
472
  .q-field__prepend, .q-field__append {
466
473
  display: flex;
467
474
  align-items: center;
@@ -499,7 +506,7 @@ body *::-webkit-scrollbar-track {
499
506
  .q-field--xx-large .q-field__control {
500
507
  width: 36.975rem;
501
508
  }
502
- .q-field--block .q-field__control {
509
+ .q-field--block {
503
510
  width: 100%;
504
511
  }
505
512
 
@@ -539,6 +546,9 @@ body *::-webkit-scrollbar-track {
539
546
  min-width: 40px;
540
547
  height: 31.89px;
541
548
  }
549
+ .q-input-group__prepend > * + *, .q-input-group__append > * + * {
550
+ margin-left: -1px;
551
+ }
542
552
  .q-input-group__prepend > span, .q-input-group__append > span {
543
553
  display: flex;
544
554
  align-items: center;