rtcpts 0.0.39 → 0.0.41

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.
Files changed (50) hide show
  1. package/dist/components/j-c-copy/types.d.ts +39 -0
  2. package/dist/components/j-c-duo-list-editor/types.d.ts +109 -0
  3. package/dist/components/j-c-editable-proxy/types.d.ts +106 -0
  4. package/dist/components/j-c-fallback/types.d.ts +57 -0
  5. package/dist/components/j-c-foldable-list/types.d.ts +55 -0
  6. package/dist/components/j-c-format-lookup/types.d.ts +67 -0
  7. package/dist/components/j-c-list-editor/types.d.ts +77 -0
  8. package/dist/components/j-c-more-menu/types.d.ts +147 -0
  9. package/dist/components/j-c-nested-select/types.d.ts +1 -0
  10. package/dist/components/j-c-permission/types.d.ts +62 -0
  11. package/dist/components/j-c-table/types.d.ts +67 -9
  12. package/dist/components/j-c-tabs/types.d.ts +112 -0
  13. package/dist/components/j-c-title-line/types.d.ts +33 -0
  14. package/dist/components/j-c-tooltip/types.d.ts +7 -0
  15. package/dist/components/j-c-tooltip-ellipsis/types.d.ts +1 -0
  16. package/dist/components/j-c-tree/types.d.ts +75 -0
  17. package/dist/components/j-c-tree-select/types.d.ts +132 -0
  18. package/dist/components/j-ch-bar/types.d.ts +13 -1
  19. package/dist/components/j-ch-bar-line/types.d.ts +1 -0
  20. package/dist/components/j-ch-bubble/types.d.ts +1 -0
  21. package/dist/components/j-ch-line/types.d.ts +1 -0
  22. package/dist/components/j-ch-pie-doughnut/types.d.ts +1 -0
  23. package/dist/components/j-ch-radar/types.d.ts +1 -0
  24. package/dist/components/j-q-autocomplete/types.d.ts +85 -0
  25. package/dist/components/j-q-button/types.d.ts +2 -0
  26. package/dist/components/j-q-button-dropdown/types.d.ts +2 -0
  27. package/dist/components/j-q-confirm/types.d.ts +2 -0
  28. package/dist/components/j-q-date/types.d.ts +145 -0
  29. package/dist/components/j-q-date-month/types.d.ts +94 -0
  30. package/dist/components/j-q-date-year/types.d.ts +76 -0
  31. package/dist/components/j-q-datetime/types.d.ts +145 -0
  32. package/dist/components/j-q-detail-list/types.d.ts +101 -0
  33. package/dist/components/j-q-dialog/types.d.ts +138 -0
  34. package/dist/components/j-q-file/types.d.ts +72 -0
  35. package/dist/components/j-q-form-label/types.d.ts +66 -0
  36. package/dist/components/j-q-input/types.d.ts +139 -0
  37. package/dist/components/j-q-input-recognize/types.d.ts +133 -0
  38. package/dist/components/j-q-new-value/types.d.ts +107 -0
  39. package/dist/components/j-q-option-group/types.d.ts +109 -0
  40. package/dist/components/j-q-pagination/types.d.ts +85 -0
  41. package/dist/components/j-q-popover/types.d.ts +50 -0
  42. package/dist/components/j-q-search-form/types.d.ts +80 -0
  43. package/dist/components/j-q-select/types.d.ts +196 -0
  44. package/dist/components/j-q-table/types.d.ts +215 -0
  45. package/dist/components/j-q-tooltip/types.d.ts +41 -0
  46. package/dist/global.d.ts +319 -9
  47. package/dist/index.css +1 -1
  48. package/dist/rtcpt.cjs.js +1 -1
  49. package/dist/rtcpt.es.js +1264 -1259
  50. package/package.json +1 -1
@@ -0,0 +1,215 @@
1
+ import { DefineComponent, SlotsType } from 'vue';
2
+ import { QTableColumn } from 'quasar';
3
+ /** 默认每页行数 */
4
+ export declare const DEFAULT_ROWS_PER_PAGE: 20;
5
+ /** 每页行数选项 */
6
+ export declare const ROWS_PER_PAGE_OPTIONS: readonly [20, 50, 100, 200];
7
+ /** 选择条件接口 */
8
+ export interface SelectionConditions {
9
+ /** 禁用项选择判断函数 */
10
+ itemSelectDisable: (data: any) => boolean;
11
+ }
12
+ /** 表格列配置接口 */
13
+ export interface TableColumn extends Partial<QTableColumn> {
14
+ /** 列名 */
15
+ name: string;
16
+ /** 是否可点击 */
17
+ onClick?: (row: any) => void;
18
+ /** 是否可点击判断函数 */
19
+ clickable?: (value: any, row: any) => boolean;
20
+ /** 格式化函数 */
21
+ format?: (value: any) => any;
22
+ /** 是否限制宽度 */
23
+ limitWidth?: boolean;
24
+ /** 单元格最大宽度 */
25
+ cellMaxWidth?: number;
26
+ /** 单元格小屏幕最大宽度 */
27
+ cellMaxWidthSmall?: number;
28
+ /** 是否换行显示 */
29
+ whiteSpace?: number | boolean;
30
+ [key: string]: any;
31
+ }
32
+ /** JQTable Props 接口 */
33
+ export interface JQTableProps {
34
+ /**
35
+ * 是否自动高度
36
+ * @default false
37
+ */
38
+ autoHeight?: boolean;
39
+ /**
40
+ * 切换页面时是否自动滚动
41
+ * @default true
42
+ */
43
+ autoScrollOnChangePage?: boolean;
44
+ /**
45
+ * 单元格最大宽度
46
+ * @default 500
47
+ */
48
+ cellMaxWidth?: number;
49
+ /**
50
+ * 单元格小屏幕最大宽度
51
+ * @default 300
52
+ */
53
+ cellMaxWidthSmall?: number;
54
+ /**
55
+ * 列配置数组
56
+ * @default []
57
+ */
58
+ columns?: any[];
59
+ /**
60
+ * 是否紧凑模式
61
+ * @default false
62
+ */
63
+ dense?: boolean;
64
+ /**
65
+ * 是否扁平化
66
+ * @default true
67
+ */
68
+ flat?: boolean;
69
+ /**
70
+ * 是否隐藏分页
71
+ * @default false
72
+ */
73
+ hidePagination?: boolean;
74
+ /**
75
+ * 是否加载中
76
+ * @default false
77
+ */
78
+ loading?: boolean;
79
+ /**
80
+ * 行键名
81
+ * @default 'id'
82
+ */
83
+ rowKey?: string | number;
84
+ /**
85
+ * 行数据数组
86
+ * @default []
87
+ */
88
+ rows?: any[];
89
+ /**
90
+ * 选中的行数据
91
+ * @default null
92
+ */
93
+ selected?: any[];
94
+ /**
95
+ * 表头样式类
96
+ */
97
+ tableHeaderClass?: string | object | any[];
98
+ /**
99
+ * 表格样式类
100
+ */
101
+ tableClass?: string | object | any[];
102
+ /**
103
+ * 选择条件
104
+ * @default null
105
+ */
106
+ selectionConditions?: SelectionConditions | null;
107
+ }
108
+ /** JQTable Emits 接口 */
109
+ export interface JQTableEmits {
110
+ [key: string]: any;
111
+ /**
112
+ * 更新选中项事件
113
+ * @param value 选中的行数据
114
+ */
115
+ (e: 'update:selected', value: any[]): void;
116
+ /**
117
+ * 切换页码事件
118
+ * @param paginationInfo 分页信息
119
+ */
120
+ (e: 'changeNum', paginationInfo: any): void;
121
+ /**
122
+ * 切换每页数量事件
123
+ * @param paginationInfo 分页信息
124
+ */
125
+ (e: 'changeSize', paginationInfo: any): void;
126
+ /**
127
+ * 分页变化事件
128
+ * @param data 分页数据
129
+ */
130
+ (e: 'paginationChange', data: any): void;
131
+ }
132
+ /** JQTable Slots 接口 */
133
+ export interface JQTableSlots {
134
+ /** 顶部内容插槽 */
135
+ top?: () => any;
136
+ /** 表头插槽 */
137
+ header?: (props: any) => any;
138
+ /** 表体插槽 */
139
+ body?: (props: any) => any;
140
+ /** 附加内容插槽 */
141
+ append?: () => any;
142
+ /** 动态表头单元格插槽 */
143
+ [key: `header-cell-${string}`]: (props: any) => any;
144
+ /** 动态表体单元格插槽 */
145
+ [key: `body-cell-${string}`]: (props: any) => any;
146
+ }
147
+ /** JQTable 暴露的方法和属性 */
148
+ export interface JQTableExpose {
149
+ /**
150
+ * 表格引用
151
+ */
152
+ JQTableRef: any;
153
+ /**
154
+ * 分页信息
155
+ */
156
+ paginationInfo: any;
157
+ /**
158
+ * 获取分页参数
159
+ */
160
+ getPaginationParam: () => any;
161
+ /**
162
+ * 获取当前页码
163
+ */
164
+ getNum: () => number;
165
+ /**
166
+ * 设置当前页码
167
+ * @param num 页码
168
+ */
169
+ setNum: (num: number) => void;
170
+ /**
171
+ * 设置总条数
172
+ * @param total 总数
173
+ */
174
+ setTotal: (total: number) => void;
175
+ /**
176
+ * 设置每页数量
177
+ * @param size 每页数量
178
+ */
179
+ setSize: (size: number) => void;
180
+ /**
181
+ * 滚动到顶部
182
+ */
183
+ scrollTop: () => void;
184
+ /**
185
+ * 每页行数选项常量
186
+ */
187
+ ROWS_PER_PAGE_OPTIONS: readonly number[];
188
+ /**
189
+ * 默认每页行数常量
190
+ */
191
+ DEFAULT_ROWS_PER_PAGE: number;
192
+ }
193
+ /** JQTable 组件类型定义 */
194
+ export type JQTableComponent = DefineComponent<JQTableProps, JQTableExpose, {}, {}, {}, {}, SlotsType<JQTableSlots>, {
195
+ 'update:selected': (value: any[]) => true;
196
+ changeNum: (paginationInfo: any) => true;
197
+ changeSize: (paginationInfo: any) => true;
198
+ paginationChange: (data: any) => true;
199
+ }>;
200
+ /** JQTable 实例类型 - 用于 ref 类型定义 */
201
+ export type JQTableInstance = InstanceType<JQTableComponent> & JQTableExpose;
202
+ /**
203
+ * 用于模板中的 Props 类型定义
204
+ * 包含事件处理器
205
+ */
206
+ export interface JQTableTemplateProps extends JQTableProps {
207
+ /** 更新选中项事件处理器 */
208
+ 'onUpdate:selected'?: (value: any[]) => void;
209
+ /** 切换页码事件处理器 */
210
+ onChangeNum?: (paginationInfo: any) => void;
211
+ /** 切换每页数量事件处理器 */
212
+ onChangeSize?: (paginationInfo: any) => void;
213
+ /** 分页变化事件处理器 */
214
+ onPaginationChange?: (data: any) => void;
215
+ }
@@ -0,0 +1,41 @@
1
+ import { DefineComponent, SlotsType } from 'vue';
2
+ /** JQTooltip Props 接口 */
3
+ export interface JQTooltipProps {
4
+ /**
5
+ * 显示内容
6
+ * @default ''
7
+ */
8
+ content?: string;
9
+ /**
10
+ * 内容样式
11
+ * @default 'width:100%'
12
+ */
13
+ contentStyle?: string;
14
+ /**
15
+ * 最大行数(超过显示省略号)
16
+ * @default 1
17
+ */
18
+ lines?: number;
19
+ }
20
+ /** JQTooltip Emits 接口 */
21
+ export interface JQTooltipEmits {
22
+ [key: string]: any;
23
+ }
24
+ /** JQTooltip Slots 接口 */
25
+ export interface JQTooltipSlots {
26
+ [key: string]: any;
27
+ /** 默认插槽(暂无内容) */
28
+ default?: () => any;
29
+ }
30
+ /** JQTooltip 暴露的方法和属性 */
31
+ export interface JQTooltipExpose {
32
+ }
33
+ /** JQTooltip 组件类型定义 */
34
+ export type JQTooltipComponent = DefineComponent<JQTooltipProps, JQTooltipExpose, {}, {}, {}, {}, SlotsType<JQTooltipSlots>, {}>;
35
+ /** JQTooltip 实例类型 - 用于 ref 类型定义 */
36
+ export type JQTooltipInstance = InstanceType<JQTooltipComponent> & JQTooltipExpose;
37
+ /**
38
+ * 用于模板中的 Props 类型定义
39
+ */
40
+ export interface JQTooltipTemplateProps extends JQTooltipProps {
41
+ }
package/dist/global.d.ts CHANGED
@@ -1,25 +1,110 @@
1
- import { JChBarProps, JChBarSlots } from './components/j-ch-bar/types';
1
+ import { JCCopyTemplateProps, JCCopySlots, JCCopyEmits } from './components/j-c-copy/types';
2
+ import { JCDuoListEditorTemplateProps, JCDuoListEditorSlots, JCDuoListEditorEmits } from './components/j-c-duo-list-editor/types';
3
+ import { JCEditableProxyTemplateProps, JCEditableProxySlots, JCEditableProxyEmits } from './components/j-c-editable-proxy/types';
4
+ import { JCFallbackTemplateProps, JCFallbackSlots, JCFallbackEmits } from './components/j-c-fallback/types';
5
+ import { JCFoldableListTemplateProps, JCFoldableListSlots, JCFoldableListEmits } from './components/j-c-foldable-list/types';
6
+ import { JCFormatLookupTemplateProps, JCFormatLookupSlots, JCFormatLookupEmits } from './components/j-c-format-lookup/types';
7
+ import { JChBarTemplateProps, JChBarSlots, JChBarEmits } from './components/j-ch-bar/types';
2
8
  import { JChBarLineProps, JChBarLineSlots } from './components/j-ch-bar-line/types';
3
9
  import { JChBubbleProps, JChBubbleSlots } from './components/j-ch-bubble/types';
4
10
  import { JChLineProps, JChLineSlots } from './components/j-ch-line/types';
5
11
  import { JChPieDoughnutProps, JChPieDoughnutSlots } from './components/j-ch-pie-doughnut/types';
6
12
  import { JChRadarProps, JChRadarSlots } from './components/j-ch-radar/types';
13
+ import { JCListEditorTemplateProps, JCListEditorSlots, JCListEditorEmits } from './components/j-c-list-editor/types';
7
14
  import { JCNestedSelectProps, JCNestedSelectEmits } from './components/j-c-nested-select/types';
8
- import { JCTableProps } from './components/j-c-table/types';
9
- import { JCTooltipProps, JCTooltipSlots, JCTooltipEmits } from './components/j-c-tooltip/types';
15
+ import { JCPermissionTemplateProps, JCPermissionSlots, JCPermissionEmits } from './components/j-c-permission/types';
16
+ import { JCTableTemplateProps, JCTableSlots, JCTableEmits } from './components/j-c-table/types';
17
+ import { JCTabsTemplateProps, JCTabsSlots, JCTabsEmits } from './components/j-c-tabs/types';
18
+ import { JCTitleLineTemplateProps, JCTitleLineSlots, JCTitleLineEmits } from './components/j-c-title-line/types';
19
+ import { JCTooltipTemplateProps, JCTooltipSlots, JCTooltipEmits } from './components/j-c-tooltip/types';
10
20
  import { JCTooltipEllipsisProps, JCTooltipEllipsisSlots } from './components/j-c-tooltip-ellipsis/types';
21
+ import { JCTreeTemplateProps, JCTreeSlots, JCTreeEmits } from './components/j-c-tree/types';
22
+ import { JCTreeSelectTemplateProps, JCTreeSelectSlots, JCTreeSelectEmits } from './components/j-c-tree-select/types';
23
+ import { JQAutocompleteTemplateProps, JQAutocompleteSlots, JQAutocompleteEmits } from './components/j-q-autocomplete/types';
11
24
  import { JQButtonTemplateProps, JQButtonSlots, JQButtonEmits } from './components/j-q-button/types';
12
25
  import { JQButtonDropdownProps, JQButtonDropdownSlots, JQButtonDropdownEmits } from './components/j-q-button-dropdown/types';
13
26
  import { JQConfirmTemplateProps, JQConfirmSlots, JQConfirmEmits } from './components/j-q-confirm/types';
27
+ import { JQDateTemplateProps, JQDateSlots, JQDateEmits } from './components/j-q-date/types';
28
+ import { JQDateMonthTemplateProps, JQDateMonthSlots, JQDateMonthEmits } from './components/j-q-date-month/types';
29
+ import { JQDateTimeTemplateProps, JQDateTimeSlots, JQDateTimeEmits } from './components/j-q-datetime/types';
30
+ import { JQDateYearTemplateProps, JQDateYearSlots, JQDateYearEmits } from './components/j-q-date-year/types';
31
+ import { JQDetailListTemplateProps, JQDetailListSlots, JQDetailListEmits } from './components/j-q-detail-list/types';
32
+ import { JQDialogTemplateProps, JQDialogSlots, JQDialogEmits } from './components/j-q-dialog/types';
33
+ import { JQFileTemplateProps, JQFileSlots, JQFileEmits } from './components/j-q-file/types';
34
+ import { JQFormLabelTemplateProps, JQFormLabelSlots, JQFormLabelEmits } from './components/j-q-form-label/types';
35
+ import { JQInputTemplateProps, JQInputSlots, JQInputEmits } from './components/j-q-input/types';
36
+ import { JQInputRecognizeTemplateProps, JQInputRecognizeSlots, JQInputRecognizeEmits } from './components/j-q-input-recognize/types';
37
+ import { JQNewValueTemplateProps, JQNewValueSlots, JQNewValueEmits } from './components/j-q-new-value/types';
38
+ import { JQOptionGroupTemplateProps, JQOptionGroupSlots, JQOptionGroupEmits } from './components/j-q-option-group/types';
39
+ import { JQPaginationTemplateProps, JQPaginationSlots, JQPaginationEmits } from './components/j-q-pagination/types';
40
+ import { JQPopoverTemplateProps, JQPopoverSlots, JQPopoverEmits } from './components/j-q-popover/types';
41
+ import { JQSearchFormTemplateProps, JQSearchFormSlots, JQSearchFormEmits } from './components/j-q-search-form/types';
42
+ import { JQSelectTemplateProps, JQSelectSlots, JQSelectEmits } from './components/j-q-select/types';
43
+ import { JQTableTemplateProps, JQTableSlots, JQTableEmits } from './components/j-q-table/types';
44
+ import { JQTooltipTemplateProps, JQTooltipSlots, JQTooltipEmits } from './components/j-q-tooltip/types';
14
45
  declare module 'vue' {
15
46
  export interface GlobalComponents {
47
+ /**
48
+ * JCCopy - JCCopy 组件
49
+ */
50
+ JCCopy: new () => {
51
+ $props: JCCopyTemplateProps;
52
+ $slots: JCCopySlots;
53
+ $emit: JCCopyEmits;
54
+ };
55
+
56
+ /**
57
+ * JCDuoListEditor - JCDuoListEditor 组件
58
+ */
59
+ JCDuoListEditor: new () => {
60
+ $props: JCDuoListEditorTemplateProps;
61
+ $slots: JCDuoListEditorSlots;
62
+ $emit: JCDuoListEditorEmits;
63
+ };
64
+
65
+ /**
66
+ * JCEditableProxy - JCEditableProxy 组件
67
+ */
68
+ JCEditableProxy: new () => {
69
+ $props: JCEditableProxyTemplateProps;
70
+ $slots: JCEditableProxySlots;
71
+ $emit: JCEditableProxyEmits;
72
+ };
73
+
74
+ /**
75
+ * JCFallback - JCFallback 组件
76
+ */
77
+ JCFallback: new () => {
78
+ $props: JCFallbackTemplateProps;
79
+ $slots: JCFallbackSlots;
80
+ $emit: JCFallbackEmits;
81
+ };
82
+
83
+ /**
84
+ * JCFoldableList - JCFoldableList 组件
85
+ */
86
+ JCFoldableList: new () => {
87
+ $props: JCFoldableListTemplateProps;
88
+ $slots: JCFoldableListSlots;
89
+ $emit: JCFoldableListEmits;
90
+ };
91
+
92
+ /**
93
+ * JCFormatLookup - JCFormatLookup 组件
94
+ */
95
+ JCFormatLookup: new () => {
96
+ $props: JCFormatLookupTemplateProps;
97
+ $slots: JCFormatLookupSlots;
98
+ $emit: JCFormatLookupEmits;
99
+ };
100
+
16
101
  /**
17
102
  * JChBar - JChBar 组件
18
103
  */
19
104
  JChBar: new () => {
20
- $props: JChBarProps;
105
+ $props: JChBarTemplateProps;
21
106
  $slots: JChBarSlots;
22
- $emit: {};
107
+ $emit: JChBarEmits;
23
108
  };
24
109
 
25
110
  /**
@@ -67,6 +152,15 @@ declare module 'vue' {
67
152
  $emit: {};
68
153
  };
69
154
 
155
+ /**
156
+ * JCListEditor - JCListEditor 组件
157
+ */
158
+ JCListEditor: new () => {
159
+ $props: JCListEditorTemplateProps;
160
+ $slots: JCListEditorSlots;
161
+ $emit: JCListEditorEmits;
162
+ };
163
+
70
164
  /**
71
165
  * JCNestedSelect - JCNestedSelect 组件
72
166
  */
@@ -76,20 +170,47 @@ declare module 'vue' {
76
170
  $emit: JCNestedSelectEmits;
77
171
  };
78
172
 
173
+ /**
174
+ * JCPermission - JCPermission 组件
175
+ */
176
+ JCPermission: new () => {
177
+ $props: JCPermissionTemplateProps;
178
+ $slots: JCPermissionSlots;
179
+ $emit: JCPermissionEmits;
180
+ };
181
+
79
182
  /**
80
183
  * JCTable - JCTable 组件
81
184
  */
82
185
  JCTable: new () => {
83
- $props: JCTableProps;
84
- $slots: {};
85
- $emit: {};
186
+ $props: JCTableTemplateProps;
187
+ $slots: JCTableSlots;
188
+ $emit: JCTableEmits;
189
+ };
190
+
191
+ /**
192
+ * JCTabs - JCTabs 组件
193
+ */
194
+ JCTabs: new () => {
195
+ $props: JCTabsTemplateProps;
196
+ $slots: JCTabsSlots;
197
+ $emit: JCTabsEmits;
198
+ };
199
+
200
+ /**
201
+ * JCTitleLine - JCTitleLine 组件
202
+ */
203
+ JCTitleLine: new () => {
204
+ $props: JCTitleLineTemplateProps;
205
+ $slots: JCTitleLineSlots;
206
+ $emit: JCTitleLineEmits;
86
207
  };
87
208
 
88
209
  /**
89
210
  * JCTooltip - JCTooltip 组件
90
211
  */
91
212
  JCTooltip: new () => {
92
- $props: JCTooltipProps;
213
+ $props: JCTooltipTemplateProps;
93
214
  $slots: JCTooltipSlots;
94
215
  $emit: JCTooltipEmits;
95
216
  };
@@ -103,6 +224,33 @@ declare module 'vue' {
103
224
  $emit: {};
104
225
  };
105
226
 
227
+ /**
228
+ * JCTree - JCTree 组件
229
+ */
230
+ JCTree: new () => {
231
+ $props: JCTreeTemplateProps;
232
+ $slots: JCTreeSlots;
233
+ $emit: JCTreeEmits;
234
+ };
235
+
236
+ /**
237
+ * JCTreeSelect - JCTreeSelect 组件
238
+ */
239
+ JCTreeSelect: new () => {
240
+ $props: JCTreeSelectTemplateProps;
241
+ $slots: JCTreeSelectSlots;
242
+ $emit: JCTreeSelectEmits;
243
+ };
244
+
245
+ /**
246
+ * JQAutocomplete - JQAutocomplete 组件
247
+ */
248
+ JQAutocomplete: new () => {
249
+ $props: JQAutocompleteTemplateProps;
250
+ $slots: JQAutocompleteSlots;
251
+ $emit: JQAutocompleteEmits;
252
+ };
253
+
106
254
  /**
107
255
  * JQButton - JQButton 组件
108
256
  */
@@ -129,6 +277,168 @@ declare module 'vue' {
129
277
  $slots: JQConfirmSlots;
130
278
  $emit: JQConfirmEmits;
131
279
  };
280
+
281
+ /**
282
+ * JQDate - JQDate 组件
283
+ */
284
+ JQDate: new () => {
285
+ $props: JQDateTemplateProps;
286
+ $slots: JQDateSlots;
287
+ $emit: JQDateEmits;
288
+ };
289
+
290
+ /**
291
+ * JQDateMonth - JQDateMonth 组件
292
+ */
293
+ JQDateMonth: new () => {
294
+ $props: JQDateMonthTemplateProps;
295
+ $slots: JQDateMonthSlots;
296
+ $emit: JQDateMonthEmits;
297
+ };
298
+
299
+ /**
300
+ * JQDatetime - JQDatetime 组件
301
+ */
302
+ JQDatetime: new () => {
303
+ $props: JQDateTimeTemplateProps;
304
+ $slots: JQDateTimeSlots;
305
+ $emit: JQDateTimeEmits;
306
+ };
307
+
308
+ /**
309
+ * JQDateYear - JQDateYear 组件
310
+ */
311
+ JQDateYear: new () => {
312
+ $props: JQDateYearTemplateProps;
313
+ $slots: JQDateYearSlots;
314
+ $emit: JQDateYearEmits;
315
+ };
316
+
317
+ /**
318
+ * JQDetailList - JQDetailList 组件
319
+ */
320
+ JQDetailList: new () => {
321
+ $props: JQDetailListTemplateProps;
322
+ $slots: JQDetailListSlots;
323
+ $emit: JQDetailListEmits;
324
+ };
325
+
326
+ /**
327
+ * JQDialog - JQDialog 组件
328
+ */
329
+ JQDialog: new () => {
330
+ $props: JQDialogTemplateProps;
331
+ $slots: JQDialogSlots;
332
+ $emit: JQDialogEmits;
333
+ };
334
+
335
+ /**
336
+ * JQFile - JQFile 组件
337
+ */
338
+ JQFile: new () => {
339
+ $props: JQFileTemplateProps;
340
+ $slots: JQFileSlots;
341
+ $emit: JQFileEmits;
342
+ };
343
+
344
+ /**
345
+ * JQFormLabel - JQFormLabel 组件
346
+ */
347
+ JQFormLabel: new () => {
348
+ $props: JQFormLabelTemplateProps;
349
+ $slots: JQFormLabelSlots;
350
+ $emit: JQFormLabelEmits;
351
+ };
352
+
353
+ /**
354
+ * JQInput - JQInput 组件
355
+ */
356
+ JQInput: new () => {
357
+ $props: JQInputTemplateProps;
358
+ $slots: JQInputSlots;
359
+ $emit: JQInputEmits;
360
+ };
361
+
362
+ /**
363
+ * JQInputRecognize - JQInputRecognize 组件
364
+ */
365
+ JQInputRecognize: new () => {
366
+ $props: JQInputRecognizeTemplateProps;
367
+ $slots: JQInputRecognizeSlots;
368
+ $emit: JQInputRecognizeEmits;
369
+ };
370
+
371
+ /**
372
+ * JQNewValue - JQNewValue 组件
373
+ */
374
+ JQNewValue: new () => {
375
+ $props: JQNewValueTemplateProps;
376
+ $slots: JQNewValueSlots;
377
+ $emit: JQNewValueEmits;
378
+ };
379
+
380
+ /**
381
+ * JQOptionGroup - JQOptionGroup 组件
382
+ */
383
+ JQOptionGroup: new () => {
384
+ $props: JQOptionGroupTemplateProps;
385
+ $slots: JQOptionGroupSlots;
386
+ $emit: JQOptionGroupEmits;
387
+ };
388
+
389
+ /**
390
+ * JQPagination - JQPagination 组件
391
+ */
392
+ JQPagination: new () => {
393
+ $props: JQPaginationTemplateProps;
394
+ $slots: JQPaginationSlots;
395
+ $emit: JQPaginationEmits;
396
+ };
397
+
398
+ /**
399
+ * JQPopover - JQPopover 组件
400
+ */
401
+ JQPopover: new () => {
402
+ $props: JQPopoverTemplateProps;
403
+ $slots: JQPopoverSlots;
404
+ $emit: JQPopoverEmits;
405
+ };
406
+
407
+ /**
408
+ * JQSearchForm - JQSearchForm 组件
409
+ */
410
+ JQSearchForm: new () => {
411
+ $props: JQSearchFormTemplateProps;
412
+ $slots: JQSearchFormSlots;
413
+ $emit: JQSearchFormEmits;
414
+ };
415
+
416
+ /**
417
+ * JQSelect - JQSelect 组件
418
+ */
419
+ JQSelect: new () => {
420
+ $props: JQSelectTemplateProps;
421
+ $slots: JQSelectSlots;
422
+ $emit: JQSelectEmits;
423
+ };
424
+
425
+ /**
426
+ * JQTable - JQTable 组件
427
+ */
428
+ JQTable: new () => {
429
+ $props: JQTableTemplateProps;
430
+ $slots: JQTableSlots;
431
+ $emit: JQTableEmits;
432
+ };
433
+
434
+ /**
435
+ * JQTooltip - JQTooltip 组件
436
+ */
437
+ JQTooltip: new () => {
438
+ $props: JQTooltipTemplateProps;
439
+ $slots: JQTooltipSlots;
440
+ $emit: JQTooltipEmits;
441
+ };
132
442
  }
133
443
  }
134
444