rtcpts 0.0.60 → 0.0.62
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/j-c-editable-proxy/index.d.ts +23 -24
- package/dist/components/j-c-list-editor/index.d.ts +20 -22
- package/dist/components/j-c-nested-select/index.d.ts +1 -1
- package/dist/components/j-c-org-select/index.d.ts +25 -27
- package/dist/components/j-c-table/index.d.ts +20 -22
- package/dist/components/j-c-tooltip/JCTooltipContent.d.ts +84 -0
- package/dist/components/j-c-tooltip/index.d.ts +20 -21
- package/dist/components/j-c-tooltip/types.d.ts +16 -16
- package/dist/components/j-c-tooltip-ellipsis/index.d.ts +25 -26
- package/dist/components/j-c-tooltip-ellipsis/types.d.ts +3 -3
- package/dist/components/j-c-tree-select/index.d.ts +73 -77
- package/dist/components/j-ch-bar/index.d.ts +1 -1
- package/dist/components/j-ch-bar-line/index.d.ts +1 -1
- package/dist/components/j-ch-bubble/index.d.ts +1 -1
- package/dist/components/j-ch-line/index.d.ts +1 -1
- package/dist/components/j-ch-pie-doughnut/index.d.ts +1 -1
- package/dist/components/j-ch-radar/index.d.ts +1 -1
- package/dist/components/j-q-autocomplete/index.d.ts +20 -22
- package/dist/components/j-q-button/index.d.ts +25 -25
- package/dist/components/j-q-button/types.d.ts +4 -6
- package/dist/components/j-q-button-dropdown/index.d.ts +36 -1
- package/dist/components/j-q-button-dropdown/types.d.ts +11 -1
- package/dist/components/j-q-checkbox/index.d.ts +282 -0
- package/dist/components/j-q-checkbox/types.d.ts +125 -0
- package/dist/components/j-q-confirm/index.d.ts +23 -24
- package/dist/components/j-q-confirm-dialog/index.d.ts +22 -27
- package/dist/components/j-q-detail-list/index.d.ts +42 -45
- package/dist/components/j-q-dialog/prompt-content.d.ts +6 -6
- package/dist/components/j-q-file/index.d.ts +45 -47
- package/dist/components/j-q-form-label/index.d.ts +20 -22
- package/dist/components/j-q-new-value/index.d.ts +1 -1
- package/dist/components/j-q-option-group/index.d.ts +21 -23
- package/dist/components/j-q-search-form/index.d.ts +23 -24
- package/dist/components/j-q-select/index.d.ts +1 -1
- package/dist/components/j-q-table/index.d.ts +20 -22
- package/dist/global.d.ts +12 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/rtcpt.cjs.js +1 -1
- package/dist/rtcpt.es.js +5060 -3846
- package/package.json +11 -3
|
@@ -91,10 +91,14 @@ export interface JCTooltipProps {
|
|
|
91
91
|
* @default undefined
|
|
92
92
|
*/
|
|
93
93
|
modelValue?: boolean;
|
|
94
|
+
/**
|
|
95
|
+
* hover 模式下是否在 focus 时也显示 tooltip
|
|
96
|
+
* @default false
|
|
97
|
+
*/
|
|
98
|
+
showOnFocus?: boolean;
|
|
94
99
|
}
|
|
95
100
|
/** JCTooltip Emits 接口 */
|
|
96
101
|
export interface JCTooltipEmits {
|
|
97
|
-
[key: string]: any;
|
|
98
102
|
/**
|
|
99
103
|
* 更新显示状态事件
|
|
100
104
|
* @param value 新的显示状态
|
|
@@ -104,14 +108,21 @@ export interface JCTooltipEmits {
|
|
|
104
108
|
/** JCTooltip Slots 接口 */
|
|
105
109
|
export interface JCTooltipSlots {
|
|
106
110
|
[key: string]: any;
|
|
107
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* 默认插槽,触发 tooltip 的元素。
|
|
113
|
+
*
|
|
114
|
+
* **契约**:必须是单一非文本根元素(DOM 元素或 Vue 组件均可)。
|
|
115
|
+
* - 空 / 多根 / 纯文本会**退化为直通渲染**(无 tooltip 行为)并 `console.warn`。
|
|
116
|
+
* - 写在 `<j-c-tooltip>` 上的 class/style/事件等 attrs 会被合并到此根元素上,
|
|
117
|
+
* 不会再多一层包裹 `<div>`。
|
|
118
|
+
*/
|
|
108
119
|
default?: () => any;
|
|
109
120
|
/** 内容插槽,自定义 tooltip 内容 */
|
|
110
121
|
content?: () => any;
|
|
111
122
|
}
|
|
112
123
|
/** JCTooltip 暴露的方法和属性 */
|
|
113
124
|
export interface JCTooltipExpose {
|
|
114
|
-
/** 获取触发元素的 DOM
|
|
125
|
+
/** 获取触发元素的 DOM 引用(即 default slot 第一个根元素本身,不再有外层包裹 div) */
|
|
115
126
|
$el: HTMLElement | undefined;
|
|
116
127
|
/** 当前是否显示 */
|
|
117
128
|
visible: boolean;
|
|
@@ -126,16 +137,5 @@ export type JCTooltipEmitsOptions = {
|
|
|
126
137
|
export type JCTooltipComponent = DefineComponent<JCTooltipProps, JCTooltipExpose, {}, {}, {}, {}, {}, JCTooltipEmitsOptions>;
|
|
127
138
|
/** JCTooltip 实例类型 - 用于 ref 类型定义 */
|
|
128
139
|
export type JCTooltipInstance = InstanceType<JCTooltipComponent> & JCTooltipExpose;
|
|
129
|
-
/** @deprecated
|
|
130
|
-
export type
|
|
131
|
-
/** @deprecated 请使用 JCTooltipEffectType */
|
|
132
|
-
export type TooltipEffect = JCTooltipEffectType;
|
|
133
|
-
/** @deprecated 请使用 JCTooltipTriggerType */
|
|
134
|
-
export type TooltipTrigger = JCTooltipTriggerType;
|
|
135
|
-
/** @deprecated 请使用 JCTooltipProps */
|
|
136
|
-
export type TooltipProps = JCTooltipProps;
|
|
137
|
-
/**
|
|
138
|
-
* 用于模板中的 Props 类型定义
|
|
139
|
-
*/
|
|
140
|
-
export interface JCTooltipTemplateProps extends JCTooltipProps {
|
|
141
|
-
}
|
|
140
|
+
/** @deprecated 使用 JCTooltipProps 代替。保留用于 global.d.ts 自动生成的兼容 */
|
|
141
|
+
export type JCTooltipTemplateProps = JCTooltipProps;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PropType, DefineComponent, ExtractPropTypes, Ref, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { PropType, DefineComponent, ExtractPropTypes, Ref, ComputedRef, ComponentOptionsMixin, PublicProps, VNode, RendererNode, RendererElement, ComponentProvideOptions } from 'vue';
|
|
2
|
+
import { JCTooltipEffectType, JCTooltipPlacementType } from '../j-c-tooltip/types';
|
|
3
|
+
import { JCTooltipTriggerType } from '../..';
|
|
4
4
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
5
5
|
content: {
|
|
6
6
|
type: StringConstructor;
|
|
@@ -11,7 +11,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
13
|
effect: {
|
|
14
|
-
type: PropType<
|
|
14
|
+
type: PropType<JCTooltipEffectType>;
|
|
15
15
|
default: string;
|
|
16
16
|
};
|
|
17
17
|
lines: {
|
|
@@ -28,7 +28,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
28
28
|
default: number;
|
|
29
29
|
};
|
|
30
30
|
placement: {
|
|
31
|
-
type: PropType<
|
|
31
|
+
type: PropType<JCTooltipPlacementType>;
|
|
32
32
|
default: string;
|
|
33
33
|
};
|
|
34
34
|
}>, {
|
|
@@ -51,7 +51,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
51
51
|
default: string;
|
|
52
52
|
};
|
|
53
53
|
effect: {
|
|
54
|
-
type: PropType<
|
|
54
|
+
type: PropType<JCTooltipEffectType>;
|
|
55
55
|
default: string;
|
|
56
56
|
};
|
|
57
57
|
lines: {
|
|
@@ -68,7 +68,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
68
68
|
default: number;
|
|
69
69
|
};
|
|
70
70
|
placement: {
|
|
71
|
-
type: PropType<
|
|
71
|
+
type: PropType<JCTooltipPlacementType>;
|
|
72
72
|
default: string;
|
|
73
73
|
};
|
|
74
74
|
}>> & Readonly<{}>, {
|
|
@@ -86,15 +86,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
86
86
|
default: string;
|
|
87
87
|
};
|
|
88
88
|
placement: {
|
|
89
|
-
type: PropType<
|
|
89
|
+
type: PropType<JCTooltipPlacementType>;
|
|
90
90
|
default: string;
|
|
91
91
|
};
|
|
92
92
|
effect: {
|
|
93
|
-
type: PropType<
|
|
93
|
+
type: PropType<JCTooltipEffectType>;
|
|
94
94
|
default: string;
|
|
95
95
|
};
|
|
96
96
|
trigger: {
|
|
97
|
-
type: PropType<
|
|
97
|
+
type: PropType< JCTooltipTriggerType>;
|
|
98
98
|
default: string;
|
|
99
99
|
};
|
|
100
100
|
disabled: {
|
|
@@ -125,33 +125,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
125
125
|
type: BooleanConstructor;
|
|
126
126
|
default: undefined;
|
|
127
127
|
};
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
handleMouseEnter: () => void;
|
|
136
|
-
handleMouseLeave: () => void;
|
|
137
|
-
handleClick: () => void;
|
|
138
|
-
handlePopperMouseEnter: () => void;
|
|
139
|
-
handlePopperMouseLeave: () => void;
|
|
140
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly< ExtractPropTypes<{
|
|
128
|
+
showOnFocus: {
|
|
129
|
+
type: BooleanConstructor;
|
|
130
|
+
default: boolean;
|
|
131
|
+
};
|
|
132
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
133
|
+
[key: string]: any;
|
|
134
|
+
}>[] | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly< ExtractPropTypes<{
|
|
141
135
|
content: {
|
|
142
136
|
type: StringConstructor;
|
|
143
137
|
default: string;
|
|
144
138
|
};
|
|
145
139
|
placement: {
|
|
146
|
-
type: PropType<
|
|
140
|
+
type: PropType<JCTooltipPlacementType>;
|
|
147
141
|
default: string;
|
|
148
142
|
};
|
|
149
143
|
effect: {
|
|
150
|
-
type: PropType<
|
|
144
|
+
type: PropType<JCTooltipEffectType>;
|
|
151
145
|
default: string;
|
|
152
146
|
};
|
|
153
147
|
trigger: {
|
|
154
|
-
type: PropType<
|
|
148
|
+
type: PropType< JCTooltipTriggerType>;
|
|
155
149
|
default: string;
|
|
156
150
|
};
|
|
157
151
|
disabled: {
|
|
@@ -182,6 +176,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
182
176
|
type: BooleanConstructor;
|
|
183
177
|
default: undefined;
|
|
184
178
|
};
|
|
179
|
+
showOnFocus: {
|
|
180
|
+
type: BooleanConstructor;
|
|
181
|
+
default: boolean;
|
|
182
|
+
};
|
|
185
183
|
}>> & Readonly<{
|
|
186
184
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
187
185
|
}>, {
|
|
@@ -196,6 +194,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
196
194
|
closeDelay: number;
|
|
197
195
|
maxWidth: string;
|
|
198
196
|
offset: number;
|
|
197
|
+
showOnFocus: boolean;
|
|
199
198
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
200
199
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
201
200
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DefineComponent } from 'vue';
|
|
2
|
-
import {
|
|
2
|
+
import { JCTooltipPlacementType, JCTooltipEffectType } from '../j-c-tooltip/types';
|
|
3
3
|
/** JCTooltipEllipsis Props 接口 */
|
|
4
4
|
export interface JCTooltipEllipsisProps {
|
|
5
5
|
/**
|
|
@@ -22,12 +22,12 @@ export interface JCTooltipEllipsisProps {
|
|
|
22
22
|
* Tooltip 位置
|
|
23
23
|
* @default 'top'
|
|
24
24
|
*/
|
|
25
|
-
placement?:
|
|
25
|
+
placement?: JCTooltipPlacementType;
|
|
26
26
|
/**
|
|
27
27
|
* Tooltip 效果
|
|
28
28
|
* @default 'dark'
|
|
29
29
|
*/
|
|
30
|
-
effect?:
|
|
30
|
+
effect?: JCTooltipEffectType;
|
|
31
31
|
/**
|
|
32
32
|
* Tooltip 最大宽度
|
|
33
33
|
* @default '300px'
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { QFieldProps, QTreeProps, QField, QIcon, QPopupProxy, QTree, ComponentConstructor, QInputProps, QInput } from 'quasar';
|
|
2
|
-
import { PropType, SlotsType, DefineComponent, ExtractPropTypes, Ref, CreateComponentPublicInstanceWithMixins, WritableComputedRef, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, GlobalComponents, GlobalDirectives } from 'vue';
|
|
2
|
+
import { PropType, SlotsType, DefineComponent, ExtractPropTypes, Ref, CreateComponentPublicInstanceWithMixins, WritableComputedRef, ComputedRef, ComponentOptionsMixin, PublicProps, VNode, RendererNode, RendererElement, ComponentProvideOptions, GlobalComponents, GlobalDirectives } from 'vue';
|
|
3
3
|
import { t } from '../../composables/useI18n.ts';
|
|
4
|
-
import {
|
|
5
|
-
import { JCTooltipPlacementType, JCTooltipEffectType, JCTooltipTriggerType } from '../j-c-tooltip/types';
|
|
4
|
+
import { JCTooltipEffectType, JCTooltipPlacementType, JCTooltipTriggerType } from '../..';
|
|
6
5
|
type ModelValue = (string | number)[];
|
|
7
6
|
type Option = Record<string, any>;
|
|
8
7
|
type TickStrategy = QTreeProps['tickStrategy'];
|
|
@@ -110,8 +109,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
110
109
|
computedValue: WritableComputedRef<(string | number)[], (string | number)[]>;
|
|
111
110
|
processedOptions: ComputedRef<any[]>;
|
|
112
111
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], PublicProps, {
|
|
113
|
-
multiple: boolean;
|
|
114
112
|
options: any[];
|
|
113
|
+
multiple: boolean;
|
|
115
114
|
optionLabel: string;
|
|
116
115
|
optionValue: string;
|
|
117
116
|
tickStrategy: "none" | "strict" | "leaf" | "leaf-filtered" | undefined;
|
|
@@ -127,7 +126,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
127
126
|
default: string;
|
|
128
127
|
};
|
|
129
128
|
effect: {
|
|
130
|
-
type: PropType<
|
|
129
|
+
type: PropType< JCTooltipEffectType>;
|
|
131
130
|
default: string;
|
|
132
131
|
};
|
|
133
132
|
lines: {
|
|
@@ -144,7 +143,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
144
143
|
default: number;
|
|
145
144
|
};
|
|
146
145
|
placement: {
|
|
147
|
-
type: PropType<
|
|
146
|
+
type: PropType< JCTooltipPlacementType>;
|
|
148
147
|
default: string;
|
|
149
148
|
};
|
|
150
149
|
}>, {
|
|
@@ -167,7 +166,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
167
166
|
default: string;
|
|
168
167
|
};
|
|
169
168
|
effect: {
|
|
170
|
-
type: PropType<
|
|
169
|
+
type: PropType< JCTooltipEffectType>;
|
|
171
170
|
default: string;
|
|
172
171
|
};
|
|
173
172
|
lines: {
|
|
@@ -184,7 +183,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
184
183
|
default: number;
|
|
185
184
|
};
|
|
186
185
|
placement: {
|
|
187
|
-
type: PropType<
|
|
186
|
+
type: PropType< JCTooltipPlacementType>;
|
|
188
187
|
default: string;
|
|
189
188
|
};
|
|
190
189
|
}>> & Readonly<{}>, {
|
|
@@ -202,15 +201,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
202
201
|
default: string;
|
|
203
202
|
};
|
|
204
203
|
placement: {
|
|
205
|
-
type: PropType<
|
|
204
|
+
type: PropType< JCTooltipPlacementType>;
|
|
206
205
|
default: string;
|
|
207
206
|
};
|
|
208
207
|
effect: {
|
|
209
|
-
type: PropType<
|
|
208
|
+
type: PropType< JCTooltipEffectType>;
|
|
210
209
|
default: string;
|
|
211
210
|
};
|
|
212
211
|
trigger: {
|
|
213
|
-
type: PropType<
|
|
212
|
+
type: PropType< JCTooltipTriggerType>;
|
|
214
213
|
default: string;
|
|
215
214
|
};
|
|
216
215
|
disabled: {
|
|
@@ -241,33 +240,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
241
240
|
type: BooleanConstructor;
|
|
242
241
|
default: undefined;
|
|
243
242
|
};
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
handleMouseEnter: () => void;
|
|
252
|
-
handleMouseLeave: () => void;
|
|
253
|
-
handleClick: () => void;
|
|
254
|
-
handlePopperMouseEnter: () => void;
|
|
255
|
-
handlePopperMouseLeave: () => void;
|
|
256
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly< ExtractPropTypes<{
|
|
243
|
+
showOnFocus: {
|
|
244
|
+
type: BooleanConstructor;
|
|
245
|
+
default: boolean;
|
|
246
|
+
};
|
|
247
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
248
|
+
[key: string]: any;
|
|
249
|
+
}>[] | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly< ExtractPropTypes<{
|
|
257
250
|
content: {
|
|
258
251
|
type: StringConstructor;
|
|
259
252
|
default: string;
|
|
260
253
|
};
|
|
261
254
|
placement: {
|
|
262
|
-
type: PropType<
|
|
255
|
+
type: PropType< JCTooltipPlacementType>;
|
|
263
256
|
default: string;
|
|
264
257
|
};
|
|
265
258
|
effect: {
|
|
266
|
-
type: PropType<
|
|
259
|
+
type: PropType< JCTooltipEffectType>;
|
|
267
260
|
default: string;
|
|
268
261
|
};
|
|
269
262
|
trigger: {
|
|
270
|
-
type: PropType<
|
|
263
|
+
type: PropType< JCTooltipTriggerType>;
|
|
271
264
|
default: string;
|
|
272
265
|
};
|
|
273
266
|
disabled: {
|
|
@@ -298,6 +291,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
298
291
|
type: BooleanConstructor;
|
|
299
292
|
default: undefined;
|
|
300
293
|
};
|
|
294
|
+
showOnFocus: {
|
|
295
|
+
type: BooleanConstructor;
|
|
296
|
+
default: boolean;
|
|
297
|
+
};
|
|
301
298
|
}>> & Readonly<{
|
|
302
299
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
303
300
|
}>, {
|
|
@@ -312,6 +309,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
312
309
|
closeDelay: number;
|
|
313
310
|
maxWidth: string;
|
|
314
311
|
offset: number;
|
|
312
|
+
showOnFocus: boolean;
|
|
315
313
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
316
314
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
317
315
|
QTree: ComponentConstructor<QTree>;
|
|
@@ -358,8 +356,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
358
356
|
computedValue: WritableComputedRef<(string | number)[], (string | number)[]>;
|
|
359
357
|
processedOptions: ComputedRef<any[]>;
|
|
360
358
|
}, {}, {}, {}, {
|
|
361
|
-
multiple: boolean;
|
|
362
359
|
options: any[];
|
|
360
|
+
multiple: boolean;
|
|
363
361
|
optionLabel: string;
|
|
364
362
|
optionValue: string;
|
|
365
363
|
tickStrategy: "none" | "strict" | "leaf" | "leaf-filtered" | undefined;
|
|
@@ -400,8 +398,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
400
398
|
computedValue: WritableComputedRef<(string | number)[], (string | number)[]>;
|
|
401
399
|
processedOptions: ComputedRef<any[]>;
|
|
402
400
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], PublicProps, {
|
|
403
|
-
multiple: boolean;
|
|
404
401
|
options: any[];
|
|
402
|
+
multiple: boolean;
|
|
405
403
|
optionLabel: string;
|
|
406
404
|
optionValue: string;
|
|
407
405
|
tickStrategy: "none" | "strict" | "leaf" | "leaf-filtered" | undefined;
|
|
@@ -417,7 +415,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
417
415
|
default: string;
|
|
418
416
|
};
|
|
419
417
|
effect: {
|
|
420
|
-
type: PropType<
|
|
418
|
+
type: PropType< JCTooltipEffectType>;
|
|
421
419
|
default: string;
|
|
422
420
|
};
|
|
423
421
|
lines: {
|
|
@@ -434,7 +432,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
434
432
|
default: number;
|
|
435
433
|
};
|
|
436
434
|
placement: {
|
|
437
|
-
type: PropType<
|
|
435
|
+
type: PropType< JCTooltipPlacementType>;
|
|
438
436
|
default: string;
|
|
439
437
|
};
|
|
440
438
|
}>, {
|
|
@@ -457,7 +455,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
457
455
|
default: string;
|
|
458
456
|
};
|
|
459
457
|
effect: {
|
|
460
|
-
type: PropType<
|
|
458
|
+
type: PropType< JCTooltipEffectType>;
|
|
461
459
|
default: string;
|
|
462
460
|
};
|
|
463
461
|
lines: {
|
|
@@ -474,7 +472,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
474
472
|
default: number;
|
|
475
473
|
};
|
|
476
474
|
placement: {
|
|
477
|
-
type: PropType<
|
|
475
|
+
type: PropType< JCTooltipPlacementType>;
|
|
478
476
|
default: string;
|
|
479
477
|
};
|
|
480
478
|
}>> & Readonly<{}>, {
|
|
@@ -492,15 +490,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
492
490
|
default: string;
|
|
493
491
|
};
|
|
494
492
|
placement: {
|
|
495
|
-
type: PropType<
|
|
493
|
+
type: PropType< JCTooltipPlacementType>;
|
|
496
494
|
default: string;
|
|
497
495
|
};
|
|
498
496
|
effect: {
|
|
499
|
-
type: PropType<
|
|
497
|
+
type: PropType< JCTooltipEffectType>;
|
|
500
498
|
default: string;
|
|
501
499
|
};
|
|
502
500
|
trigger: {
|
|
503
|
-
type: PropType<
|
|
501
|
+
type: PropType< JCTooltipTriggerType>;
|
|
504
502
|
default: string;
|
|
505
503
|
};
|
|
506
504
|
disabled: {
|
|
@@ -531,33 +529,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
531
529
|
type: BooleanConstructor;
|
|
532
530
|
default: undefined;
|
|
533
531
|
};
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
handleMouseEnter: () => void;
|
|
542
|
-
handleMouseLeave: () => void;
|
|
543
|
-
handleClick: () => void;
|
|
544
|
-
handlePopperMouseEnter: () => void;
|
|
545
|
-
handlePopperMouseLeave: () => void;
|
|
546
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly< ExtractPropTypes<{
|
|
532
|
+
showOnFocus: {
|
|
533
|
+
type: BooleanConstructor;
|
|
534
|
+
default: boolean;
|
|
535
|
+
};
|
|
536
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
537
|
+
[key: string]: any;
|
|
538
|
+
}>[] | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly< ExtractPropTypes<{
|
|
547
539
|
content: {
|
|
548
540
|
type: StringConstructor;
|
|
549
541
|
default: string;
|
|
550
542
|
};
|
|
551
543
|
placement: {
|
|
552
|
-
type: PropType<
|
|
544
|
+
type: PropType< JCTooltipPlacementType>;
|
|
553
545
|
default: string;
|
|
554
546
|
};
|
|
555
547
|
effect: {
|
|
556
|
-
type: PropType<
|
|
548
|
+
type: PropType< JCTooltipEffectType>;
|
|
557
549
|
default: string;
|
|
558
550
|
};
|
|
559
551
|
trigger: {
|
|
560
|
-
type: PropType<
|
|
552
|
+
type: PropType< JCTooltipTriggerType>;
|
|
561
553
|
default: string;
|
|
562
554
|
};
|
|
563
555
|
disabled: {
|
|
@@ -588,6 +580,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
588
580
|
type: BooleanConstructor;
|
|
589
581
|
default: undefined;
|
|
590
582
|
};
|
|
583
|
+
showOnFocus: {
|
|
584
|
+
type: BooleanConstructor;
|
|
585
|
+
default: boolean;
|
|
586
|
+
};
|
|
591
587
|
}>> & Readonly<{
|
|
592
588
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
593
589
|
}>, {
|
|
@@ -602,6 +598,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
602
598
|
closeDelay: number;
|
|
603
599
|
maxWidth: string;
|
|
604
600
|
offset: number;
|
|
601
|
+
showOnFocus: boolean;
|
|
605
602
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
606
603
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
607
604
|
QTree: ComponentConstructor<QTree>;
|
|
@@ -648,8 +645,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
648
645
|
computedValue: WritableComputedRef<(string | number)[], (string | number)[]>;
|
|
649
646
|
processedOptions: ComputedRef<any[]>;
|
|
650
647
|
}, {}, {}, {}, {
|
|
651
|
-
multiple: boolean;
|
|
652
648
|
options: any[];
|
|
649
|
+
multiple: boolean;
|
|
653
650
|
optionLabel: string;
|
|
654
651
|
optionValue: string;
|
|
655
652
|
tickStrategy: "none" | "strict" | "leaf" | "leaf-filtered" | undefined;
|
|
@@ -1006,8 +1003,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1006
1003
|
}>> & Readonly<{
|
|
1007
1004
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1008
1005
|
}>, {
|
|
1009
|
-
multiple: boolean;
|
|
1010
1006
|
options: any[];
|
|
1007
|
+
multiple: boolean;
|
|
1011
1008
|
optionLabel: string;
|
|
1012
1009
|
optionValue: string;
|
|
1013
1010
|
tickStrategy: "none" | "strict" | "leaf" | "leaf-filtered" | undefined;
|
|
@@ -1023,7 +1020,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1023
1020
|
default: string;
|
|
1024
1021
|
};
|
|
1025
1022
|
effect: {
|
|
1026
|
-
type: PropType<
|
|
1023
|
+
type: PropType< JCTooltipEffectType>;
|
|
1027
1024
|
default: string;
|
|
1028
1025
|
};
|
|
1029
1026
|
lines: {
|
|
@@ -1040,7 +1037,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1040
1037
|
default: number;
|
|
1041
1038
|
};
|
|
1042
1039
|
placement: {
|
|
1043
|
-
type: PropType<
|
|
1040
|
+
type: PropType< JCTooltipPlacementType>;
|
|
1044
1041
|
default: string;
|
|
1045
1042
|
};
|
|
1046
1043
|
}>, {
|
|
@@ -1063,7 +1060,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1063
1060
|
default: string;
|
|
1064
1061
|
};
|
|
1065
1062
|
effect: {
|
|
1066
|
-
type: PropType<
|
|
1063
|
+
type: PropType< JCTooltipEffectType>;
|
|
1067
1064
|
default: string;
|
|
1068
1065
|
};
|
|
1069
1066
|
lines: {
|
|
@@ -1080,7 +1077,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1080
1077
|
default: number;
|
|
1081
1078
|
};
|
|
1082
1079
|
placement: {
|
|
1083
|
-
type: PropType<
|
|
1080
|
+
type: PropType< JCTooltipPlacementType>;
|
|
1084
1081
|
default: string;
|
|
1085
1082
|
};
|
|
1086
1083
|
}>> & Readonly<{}>, {
|
|
@@ -1098,15 +1095,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1098
1095
|
default: string;
|
|
1099
1096
|
};
|
|
1100
1097
|
placement: {
|
|
1101
|
-
type: PropType<
|
|
1098
|
+
type: PropType< JCTooltipPlacementType>;
|
|
1102
1099
|
default: string;
|
|
1103
1100
|
};
|
|
1104
1101
|
effect: {
|
|
1105
|
-
type: PropType<
|
|
1102
|
+
type: PropType< JCTooltipEffectType>;
|
|
1106
1103
|
default: string;
|
|
1107
1104
|
};
|
|
1108
1105
|
trigger: {
|
|
1109
|
-
type: PropType<
|
|
1106
|
+
type: PropType< JCTooltipTriggerType>;
|
|
1110
1107
|
default: string;
|
|
1111
1108
|
};
|
|
1112
1109
|
disabled: {
|
|
@@ -1137,33 +1134,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1137
1134
|
type: BooleanConstructor;
|
|
1138
1135
|
default: undefined;
|
|
1139
1136
|
};
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
handleMouseEnter: () => void;
|
|
1148
|
-
handleMouseLeave: () => void;
|
|
1149
|
-
handleClick: () => void;
|
|
1150
|
-
handlePopperMouseEnter: () => void;
|
|
1151
|
-
handlePopperMouseLeave: () => void;
|
|
1152
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly< ExtractPropTypes<{
|
|
1137
|
+
showOnFocus: {
|
|
1138
|
+
type: BooleanConstructor;
|
|
1139
|
+
default: boolean;
|
|
1140
|
+
};
|
|
1141
|
+
}>, () => VNode<RendererNode, RendererElement, {
|
|
1142
|
+
[key: string]: any;
|
|
1143
|
+
}>[] | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly< ExtractPropTypes<{
|
|
1153
1144
|
content: {
|
|
1154
1145
|
type: StringConstructor;
|
|
1155
1146
|
default: string;
|
|
1156
1147
|
};
|
|
1157
1148
|
placement: {
|
|
1158
|
-
type: PropType<
|
|
1149
|
+
type: PropType< JCTooltipPlacementType>;
|
|
1159
1150
|
default: string;
|
|
1160
1151
|
};
|
|
1161
1152
|
effect: {
|
|
1162
|
-
type: PropType<
|
|
1153
|
+
type: PropType< JCTooltipEffectType>;
|
|
1163
1154
|
default: string;
|
|
1164
1155
|
};
|
|
1165
1156
|
trigger: {
|
|
1166
|
-
type: PropType<
|
|
1157
|
+
type: PropType< JCTooltipTriggerType>;
|
|
1167
1158
|
default: string;
|
|
1168
1159
|
};
|
|
1169
1160
|
disabled: {
|
|
@@ -1194,6 +1185,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1194
1185
|
type: BooleanConstructor;
|
|
1195
1186
|
default: undefined;
|
|
1196
1187
|
};
|
|
1188
|
+
showOnFocus: {
|
|
1189
|
+
type: BooleanConstructor;
|
|
1190
|
+
default: boolean;
|
|
1191
|
+
};
|
|
1197
1192
|
}>> & Readonly<{
|
|
1198
1193
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1199
1194
|
}>, {
|
|
@@ -1208,6 +1203,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1208
1203
|
closeDelay: number;
|
|
1209
1204
|
maxWidth: string;
|
|
1210
1205
|
offset: number;
|
|
1206
|
+
showOnFocus: boolean;
|
|
1211
1207
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1212
1208
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1213
1209
|
QTree: ComponentConstructor<QTree>;
|
|
@@ -44,7 +44,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
44
44
|
};
|
|
45
45
|
}>> & Readonly<{}>, {
|
|
46
46
|
options: {};
|
|
47
|
-
labels: unknown[];
|
|
48
47
|
height: number;
|
|
48
|
+
labels: unknown[];
|
|
49
49
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
50
50
|
export default _default;
|
|
@@ -43,7 +43,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
43
43
|
};
|
|
44
44
|
}>> & Readonly<{}>, {
|
|
45
45
|
options: {};
|
|
46
|
-
labels: unknown[];
|
|
47
46
|
height: number;
|
|
47
|
+
labels: unknown[];
|
|
48
48
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
49
49
|
export default _default;
|
|
@@ -48,7 +48,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
48
48
|
};
|
|
49
49
|
}>> & Readonly<{}>, {
|
|
50
50
|
options: {};
|
|
51
|
-
labels: unknown[];
|
|
52
51
|
height: number;
|
|
52
|
+
labels: unknown[];
|
|
53
53
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
54
54
|
export default _default;
|
|
@@ -50,8 +50,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
50
50
|
};
|
|
51
51
|
}>> & Readonly<{}>, {
|
|
52
52
|
options: {};
|
|
53
|
-
labels: unknown[];
|
|
54
53
|
height: number;
|
|
54
|
+
labels: unknown[];
|
|
55
55
|
unitName: string;
|
|
56
56
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
57
57
|
export default _default;
|
|
@@ -54,7 +54,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
54
54
|
};
|
|
55
55
|
}>> & Readonly<{}>, {
|
|
56
56
|
options: {};
|
|
57
|
-
labels: unknown[];
|
|
58
57
|
height: number;
|
|
58
|
+
labels: unknown[];
|
|
59
59
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
60
60
|
export default _default;
|