@creatorsn/vfluent3 0.3.63 → 0.3.65
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/types/packages/drop-down/index.d.ts +3 -3
- package/dist/types/packages/drop-down/source/index.vue.d.ts +3 -3
- package/dist/types/packages/list-view/index.d.ts +12 -9
- package/dist/types/packages/list-view/source/index.vue.d.ts +12 -9
- package/dist/vfluent3.js +4 -4
- package/dist/vfluent3.umd.cjs +9 -9
- package/package.json +1 -1
|
@@ -16,9 +16,9 @@ export declare const FvDropDown: import("../../types/plugins/component-plugin").
|
|
|
16
16
|
readonly dropDownIconForeground?: string | undefined;
|
|
17
17
|
readonly multiple?: boolean | undefined;
|
|
18
18
|
readonly options?: never[] | undefined;
|
|
19
|
+
readonly setFocus?: boolean | undefined;
|
|
19
20
|
readonly dropDownListBackground?: string | undefined;
|
|
20
21
|
readonly dropDownListForeground?: string | undefined;
|
|
21
|
-
readonly setFocus?: boolean | undefined;
|
|
22
22
|
readonly inputBorderColor?: string | undefined;
|
|
23
23
|
readonly inputHeight?: string | undefined;
|
|
24
24
|
readonly inputFontSize?: string | undefined;
|
|
@@ -80,9 +80,9 @@ export declare const FvDropDown: import("../../types/plugins/component-plugin").
|
|
|
80
80
|
readonly dropDownIconForeground?: string | undefined;
|
|
81
81
|
readonly multiple?: boolean | undefined;
|
|
82
82
|
readonly options?: never[] | undefined;
|
|
83
|
+
readonly setFocus?: boolean | undefined;
|
|
83
84
|
readonly dropDownListBackground?: string | undefined;
|
|
84
85
|
readonly dropDownListForeground?: string | undefined;
|
|
85
|
-
readonly setFocus?: boolean | undefined;
|
|
86
86
|
readonly inputBorderColor?: string | undefined;
|
|
87
87
|
readonly inputHeight?: string | undefined;
|
|
88
88
|
readonly inputFontSize?: string | undefined;
|
|
@@ -141,9 +141,9 @@ export declare const FvDropDown: import("../../types/plugins/component-plugin").
|
|
|
141
141
|
readonly dropDownIconForeground?: string | undefined;
|
|
142
142
|
readonly multiple?: boolean | undefined;
|
|
143
143
|
readonly options?: never[] | undefined;
|
|
144
|
+
readonly setFocus?: boolean | undefined;
|
|
144
145
|
readonly dropDownListBackground?: string | undefined;
|
|
145
146
|
readonly dropDownListForeground?: string | undefined;
|
|
146
|
-
readonly setFocus?: boolean | undefined;
|
|
147
147
|
readonly inputBorderColor?: string | undefined;
|
|
148
148
|
readonly inputHeight?: string | undefined;
|
|
149
149
|
readonly inputFontSize?: string | undefined;
|
|
@@ -15,9 +15,9 @@ declare const _default: {
|
|
|
15
15
|
readonly dropDownIconForeground?: string | undefined;
|
|
16
16
|
readonly multiple?: boolean | undefined;
|
|
17
17
|
readonly options?: never[] | undefined;
|
|
18
|
+
readonly setFocus?: boolean | undefined;
|
|
18
19
|
readonly dropDownListBackground?: string | undefined;
|
|
19
20
|
readonly dropDownListForeground?: string | undefined;
|
|
20
|
-
readonly setFocus?: boolean | undefined;
|
|
21
21
|
readonly inputBorderColor?: string | undefined;
|
|
22
22
|
readonly inputHeight?: string | undefined;
|
|
23
23
|
readonly inputFontSize?: string | undefined;
|
|
@@ -79,9 +79,9 @@ declare const _default: {
|
|
|
79
79
|
readonly dropDownIconForeground?: string | undefined;
|
|
80
80
|
readonly multiple?: boolean | undefined;
|
|
81
81
|
readonly options?: never[] | undefined;
|
|
82
|
+
readonly setFocus?: boolean | undefined;
|
|
82
83
|
readonly dropDownListBackground?: string | undefined;
|
|
83
84
|
readonly dropDownListForeground?: string | undefined;
|
|
84
|
-
readonly setFocus?: boolean | undefined;
|
|
85
85
|
readonly inputBorderColor?: string | undefined;
|
|
86
86
|
readonly inputHeight?: string | undefined;
|
|
87
87
|
readonly inputFontSize?: string | undefined;
|
|
@@ -140,9 +140,9 @@ declare const _default: {
|
|
|
140
140
|
readonly dropDownIconForeground?: string | undefined;
|
|
141
141
|
readonly multiple?: boolean | undefined;
|
|
142
142
|
readonly options?: never[] | undefined;
|
|
143
|
+
readonly setFocus?: boolean | undefined;
|
|
143
144
|
readonly dropDownListBackground?: string | undefined;
|
|
144
145
|
readonly dropDownListForeground?: string | undefined;
|
|
145
|
-
readonly setFocus?: boolean | undefined;
|
|
146
146
|
readonly inputBorderColor?: string | undefined;
|
|
147
147
|
readonly inputHeight?: string | undefined;
|
|
148
148
|
readonly inputFontSize?: string | undefined;
|
|
@@ -2,8 +2,8 @@ import "./style";
|
|
|
2
2
|
export declare const FvListView: import("../../types/plugins/component-plugin").ComponentPlugin<{
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
4
4
|
move: (...args: any[]) => any;
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
setFocus: (...args: any[]) => any;
|
|
6
|
+
setBlur: (...args: any[]) => any;
|
|
7
7
|
$props: {
|
|
8
8
|
readonly theme?: string | undefined;
|
|
9
9
|
readonly disabled?: boolean | undefined;
|
|
@@ -68,7 +68,8 @@ export declare const FvListView: import("../../types/plugins/component-plugin").
|
|
|
68
68
|
dragOver(event: any, item: any): void;
|
|
69
69
|
dragLeave(event: any, item: any): void;
|
|
70
70
|
dropItem(event: any, item: any): void;
|
|
71
|
-
|
|
71
|
+
setFocus(): void;
|
|
72
|
+
setBlur(): void;
|
|
72
73
|
inspectItemAPI(cur: any): 0 | undefined;
|
|
73
74
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
74
75
|
P: {};
|
|
@@ -79,8 +80,8 @@ export declare const FvListView: import("../../types/plugins/component-plugin").
|
|
|
79
80
|
Defaults: {};
|
|
80
81
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
81
82
|
move: (...args: any[]) => any;
|
|
82
|
-
|
|
83
|
-
|
|
83
|
+
setFocus: (...args: any[]) => any;
|
|
84
|
+
setBlur: (...args: any[]) => any;
|
|
84
85
|
$props: {
|
|
85
86
|
readonly theme?: string | undefined;
|
|
86
87
|
readonly disabled?: boolean | undefined;
|
|
@@ -145,7 +146,8 @@ export declare const FvListView: import("../../types/plugins/component-plugin").
|
|
|
145
146
|
dragOver(event: any, item: any): void;
|
|
146
147
|
dragLeave(event: any, item: any): void;
|
|
147
148
|
dropItem(event: any, item: any): void;
|
|
148
|
-
|
|
149
|
+
setFocus(): void;
|
|
150
|
+
setBlur(): void;
|
|
149
151
|
inspectItemAPI(cur: any): 0 | undefined;
|
|
150
152
|
}, {}>;
|
|
151
153
|
__isFragment?: undefined;
|
|
@@ -153,8 +155,8 @@ export declare const FvListView: import("../../types/plugins/component-plugin").
|
|
|
153
155
|
__isSuspense?: undefined;
|
|
154
156
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
155
157
|
move: (...args: any[]) => any;
|
|
156
|
-
|
|
157
|
-
|
|
158
|
+
setFocus: (...args: any[]) => any;
|
|
159
|
+
setBlur: (...args: any[]) => any;
|
|
158
160
|
$props: {
|
|
159
161
|
readonly theme?: string | undefined;
|
|
160
162
|
readonly disabled?: boolean | undefined;
|
|
@@ -219,7 +221,8 @@ export declare const FvListView: import("../../types/plugins/component-plugin").
|
|
|
219
221
|
dragOver(event: any, item: any): void;
|
|
220
222
|
dragLeave(event: any, item: any): void;
|
|
221
223
|
dropItem(event: any, item: any): void;
|
|
222
|
-
|
|
224
|
+
setFocus(): void;
|
|
225
|
+
setBlur(): void;
|
|
223
226
|
inspectItemAPI(cur: any): 0 | undefined;
|
|
224
227
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
225
228
|
$slots: {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
3
|
move: (...args: any[]) => any;
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
setFocus: (...args: any[]) => any;
|
|
5
|
+
setBlur: (...args: any[]) => any;
|
|
6
6
|
$props: {
|
|
7
7
|
readonly theme?: string | undefined;
|
|
8
8
|
readonly disabled?: boolean | undefined;
|
|
@@ -67,7 +67,8 @@ declare const _default: {
|
|
|
67
67
|
dragOver(event: any, item: any): void;
|
|
68
68
|
dragLeave(event: any, item: any): void;
|
|
69
69
|
dropItem(event: any, item: any): void;
|
|
70
|
-
|
|
70
|
+
setFocus(): void;
|
|
71
|
+
setBlur(): void;
|
|
71
72
|
inspectItemAPI(cur: any): 0 | undefined;
|
|
72
73
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
73
74
|
P: {};
|
|
@@ -78,8 +79,8 @@ declare const _default: {
|
|
|
78
79
|
Defaults: {};
|
|
79
80
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
80
81
|
move: (...args: any[]) => any;
|
|
81
|
-
|
|
82
|
-
|
|
82
|
+
setFocus: (...args: any[]) => any;
|
|
83
|
+
setBlur: (...args: any[]) => any;
|
|
83
84
|
$props: {
|
|
84
85
|
readonly theme?: string | undefined;
|
|
85
86
|
readonly disabled?: boolean | undefined;
|
|
@@ -144,7 +145,8 @@ declare const _default: {
|
|
|
144
145
|
dragOver(event: any, item: any): void;
|
|
145
146
|
dragLeave(event: any, item: any): void;
|
|
146
147
|
dropItem(event: any, item: any): void;
|
|
147
|
-
|
|
148
|
+
setFocus(): void;
|
|
149
|
+
setBlur(): void;
|
|
148
150
|
inspectItemAPI(cur: any): 0 | undefined;
|
|
149
151
|
}, {}>;
|
|
150
152
|
__isFragment?: undefined;
|
|
@@ -152,8 +154,8 @@ declare const _default: {
|
|
|
152
154
|
__isSuspense?: undefined;
|
|
153
155
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
154
156
|
move: (...args: any[]) => any;
|
|
155
|
-
|
|
156
|
-
|
|
157
|
+
setFocus: (...args: any[]) => any;
|
|
158
|
+
setBlur: (...args: any[]) => any;
|
|
157
159
|
$props: {
|
|
158
160
|
readonly theme?: string | undefined;
|
|
159
161
|
readonly disabled?: boolean | undefined;
|
|
@@ -218,7 +220,8 @@ declare const _default: {
|
|
|
218
220
|
dragOver(event: any, item: any): void;
|
|
219
221
|
dragLeave(event: any, item: any): void;
|
|
220
222
|
dropItem(event: any, item: any): void;
|
|
221
|
-
|
|
223
|
+
setFocus(): void;
|
|
224
|
+
setBlur(): void;
|
|
222
225
|
inspectItemAPI(cur: any): 0 | undefined;
|
|
223
226
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
224
227
|
$slots: {
|
package/dist/vfluent3.js
CHANGED
|
@@ -14218,10 +14218,10 @@ const mo = /* @__PURE__ */ we(Cg, [["render", Vg]]), Tg = { class: "list-view-he
|
|
|
14218
14218
|
root: this.thisValue
|
|
14219
14219
|
});
|
|
14220
14220
|
},
|
|
14221
|
-
|
|
14221
|
+
setFocus() {
|
|
14222
14222
|
this.focus = !0;
|
|
14223
14223
|
},
|
|
14224
|
-
|
|
14224
|
+
setBlur() {
|
|
14225
14225
|
this.focus = !1;
|
|
14226
14226
|
},
|
|
14227
14227
|
inspectItemAPI(e) {
|
|
@@ -14301,8 +14301,8 @@ const mo = /* @__PURE__ */ we(Cg, [["render", Vg]]), Tg = { class: "list-view-he
|
|
|
14301
14301
|
const { proxy: s } = $i();
|
|
14302
14302
|
return i({
|
|
14303
14303
|
move: (...n) => s.move(...n),
|
|
14304
|
-
|
|
14305
|
-
|
|
14304
|
+
setFocus: (...n) => s.setFocus(...n),
|
|
14305
|
+
setBlur: (...n) => s.setBlur(...n)
|
|
14306
14306
|
}), (n, r) => {
|
|
14307
14307
|
const o = j("fv-reveal-container");
|
|
14308
14308
|
return p(), w("div", {
|