@quidgest/ui 0.7.2 → 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 +15 -0
- package/dist/ui.esm.js +4 -2
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.js +2 -2
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +1 -1
- package/package.json +1 -1
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,6 +3099,7 @@ 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;
|
package/dist/ui.esm.js
CHANGED
|
@@ -1191,7 +1191,7 @@ const Ot = {
|
|
|
1191
1191
|
])) : I("", !0)
|
|
1192
1192
|
], 10, Ut));
|
|
1193
1193
|
}
|
|
1194
|
-
}), ge = B(jt), Xt = ["required", "placeholder", "readonly", "disabled", "maxlength"], Yt = /* @__PURE__ */ L({
|
|
1194
|
+
}), ge = B(jt), Xt = ["role", "required", "placeholder", "readonly", "disabled", "maxlength"], Yt = /* @__PURE__ */ L({
|
|
1195
1195
|
__name: "QTextField",
|
|
1196
1196
|
props: {
|
|
1197
1197
|
modelValue: { default: "" },
|
|
@@ -1202,7 +1202,8 @@ const Ot = {
|
|
|
1202
1202
|
maxLength: { default: void 0 },
|
|
1203
1203
|
readonly: { type: Boolean },
|
|
1204
1204
|
disabled: { type: Boolean },
|
|
1205
|
-
required: { type: Boolean }
|
|
1205
|
+
required: { type: Boolean },
|
|
1206
|
+
role: { default: void 0 }
|
|
1206
1207
|
},
|
|
1207
1208
|
emits: ["update:modelValue"],
|
|
1208
1209
|
setup(n, { expose: t, emit: e }) {
|
|
@@ -1247,6 +1248,7 @@ const Ot = {
|
|
|
1247
1248
|
ref: i,
|
|
1248
1249
|
class: "q-text-field__input",
|
|
1249
1250
|
type: "text",
|
|
1251
|
+
role: o.role,
|
|
1250
1252
|
required: o.required,
|
|
1251
1253
|
placeholder: o.placeholder,
|
|
1252
1254
|
readonly: o.readonly,
|