@quidgest/ui 0.7.1 → 0.7.3

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
@@ -2864,6 +2864,7 @@ export declare const QTextField: {
2864
2864
  size?: QFieldSize | undefined;
2865
2865
  label?: string | undefined;
2866
2866
  modelValue?: string | undefined;
2867
+ role?: string | undefined;
2867
2868
  id?: string | undefined;
2868
2869
  placeholder?: string | undefined;
2869
2870
  maxLength?: number | undefined;
@@ -2948,6 +2949,10 @@ export declare const QTextField: {
2948
2949
  required: {
2949
2950
  type: PropType<boolean>;
2950
2951
  };
2952
+ role: {
2953
+ type: PropType<string>;
2954
+ default: undefined;
2955
+ };
2951
2956
  id: {
2952
2957
  type: PropType<string>;
2953
2958
  default: () => string;
@@ -2974,6 +2979,7 @@ export declare const QTextField: {
2974
2979
  size: QFieldSize;
2975
2980
  label: string;
2976
2981
  modelValue: string;
2982
+ role: string;
2977
2983
  id: string;
2978
2984
  placeholder: string;
2979
2985
  maxLength: number;
@@ -3016,6 +3022,10 @@ export declare const QTextField: {
3016
3022
  required: {
3017
3023
  type: PropType<boolean>;
3018
3024
  };
3025
+ role: {
3026
+ type: PropType<string>;
3027
+ default: undefined;
3028
+ };
3019
3029
  id: {
3020
3030
  type: PropType<string>;
3021
3031
  default: () => string;
@@ -3059,6 +3069,10 @@ export declare const QTextField: {
3059
3069
  required: {
3060
3070
  type: PropType<boolean>;
3061
3071
  };
3072
+ role: {
3073
+ type: PropType<string>;
3074
+ default: undefined;
3075
+ };
3062
3076
  id: {
3063
3077
  type: PropType<string>;
3064
3078
  default: () => string;
@@ -3085,12 +3099,17 @@ export declare const QTextField: {
3085
3099
  size: QFieldSize;
3086
3100
  label: string;
3087
3101
  modelValue: string;
3102
+ role: string;
3088
3103
  id: string;
3089
3104
  placeholder: string;
3090
3105
  maxLength: number;
3091
3106
  }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3092
3107
  $slots: {
3108
+ "label.prepend"?(_: {}): any;
3109
+ "label.append"?(_: {}): any;
3110
+ prepend?(_: {}): any;
3093
3111
  append?(_: {}): any;
3112
+ extras?(_: {}): any;
3094
3113
  };
3095
3114
  });
3096
3115
 
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;