@nightshadeui/core 2.6.1 → 2.8.0
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/BaseMenu.vue.d.ts +280 -0
- package/dist/components/Bubble.vue.d.ts +32 -0
- package/dist/components/ContextMenu.vue.d.ts +391 -0
- package/dist/components/ContextPopup.vue.d.ts +96 -0
- package/dist/components/InputBase.vue.d.ts +28 -1
- package/dist/components/InputText.vue.d.ts +191 -2
- package/dist/components/InputTextarea.vue.d.ts +191 -2
- package/dist/components/Tab.vue.d.ts +19 -1
- package/dist/components/ToolPanel.vue.d.ts +41 -0
- package/dist/components/index.d.ts +6 -2
- package/dist/core.css +1 -1
- package/dist/core.mjs +647 -397
- package/dist/index.d.ts +1 -0
- package/dist/types/MenuItem.d.ts +13 -0
- package/dist/utils/props.d.ts +1 -0
- package/package.json +1 -1
- package/dist/components/InputSelect.vue.d.ts +0 -20
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
dir: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
align: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
anchorRef: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
};
|
|
13
|
+
anchorDir: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
overlayEnabled: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
overlayShown: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
arrowShown: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>, {}, {
|
|
30
|
+
pos: {
|
|
31
|
+
x: number;
|
|
32
|
+
y: number;
|
|
33
|
+
};
|
|
34
|
+
actualDir: string;
|
|
35
|
+
actualAlign: string;
|
|
36
|
+
ready: boolean;
|
|
37
|
+
}, {
|
|
38
|
+
bubbleStyle(): {
|
|
39
|
+
left: string;
|
|
40
|
+
top: string;
|
|
41
|
+
'pointer-events': string;
|
|
42
|
+
};
|
|
43
|
+
}, {
|
|
44
|
+
hide(): void;
|
|
45
|
+
calcPos(): void;
|
|
46
|
+
calcDirAlign(): void;
|
|
47
|
+
getAnchorEl(): any;
|
|
48
|
+
findRef(component: any, refKey: any): any;
|
|
49
|
+
getAnchorPoint(el: any, dir: any): {
|
|
50
|
+
x: any;
|
|
51
|
+
y: any;
|
|
52
|
+
};
|
|
53
|
+
onResize(): void;
|
|
54
|
+
onKeyDown(ev: any): void;
|
|
55
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("hide" | "mouseenter" | "mouseleave" | "ready")[], "hide" | "mouseenter" | "mouseleave" | "ready", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
56
|
+
dir: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
align: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
anchorRef: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
};
|
|
67
|
+
anchorDir: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
overlayEnabled: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
overlayShown: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
arrowShown: {
|
|
80
|
+
type: BooleanConstructor;
|
|
81
|
+
default: boolean;
|
|
82
|
+
};
|
|
83
|
+
}>> & Readonly<{
|
|
84
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
85
|
+
onMouseenter?: ((...args: any[]) => any) | undefined;
|
|
86
|
+
onMouseleave?: ((...args: any[]) => any) | undefined;
|
|
87
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
}>, {
|
|
89
|
+
align: string;
|
|
90
|
+
dir: string;
|
|
91
|
+
arrowShown: boolean;
|
|
92
|
+
anchorDir: string;
|
|
93
|
+
overlayEnabled: boolean;
|
|
94
|
+
overlayShown: boolean;
|
|
95
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
96
|
+
export default _default;
|
|
@@ -29,6 +29,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
29
29
|
type: BooleanConstructor;
|
|
30
30
|
default: boolean;
|
|
31
31
|
};
|
|
32
|
+
outline: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
32
36
|
disabled: {
|
|
33
37
|
type: BooleanConstructor;
|
|
34
38
|
default: boolean;
|
|
@@ -96,6 +100,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
96
100
|
type: BooleanConstructor;
|
|
97
101
|
default: boolean;
|
|
98
102
|
};
|
|
103
|
+
outline: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
99
107
|
disabled: {
|
|
100
108
|
type: BooleanConstructor;
|
|
101
109
|
default: boolean;
|
|
@@ -119,6 +127,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
119
127
|
kind: string;
|
|
120
128
|
size: string;
|
|
121
129
|
flat: boolean;
|
|
130
|
+
outline: boolean;
|
|
122
131
|
round: boolean;
|
|
123
132
|
disabled: boolean;
|
|
124
133
|
forceFocus: boolean;
|
|
@@ -138,8 +147,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
138
147
|
label: {
|
|
139
148
|
type: StringConstructor;
|
|
140
149
|
};
|
|
150
|
+
size: {
|
|
151
|
+
type: StringConstructor;
|
|
152
|
+
default: string;
|
|
153
|
+
};
|
|
154
|
+
kind: {
|
|
155
|
+
type: StringConstructor;
|
|
156
|
+
default: string;
|
|
157
|
+
};
|
|
141
158
|
}>, {}, {}, {
|
|
142
|
-
orientation(): "
|
|
159
|
+
orientation(): "v" | "h";
|
|
143
160
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
144
161
|
tagName: {
|
|
145
162
|
type: StringConstructor;
|
|
@@ -152,8 +169,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
152
169
|
label: {
|
|
153
170
|
type: StringConstructor;
|
|
154
171
|
};
|
|
172
|
+
size: {
|
|
173
|
+
type: StringConstructor;
|
|
174
|
+
default: string;
|
|
175
|
+
};
|
|
176
|
+
kind: {
|
|
177
|
+
type: StringConstructor;
|
|
178
|
+
default: string;
|
|
179
|
+
};
|
|
155
180
|
}>> & Readonly<{}>, {
|
|
156
181
|
tagName: string;
|
|
182
|
+
kind: string;
|
|
183
|
+
size: string;
|
|
157
184
|
dir: string;
|
|
158
185
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
159
186
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
2
|
+
inputBaseProps(): Record<string, any>;
|
|
3
|
+
}, {
|
|
2
4
|
onInput(ev: any): void;
|
|
3
5
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("focus" | "update:modelValue" | "blur" | "input")[], "focus" | "update:modelValue" | "blur" | "input", import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
6
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -7,5 +9,192 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
7
9
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
8
10
|
}>, {} | {
|
|
9
11
|
[x: string]: any;
|
|
10
|
-
}, {}, {
|
|
12
|
+
}, {}, {
|
|
13
|
+
InputBase: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
14
|
+
tagName: {
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
kind: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
label: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
};
|
|
24
|
+
labelStyle: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
size: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
fixedHeight: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
flat: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
round: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
outline: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
disabled: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
forceFocus: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
forceHover: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
hoverOverrides: {
|
|
61
|
+
type: ObjectConstructor;
|
|
62
|
+
};
|
|
63
|
+
focusOverrides: {
|
|
64
|
+
type: ObjectConstructor;
|
|
65
|
+
};
|
|
66
|
+
}>, {}, {
|
|
67
|
+
hover: boolean;
|
|
68
|
+
focus: boolean;
|
|
69
|
+
}, {
|
|
70
|
+
baseStyle(): {
|
|
71
|
+
kind: string;
|
|
72
|
+
size: string;
|
|
73
|
+
flat: boolean;
|
|
74
|
+
round: boolean;
|
|
75
|
+
labelStyle: string;
|
|
76
|
+
};
|
|
77
|
+
effectiveStyle(): {
|
|
78
|
+
kind: string;
|
|
79
|
+
size: string;
|
|
80
|
+
flat: boolean;
|
|
81
|
+
round: boolean;
|
|
82
|
+
labelStyle: string;
|
|
83
|
+
};
|
|
84
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
85
|
+
tagName: {
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
88
|
+
kind: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
label: {
|
|
93
|
+
type: StringConstructor;
|
|
94
|
+
};
|
|
95
|
+
labelStyle: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
default: string;
|
|
98
|
+
};
|
|
99
|
+
size: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
fixedHeight: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
flat: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
round: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
115
|
+
outline: {
|
|
116
|
+
type: BooleanConstructor;
|
|
117
|
+
default: boolean;
|
|
118
|
+
};
|
|
119
|
+
disabled: {
|
|
120
|
+
type: BooleanConstructor;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
123
|
+
forceFocus: {
|
|
124
|
+
type: BooleanConstructor;
|
|
125
|
+
default: boolean;
|
|
126
|
+
};
|
|
127
|
+
forceHover: {
|
|
128
|
+
type: BooleanConstructor;
|
|
129
|
+
default: boolean;
|
|
130
|
+
};
|
|
131
|
+
hoverOverrides: {
|
|
132
|
+
type: ObjectConstructor;
|
|
133
|
+
};
|
|
134
|
+
focusOverrides: {
|
|
135
|
+
type: ObjectConstructor;
|
|
136
|
+
};
|
|
137
|
+
}>> & Readonly<{}>, {
|
|
138
|
+
tagName: string;
|
|
139
|
+
kind: string;
|
|
140
|
+
size: string;
|
|
141
|
+
flat: boolean;
|
|
142
|
+
outline: boolean;
|
|
143
|
+
round: boolean;
|
|
144
|
+
disabled: boolean;
|
|
145
|
+
forceFocus: boolean;
|
|
146
|
+
forceHover: boolean;
|
|
147
|
+
labelStyle: string;
|
|
148
|
+
fixedHeight: boolean;
|
|
149
|
+
}, {}, {
|
|
150
|
+
Tab: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
151
|
+
tagName: {
|
|
152
|
+
type: StringConstructor;
|
|
153
|
+
default: string;
|
|
154
|
+
};
|
|
155
|
+
dir: {
|
|
156
|
+
type: StringConstructor;
|
|
157
|
+
default: string;
|
|
158
|
+
};
|
|
159
|
+
label: {
|
|
160
|
+
type: StringConstructor;
|
|
161
|
+
};
|
|
162
|
+
size: {
|
|
163
|
+
type: StringConstructor;
|
|
164
|
+
default: string;
|
|
165
|
+
};
|
|
166
|
+
kind: {
|
|
167
|
+
type: StringConstructor;
|
|
168
|
+
default: string;
|
|
169
|
+
};
|
|
170
|
+
}>, {}, {}, {
|
|
171
|
+
orientation(): "v" | "h";
|
|
172
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
173
|
+
tagName: {
|
|
174
|
+
type: StringConstructor;
|
|
175
|
+
default: string;
|
|
176
|
+
};
|
|
177
|
+
dir: {
|
|
178
|
+
type: StringConstructor;
|
|
179
|
+
default: string;
|
|
180
|
+
};
|
|
181
|
+
label: {
|
|
182
|
+
type: StringConstructor;
|
|
183
|
+
};
|
|
184
|
+
size: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
kind: {
|
|
189
|
+
type: StringConstructor;
|
|
190
|
+
default: string;
|
|
191
|
+
};
|
|
192
|
+
}>> & Readonly<{}>, {
|
|
193
|
+
tagName: string;
|
|
194
|
+
kind: string;
|
|
195
|
+
size: string;
|
|
196
|
+
dir: string;
|
|
197
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
198
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
199
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
11
200
|
export default _default;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
2
|
+
inputBaseProps(): Record<string, any>;
|
|
3
|
+
}, {
|
|
2
4
|
onInput(ev: any): void;
|
|
3
5
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("focus" | "update:modelValue" | "blur" | "input")[], "focus" | "update:modelValue" | "blur" | "input", import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
6
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -7,5 +9,192 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
7
9
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
8
10
|
}>, {} | {
|
|
9
11
|
[x: string]: any;
|
|
10
|
-
}, {}, {
|
|
12
|
+
}, {}, {
|
|
13
|
+
InputBase: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
14
|
+
tagName: {
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
kind: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
label: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
};
|
|
24
|
+
labelStyle: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
size: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
fixedHeight: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
flat: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
round: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
outline: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
disabled: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
forceFocus: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
forceHover: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
hoverOverrides: {
|
|
61
|
+
type: ObjectConstructor;
|
|
62
|
+
};
|
|
63
|
+
focusOverrides: {
|
|
64
|
+
type: ObjectConstructor;
|
|
65
|
+
};
|
|
66
|
+
}>, {}, {
|
|
67
|
+
hover: boolean;
|
|
68
|
+
focus: boolean;
|
|
69
|
+
}, {
|
|
70
|
+
baseStyle(): {
|
|
71
|
+
kind: string;
|
|
72
|
+
size: string;
|
|
73
|
+
flat: boolean;
|
|
74
|
+
round: boolean;
|
|
75
|
+
labelStyle: string;
|
|
76
|
+
};
|
|
77
|
+
effectiveStyle(): {
|
|
78
|
+
kind: string;
|
|
79
|
+
size: string;
|
|
80
|
+
flat: boolean;
|
|
81
|
+
round: boolean;
|
|
82
|
+
labelStyle: string;
|
|
83
|
+
};
|
|
84
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
85
|
+
tagName: {
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
88
|
+
kind: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
label: {
|
|
93
|
+
type: StringConstructor;
|
|
94
|
+
};
|
|
95
|
+
labelStyle: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
default: string;
|
|
98
|
+
};
|
|
99
|
+
size: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
fixedHeight: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
flat: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
round: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
115
|
+
outline: {
|
|
116
|
+
type: BooleanConstructor;
|
|
117
|
+
default: boolean;
|
|
118
|
+
};
|
|
119
|
+
disabled: {
|
|
120
|
+
type: BooleanConstructor;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
123
|
+
forceFocus: {
|
|
124
|
+
type: BooleanConstructor;
|
|
125
|
+
default: boolean;
|
|
126
|
+
};
|
|
127
|
+
forceHover: {
|
|
128
|
+
type: BooleanConstructor;
|
|
129
|
+
default: boolean;
|
|
130
|
+
};
|
|
131
|
+
hoverOverrides: {
|
|
132
|
+
type: ObjectConstructor;
|
|
133
|
+
};
|
|
134
|
+
focusOverrides: {
|
|
135
|
+
type: ObjectConstructor;
|
|
136
|
+
};
|
|
137
|
+
}>> & Readonly<{}>, {
|
|
138
|
+
tagName: string;
|
|
139
|
+
kind: string;
|
|
140
|
+
size: string;
|
|
141
|
+
flat: boolean;
|
|
142
|
+
outline: boolean;
|
|
143
|
+
round: boolean;
|
|
144
|
+
disabled: boolean;
|
|
145
|
+
forceFocus: boolean;
|
|
146
|
+
forceHover: boolean;
|
|
147
|
+
labelStyle: string;
|
|
148
|
+
fixedHeight: boolean;
|
|
149
|
+
}, {}, {
|
|
150
|
+
Tab: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
151
|
+
tagName: {
|
|
152
|
+
type: StringConstructor;
|
|
153
|
+
default: string;
|
|
154
|
+
};
|
|
155
|
+
dir: {
|
|
156
|
+
type: StringConstructor;
|
|
157
|
+
default: string;
|
|
158
|
+
};
|
|
159
|
+
label: {
|
|
160
|
+
type: StringConstructor;
|
|
161
|
+
};
|
|
162
|
+
size: {
|
|
163
|
+
type: StringConstructor;
|
|
164
|
+
default: string;
|
|
165
|
+
};
|
|
166
|
+
kind: {
|
|
167
|
+
type: StringConstructor;
|
|
168
|
+
default: string;
|
|
169
|
+
};
|
|
170
|
+
}>, {}, {}, {
|
|
171
|
+
orientation(): "v" | "h";
|
|
172
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
173
|
+
tagName: {
|
|
174
|
+
type: StringConstructor;
|
|
175
|
+
default: string;
|
|
176
|
+
};
|
|
177
|
+
dir: {
|
|
178
|
+
type: StringConstructor;
|
|
179
|
+
default: string;
|
|
180
|
+
};
|
|
181
|
+
label: {
|
|
182
|
+
type: StringConstructor;
|
|
183
|
+
};
|
|
184
|
+
size: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
kind: {
|
|
189
|
+
type: StringConstructor;
|
|
190
|
+
default: string;
|
|
191
|
+
};
|
|
192
|
+
}>> & Readonly<{}>, {
|
|
193
|
+
tagName: string;
|
|
194
|
+
kind: string;
|
|
195
|
+
size: string;
|
|
196
|
+
dir: string;
|
|
197
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
198
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
199
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
11
200
|
export default _default;
|
|
@@ -10,8 +10,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10
10
|
label: {
|
|
11
11
|
type: StringConstructor;
|
|
12
12
|
};
|
|
13
|
+
size: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
kind: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
13
21
|
}>, {}, {}, {
|
|
14
|
-
orientation(): "
|
|
22
|
+
orientation(): "v" | "h";
|
|
15
23
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
16
24
|
tagName: {
|
|
17
25
|
type: StringConstructor;
|
|
@@ -24,8 +32,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
24
32
|
label: {
|
|
25
33
|
type: StringConstructor;
|
|
26
34
|
};
|
|
35
|
+
size: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
kind: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
27
43
|
}>> & Readonly<{}>, {
|
|
28
44
|
tagName: string;
|
|
45
|
+
kind: string;
|
|
46
|
+
size: string;
|
|
29
47
|
dir: string;
|
|
30
48
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
31
49
|
export default _default;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
flat: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
outline: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
round: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
19
|
+
size: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
flat: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
outline: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
round: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
}>> & Readonly<{}>, {
|
|
36
|
+
size: string;
|
|
37
|
+
flat: boolean;
|
|
38
|
+
outline: boolean;
|
|
39
|
+
round: boolean;
|
|
40
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
41
|
+
export default _default;
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
+
import { default as BaseMenu } from './BaseMenu.vue';
|
|
1
2
|
import { default as Btn } from './Btn.vue';
|
|
3
|
+
import { default as Bubble } from './Bubble.vue';
|
|
2
4
|
import { default as Checkbox } from './Checkbox.vue';
|
|
5
|
+
import { default as ContextMenu } from './ContextMenu.vue';
|
|
6
|
+
import { default as ContextPopup } from './ContextPopup.vue';
|
|
3
7
|
import { default as Filler } from './Filler.vue';
|
|
4
8
|
import { default as HGroup } from './HGroup.vue';
|
|
5
9
|
import { default as InputBase } from './InputBase.vue';
|
|
6
10
|
import { default as InputGroup } from './InputGroup.vue';
|
|
7
|
-
import { default as InputSelect } from './InputSelect.vue';
|
|
8
11
|
import { default as InputText } from './InputText.vue';
|
|
9
12
|
import { default as InputTextarea } from './InputTextarea.vue';
|
|
10
13
|
import { default as RouterBtn } from './RouterBtn.vue';
|
|
11
14
|
import { default as Tab } from './Tab.vue';
|
|
12
15
|
import { default as TabCap } from './TabCap.vue';
|
|
13
16
|
import { default as Toggle } from './Toggle.vue';
|
|
17
|
+
import { default as ToolPanel } from './ToolPanel.vue';
|
|
14
18
|
import { default as VGroup } from './VGroup.vue';
|
|
15
|
-
export { Btn, Checkbox, Filler, HGroup, InputBase, InputGroup,
|
|
19
|
+
export { BaseMenu, Btn, Bubble, Checkbox, ContextMenu, ContextPopup, Filler, HGroup, InputBase, InputGroup, InputText, InputTextarea, RouterBtn, Tab, TabCap, Toggle, ToolPanel, VGroup, };
|