clickgo 5.10.0 → 5.10.2
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/app/demo.cga +0 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/jodit.cgc +0 -0
- package/dist/control/waterfall.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/form.d.ts +19 -1
- package/doc/clickgo-rag.md +184 -75
- package/package.json +1 -1
package/doc/clickgo-rag.md
CHANGED
|
@@ -6570,6 +6570,18 @@ SVG 内容或 URL 地址。
|
|
|
6570
6570
|
|
|
6571
6571
|
最大宽度,默认 400。
|
|
6572
6572
|
|
|
6573
|
+
#### direction
|
|
6574
|
+
|
|
6575
|
+
`'top'` | `'right'` | `'bottom'` | `'left'`
|
|
6576
|
+
|
|
6577
|
+
提示显示方向,默认 `top`。
|
|
6578
|
+
|
|
6579
|
+
#### immediate
|
|
6580
|
+
|
|
6581
|
+
`boolean` | `string`
|
|
6582
|
+
|
|
6583
|
+
是否在鼠标移出后立刻隐藏,默认 false。开启后提示层会禁用鼠标事件,无法再将鼠标快速移入提示层。
|
|
6584
|
+
|
|
6573
6585
|
#### type
|
|
6574
6586
|
|
|
6575
6587
|
`'default'` | `'primary'` | `'info'` | `'warning'` | `'danger'` | `'cg'`
|
|
@@ -6590,17 +6602,26 @@ SVG 内容或 URL 地址。
|
|
|
6590
6602
|
|
|
6591
6603
|
### 样式
|
|
6592
6604
|
|
|
6593
|
-
|
|
6605
|
+
提示框使用绝对定位,悬浮在触发元素附近。可通过 `direction` 指定显示在上、右、下、左四个方向,空间不足时会自动翻转到对侧方向。
|
|
6594
6606
|
|
|
6595
6607
|
支持多种类型(default/primary/info/warning/danger/cg)对应不同的背景色。朴素模式下显示为浅色背景深色文字。
|
|
6596
6608
|
|
|
6597
|
-
|
|
6609
|
+
提示框具有淡入淡出的显示/隐藏动画,并带有对应方向的箭头。开启 `immediate` 后会在移出触发元素时立刻隐藏,并禁用提示层的鼠标交互。
|
|
6598
6610
|
|
|
6599
6611
|
### 示例
|
|
6600
6612
|
|
|
6601
6613
|
```xml
|
|
6602
|
-
<
|
|
6603
|
-
<
|
|
6614
|
+
<tip label="This is a tip">
|
|
6615
|
+
<button>Hover me</button>
|
|
6616
|
+
</tip>
|
|
6617
|
+
|
|
6618
|
+
<tip label="Right tip" direction="right">
|
|
6619
|
+
<button>Hover me</button>
|
|
6620
|
+
</tip>
|
|
6621
|
+
|
|
6622
|
+
<tip label="Immediate tip" immediate>
|
|
6623
|
+
<button>Hover me</button>
|
|
6624
|
+
</tip>
|
|
6604
6625
|
```
|
|
6605
6626
|
|
|
6606
6627
|
## title
|
|
@@ -20261,6 +20282,43 @@ Defined in: [lib/form.ts:1526](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
20261
20282
|
|
|
20262
20283
|
`void`
|
|
20263
20284
|
|
|
20285
|
+
lib/form/functions/captcha.md
|
|
20286
|
+
---
|
|
20287
|
+
|
|
20288
|
+
[**Documents for clickgo**](../../../index.md)
|
|
20289
|
+
|
|
20290
|
+
***
|
|
20291
|
+
|
|
20292
|
+
[Documents for clickgo](../../../index.md) / [lib/form](../index.md) / captcha
|
|
20293
|
+
|
|
20294
|
+
# Function: captcha()
|
|
20295
|
+
|
|
20296
|
+
> **captcha**(`current`, `opt`): `Promise`\<`false` \| [`ICaptchaResultEvent`](../../control/interfaces/ICaptchaResultEvent.md)\>
|
|
20297
|
+
|
|
20298
|
+
Defined in: [lib/form.ts:3925](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3925)
|
|
20299
|
+
|
|
20300
|
+
显示一个验证码窗口
|
|
20301
|
+
|
|
20302
|
+
## Parameters
|
|
20303
|
+
|
|
20304
|
+
### current
|
|
20305
|
+
|
|
20306
|
+
[`TCurrent`](../../core/type-aliases/TCurrent.md)
|
|
20307
|
+
|
|
20308
|
+
当前任务
|
|
20309
|
+
|
|
20310
|
+
### opt
|
|
20311
|
+
|
|
20312
|
+
[`IFormCaptchaOptions`](../interfaces/IFormCaptchaOptions.md)
|
|
20313
|
+
|
|
20314
|
+
选项
|
|
20315
|
+
|
|
20316
|
+
## Returns
|
|
20317
|
+
|
|
20318
|
+
`Promise`\<`false` \| [`ICaptchaResultEvent`](../../control/interfaces/ICaptchaResultEvent.md)\>
|
|
20319
|
+
|
|
20320
|
+
验证是否通过
|
|
20321
|
+
|
|
20264
20322
|
lib/form/functions/changeFocus.md
|
|
20265
20323
|
---
|
|
20266
20324
|
|
|
@@ -20353,7 +20411,7 @@ lib/form/functions/confirm.md
|
|
|
20353
20411
|
|
|
20354
20412
|
> **confirm**(`current`, `opt`): `Promise`\<`number` \| `boolean`\>
|
|
20355
20413
|
|
|
20356
|
-
Defined in: [lib/form.ts:
|
|
20414
|
+
Defined in: [lib/form.ts:3996](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3996)
|
|
20357
20415
|
|
|
20358
20416
|
显示一个 confirm
|
|
20359
20417
|
|
|
@@ -20526,7 +20584,7 @@ Defined in: [lib/form.ts:3845](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
20526
20584
|
|
|
20527
20585
|
[`TCurrent`](../../core/type-aliases/TCurrent.md)
|
|
20528
20586
|
|
|
20529
|
-
|
|
20587
|
+
当前任务
|
|
20530
20588
|
|
|
20531
20589
|
### opt
|
|
20532
20590
|
|
|
@@ -20580,7 +20638,7 @@ lib/form/functions/flash.md
|
|
|
20580
20638
|
|
|
20581
20639
|
> **flash**(`current`, `formId`): `Promise`\<`void`\>
|
|
20582
20640
|
|
|
20583
|
-
Defined in: [lib/form.ts:
|
|
20641
|
+
Defined in: [lib/form.ts:4093](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4093)
|
|
20584
20642
|
|
|
20585
20643
|
让窗体闪烁
|
|
20586
20644
|
|
|
@@ -20948,7 +21006,7 @@ lib/form/functions/hideLauncher.md
|
|
|
20948
21006
|
|
|
20949
21007
|
> **hideLauncher**(): `void`
|
|
20950
21008
|
|
|
20951
|
-
Defined in: [lib/form.ts:
|
|
21009
|
+
Defined in: [lib/form.ts:4130](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4130)
|
|
20952
21010
|
|
|
20953
21011
|
隐藏 launcher 界面
|
|
20954
21012
|
|
|
@@ -21046,7 +21104,7 @@ lib/form/functions/init.md
|
|
|
21046
21104
|
|
|
21047
21105
|
> **init**(): `void`
|
|
21048
21106
|
|
|
21049
|
-
Defined in: [lib/form.ts:
|
|
21107
|
+
Defined in: [lib/form.ts:4144](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4144)
|
|
21050
21108
|
|
|
21051
21109
|
## Returns
|
|
21052
21110
|
|
|
@@ -21309,7 +21367,7 @@ lib/form/functions/prompt.md
|
|
|
21309
21367
|
|
|
21310
21368
|
> **prompt**(`current`, `opt`): `Promise`\<`string`\>
|
|
21311
21369
|
|
|
21312
|
-
Defined in: [lib/form.ts:
|
|
21370
|
+
Defined in: [lib/form.ts:4033](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4033)
|
|
21313
21371
|
|
|
21314
21372
|
显示一个输入框 dialog
|
|
21315
21373
|
|
|
@@ -21637,7 +21695,7 @@ lib/form/functions/showLauncher.md
|
|
|
21637
21695
|
|
|
21638
21696
|
> **showLauncher**(): `void`
|
|
21639
21697
|
|
|
21640
|
-
Defined in: [lib/form.ts:
|
|
21698
|
+
Defined in: [lib/form.ts:4120](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4120)
|
|
21641
21699
|
|
|
21642
21700
|
显示 launcher 界面
|
|
21643
21701
|
|
|
@@ -21817,6 +21875,7 @@ lib/form/index.md
|
|
|
21817
21875
|
- [IAbstractPanelQsChangeShowEvent](interfaces/IAbstractPanelQsChangeShowEvent.md)
|
|
21818
21876
|
- [IAbstractPanelShowEvent](interfaces/IAbstractPanelShowEvent.md)
|
|
21819
21877
|
- [IForm](interfaces/IForm.md)
|
|
21878
|
+
- [IFormCaptchaOptions](interfaces/IFormCaptchaOptions.md)
|
|
21820
21879
|
- [IFormConfirmOptions](interfaces/IFormConfirmOptions.md)
|
|
21821
21880
|
- [IFormDialogOptions](interfaces/IFormDialogOptions.md)
|
|
21822
21881
|
- [IFormDialogSelectEvent](interfaces/IFormDialogSelectEvent.md)
|
|
@@ -21840,6 +21899,7 @@ lib/form/index.md
|
|
|
21840
21899
|
- [appendToPop](functions/appendToPop.md)
|
|
21841
21900
|
- [bindDrag](functions/bindDrag.md)
|
|
21842
21901
|
- [bindResize](functions/bindResize.md)
|
|
21902
|
+
- [captcha](functions/captcha.md)
|
|
21843
21903
|
- [changeFocus](functions/changeFocus.md)
|
|
21844
21904
|
- [changeFocusMaxZIndex](functions/changeFocusMaxZIndex.md)
|
|
21845
21905
|
- [close](functions/close.md)
|
|
@@ -21899,7 +21959,7 @@ lib/form/interfaces/IAbstractPanelQsChangeShowEvent.md
|
|
|
21899
21959
|
|
|
21900
21960
|
# Interface: IAbstractPanelQsChangeShowEvent
|
|
21901
21961
|
|
|
21902
|
-
Defined in: [lib/form.ts:
|
|
21962
|
+
Defined in: [lib/form.ts:4170](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4170)
|
|
21903
21963
|
|
|
21904
21964
|
AbstractPanel qsChange 显示事件
|
|
21905
21965
|
|
|
@@ -21909,7 +21969,7 @@ AbstractPanel qsChange 显示事件
|
|
|
21909
21969
|
|
|
21910
21970
|
> **detail**: `object`
|
|
21911
21971
|
|
|
21912
|
-
Defined in: [lib/form.ts:
|
|
21972
|
+
Defined in: [lib/form.ts:4171](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4171)
|
|
21913
21973
|
|
|
21914
21974
|
#### action
|
|
21915
21975
|
|
|
@@ -21950,7 +22010,7 @@ lib/form/interfaces/IAbstractPanelShowEvent.md
|
|
|
21950
22010
|
|
|
21951
22011
|
# Interface: IAbstractPanelShowEvent
|
|
21952
22012
|
|
|
21953
|
-
Defined in: [lib/form.ts:
|
|
22013
|
+
Defined in: [lib/form.ts:4155](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4155)
|
|
21954
22014
|
|
|
21955
22015
|
AbstractPanel 显示事件
|
|
21956
22016
|
|
|
@@ -21960,7 +22020,7 @@ AbstractPanel 显示事件
|
|
|
21960
22020
|
|
|
21961
22021
|
> **detail**: `object`
|
|
21962
22022
|
|
|
21963
|
-
Defined in: [lib/form.ts:
|
|
22023
|
+
Defined in: [lib/form.ts:4156](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4156)
|
|
21964
22024
|
|
|
21965
22025
|
#### action
|
|
21966
22026
|
|
|
@@ -22001,7 +22061,7 @@ lib/form/interfaces/IForm.md
|
|
|
22001
22061
|
|
|
22002
22062
|
# Interface: IForm
|
|
22003
22063
|
|
|
22004
|
-
Defined in: [lib/form.ts:
|
|
22064
|
+
Defined in: [lib/form.ts:4185](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4185)
|
|
22005
22065
|
|
|
22006
22066
|
运行时 task 中的 form 对象
|
|
22007
22067
|
|
|
@@ -22011,7 +22071,7 @@ Defined in: [lib/form.ts:4109](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22011
22071
|
|
|
22012
22072
|
> **closed**: `boolean`
|
|
22013
22073
|
|
|
22014
|
-
Defined in: [lib/form.ts:
|
|
22074
|
+
Defined in: [lib/form.ts:4190](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4190)
|
|
22015
22075
|
|
|
22016
22076
|
是否已经执行过了关闭窗体方法,此处加判断为了防止重复执行 close 导致的 bug
|
|
22017
22077
|
|
|
@@ -22021,7 +22081,7 @@ Defined in: [lib/form.ts:4114](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22021
22081
|
|
|
22022
22082
|
> **id**: `string`
|
|
22023
22083
|
|
|
22024
|
-
Defined in: [lib/form.ts:
|
|
22084
|
+
Defined in: [lib/form.ts:4186](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4186)
|
|
22025
22085
|
|
|
22026
22086
|
***
|
|
22027
22087
|
|
|
@@ -22029,7 +22089,7 @@ Defined in: [lib/form.ts:4110](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22029
22089
|
|
|
22030
22090
|
> **vapp**: [`IVApp`](../../core/interfaces/IVApp.md)
|
|
22031
22091
|
|
|
22032
|
-
Defined in: [lib/form.ts:
|
|
22092
|
+
Defined in: [lib/form.ts:4187](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4187)
|
|
22033
22093
|
|
|
22034
22094
|
***
|
|
22035
22095
|
|
|
@@ -22037,7 +22097,42 @@ Defined in: [lib/form.ts:4111](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22037
22097
|
|
|
22038
22098
|
> **vroot**: [`IVue`](../../core/interfaces/IVue.md)
|
|
22039
22099
|
|
|
22040
|
-
Defined in: [lib/form.ts:
|
|
22100
|
+
Defined in: [lib/form.ts:4188](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4188)
|
|
22101
|
+
|
|
22102
|
+
lib/form/interfaces/IFormCaptchaOptions.md
|
|
22103
|
+
---
|
|
22104
|
+
|
|
22105
|
+
[**Documents for clickgo**](../../../index.md)
|
|
22106
|
+
|
|
22107
|
+
***
|
|
22108
|
+
|
|
22109
|
+
[Documents for clickgo](../../../index.md) / [lib/form](../index.md) / IFormCaptchaOptions
|
|
22110
|
+
|
|
22111
|
+
# Interface: IFormCaptchaOptions
|
|
22112
|
+
|
|
22113
|
+
Defined in: [lib/form.ts:4288](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4288)
|
|
22114
|
+
|
|
22115
|
+
显示验证码选项
|
|
22116
|
+
|
|
22117
|
+
## Properties
|
|
22118
|
+
|
|
22119
|
+
### akey
|
|
22120
|
+
|
|
22121
|
+
> **akey**: `string`
|
|
22122
|
+
|
|
22123
|
+
Defined in: [lib/form.ts:4292](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4292)
|
|
22124
|
+
|
|
22125
|
+
验证码 key
|
|
22126
|
+
|
|
22127
|
+
***
|
|
22128
|
+
|
|
22129
|
+
### factory
|
|
22130
|
+
|
|
22131
|
+
> **factory**: `"tc"` \| `"cf"`
|
|
22132
|
+
|
|
22133
|
+
Defined in: [lib/form.ts:4290](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4290)
|
|
22134
|
+
|
|
22135
|
+
验证码服务商
|
|
22041
22136
|
|
|
22042
22137
|
lib/form/interfaces/IFormConfirmOptions.md
|
|
22043
22138
|
---
|
|
@@ -22050,7 +22145,7 @@ lib/form/interfaces/IFormConfirmOptions.md
|
|
|
22050
22145
|
|
|
22051
22146
|
# Interface: IFormConfirmOptions
|
|
22052
22147
|
|
|
22053
|
-
Defined in: [lib/form.ts:
|
|
22148
|
+
Defined in: [lib/form.ts:4281](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4281)
|
|
22054
22149
|
|
|
22055
22150
|
Confirm 选项
|
|
22056
22151
|
|
|
@@ -22060,7 +22155,7 @@ Confirm 选项
|
|
|
22060
22155
|
|
|
22061
22156
|
> `optional` **cancel**: `boolean`
|
|
22062
22157
|
|
|
22063
|
-
Defined in: [lib/form.ts:
|
|
22158
|
+
Defined in: [lib/form.ts:4284](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4284)
|
|
22064
22159
|
|
|
22065
22160
|
***
|
|
22066
22161
|
|
|
@@ -22068,7 +22163,7 @@ Defined in: [lib/form.ts:4203](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22068
22163
|
|
|
22069
22164
|
> **content**: `string`
|
|
22070
22165
|
|
|
22071
|
-
Defined in: [lib/form.ts:
|
|
22166
|
+
Defined in: [lib/form.ts:4283](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4283)
|
|
22072
22167
|
|
|
22073
22168
|
***
|
|
22074
22169
|
|
|
@@ -22076,7 +22171,7 @@ Defined in: [lib/form.ts:4202](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22076
22171
|
|
|
22077
22172
|
> `optional` **title**: `string`
|
|
22078
22173
|
|
|
22079
|
-
Defined in: [lib/form.ts:
|
|
22174
|
+
Defined in: [lib/form.ts:4282](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4282)
|
|
22080
22175
|
|
|
22081
22176
|
lib/form/interfaces/IFormDialogOptions.md
|
|
22082
22177
|
---
|
|
@@ -22089,7 +22184,7 @@ lib/form/interfaces/IFormDialogOptions.md
|
|
|
22089
22184
|
|
|
22090
22185
|
# Interface: IFormDialogOptions
|
|
22091
22186
|
|
|
22092
|
-
Defined in: [lib/form.ts:
|
|
22187
|
+
Defined in: [lib/form.ts:4239](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4239)
|
|
22093
22188
|
|
|
22094
22189
|
Dialog 选项
|
|
22095
22190
|
|
|
@@ -22099,7 +22194,7 @@ Dialog 选项
|
|
|
22099
22194
|
|
|
22100
22195
|
> `optional` **autoDialogResult**: `boolean`
|
|
22101
22196
|
|
|
22102
|
-
Defined in: [lib/form.ts:
|
|
22197
|
+
Defined in: [lib/form.ts:4243](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4243)
|
|
22103
22198
|
|
|
22104
22199
|
***
|
|
22105
22200
|
|
|
@@ -22107,7 +22202,7 @@ Defined in: [lib/form.ts:4167](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22107
22202
|
|
|
22108
22203
|
> `optional` **buttons**: `string`[]
|
|
22109
22204
|
|
|
22110
|
-
Defined in: [lib/form.ts:
|
|
22205
|
+
Defined in: [lib/form.ts:4242](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4242)
|
|
22111
22206
|
|
|
22112
22207
|
***
|
|
22113
22208
|
|
|
@@ -22115,7 +22210,7 @@ Defined in: [lib/form.ts:4166](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22115
22210
|
|
|
22116
22211
|
> **content**: `string`
|
|
22117
22212
|
|
|
22118
|
-
Defined in: [lib/form.ts:
|
|
22213
|
+
Defined in: [lib/form.ts:4241](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4241)
|
|
22119
22214
|
|
|
22120
22215
|
***
|
|
22121
22216
|
|
|
@@ -22123,7 +22218,7 @@ Defined in: [lib/form.ts:4165](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22123
22218
|
|
|
22124
22219
|
> `optional` **data**: `Record`\<`string`, `any`\>
|
|
22125
22220
|
|
|
22126
|
-
Defined in: [lib/form.ts:
|
|
22221
|
+
Defined in: [lib/form.ts:4249](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4249)
|
|
22127
22222
|
|
|
22128
22223
|
传值,需要用 data.x 读取
|
|
22129
22224
|
|
|
@@ -22133,7 +22228,7 @@ Defined in: [lib/form.ts:4173](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22133
22228
|
|
|
22134
22229
|
> `optional` **direction**: `"v"` \| `"h"`
|
|
22135
22230
|
|
|
22136
|
-
Defined in: [lib/form.ts:
|
|
22231
|
+
Defined in: [lib/form.ts:4245](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4245)
|
|
22137
22232
|
|
|
22138
22233
|
***
|
|
22139
22234
|
|
|
@@ -22141,7 +22236,7 @@ Defined in: [lib/form.ts:4169](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22141
22236
|
|
|
22142
22237
|
> `optional` **gutter**: `string` \| `number`
|
|
22143
22238
|
|
|
22144
|
-
Defined in: [lib/form.ts:
|
|
22239
|
+
Defined in: [lib/form.ts:4246](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4246)
|
|
22145
22240
|
|
|
22146
22241
|
***
|
|
22147
22242
|
|
|
@@ -22149,17 +22244,31 @@ Defined in: [lib/form.ts:4170](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22149
22244
|
|
|
22150
22245
|
> `optional` **methods**: `Record`\<`string`, (...`param`) => `any`\>
|
|
22151
22246
|
|
|
22152
|
-
Defined in: [lib/form.ts:
|
|
22247
|
+
Defined in: [lib/form.ts:4251](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4251)
|
|
22153
22248
|
|
|
22154
22249
|
传值,需要用 methods.x 读取
|
|
22155
22250
|
|
|
22156
22251
|
***
|
|
22157
22252
|
|
|
22253
|
+
### onMounted()?
|
|
22254
|
+
|
|
22255
|
+
> `optional` **onMounted**: () => `void` \| `Promise`\<`void`\>
|
|
22256
|
+
|
|
22257
|
+
Defined in: [lib/form.ts:4271](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4271)
|
|
22258
|
+
|
|
22259
|
+
窗体挂载完成事件
|
|
22260
|
+
|
|
22261
|
+
#### Returns
|
|
22262
|
+
|
|
22263
|
+
`void` \| `Promise`\<`void`\>
|
|
22264
|
+
|
|
22265
|
+
***
|
|
22266
|
+
|
|
22158
22267
|
### path?
|
|
22159
22268
|
|
|
22160
22269
|
> `optional` **path**: `string`
|
|
22161
22270
|
|
|
22162
|
-
Defined in: [lib/form.ts:
|
|
22271
|
+
Defined in: [lib/form.ts:4255](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4255)
|
|
22163
22272
|
|
|
22164
22273
|
路径基,以 / 结束或文件路径则以文件的基路径为准,可留空
|
|
22165
22274
|
|
|
@@ -22169,7 +22278,7 @@ Defined in: [lib/form.ts:4179](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22169
22278
|
|
|
22170
22279
|
> `optional` **select**: (`this`, `e`, `button`) => `void`
|
|
22171
22280
|
|
|
22172
|
-
Defined in: [lib/form.ts:
|
|
22281
|
+
Defined in: [lib/form.ts:4262](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4262)
|
|
22173
22282
|
|
|
22174
22283
|
点击按钮触发事件
|
|
22175
22284
|
|
|
@@ -22201,7 +22310,7 @@ Defined in: [lib/form.ts:4186](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22201
22310
|
|
|
22202
22311
|
> `optional` **style**: `string`
|
|
22203
22312
|
|
|
22204
|
-
Defined in: [lib/form.ts:
|
|
22313
|
+
Defined in: [lib/form.ts:4253](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4253)
|
|
22205
22314
|
|
|
22206
22315
|
样式表
|
|
22207
22316
|
|
|
@@ -22211,7 +22320,7 @@ Defined in: [lib/form.ts:4177](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22211
22320
|
|
|
22212
22321
|
> `optional` **title**: `string`
|
|
22213
22322
|
|
|
22214
|
-
Defined in: [lib/form.ts:
|
|
22323
|
+
Defined in: [lib/form.ts:4240](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4240)
|
|
22215
22324
|
|
|
22216
22325
|
lib/form/interfaces/IFormDialogSelectEvent.md
|
|
22217
22326
|
---
|
|
@@ -22224,7 +22333,7 @@ lib/form/interfaces/IFormDialogSelectEvent.md
|
|
|
22224
22333
|
|
|
22225
22334
|
# Interface: IFormDialogSelectEvent
|
|
22226
22335
|
|
|
22227
|
-
Defined in: [lib/form.ts:
|
|
22336
|
+
Defined in: [lib/form.ts:4274](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4274)
|
|
22228
22337
|
|
|
22229
22338
|
Custom Event
|
|
22230
22339
|
|
|
@@ -22238,7 +22347,7 @@ Custom Event
|
|
|
22238
22347
|
|
|
22239
22348
|
> **detail**: `object`
|
|
22240
22349
|
|
|
22241
|
-
Defined in: [lib/form.ts:
|
|
22350
|
+
Defined in: [lib/form.ts:4275](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4275)
|
|
22242
22351
|
|
|
22243
22352
|
#### button
|
|
22244
22353
|
|
|
@@ -22283,7 +22392,7 @@ lib/form/interfaces/IFormInfo.md
|
|
|
22283
22392
|
|
|
22284
22393
|
# Interface: IFormInfo
|
|
22285
22394
|
|
|
22286
|
-
Defined in: [lib/form.ts:
|
|
22395
|
+
Defined in: [lib/form.ts:4194](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4194)
|
|
22287
22396
|
|
|
22288
22397
|
Form 的简略情况,通常在 list 当中
|
|
22289
22398
|
|
|
@@ -22293,7 +22402,7 @@ Form 的简略情况,通常在 list 当中
|
|
|
22293
22402
|
|
|
22294
22403
|
> **focus**: `boolean`
|
|
22295
22404
|
|
|
22296
|
-
Defined in: [lib/form.ts:
|
|
22405
|
+
Defined in: [lib/form.ts:4201](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4201)
|
|
22297
22406
|
|
|
22298
22407
|
***
|
|
22299
22408
|
|
|
@@ -22301,7 +22410,7 @@ Defined in: [lib/form.ts:4125](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22301
22410
|
|
|
22302
22411
|
> **icon**: `string`
|
|
22303
22412
|
|
|
22304
|
-
Defined in: [lib/form.ts:
|
|
22413
|
+
Defined in: [lib/form.ts:4197](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4197)
|
|
22305
22414
|
|
|
22306
22415
|
***
|
|
22307
22416
|
|
|
@@ -22309,7 +22418,7 @@ Defined in: [lib/form.ts:4121](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22309
22418
|
|
|
22310
22419
|
> **show**: `boolean`
|
|
22311
22420
|
|
|
22312
|
-
Defined in: [lib/form.ts:
|
|
22421
|
+
Defined in: [lib/form.ts:4200](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4200)
|
|
22313
22422
|
|
|
22314
22423
|
***
|
|
22315
22424
|
|
|
@@ -22317,7 +22426,7 @@ Defined in: [lib/form.ts:4124](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22317
22426
|
|
|
22318
22427
|
> **showInSystemTask**: `boolean`
|
|
22319
22428
|
|
|
22320
|
-
Defined in: [lib/form.ts:
|
|
22429
|
+
Defined in: [lib/form.ts:4202](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4202)
|
|
22321
22430
|
|
|
22322
22431
|
***
|
|
22323
22432
|
|
|
@@ -22325,7 +22434,7 @@ Defined in: [lib/form.ts:4126](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22325
22434
|
|
|
22326
22435
|
> **stateMax**: `boolean`
|
|
22327
22436
|
|
|
22328
|
-
Defined in: [lib/form.ts:
|
|
22437
|
+
Defined in: [lib/form.ts:4198](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4198)
|
|
22329
22438
|
|
|
22330
22439
|
***
|
|
22331
22440
|
|
|
@@ -22333,7 +22442,7 @@ Defined in: [lib/form.ts:4122](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22333
22442
|
|
|
22334
22443
|
> **stateMin**: `boolean`
|
|
22335
22444
|
|
|
22336
|
-
Defined in: [lib/form.ts:
|
|
22445
|
+
Defined in: [lib/form.ts:4199](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4199)
|
|
22337
22446
|
|
|
22338
22447
|
***
|
|
22339
22448
|
|
|
@@ -22341,7 +22450,7 @@ Defined in: [lib/form.ts:4123](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22341
22450
|
|
|
22342
22451
|
> **taskId**: `string`
|
|
22343
22452
|
|
|
22344
|
-
Defined in: [lib/form.ts:
|
|
22453
|
+
Defined in: [lib/form.ts:4195](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4195)
|
|
22345
22454
|
|
|
22346
22455
|
***
|
|
22347
22456
|
|
|
@@ -22349,7 +22458,7 @@ Defined in: [lib/form.ts:4119](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22349
22458
|
|
|
22350
22459
|
> **title**: `string`
|
|
22351
22460
|
|
|
22352
|
-
Defined in: [lib/form.ts:
|
|
22461
|
+
Defined in: [lib/form.ts:4196](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4196)
|
|
22353
22462
|
|
|
22354
22463
|
lib/form/interfaces/IFormPromptOptions.md
|
|
22355
22464
|
---
|
|
@@ -22362,7 +22471,7 @@ lib/form/interfaces/IFormPromptOptions.md
|
|
|
22362
22471
|
|
|
22363
22472
|
# Interface: IFormPromptOptions
|
|
22364
22473
|
|
|
22365
|
-
Defined in: [lib/form.ts:
|
|
22474
|
+
Defined in: [lib/form.ts:4296](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4296)
|
|
22366
22475
|
|
|
22367
22476
|
Prompt 选项
|
|
22368
22477
|
|
|
@@ -22372,7 +22481,7 @@ Prompt 选项
|
|
|
22372
22481
|
|
|
22373
22482
|
> `optional` **cancel**: `boolean`
|
|
22374
22483
|
|
|
22375
|
-
Defined in: [lib/form.ts:
|
|
22484
|
+
Defined in: [lib/form.ts:4304](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4304)
|
|
22376
22485
|
|
|
22377
22486
|
是否显示取消按钮,默认显示
|
|
22378
22487
|
|
|
@@ -22382,7 +22491,7 @@ Defined in: [lib/form.ts:4215](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22382
22491
|
|
|
22383
22492
|
> **content**: `string`
|
|
22384
22493
|
|
|
22385
|
-
Defined in: [lib/form.ts:
|
|
22494
|
+
Defined in: [lib/form.ts:4300](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4300)
|
|
22386
22495
|
|
|
22387
22496
|
内容说明
|
|
22388
22497
|
|
|
@@ -22392,7 +22501,7 @@ Defined in: [lib/form.ts:4211](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22392
22501
|
|
|
22393
22502
|
> `optional` **select**: (`this`, `e`, `button`) => `void`
|
|
22394
22503
|
|
|
22395
|
-
Defined in: [lib/form.ts:
|
|
22504
|
+
Defined in: [lib/form.ts:4311](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4311)
|
|
22396
22505
|
|
|
22397
22506
|
点击按钮触发事件
|
|
22398
22507
|
|
|
@@ -22424,7 +22533,7 @@ true 代表确定,false 代表取消
|
|
|
22424
22533
|
|
|
22425
22534
|
> `optional` **text**: `string`
|
|
22426
22535
|
|
|
22427
|
-
Defined in: [lib/form.ts:
|
|
22536
|
+
Defined in: [lib/form.ts:4302](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4302)
|
|
22428
22537
|
|
|
22429
22538
|
文本默认值
|
|
22430
22539
|
|
|
@@ -22434,7 +22543,7 @@ Defined in: [lib/form.ts:4213](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22434
22543
|
|
|
22435
22544
|
> `optional` **title**: `string`
|
|
22436
22545
|
|
|
22437
|
-
Defined in: [lib/form.ts:
|
|
22546
|
+
Defined in: [lib/form.ts:4298](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4298)
|
|
22438
22547
|
|
|
22439
22548
|
标题
|
|
22440
22549
|
|
|
@@ -22449,7 +22558,7 @@ lib/form/interfaces/IFormPromptSelectEvent.md
|
|
|
22449
22558
|
|
|
22450
22559
|
# Interface: IFormPromptSelectEvent
|
|
22451
22560
|
|
|
22452
|
-
Defined in: [lib/form.ts:
|
|
22561
|
+
Defined in: [lib/form.ts:4318](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4318)
|
|
22453
22562
|
|
|
22454
22563
|
Custom Event
|
|
22455
22564
|
|
|
@@ -22463,7 +22572,7 @@ Custom Event
|
|
|
22463
22572
|
|
|
22464
22573
|
> **detail**: `object`
|
|
22465
22574
|
|
|
22466
|
-
Defined in: [lib/form.ts:
|
|
22575
|
+
Defined in: [lib/form.ts:4319](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4319)
|
|
22467
22576
|
|
|
22468
22577
|
#### button
|
|
22469
22578
|
|
|
@@ -22514,7 +22623,7 @@ lib/form/interfaces/IMoveDragOptions.md
|
|
|
22514
22623
|
|
|
22515
22624
|
# Interface: IMoveDragOptions
|
|
22516
22625
|
|
|
22517
|
-
Defined in: [lib/form.ts:
|
|
22626
|
+
Defined in: [lib/form.ts:4206](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4206)
|
|
22518
22627
|
|
|
22519
22628
|
移动 drag 到新位置函数的选项
|
|
22520
22629
|
|
|
@@ -22524,7 +22633,7 @@ Defined in: [lib/form.ts:4130](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22524
22633
|
|
|
22525
22634
|
> `optional` **height**: `number`
|
|
22526
22635
|
|
|
22527
|
-
Defined in: [lib/form.ts:
|
|
22636
|
+
Defined in: [lib/form.ts:4210](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4210)
|
|
22528
22637
|
|
|
22529
22638
|
***
|
|
22530
22639
|
|
|
@@ -22532,7 +22641,7 @@ Defined in: [lib/form.ts:4134](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22532
22641
|
|
|
22533
22642
|
> `optional` **icon**: `boolean`
|
|
22534
22643
|
|
|
22535
|
-
Defined in: [lib/form.ts:
|
|
22644
|
+
Defined in: [lib/form.ts:4211](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4211)
|
|
22536
22645
|
|
|
22537
22646
|
***
|
|
22538
22647
|
|
|
@@ -22540,7 +22649,7 @@ Defined in: [lib/form.ts:4135](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22540
22649
|
|
|
22541
22650
|
> `optional` **left**: `number`
|
|
22542
22651
|
|
|
22543
|
-
Defined in: [lib/form.ts:
|
|
22652
|
+
Defined in: [lib/form.ts:4208](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4208)
|
|
22544
22653
|
|
|
22545
22654
|
***
|
|
22546
22655
|
|
|
@@ -22548,7 +22657,7 @@ Defined in: [lib/form.ts:4132](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22548
22657
|
|
|
22549
22658
|
> `optional` **top**: `number`
|
|
22550
22659
|
|
|
22551
|
-
Defined in: [lib/form.ts:
|
|
22660
|
+
Defined in: [lib/form.ts:4207](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4207)
|
|
22552
22661
|
|
|
22553
22662
|
***
|
|
22554
22663
|
|
|
@@ -22556,7 +22665,7 @@ Defined in: [lib/form.ts:4131](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22556
22665
|
|
|
22557
22666
|
> `optional` **width**: `number`
|
|
22558
22667
|
|
|
22559
|
-
Defined in: [lib/form.ts:
|
|
22668
|
+
Defined in: [lib/form.ts:4209](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4209)
|
|
22560
22669
|
|
|
22561
22670
|
lib/form/interfaces/INotifyContentOptions.md
|
|
22562
22671
|
---
|
|
@@ -22569,7 +22678,7 @@ lib/form/interfaces/INotifyContentOptions.md
|
|
|
22569
22678
|
|
|
22570
22679
|
# Interface: INotifyContentOptions
|
|
22571
22680
|
|
|
22572
|
-
Defined in: [lib/form.ts:
|
|
22681
|
+
Defined in: [lib/form.ts:4228](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4228)
|
|
22573
22682
|
|
|
22574
22683
|
notify 信息框的修改选项
|
|
22575
22684
|
|
|
@@ -22579,7 +22688,7 @@ notify 信息框的修改选项
|
|
|
22579
22688
|
|
|
22580
22689
|
> `optional` **content**: `string`
|
|
22581
22690
|
|
|
22582
|
-
Defined in: [lib/form.ts:
|
|
22691
|
+
Defined in: [lib/form.ts:4230](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4230)
|
|
22583
22692
|
|
|
22584
22693
|
***
|
|
22585
22694
|
|
|
@@ -22587,7 +22696,7 @@ Defined in: [lib/form.ts:4154](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22587
22696
|
|
|
22588
22697
|
> `optional` **note**: `string`
|
|
22589
22698
|
|
|
22590
|
-
Defined in: [lib/form.ts:
|
|
22699
|
+
Defined in: [lib/form.ts:4231](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4231)
|
|
22591
22700
|
|
|
22592
22701
|
***
|
|
22593
22702
|
|
|
@@ -22595,7 +22704,7 @@ Defined in: [lib/form.ts:4155](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22595
22704
|
|
|
22596
22705
|
> `optional` **progress**: `number`
|
|
22597
22706
|
|
|
22598
|
-
Defined in: [lib/form.ts:
|
|
22707
|
+
Defined in: [lib/form.ts:4233](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4233)
|
|
22599
22708
|
|
|
22600
22709
|
可顺便修改进度
|
|
22601
22710
|
|
|
@@ -22605,7 +22714,7 @@ Defined in: [lib/form.ts:4157](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22605
22714
|
|
|
22606
22715
|
> `optional` **timeout**: `number`
|
|
22607
22716
|
|
|
22608
|
-
Defined in: [lib/form.ts:
|
|
22717
|
+
Defined in: [lib/form.ts:4235](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4235)
|
|
22609
22718
|
|
|
22610
22719
|
设置后将在 x 毫秒后隐藏,这不会大于创建时的设置的总时长
|
|
22611
22720
|
|
|
@@ -22615,7 +22724,7 @@ Defined in: [lib/form.ts:4159](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22615
22724
|
|
|
22616
22725
|
> `optional` **title**: `string`
|
|
22617
22726
|
|
|
22618
|
-
Defined in: [lib/form.ts:
|
|
22727
|
+
Defined in: [lib/form.ts:4229](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4229)
|
|
22619
22728
|
|
|
22620
22729
|
lib/form/interfaces/INotifyOptions.md
|
|
22621
22730
|
---
|
|
@@ -22628,7 +22737,7 @@ lib/form/interfaces/INotifyOptions.md
|
|
|
22628
22737
|
|
|
22629
22738
|
# Interface: INotifyOptions
|
|
22630
22739
|
|
|
22631
|
-
Defined in: [lib/form.ts:
|
|
22740
|
+
Defined in: [lib/form.ts:4215](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4215)
|
|
22632
22741
|
|
|
22633
22742
|
弹出 notify 信息框的选项
|
|
22634
22743
|
|
|
@@ -22638,7 +22747,7 @@ Defined in: [lib/form.ts:4139](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22638
22747
|
|
|
22639
22748
|
> `optional` **content**: `string`
|
|
22640
22749
|
|
|
22641
|
-
Defined in: [lib/form.ts:
|
|
22750
|
+
Defined in: [lib/form.ts:4218](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4218)
|
|
22642
22751
|
|
|
22643
22752
|
正文
|
|
22644
22753
|
|
|
@@ -22648,7 +22757,7 @@ Defined in: [lib/form.ts:4142](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22648
22757
|
|
|
22649
22758
|
> `optional` **icon**: `string` \| `null`
|
|
22650
22759
|
|
|
22651
|
-
Defined in: [lib/form.ts:
|
|
22760
|
+
Defined in: [lib/form.ts:4221](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4221)
|
|
22652
22761
|
|
|
22653
22762
|
***
|
|
22654
22763
|
|
|
@@ -22656,7 +22765,7 @@ Defined in: [lib/form.ts:4145](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22656
22765
|
|
|
22657
22766
|
> `optional` **note**: `string`
|
|
22658
22767
|
|
|
22659
|
-
Defined in: [lib/form.ts:
|
|
22768
|
+
Defined in: [lib/form.ts:4220](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4220)
|
|
22660
22769
|
|
|
22661
22770
|
浅色描述
|
|
22662
22771
|
|
|
@@ -22666,7 +22775,7 @@ Defined in: [lib/form.ts:4144](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22666
22775
|
|
|
22667
22776
|
> `optional` **progress**: `boolean`
|
|
22668
22777
|
|
|
22669
|
-
Defined in: [lib/form.ts:
|
|
22778
|
+
Defined in: [lib/form.ts:4224](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4224)
|
|
22670
22779
|
|
|
22671
22780
|
***
|
|
22672
22781
|
|
|
@@ -22674,7 +22783,7 @@ Defined in: [lib/form.ts:4148](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22674
22783
|
|
|
22675
22784
|
> `optional` **timeout**: `number`
|
|
22676
22785
|
|
|
22677
|
-
Defined in: [lib/form.ts:
|
|
22786
|
+
Defined in: [lib/form.ts:4222](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4222)
|
|
22678
22787
|
|
|
22679
22788
|
***
|
|
22680
22789
|
|
|
@@ -22682,7 +22791,7 @@ Defined in: [lib/form.ts:4146](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22682
22791
|
|
|
22683
22792
|
> `optional` **title**: `string`
|
|
22684
22793
|
|
|
22685
|
-
Defined in: [lib/form.ts:
|
|
22794
|
+
Defined in: [lib/form.ts:4216](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4216)
|
|
22686
22795
|
|
|
22687
22796
|
***
|
|
22688
22797
|
|
|
@@ -22690,7 +22799,7 @@ Defined in: [lib/form.ts:4140](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
22690
22799
|
|
|
22691
22800
|
> `optional` **type**: `"progress"` \| `"info"` \| `"warning"` \| `"danger"` \| `"primary"`
|
|
22692
22801
|
|
|
22693
|
-
Defined in: [lib/form.ts:
|
|
22802
|
+
Defined in: [lib/form.ts:4223](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4223)
|
|
22694
22803
|
|
|
22695
22804
|
lib/form/variables/activePanels.md
|
|
22696
22805
|
---
|