@creatorsn/vfluent3 0.3.63 → 0.3.64
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 +6 -6
- package/dist/types/packages/list-view/source/index.vue.d.ts +6 -6
- package/dist/vfluent3.js +2 -2
- 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;
|
|
@@ -79,8 +79,8 @@ export declare const FvListView: import("../../types/plugins/component-plugin").
|
|
|
79
79
|
Defaults: {};
|
|
80
80
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
81
81
|
move: (...args: any[]) => any;
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
setFocus: (...args: any[]) => any;
|
|
83
|
+
setBlur: (...args: any[]) => any;
|
|
84
84
|
$props: {
|
|
85
85
|
readonly theme?: string | undefined;
|
|
86
86
|
readonly disabled?: boolean | undefined;
|
|
@@ -153,8 +153,8 @@ export declare const FvListView: import("../../types/plugins/component-plugin").
|
|
|
153
153
|
__isSuspense?: undefined;
|
|
154
154
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
155
155
|
move: (...args: any[]) => any;
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
setFocus: (...args: any[]) => any;
|
|
157
|
+
setBlur: (...args: any[]) => any;
|
|
158
158
|
$props: {
|
|
159
159
|
readonly theme?: string | undefined;
|
|
160
160
|
readonly disabled?: boolean | undefined;
|
|
@@ -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;
|
|
@@ -78,8 +78,8 @@ declare const _default: {
|
|
|
78
78
|
Defaults: {};
|
|
79
79
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
80
80
|
move: (...args: any[]) => any;
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
setFocus: (...args: any[]) => any;
|
|
82
|
+
setBlur: (...args: any[]) => any;
|
|
83
83
|
$props: {
|
|
84
84
|
readonly theme?: string | undefined;
|
|
85
85
|
readonly disabled?: boolean | undefined;
|
|
@@ -152,8 +152,8 @@ declare const _default: {
|
|
|
152
152
|
__isSuspense?: undefined;
|
|
153
153
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
154
154
|
move: (...args: any[]) => any;
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
setFocus: (...args: any[]) => any;
|
|
156
|
+
setBlur: (...args: any[]) => any;
|
|
157
157
|
$props: {
|
|
158
158
|
readonly theme?: string | undefined;
|
|
159
159
|
readonly disabled?: boolean | undefined;
|
package/dist/vfluent3.js
CHANGED
|
@@ -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.focus(...n),
|
|
14305
|
+
setBlur: (...n) => s.blur(...n)
|
|
14306
14306
|
}), (n, r) => {
|
|
14307
14307
|
const o = j("fv-reveal-container");
|
|
14308
14308
|
return p(), w("div", {
|