clickgo 5.9.1 → 5.10.1

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.
@@ -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
- <button>Hover me</button>
6603
- <tip label="This is a tip"></tip>
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
@@ -7233,6 +7254,76 @@ TUMS 监控组件。
7233
7254
  <video :src="videoUrl" v-model:play="isPlaying" v-model:current="currentTime"></video>
7234
7255
  ```
7235
7256
 
7257
+ ## waterfall
7258
+ ---
7259
+
7260
+ 这是一个用于实现虚拟滚动瀑布流布局的控件,支持高度不一的元素在多列显示中按照贪心算法填入最短列,从而形成典型的瀑布流体验。底层利用虚拟化机制(Virtualization),仅渲染在视口(及其上下缓冲区域)内可见的 `DOM` 节点,能够支持超大数据量的平滑滚动和渲染。
7261
+
7262
+ ### 参数
7263
+
7264
+ #### data
7265
+
7266
+ `any[]`
7267
+
7268
+ 瀑布流的数据源,默认 `[]`。
7269
+
7270
+ #### columns
7271
+
7272
+ `number` | `string`
7273
+
7274
+ 瀑布流的列数,默认 2。
7275
+
7276
+ #### gap
7277
+
7278
+ `number` | `string`
7279
+
7280
+ 列与列、行与行的间距(以像素为单位),默认 10。
7281
+
7282
+ #### sizes
7283
+
7284
+ `Record<string, number | undefined>`
7285
+
7286
+ 高度映射对象,用于告诉组件每个数据项需要渲染的高度。键为数据项索引或唯一 `id`,值为该项对应的像素高度。当前虚拟化强依赖于预知高度。默认的键值为 `{}`。
7287
+
7288
+ ### 事件
7289
+
7290
+ #### scroll
7291
+
7292
+ 瀑布流内容发生滚动时触发。
7293
+
7294
+ - `e`: `Event`
7295
+
7296
+ ### 方法
7297
+
7298
+ 暂无供外部调用的公开方法。
7299
+
7300
+ ### 插槽
7301
+
7302
+ #### default
7303
+
7304
+ 每一项的具体展现内容,可访问当前遍历的当前行。
7305
+
7306
+ - `row`: 当前行数据对象
7307
+ - `index`: 当前行对应的下标。
7308
+
7309
+ ### 样式
7310
+
7311
+ 该控件包裹在一个带有 `overflow-y` 设置为 `auto` 的滚动区域内。内部有一层相对于外层采取相对定位(`position: relative`)用来支撑所有列表项总高度的 `inner` 容器。
7312
+
7313
+ 每一个子项则通过绝对定位并通过 `transform: translate(X, Y)` 去改变它们在 `inner` 中停留的具体坐标系。子项切换位置时默认带有轻微的位移过渡动画(`transition: transform 0.2s`),以防数据或尺寸重计算导致页面内容瞬间闪烁。
7314
+
7315
+ 同时内部所有距离包括列宽、坐标计算等都会自动减去容器组件设置的 `padding` 大小。
7316
+
7317
+ ### 示例
7318
+
7319
+ ```xml
7320
+ <waterfall :data="[{'id': 1}, {'id': 2}]" :columns="2" :gap="15" :sizes="{'1': 100, '2': 250}">
7321
+ <template v-slot="scope">
7322
+ <div style="background: red;">内容: {{ scope.row.id }} - 下标: {{ scope.index }}</div>
7323
+ </template>
7324
+ </waterfall>
7325
+ ```
7326
+
7236
7327
  ## web
7237
7328
  ---
7238
7329
 
@@ -20191,6 +20282,43 @@ Defined in: [lib/form.ts:1526](https://github.com/maiyun/clickgo/blob/master/dis
20191
20282
 
20192
20283
  `void`
20193
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
+
20194
20322
  lib/form/functions/changeFocus.md
20195
20323
  ---
20196
20324
 
@@ -20283,7 +20411,7 @@ lib/form/functions/confirm.md
20283
20411
 
20284
20412
  > **confirm**(`current`, `opt`): `Promise`\<`number` \| `boolean`\>
20285
20413
 
20286
- Defined in: [lib/form.ts:3920](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3920)
20414
+ Defined in: [lib/form.ts:3996](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3996)
20287
20415
 
20288
20416
  显示一个 confirm
20289
20417
 
@@ -20456,7 +20584,7 @@ Defined in: [lib/form.ts:3845](https://github.com/maiyun/clickgo/blob/master/dis
20456
20584
 
20457
20585
  [`TCurrent`](../../core/type-aliases/TCurrent.md)
20458
20586
 
20459
- 当前窗体 id
20587
+ 当前任务
20460
20588
 
20461
20589
  ### opt
20462
20590
 
@@ -20510,7 +20638,7 @@ lib/form/functions/flash.md
20510
20638
 
20511
20639
  > **flash**(`current`, `formId`): `Promise`\<`void`\>
20512
20640
 
20513
- Defined in: [lib/form.ts:4017](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4017)
20641
+ Defined in: [lib/form.ts:4093](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4093)
20514
20642
 
20515
20643
  让窗体闪烁
20516
20644
 
@@ -20878,7 +21006,7 @@ lib/form/functions/hideLauncher.md
20878
21006
 
20879
21007
  > **hideLauncher**(): `void`
20880
21008
 
20881
- Defined in: [lib/form.ts:4054](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4054)
21009
+ Defined in: [lib/form.ts:4130](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4130)
20882
21010
 
20883
21011
  隐藏 launcher 界面
20884
21012
 
@@ -20976,7 +21104,7 @@ lib/form/functions/init.md
20976
21104
 
20977
21105
  > **init**(): `void`
20978
21106
 
20979
- Defined in: [lib/form.ts:4068](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4068)
21107
+ Defined in: [lib/form.ts:4144](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4144)
20980
21108
 
20981
21109
  ## Returns
20982
21110
 
@@ -21239,7 +21367,7 @@ lib/form/functions/prompt.md
21239
21367
 
21240
21368
  > **prompt**(`current`, `opt`): `Promise`\<`string`\>
21241
21369
 
21242
- Defined in: [lib/form.ts:3957](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3957)
21370
+ Defined in: [lib/form.ts:4033](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4033)
21243
21371
 
21244
21372
  显示一个输入框 dialog
21245
21373
 
@@ -21567,7 +21695,7 @@ lib/form/functions/showLauncher.md
21567
21695
 
21568
21696
  > **showLauncher**(): `void`
21569
21697
 
21570
- Defined in: [lib/form.ts:4044](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4044)
21698
+ Defined in: [lib/form.ts:4120](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4120)
21571
21699
 
21572
21700
  显示 launcher 界面
21573
21701
 
@@ -21747,6 +21875,7 @@ lib/form/index.md
21747
21875
  - [IAbstractPanelQsChangeShowEvent](interfaces/IAbstractPanelQsChangeShowEvent.md)
21748
21876
  - [IAbstractPanelShowEvent](interfaces/IAbstractPanelShowEvent.md)
21749
21877
  - [IForm](interfaces/IForm.md)
21878
+ - [IFormCaptchaOptions](interfaces/IFormCaptchaOptions.md)
21750
21879
  - [IFormConfirmOptions](interfaces/IFormConfirmOptions.md)
21751
21880
  - [IFormDialogOptions](interfaces/IFormDialogOptions.md)
21752
21881
  - [IFormDialogSelectEvent](interfaces/IFormDialogSelectEvent.md)
@@ -21770,6 +21899,7 @@ lib/form/index.md
21770
21899
  - [appendToPop](functions/appendToPop.md)
21771
21900
  - [bindDrag](functions/bindDrag.md)
21772
21901
  - [bindResize](functions/bindResize.md)
21902
+ - [captcha](functions/captcha.md)
21773
21903
  - [changeFocus](functions/changeFocus.md)
21774
21904
  - [changeFocusMaxZIndex](functions/changeFocusMaxZIndex.md)
21775
21905
  - [close](functions/close.md)
@@ -21829,7 +21959,7 @@ lib/form/interfaces/IAbstractPanelQsChangeShowEvent.md
21829
21959
 
21830
21960
  # Interface: IAbstractPanelQsChangeShowEvent
21831
21961
 
21832
- Defined in: [lib/form.ts:4094](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4094)
21962
+ Defined in: [lib/form.ts:4170](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4170)
21833
21963
 
21834
21964
  AbstractPanel qsChange 显示事件
21835
21965
 
@@ -21839,7 +21969,7 @@ AbstractPanel qsChange 显示事件
21839
21969
 
21840
21970
  > **detail**: `object`
21841
21971
 
21842
- Defined in: [lib/form.ts:4095](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4095)
21972
+ Defined in: [lib/form.ts:4171](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4171)
21843
21973
 
21844
21974
  #### action
21845
21975
 
@@ -21880,7 +22010,7 @@ lib/form/interfaces/IAbstractPanelShowEvent.md
21880
22010
 
21881
22011
  # Interface: IAbstractPanelShowEvent
21882
22012
 
21883
- Defined in: [lib/form.ts:4079](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4079)
22013
+ Defined in: [lib/form.ts:4155](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4155)
21884
22014
 
21885
22015
  AbstractPanel 显示事件
21886
22016
 
@@ -21890,7 +22020,7 @@ AbstractPanel 显示事件
21890
22020
 
21891
22021
  > **detail**: `object`
21892
22022
 
21893
- Defined in: [lib/form.ts:4080](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4080)
22023
+ Defined in: [lib/form.ts:4156](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4156)
21894
22024
 
21895
22025
  #### action
21896
22026
 
@@ -21931,7 +22061,7 @@ lib/form/interfaces/IForm.md
21931
22061
 
21932
22062
  # Interface: IForm
21933
22063
 
21934
- Defined in: [lib/form.ts:4109](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4109)
22064
+ Defined in: [lib/form.ts:4185](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4185)
21935
22065
 
21936
22066
  运行时 task 中的 form 对象
21937
22067
 
@@ -21941,7 +22071,7 @@ Defined in: [lib/form.ts:4109](https://github.com/maiyun/clickgo/blob/master/dis
21941
22071
 
21942
22072
  > **closed**: `boolean`
21943
22073
 
21944
- Defined in: [lib/form.ts:4114](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4114)
22074
+ Defined in: [lib/form.ts:4190](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4190)
21945
22075
 
21946
22076
  是否已经执行过了关闭窗体方法,此处加判断为了防止重复执行 close 导致的 bug
21947
22077
 
@@ -21951,7 +22081,7 @@ Defined in: [lib/form.ts:4114](https://github.com/maiyun/clickgo/blob/master/dis
21951
22081
 
21952
22082
  > **id**: `string`
21953
22083
 
21954
- Defined in: [lib/form.ts:4110](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4110)
22084
+ Defined in: [lib/form.ts:4186](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4186)
21955
22085
 
21956
22086
  ***
21957
22087
 
@@ -21959,7 +22089,7 @@ Defined in: [lib/form.ts:4110](https://github.com/maiyun/clickgo/blob/master/dis
21959
22089
 
21960
22090
  > **vapp**: [`IVApp`](../../core/interfaces/IVApp.md)
21961
22091
 
21962
- Defined in: [lib/form.ts:4111](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4111)
22092
+ Defined in: [lib/form.ts:4187](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4187)
21963
22093
 
21964
22094
  ***
21965
22095
 
@@ -21967,7 +22097,42 @@ Defined in: [lib/form.ts:4111](https://github.com/maiyun/clickgo/blob/master/dis
21967
22097
 
21968
22098
  > **vroot**: [`IVue`](../../core/interfaces/IVue.md)
21969
22099
 
21970
- Defined in: [lib/form.ts:4112](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4112)
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
+ 验证码服务商
21971
22136
 
21972
22137
  lib/form/interfaces/IFormConfirmOptions.md
21973
22138
  ---
@@ -21980,7 +22145,7 @@ lib/form/interfaces/IFormConfirmOptions.md
21980
22145
 
21981
22146
  # Interface: IFormConfirmOptions
21982
22147
 
21983
- Defined in: [lib/form.ts:4200](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4200)
22148
+ Defined in: [lib/form.ts:4281](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4281)
21984
22149
 
21985
22150
  Confirm 选项
21986
22151
 
@@ -21990,7 +22155,7 @@ Confirm 选项
21990
22155
 
21991
22156
  > `optional` **cancel**: `boolean`
21992
22157
 
21993
- Defined in: [lib/form.ts:4203](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4203)
22158
+ Defined in: [lib/form.ts:4284](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4284)
21994
22159
 
21995
22160
  ***
21996
22161
 
@@ -21998,7 +22163,7 @@ Defined in: [lib/form.ts:4203](https://github.com/maiyun/clickgo/blob/master/dis
21998
22163
 
21999
22164
  > **content**: `string`
22000
22165
 
22001
- Defined in: [lib/form.ts:4202](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4202)
22166
+ Defined in: [lib/form.ts:4283](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4283)
22002
22167
 
22003
22168
  ***
22004
22169
 
@@ -22006,7 +22171,7 @@ Defined in: [lib/form.ts:4202](https://github.com/maiyun/clickgo/blob/master/dis
22006
22171
 
22007
22172
  > `optional` **title**: `string`
22008
22173
 
22009
- Defined in: [lib/form.ts:4201](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4201)
22174
+ Defined in: [lib/form.ts:4282](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4282)
22010
22175
 
22011
22176
  lib/form/interfaces/IFormDialogOptions.md
22012
22177
  ---
@@ -22019,7 +22184,7 @@ lib/form/interfaces/IFormDialogOptions.md
22019
22184
 
22020
22185
  # Interface: IFormDialogOptions
22021
22186
 
22022
- Defined in: [lib/form.ts:4163](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4163)
22187
+ Defined in: [lib/form.ts:4239](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4239)
22023
22188
 
22024
22189
  Dialog 选项
22025
22190
 
@@ -22029,7 +22194,7 @@ Dialog 选项
22029
22194
 
22030
22195
  > `optional` **autoDialogResult**: `boolean`
22031
22196
 
22032
- Defined in: [lib/form.ts:4167](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4167)
22197
+ Defined in: [lib/form.ts:4243](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4243)
22033
22198
 
22034
22199
  ***
22035
22200
 
@@ -22037,7 +22202,7 @@ Defined in: [lib/form.ts:4167](https://github.com/maiyun/clickgo/blob/master/dis
22037
22202
 
22038
22203
  > `optional` **buttons**: `string`[]
22039
22204
 
22040
- Defined in: [lib/form.ts:4166](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4166)
22205
+ Defined in: [lib/form.ts:4242](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4242)
22041
22206
 
22042
22207
  ***
22043
22208
 
@@ -22045,7 +22210,7 @@ Defined in: [lib/form.ts:4166](https://github.com/maiyun/clickgo/blob/master/dis
22045
22210
 
22046
22211
  > **content**: `string`
22047
22212
 
22048
- Defined in: [lib/form.ts:4165](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4165)
22213
+ Defined in: [lib/form.ts:4241](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4241)
22049
22214
 
22050
22215
  ***
22051
22216
 
@@ -22053,7 +22218,7 @@ Defined in: [lib/form.ts:4165](https://github.com/maiyun/clickgo/blob/master/dis
22053
22218
 
22054
22219
  > `optional` **data**: `Record`\<`string`, `any`\>
22055
22220
 
22056
- Defined in: [lib/form.ts:4173](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4173)
22221
+ Defined in: [lib/form.ts:4249](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4249)
22057
22222
 
22058
22223
  传值,需要用 data.x 读取
22059
22224
 
@@ -22063,7 +22228,7 @@ Defined in: [lib/form.ts:4173](https://github.com/maiyun/clickgo/blob/master/dis
22063
22228
 
22064
22229
  > `optional` **direction**: `"v"` \| `"h"`
22065
22230
 
22066
- Defined in: [lib/form.ts:4169](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4169)
22231
+ Defined in: [lib/form.ts:4245](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4245)
22067
22232
 
22068
22233
  ***
22069
22234
 
@@ -22071,7 +22236,7 @@ Defined in: [lib/form.ts:4169](https://github.com/maiyun/clickgo/blob/master/dis
22071
22236
 
22072
22237
  > `optional` **gutter**: `string` \| `number`
22073
22238
 
22074
- Defined in: [lib/form.ts:4170](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4170)
22239
+ Defined in: [lib/form.ts:4246](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4246)
22075
22240
 
22076
22241
  ***
22077
22242
 
@@ -22079,17 +22244,31 @@ Defined in: [lib/form.ts:4170](https://github.com/maiyun/clickgo/blob/master/dis
22079
22244
 
22080
22245
  > `optional` **methods**: `Record`\<`string`, (...`param`) => `any`\>
22081
22246
 
22082
- Defined in: [lib/form.ts:4175](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4175)
22247
+ Defined in: [lib/form.ts:4251](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4251)
22083
22248
 
22084
22249
  传值,需要用 methods.x 读取
22085
22250
 
22086
22251
  ***
22087
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
+
22088
22267
  ### path?
22089
22268
 
22090
22269
  > `optional` **path**: `string`
22091
22270
 
22092
- Defined in: [lib/form.ts:4179](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4179)
22271
+ Defined in: [lib/form.ts:4255](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4255)
22093
22272
 
22094
22273
  路径基,以 / 结束或文件路径则以文件的基路径为准,可留空
22095
22274
 
@@ -22099,7 +22278,7 @@ Defined in: [lib/form.ts:4179](https://github.com/maiyun/clickgo/blob/master/dis
22099
22278
 
22100
22279
  > `optional` **select**: (`this`, `e`, `button`) => `void`
22101
22280
 
22102
- Defined in: [lib/form.ts:4186](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4186)
22281
+ Defined in: [lib/form.ts:4262](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4262)
22103
22282
 
22104
22283
  点击按钮触发事件
22105
22284
 
@@ -22131,7 +22310,7 @@ Defined in: [lib/form.ts:4186](https://github.com/maiyun/clickgo/blob/master/dis
22131
22310
 
22132
22311
  > `optional` **style**: `string`
22133
22312
 
22134
- Defined in: [lib/form.ts:4177](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4177)
22313
+ Defined in: [lib/form.ts:4253](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4253)
22135
22314
 
22136
22315
  样式表
22137
22316
 
@@ -22141,7 +22320,7 @@ Defined in: [lib/form.ts:4177](https://github.com/maiyun/clickgo/blob/master/dis
22141
22320
 
22142
22321
  > `optional` **title**: `string`
22143
22322
 
22144
- Defined in: [lib/form.ts:4164](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4164)
22323
+ Defined in: [lib/form.ts:4240](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4240)
22145
22324
 
22146
22325
  lib/form/interfaces/IFormDialogSelectEvent.md
22147
22326
  ---
@@ -22154,7 +22333,7 @@ lib/form/interfaces/IFormDialogSelectEvent.md
22154
22333
 
22155
22334
  # Interface: IFormDialogSelectEvent
22156
22335
 
22157
- Defined in: [lib/form.ts:4193](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4193)
22336
+ Defined in: [lib/form.ts:4274](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4274)
22158
22337
 
22159
22338
  Custom Event
22160
22339
 
@@ -22168,7 +22347,7 @@ Custom Event
22168
22347
 
22169
22348
  > **detail**: `object`
22170
22349
 
22171
- Defined in: [lib/form.ts:4194](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4194)
22350
+ Defined in: [lib/form.ts:4275](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4275)
22172
22351
 
22173
22352
  #### button
22174
22353
 
@@ -22213,7 +22392,7 @@ lib/form/interfaces/IFormInfo.md
22213
22392
 
22214
22393
  # Interface: IFormInfo
22215
22394
 
22216
- Defined in: [lib/form.ts:4118](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4118)
22395
+ Defined in: [lib/form.ts:4194](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4194)
22217
22396
 
22218
22397
  Form 的简略情况,通常在 list 当中
22219
22398
 
@@ -22223,7 +22402,7 @@ Form 的简略情况,通常在 list 当中
22223
22402
 
22224
22403
  > **focus**: `boolean`
22225
22404
 
22226
- Defined in: [lib/form.ts:4125](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4125)
22405
+ Defined in: [lib/form.ts:4201](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4201)
22227
22406
 
22228
22407
  ***
22229
22408
 
@@ -22231,7 +22410,7 @@ Defined in: [lib/form.ts:4125](https://github.com/maiyun/clickgo/blob/master/dis
22231
22410
 
22232
22411
  > **icon**: `string`
22233
22412
 
22234
- Defined in: [lib/form.ts:4121](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4121)
22413
+ Defined in: [lib/form.ts:4197](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4197)
22235
22414
 
22236
22415
  ***
22237
22416
 
@@ -22239,7 +22418,7 @@ Defined in: [lib/form.ts:4121](https://github.com/maiyun/clickgo/blob/master/dis
22239
22418
 
22240
22419
  > **show**: `boolean`
22241
22420
 
22242
- Defined in: [lib/form.ts:4124](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4124)
22421
+ Defined in: [lib/form.ts:4200](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4200)
22243
22422
 
22244
22423
  ***
22245
22424
 
@@ -22247,7 +22426,7 @@ Defined in: [lib/form.ts:4124](https://github.com/maiyun/clickgo/blob/master/dis
22247
22426
 
22248
22427
  > **showInSystemTask**: `boolean`
22249
22428
 
22250
- Defined in: [lib/form.ts:4126](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4126)
22429
+ Defined in: [lib/form.ts:4202](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4202)
22251
22430
 
22252
22431
  ***
22253
22432
 
@@ -22255,7 +22434,7 @@ Defined in: [lib/form.ts:4126](https://github.com/maiyun/clickgo/blob/master/dis
22255
22434
 
22256
22435
  > **stateMax**: `boolean`
22257
22436
 
22258
- Defined in: [lib/form.ts:4122](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4122)
22437
+ Defined in: [lib/form.ts:4198](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4198)
22259
22438
 
22260
22439
  ***
22261
22440
 
@@ -22263,7 +22442,7 @@ Defined in: [lib/form.ts:4122](https://github.com/maiyun/clickgo/blob/master/dis
22263
22442
 
22264
22443
  > **stateMin**: `boolean`
22265
22444
 
22266
- Defined in: [lib/form.ts:4123](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4123)
22445
+ Defined in: [lib/form.ts:4199](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4199)
22267
22446
 
22268
22447
  ***
22269
22448
 
@@ -22271,7 +22450,7 @@ Defined in: [lib/form.ts:4123](https://github.com/maiyun/clickgo/blob/master/dis
22271
22450
 
22272
22451
  > **taskId**: `string`
22273
22452
 
22274
- Defined in: [lib/form.ts:4119](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4119)
22453
+ Defined in: [lib/form.ts:4195](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4195)
22275
22454
 
22276
22455
  ***
22277
22456
 
@@ -22279,7 +22458,7 @@ Defined in: [lib/form.ts:4119](https://github.com/maiyun/clickgo/blob/master/dis
22279
22458
 
22280
22459
  > **title**: `string`
22281
22460
 
22282
- Defined in: [lib/form.ts:4120](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4120)
22461
+ Defined in: [lib/form.ts:4196](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4196)
22283
22462
 
22284
22463
  lib/form/interfaces/IFormPromptOptions.md
22285
22464
  ---
@@ -22292,7 +22471,7 @@ lib/form/interfaces/IFormPromptOptions.md
22292
22471
 
22293
22472
  # Interface: IFormPromptOptions
22294
22473
 
22295
- Defined in: [lib/form.ts:4207](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4207)
22474
+ Defined in: [lib/form.ts:4296](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4296)
22296
22475
 
22297
22476
  Prompt 选项
22298
22477
 
@@ -22302,7 +22481,7 @@ Prompt 选项
22302
22481
 
22303
22482
  > `optional` **cancel**: `boolean`
22304
22483
 
22305
- Defined in: [lib/form.ts:4215](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4215)
22484
+ Defined in: [lib/form.ts:4304](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4304)
22306
22485
 
22307
22486
  是否显示取消按钮,默认显示
22308
22487
 
@@ -22312,7 +22491,7 @@ Defined in: [lib/form.ts:4215](https://github.com/maiyun/clickgo/blob/master/dis
22312
22491
 
22313
22492
  > **content**: `string`
22314
22493
 
22315
- Defined in: [lib/form.ts:4211](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4211)
22494
+ Defined in: [lib/form.ts:4300](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4300)
22316
22495
 
22317
22496
  内容说明
22318
22497
 
@@ -22322,7 +22501,7 @@ Defined in: [lib/form.ts:4211](https://github.com/maiyun/clickgo/blob/master/dis
22322
22501
 
22323
22502
  > `optional` **select**: (`this`, `e`, `button`) => `void`
22324
22503
 
22325
- Defined in: [lib/form.ts:4222](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4222)
22504
+ Defined in: [lib/form.ts:4311](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4311)
22326
22505
 
22327
22506
  点击按钮触发事件
22328
22507
 
@@ -22354,7 +22533,7 @@ true 代表确定,false 代表取消
22354
22533
 
22355
22534
  > `optional` **text**: `string`
22356
22535
 
22357
- Defined in: [lib/form.ts:4213](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4213)
22536
+ Defined in: [lib/form.ts:4302](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4302)
22358
22537
 
22359
22538
  文本默认值
22360
22539
 
@@ -22364,7 +22543,7 @@ Defined in: [lib/form.ts:4213](https://github.com/maiyun/clickgo/blob/master/dis
22364
22543
 
22365
22544
  > `optional` **title**: `string`
22366
22545
 
22367
- Defined in: [lib/form.ts:4209](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4209)
22546
+ Defined in: [lib/form.ts:4298](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4298)
22368
22547
 
22369
22548
  标题
22370
22549
 
@@ -22379,7 +22558,7 @@ lib/form/interfaces/IFormPromptSelectEvent.md
22379
22558
 
22380
22559
  # Interface: IFormPromptSelectEvent
22381
22560
 
22382
- Defined in: [lib/form.ts:4229](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4229)
22561
+ Defined in: [lib/form.ts:4318](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4318)
22383
22562
 
22384
22563
  Custom Event
22385
22564
 
@@ -22393,7 +22572,7 @@ Custom Event
22393
22572
 
22394
22573
  > **detail**: `object`
22395
22574
 
22396
- Defined in: [lib/form.ts:4230](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4230)
22575
+ Defined in: [lib/form.ts:4319](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4319)
22397
22576
 
22398
22577
  #### button
22399
22578
 
@@ -22444,7 +22623,7 @@ lib/form/interfaces/IMoveDragOptions.md
22444
22623
 
22445
22624
  # Interface: IMoveDragOptions
22446
22625
 
22447
- Defined in: [lib/form.ts:4130](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4130)
22626
+ Defined in: [lib/form.ts:4206](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4206)
22448
22627
 
22449
22628
  移动 drag 到新位置函数的选项
22450
22629
 
@@ -22454,7 +22633,7 @@ Defined in: [lib/form.ts:4130](https://github.com/maiyun/clickgo/blob/master/dis
22454
22633
 
22455
22634
  > `optional` **height**: `number`
22456
22635
 
22457
- Defined in: [lib/form.ts:4134](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4134)
22636
+ Defined in: [lib/form.ts:4210](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4210)
22458
22637
 
22459
22638
  ***
22460
22639
 
@@ -22462,7 +22641,7 @@ Defined in: [lib/form.ts:4134](https://github.com/maiyun/clickgo/blob/master/dis
22462
22641
 
22463
22642
  > `optional` **icon**: `boolean`
22464
22643
 
22465
- Defined in: [lib/form.ts:4135](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4135)
22644
+ Defined in: [lib/form.ts:4211](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4211)
22466
22645
 
22467
22646
  ***
22468
22647
 
@@ -22470,7 +22649,7 @@ Defined in: [lib/form.ts:4135](https://github.com/maiyun/clickgo/blob/master/dis
22470
22649
 
22471
22650
  > `optional` **left**: `number`
22472
22651
 
22473
- Defined in: [lib/form.ts:4132](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4132)
22652
+ Defined in: [lib/form.ts:4208](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4208)
22474
22653
 
22475
22654
  ***
22476
22655
 
@@ -22478,7 +22657,7 @@ Defined in: [lib/form.ts:4132](https://github.com/maiyun/clickgo/blob/master/dis
22478
22657
 
22479
22658
  > `optional` **top**: `number`
22480
22659
 
22481
- Defined in: [lib/form.ts:4131](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4131)
22660
+ Defined in: [lib/form.ts:4207](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4207)
22482
22661
 
22483
22662
  ***
22484
22663
 
@@ -22486,7 +22665,7 @@ Defined in: [lib/form.ts:4131](https://github.com/maiyun/clickgo/blob/master/dis
22486
22665
 
22487
22666
  > `optional` **width**: `number`
22488
22667
 
22489
- Defined in: [lib/form.ts:4133](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4133)
22668
+ Defined in: [lib/form.ts:4209](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4209)
22490
22669
 
22491
22670
  lib/form/interfaces/INotifyContentOptions.md
22492
22671
  ---
@@ -22499,7 +22678,7 @@ lib/form/interfaces/INotifyContentOptions.md
22499
22678
 
22500
22679
  # Interface: INotifyContentOptions
22501
22680
 
22502
- Defined in: [lib/form.ts:4152](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4152)
22681
+ Defined in: [lib/form.ts:4228](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4228)
22503
22682
 
22504
22683
  notify 信息框的修改选项
22505
22684
 
@@ -22509,7 +22688,7 @@ notify 信息框的修改选项
22509
22688
 
22510
22689
  > `optional` **content**: `string`
22511
22690
 
22512
- Defined in: [lib/form.ts:4154](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4154)
22691
+ Defined in: [lib/form.ts:4230](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4230)
22513
22692
 
22514
22693
  ***
22515
22694
 
@@ -22517,7 +22696,7 @@ Defined in: [lib/form.ts:4154](https://github.com/maiyun/clickgo/blob/master/dis
22517
22696
 
22518
22697
  > `optional` **note**: `string`
22519
22698
 
22520
- Defined in: [lib/form.ts:4155](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4155)
22699
+ Defined in: [lib/form.ts:4231](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4231)
22521
22700
 
22522
22701
  ***
22523
22702
 
@@ -22525,7 +22704,7 @@ Defined in: [lib/form.ts:4155](https://github.com/maiyun/clickgo/blob/master/dis
22525
22704
 
22526
22705
  > `optional` **progress**: `number`
22527
22706
 
22528
- Defined in: [lib/form.ts:4157](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4157)
22707
+ Defined in: [lib/form.ts:4233](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4233)
22529
22708
 
22530
22709
  可顺便修改进度
22531
22710
 
@@ -22535,7 +22714,7 @@ Defined in: [lib/form.ts:4157](https://github.com/maiyun/clickgo/blob/master/dis
22535
22714
 
22536
22715
  > `optional` **timeout**: `number`
22537
22716
 
22538
- Defined in: [lib/form.ts:4159](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4159)
22717
+ Defined in: [lib/form.ts:4235](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4235)
22539
22718
 
22540
22719
  设置后将在 x 毫秒后隐藏,这不会大于创建时的设置的总时长
22541
22720
 
@@ -22545,7 +22724,7 @@ Defined in: [lib/form.ts:4159](https://github.com/maiyun/clickgo/blob/master/dis
22545
22724
 
22546
22725
  > `optional` **title**: `string`
22547
22726
 
22548
- Defined in: [lib/form.ts:4153](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4153)
22727
+ Defined in: [lib/form.ts:4229](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4229)
22549
22728
 
22550
22729
  lib/form/interfaces/INotifyOptions.md
22551
22730
  ---
@@ -22558,7 +22737,7 @@ lib/form/interfaces/INotifyOptions.md
22558
22737
 
22559
22738
  # Interface: INotifyOptions
22560
22739
 
22561
- Defined in: [lib/form.ts:4139](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4139)
22740
+ Defined in: [lib/form.ts:4215](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4215)
22562
22741
 
22563
22742
  弹出 notify 信息框的选项
22564
22743
 
@@ -22568,7 +22747,7 @@ Defined in: [lib/form.ts:4139](https://github.com/maiyun/clickgo/blob/master/dis
22568
22747
 
22569
22748
  > `optional` **content**: `string`
22570
22749
 
22571
- Defined in: [lib/form.ts:4142](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4142)
22750
+ Defined in: [lib/form.ts:4218](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4218)
22572
22751
 
22573
22752
  正文
22574
22753
 
@@ -22578,7 +22757,7 @@ Defined in: [lib/form.ts:4142](https://github.com/maiyun/clickgo/blob/master/dis
22578
22757
 
22579
22758
  > `optional` **icon**: `string` \| `null`
22580
22759
 
22581
- Defined in: [lib/form.ts:4145](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4145)
22760
+ Defined in: [lib/form.ts:4221](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4221)
22582
22761
 
22583
22762
  ***
22584
22763
 
@@ -22586,7 +22765,7 @@ Defined in: [lib/form.ts:4145](https://github.com/maiyun/clickgo/blob/master/dis
22586
22765
 
22587
22766
  > `optional` **note**: `string`
22588
22767
 
22589
- Defined in: [lib/form.ts:4144](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4144)
22768
+ Defined in: [lib/form.ts:4220](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4220)
22590
22769
 
22591
22770
  浅色描述
22592
22771
 
@@ -22596,7 +22775,7 @@ Defined in: [lib/form.ts:4144](https://github.com/maiyun/clickgo/blob/master/dis
22596
22775
 
22597
22776
  > `optional` **progress**: `boolean`
22598
22777
 
22599
- Defined in: [lib/form.ts:4148](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4148)
22778
+ Defined in: [lib/form.ts:4224](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4224)
22600
22779
 
22601
22780
  ***
22602
22781
 
@@ -22604,7 +22783,7 @@ Defined in: [lib/form.ts:4148](https://github.com/maiyun/clickgo/blob/master/dis
22604
22783
 
22605
22784
  > `optional` **timeout**: `number`
22606
22785
 
22607
- Defined in: [lib/form.ts:4146](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4146)
22786
+ Defined in: [lib/form.ts:4222](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4222)
22608
22787
 
22609
22788
  ***
22610
22789
 
@@ -22612,7 +22791,7 @@ Defined in: [lib/form.ts:4146](https://github.com/maiyun/clickgo/blob/master/dis
22612
22791
 
22613
22792
  > `optional` **title**: `string`
22614
22793
 
22615
- Defined in: [lib/form.ts:4140](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4140)
22794
+ Defined in: [lib/form.ts:4216](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4216)
22616
22795
 
22617
22796
  ***
22618
22797
 
@@ -22620,7 +22799,7 @@ Defined in: [lib/form.ts:4140](https://github.com/maiyun/clickgo/blob/master/dis
22620
22799
 
22621
22800
  > `optional` **type**: `"progress"` \| `"info"` \| `"warning"` \| `"danger"` \| `"primary"`
22622
22801
 
22623
- Defined in: [lib/form.ts:4147](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4147)
22802
+ Defined in: [lib/form.ts:4223](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4223)
22624
22803
 
22625
22804
  lib/form/variables/activePanels.md
22626
22805
  ---