@dao-style/core 1.26.1-beta.1 → 1.26.1-beta.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/components/autocomplete/autocomplete.d.ts +6 -0
- package/dist/components/autocomplete/autocomplete.vue.d.ts +2 -0
- package/dist/components/input/input.d.ts +3 -0
- package/dist/components/input/input.vue.d.ts +1 -0
- package/dist/dao-style.js +6 -6
- package/dist/dao-style.mjs +2149 -2152
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -320,6 +320,7 @@ declare const DaoAutocomplete: {
|
|
|
320
320
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
321
321
|
}, {
|
|
322
322
|
currentValue: import("vue").Ref<import("..").ModalValueType>;
|
|
323
|
+
displayValue: import("vue").ComputedRef<import("..").ModalValueType>;
|
|
323
324
|
isFocus: import("vue").Ref<boolean>;
|
|
324
325
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
325
326
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -429,6 +430,7 @@ declare const DaoAutocomplete: {
|
|
|
429
430
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
430
431
|
} & import("vue").ShallowUnwrapRef<{
|
|
431
432
|
currentValue: import("vue").Ref<import("..").ModalValueType>;
|
|
433
|
+
displayValue: import("vue").ComputedRef<import("..").ModalValueType>;
|
|
432
434
|
isFocus: import("vue").Ref<boolean>;
|
|
433
435
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
434
436
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -726,6 +728,7 @@ declare const DaoAutocomplete: {
|
|
|
726
728
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
727
729
|
}, {
|
|
728
730
|
currentValue: import("vue").Ref<import("..").ModalValueType>;
|
|
731
|
+
displayValue: import("vue").ComputedRef<import("..").ModalValueType>;
|
|
729
732
|
isFocus: import("vue").Ref<boolean>;
|
|
730
733
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
731
734
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -835,6 +838,7 @@ declare const DaoAutocomplete: {
|
|
|
835
838
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
836
839
|
} & import("vue").ShallowUnwrapRef<{
|
|
837
840
|
currentValue: import("vue").Ref<import("..").ModalValueType>;
|
|
841
|
+
displayValue: import("vue").ComputedRef<import("..").ModalValueType>;
|
|
838
842
|
isFocus: import("vue").Ref<boolean>;
|
|
839
843
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
840
844
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -1097,6 +1101,7 @@ declare const DaoAutocomplete: {
|
|
|
1097
1101
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
1098
1102
|
}, {
|
|
1099
1103
|
currentValue: import("vue").Ref<import("..").ModalValueType>;
|
|
1104
|
+
displayValue: import("vue").ComputedRef<import("..").ModalValueType>;
|
|
1100
1105
|
isFocus: import("vue").Ref<boolean>;
|
|
1101
1106
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
1102
1107
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -1206,6 +1211,7 @@ declare const DaoAutocomplete: {
|
|
|
1206
1211
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
1207
1212
|
} & import("vue").ShallowUnwrapRef<{
|
|
1208
1213
|
currentValue: import("vue").Ref<import("..").ModalValueType>;
|
|
1214
|
+
displayValue: import("vue").ComputedRef<import("..").ModalValueType>;
|
|
1209
1215
|
isFocus: import("vue").Ref<boolean>;
|
|
1210
1216
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
1211
1217
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -216,6 +216,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
216
216
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
217
217
|
}, {
|
|
218
218
|
currentValue: import("vue").Ref<import("../input").ModalValueType>;
|
|
219
|
+
displayValue: import("vue").ComputedRef<import("../input").ModalValueType>;
|
|
219
220
|
isFocus: import("vue").Ref<boolean>;
|
|
220
221
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
221
222
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -325,6 +326,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
325
326
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
326
327
|
} & import("vue").ShallowUnwrapRef<{
|
|
327
328
|
currentValue: import("vue").Ref<import("../input").ModalValueType>;
|
|
329
|
+
displayValue: import("vue").ComputedRef<import("../input").ModalValueType>;
|
|
328
330
|
isFocus: import("vue").Ref<boolean>;
|
|
329
331
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
330
332
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -130,6 +130,7 @@ declare const DaoInput: {
|
|
|
130
130
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
131
131
|
}, {
|
|
132
132
|
currentValue: import("vue").Ref<import("./props").ModalValueType>;
|
|
133
|
+
displayValue: import("vue").ComputedRef<import("./props").ModalValueType>;
|
|
133
134
|
isFocus: import("vue").Ref<boolean>;
|
|
134
135
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
135
136
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -239,6 +240,7 @@ declare const DaoInput: {
|
|
|
239
240
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
240
241
|
} & import("vue").ShallowUnwrapRef<{
|
|
241
242
|
currentValue: import("vue").Ref<import("./props").ModalValueType>;
|
|
243
|
+
displayValue: import("vue").ComputedRef<import("./props").ModalValueType>;
|
|
242
244
|
isFocus: import("vue").Ref<boolean>;
|
|
243
245
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
244
246
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -322,6 +324,7 @@ declare const DaoInput: {
|
|
|
322
324
|
"onAfter-reset"?: ((...args: any[]) => any) | undefined;
|
|
323
325
|
}, {
|
|
324
326
|
currentValue: import("vue").Ref<import("./props").ModalValueType>;
|
|
327
|
+
displayValue: import("vue").ComputedRef<import("./props").ModalValueType>;
|
|
325
328
|
isFocus: import("vue").Ref<boolean>;
|
|
326
329
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
327
330
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|
|
@@ -44,6 +44,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
44
|
};
|
|
45
45
|
}, {
|
|
46
46
|
currentValue: import("vue").Ref<ModalValueType>;
|
|
47
|
+
displayValue: import("vue").ComputedRef<ModalValueType>;
|
|
47
48
|
isFocus: import("vue").Ref<boolean>;
|
|
48
49
|
input: import("vue").Ref<HTMLInputElement | null>;
|
|
49
50
|
clearable: import("vue").ComputedRef<boolean | "" | 0 | undefined>;
|