clickgo 6.1.5 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/demo.cga +0 -0
- package/dist/app/task.cga +0 -0
- package/dist/clickgo.d.ts +2 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/monaco.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/control.d.ts +17 -1
- package/dist/lib/core.d.ts +8 -0
- package/dist/lib/form.d.ts +2 -0
- package/doc/clickgo-rag.md +735 -357
- package/package.json +2 -2
package/doc/clickgo-rag.md
CHANGED
|
@@ -3916,34 +3916,42 @@ CSS 样式字符串。
|
|
|
3916
3916
|
## imgviewer
|
|
3917
3917
|
---
|
|
3918
3918
|
|
|
3919
|
-
|
|
3919
|
+
图片查看器,支持鼠标拖动、双指移动与缩放、围绕鼠标位置的滚轮缩放。新图片完整显示并居中。
|
|
3920
3920
|
|
|
3921
3921
|
### 参数
|
|
3922
3922
|
|
|
3923
3923
|
#### src
|
|
3924
3924
|
|
|
3925
|
-
`string[]` | `string
|
|
3926
|
-
|
|
3927
|
-
图片地址列表。
|
|
3925
|
+
`string[]` | `string`,图片地址或地址列表,默认空数组。支持包内路径、HTTP(S)、Data URL、Blob URL。Blob URL 的创建和释放由调用方负责。
|
|
3928
3926
|
|
|
3929
3927
|
#### modelValue
|
|
3930
3928
|
|
|
3931
|
-
`number` | `string`
|
|
3929
|
+
`number` | `string`,当前图片索引,默认 `0`,保持原有绑定含义。
|
|
3930
|
+
|
|
3931
|
+
#### zoom
|
|
3932
3932
|
|
|
3933
|
-
|
|
3933
|
+
`number` | `string`,双向绑定缩放比例,默认 `1`,范围 `0.05` 至 `5`。`1` 表示原始尺寸。切换图片时自动适应视口。
|
|
3934
3934
|
|
|
3935
|
-
###
|
|
3935
|
+
### 事件
|
|
3936
|
+
|
|
3937
|
+
#### change
|
|
3938
|
+
|
|
3939
|
+
视图变化时触发,参数为 `clickgo.control.IPanzoomView`,包含 `zoom`、`x`、`y`。
|
|
3936
3940
|
|
|
3937
|
-
|
|
3941
|
+
### 方法
|
|
3938
3942
|
|
|
3939
|
-
|
|
3943
|
+
- `zoomFit()`:完整显示并居中,调整视口大小时继续适应。
|
|
3944
|
+
- `zoomActual()`:以原始尺寸居中显示。
|
|
3940
3945
|
|
|
3941
3946
|
### 示例
|
|
3942
3947
|
|
|
3943
3948
|
```xml
|
|
3944
|
-
<imgviewer :src="
|
|
3949
|
+
<imgviewer ref="viewer" :src="images" v-model="index" v-model:zoom="zoom" style="flex: 1;"></imgviewer>
|
|
3950
|
+
<slider v-model="zoom" min="0.05" max="5" step="0.01" label="缩放"></slider>
|
|
3951
|
+
<button @click="refs.viewer.zoomFit()">适应</button>
|
|
3945
3952
|
```
|
|
3946
3953
|
|
|
3954
|
+
|
|
3947
3955
|
## jodit
|
|
3948
3956
|
---
|
|
3949
3957
|
|
|
@@ -4977,6 +4985,14 @@ CSS 样式字符串。
|
|
|
4977
4985
|
|
|
4978
4986
|
快捷键,以 `+` 分隔各键名,如 `Ctrl+Alt+T`、`Ctrl+Shift+S`。支持的修饰键:`Ctrl`、`Alt`、`Shift`、`Meta`,在 macOS 上会自动替换为对应符号(`⌘` `⌥` `⇧`)。若只传单个键名(如 `T`),则自动前置 `Ctrl`/`⌘`。快捷键仅在菜单项所属窗体获得焦点时生效,触发效果与点击菜单项一致。
|
|
4979
4987
|
|
|
4988
|
+
#### altOnly
|
|
4989
|
+
|
|
4990
|
+
`boolean` | `string`
|
|
4991
|
+
|
|
4992
|
+
是否仅显示 `alt` 的快捷键提示,默认 false。模板中写作 `alt-only`。
|
|
4993
|
+
开启后不注册、不拦截快捷键,鼠标点击和 check/radio 行为保持正常。
|
|
4994
|
+
支持动态切换。适合快捷键已由编辑器或浏览器处理的菜单项。
|
|
4995
|
+
|
|
4980
4996
|
#### type
|
|
4981
4997
|
|
|
4982
4998
|
`string`
|
|
@@ -5017,6 +5033,10 @@ radio 类型时的标签值。
|
|
|
5017
5033
|
<menulist-item label="Open" alt="Ctrl+O" @click="onOpen"></menulist-item>
|
|
5018
5034
|
```
|
|
5019
5035
|
|
|
5036
|
+
```xml
|
|
5037
|
+
<menulist-item alt="X" alt-only @click="onCut">剪切</menulist-item>
|
|
5038
|
+
```
|
|
5039
|
+
|
|
5020
5040
|
|
|
5021
5041
|
## menulist-split
|
|
5022
5042
|
---
|
|
@@ -5058,33 +5078,47 @@ Monaco 代码编辑器组件。
|
|
|
5058
5078
|
|
|
5059
5079
|
`string`
|
|
5060
5080
|
|
|
5061
|
-
|
|
5081
|
+
双向绑定。`files` 为空或未设置时为编辑器内容;`files` 非空时为当前文件的路径。
|
|
5082
|
+
路径不存在时显示空编辑区,不保留上一个文件。
|
|
5062
5083
|
|
|
5063
5084
|
#### language
|
|
5064
5085
|
|
|
5065
5086
|
`string`
|
|
5066
5087
|
|
|
5067
|
-
|
|
5088
|
+
当前文件的代码语言,不区分大小写。为空时,多文件按扩展名推断,单文件使用纯文本。
|
|
5068
5089
|
|
|
5069
5090
|
#### theme
|
|
5070
5091
|
|
|
5071
5092
|
`string`
|
|
5072
5093
|
|
|
5073
|
-
|
|
5094
|
+
编辑器主题,如 `vs`、`vs-dark`、`hc-black`、`hc-light`。为空时使用 `vs`。
|
|
5074
5095
|
|
|
5075
5096
|
#### files
|
|
5076
5097
|
|
|
5077
|
-
`Record<string,
|
|
5098
|
+
`Record<string, string>` | `undefined`
|
|
5099
|
+
|
|
5100
|
+
双向绑定,键为文件路径或 URI,值为文本内容,默认 `{}`。
|
|
5101
|
+
非空时进入多文件模式,所有文件参与代码提示;清空后进入单文件模式。
|
|
5102
|
+
声明文件(`.d.ts`、`.d.mts`、`.d.cts`)的新增、修改和删除会自动刷新类型诊断,无需修改当前代码。
|
|
5103
|
+
编辑时发出新的文件对象。切换文件保留撤销历史、选区和滚动位置。
|
|
5104
|
+
|
|
5105
|
+
#### options
|
|
5106
|
+
|
|
5107
|
+
`Record<string, unknown>`
|
|
5078
5108
|
|
|
5079
|
-
|
|
5109
|
+
Monaco 编辑器选项,默认 `{}`,支持动态更新,如 `wordWrap`、`tabSize`、`minimap`。
|
|
5110
|
+
`readonly`、`disabled` 优先于选项中的 `readOnly` 和 `domReadOnly`。
|
|
5111
|
+
控件使用自定义右键菜单和自己的文本模型,`contextmenu`、初始化 `model` 由控件管理。
|
|
5112
|
+
未设置字体选项时继承控件字体,默认关闭小地图并自动调整布局。
|
|
5080
5113
|
|
|
5081
5114
|
### 事件
|
|
5082
5115
|
|
|
5083
5116
|
#### jump
|
|
5084
5117
|
|
|
5085
|
-
`(info: {
|
|
5118
|
+
`(info: { resource: Monaco.Uri; options: { selection?: Monaco.IRange | Monaco.IPosition } }) => void`
|
|
5086
5119
|
|
|
5087
|
-
|
|
5120
|
+
跳转到其他文件时触发。`resource.path` 为目标路径,`options.selection` 为目标位置。
|
|
5121
|
+
由应用切换当前文件并设置选区;控件不会自动切换文件。
|
|
5088
5122
|
|
|
5089
5123
|
#### init
|
|
5090
5124
|
|
|
@@ -5092,11 +5126,49 @@ Monaco 代码编辑器组件。
|
|
|
5092
5126
|
|
|
5093
5127
|
编辑器初始化完成时触发。
|
|
5094
5128
|
|
|
5129
|
+
#### error
|
|
5130
|
+
|
|
5131
|
+
`(info: { stage: 'iframe' | 'loader' | 'module' | 'editor' | 'timeout' | 'clipboard'; error: unknown }) => void`
|
|
5132
|
+
|
|
5133
|
+
加载或剪贴板操作失败时触发。初始化失败结束加载状态并释放资源。
|
|
5134
|
+
|
|
5135
|
+
#### change
|
|
5136
|
+
|
|
5137
|
+
`(event: { detail: { path: string; value: string } }) => void`
|
|
5138
|
+
|
|
5139
|
+
编辑器内容改变时触发,包括用户编辑、撤销、重做。单文件模式的 `path` 为空字符串。
|
|
5140
|
+
外部绑定内容同步不重复触发。
|
|
5141
|
+
|
|
5142
|
+
#### focus
|
|
5143
|
+
|
|
5144
|
+
`() => void`
|
|
5145
|
+
|
|
5146
|
+
编辑区获取焦点时触发。
|
|
5147
|
+
|
|
5148
|
+
#### blur
|
|
5149
|
+
|
|
5150
|
+
`() => void`
|
|
5151
|
+
|
|
5152
|
+
编辑区失去焦点时触发。
|
|
5153
|
+
|
|
5154
|
+
### 方法
|
|
5155
|
+
|
|
5156
|
+
#### execCmd(ac)
|
|
5157
|
+
|
|
5158
|
+
执行 `copy`、`cut`、`paste`。禁用时不执行,只读时只允许复制。
|
|
5159
|
+
自定义剪切处理非空选区;编辑器内的快捷键由 Monaco 处理。
|
|
5160
|
+
|
|
5161
|
+
#### refreshModels()
|
|
5162
|
+
|
|
5163
|
+
根据当前绑定刷新文件和内容,一般由控件自动调用。
|
|
5164
|
+
|
|
5165
|
+
通过 `init` 或控件 `access.instance` 可调用 Monaco 编辑器公开 API,如格式化、查找、设置选区。
|
|
5166
|
+
|
|
5095
5167
|
### 样式
|
|
5096
5168
|
|
|
5097
5169
|
使用 flex 布局,编辑器填满容器空间。支持语法高亮、自动补全、代码折叠。
|
|
5098
5170
|
|
|
5099
|
-
|
|
5171
|
+
支持多种编程语言、行号,可通过 `theme` 切换主题,通过 `options` 开启小地图。
|
|
5100
5172
|
|
|
5101
5173
|
### 示例
|
|
5102
5174
|
|
|
@@ -5104,6 +5176,11 @@ Monaco 代码编辑器组件。
|
|
|
5104
5176
|
<monaco v-model="code" language="javascript" @init="onInit"></monaco>
|
|
5105
5177
|
```
|
|
5106
5178
|
|
|
5179
|
+
```xml
|
|
5180
|
+
<monaco v-model="path" v-model:files="files" :options="{wordWrap: 'on', minimap: {enabled: true}}" @change="onChange" @error="onError"></monaco>
|
|
5181
|
+
```
|
|
5182
|
+
|
|
5183
|
+
|
|
5107
5184
|
## mpegts
|
|
5108
5185
|
---
|
|
5109
5186
|
|
|
@@ -5806,6 +5883,95 @@ noVNC 远程桌面组件。
|
|
|
5806
5883
|
<panel :map="map"></panel>
|
|
5807
5884
|
```
|
|
5808
5885
|
|
|
5886
|
+
## panzoom
|
|
5887
|
+
---
|
|
5888
|
+
|
|
5889
|
+
平移缩放视口。插槽可承载 Canvas、SVG、图片等内容,不转换为图片,不接管内容重绘。支持鼠标拖动、双指平移与缩放、滚轮缩放,无原生滚动条。
|
|
5890
|
+
|
|
5891
|
+
### 参数
|
|
5892
|
+
|
|
5893
|
+
#### contentWidth
|
|
5894
|
+
|
|
5895
|
+
`number` | `string`,内容原始宽度,默认 `0`。Canvas 应与其绘图坐标宽度一致。
|
|
5896
|
+
|
|
5897
|
+
#### contentHeight
|
|
5898
|
+
|
|
5899
|
+
`number` | `string`,内容原始高度,默认 `0`。
|
|
5900
|
+
|
|
5901
|
+
#### modelValue
|
|
5902
|
+
|
|
5903
|
+
`number` | `string`,双向绑定绝对缩放比例,默认 `1`。`1` 表示内容像素与 CSS 像素一一对应,可直接绑定 Slider。外部更改比例时围绕视口中心缩放。
|
|
5904
|
+
|
|
5905
|
+
#### x
|
|
5906
|
+
|
|
5907
|
+
`number` | `string`,双向绑定水平偏移,单位为视口 CSS 像素,默认 `0`。
|
|
5908
|
+
|
|
5909
|
+
#### y
|
|
5910
|
+
|
|
5911
|
+
`number` | `string`,双向绑定垂直偏移,默认 `0`。
|
|
5912
|
+
|
|
5913
|
+
#### zoomMin
|
|
5914
|
+
|
|
5915
|
+
`number` | `string`,最小缩放比例,默认 `0.05`,必须大于 `0`。
|
|
5916
|
+
|
|
5917
|
+
#### zoomMax
|
|
5918
|
+
|
|
5919
|
+
`number` | `string`,最大缩放比例,默认 `20`,不得小于 `zoomMin`。
|
|
5920
|
+
|
|
5921
|
+
#### autoFit
|
|
5922
|
+
|
|
5923
|
+
`boolean` | `string`,默认 `true`。首次显示和内容尺寸改变时完整显示并居中;手动操作后调整视口保持当前比例和中心。调用 `zoomFit()` 后恢复随视口适应。仅重绘内容不会重置视图。保存/恢复指定视图时设为 `false`。
|
|
5924
|
+
|
|
5925
|
+
#### disabled
|
|
5926
|
+
|
|
5927
|
+
`boolean` | `string`,是否禁用用户交互,默认 `false`。禁用或卸载时结束活动手势,取消未提交的编辑。
|
|
5928
|
+
|
|
5929
|
+
#### mode
|
|
5930
|
+
|
|
5931
|
+
`'pan'` | `'edit'`,默认 `pan`。`edit` 模式单指/鼠标操作通过编辑事件交给调用方;第二指加入立即取消尚未提交的编辑并转为平移缩放,直到所有手指离开才允许下一次编辑。滚轮仍可缩放。
|
|
5932
|
+
|
|
5933
|
+
### 事件
|
|
5934
|
+
|
|
5935
|
+
#### change
|
|
5936
|
+
|
|
5937
|
+
视图改变时触发,参数为 `clickgo.control.IPanzoomView`:`{ zoom, x, y }`。可与 `v-model`、`v-model:x`、`v-model:y` 同时使用。
|
|
5938
|
+
|
|
5939
|
+
#### editstart
|
|
5940
|
+
|
|
5941
|
+
内容内单指/鼠标按下时触发。参数为 `clickgo.control.IPanzoomEditEvent`:`{ x, y, inside, event }`,坐标已转换为原始内容坐标。此时只能开始临时编辑,不应写入不可撤销的历史。
|
|
5942
|
+
|
|
5943
|
+
#### editmove
|
|
5944
|
+
|
|
5945
|
+
编辑移动时触发,参数同 `editstart`。移出内容后 `inside` 为 `false`,由调用方决定是否绘制。
|
|
5946
|
+
|
|
5947
|
+
#### editend
|
|
5948
|
+
|
|
5949
|
+
单指/鼠标正常抬起时提交编辑,参数同 `editstart`。调用方可在这里写入历史。
|
|
5950
|
+
|
|
5951
|
+
#### editcancel
|
|
5952
|
+
|
|
5953
|
+
第二指加入、滚轮打断、指针取消、窗口失焦、模式切换、禁用或卸载时取消编辑。调用方应恢复 `editstart` 前的状态。参数坐标为最后一次编辑位置,`event` 在主动销毁时可能不存在。每次编辑只产生一次 `editend` 或 `editcancel`。
|
|
5954
|
+
|
|
5955
|
+
### 方法
|
|
5956
|
+
|
|
5957
|
+
- `zoomTo(zoom, x?, y?)`:围绕视口内指定坐标缩放,默认视口中心。
|
|
5958
|
+
- `zoomFit()`:完整显示并居中,比例仍受上下限约束。
|
|
5959
|
+
- `zoomActual()`:以 `1:1` 居中,比例仍受上下限约束。
|
|
5960
|
+
- `toLocal(clientX, clientY)`:浏览器坐标转内容坐标,返回 `{ x, y, inside }`。
|
|
5961
|
+
|
|
5962
|
+
控件自身聚焦时,`+` / `-` 缩放,`0` 适应,`1` 原始尺寸。不要在插槽上重复绑定 Pointer 手势;编辑请使用上述事件,保证多指取消语义。
|
|
5963
|
+
|
|
5964
|
+
### 示例
|
|
5965
|
+
|
|
5966
|
+
```xml
|
|
5967
|
+
<panzoom ref="viewer" v-model="zoom" content-width="640" content-height="480" style="flex: 1;">
|
|
5968
|
+
<canvas ref="canvas" width="640" height="480"></canvas>
|
|
5969
|
+
</panzoom>
|
|
5970
|
+
<slider v-model="zoom" min="0.05" max="20" step="0.01" label="缩放"></slider>
|
|
5971
|
+
<button @click="refs.viewer.zoomFit()">适应</button>
|
|
5972
|
+
```
|
|
5973
|
+
|
|
5974
|
+
|
|
5809
5975
|
## pdf
|
|
5810
5976
|
---
|
|
5811
5977
|
|
|
@@ -8581,7 +8747,7 @@ clickgo/classes/AbstractBoot.md
|
|
|
8581
8747
|
|
|
8582
8748
|
# Abstract Class: AbstractBoot
|
|
8583
8749
|
|
|
8584
|
-
Defined in: [clickgo.ts:
|
|
8750
|
+
Defined in: [clickgo.ts:166](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L166)
|
|
8585
8751
|
|
|
8586
8752
|
全局类
|
|
8587
8753
|
|
|
@@ -8591,7 +8757,7 @@ Defined in: [clickgo.ts:164](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8591
8757
|
|
|
8592
8758
|
> **new AbstractBoot**(`opt?`): `AbstractBoot`
|
|
8593
8759
|
|
|
8594
|
-
Defined in: [clickgo.ts:
|
|
8760
|
+
Defined in: [clickgo.ts:186](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L186)
|
|
8595
8761
|
|
|
8596
8762
|
#### Parameters
|
|
8597
8763
|
|
|
@@ -8611,7 +8777,7 @@ Defined in: [clickgo.ts:184](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8611
8777
|
|
|
8612
8778
|
> `protected` **\_sysId**: `string` = `''`
|
|
8613
8779
|
|
|
8614
|
-
Defined in: [clickgo.ts:
|
|
8780
|
+
Defined in: [clickgo.ts:172](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L172)
|
|
8615
8781
|
|
|
8616
8782
|
切勿传给 App
|
|
8617
8783
|
|
|
@@ -8621,7 +8787,7 @@ Defined in: [clickgo.ts:170](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8621
8787
|
|
|
8622
8788
|
> **isDebug**(): `boolean`
|
|
8623
8789
|
|
|
8624
|
-
Defined in: [clickgo.ts:
|
|
8790
|
+
Defined in: [clickgo.ts:182](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L182)
|
|
8625
8791
|
|
|
8626
8792
|
判断当前是否是 debug 模式
|
|
8627
8793
|
|
|
@@ -8635,7 +8801,7 @@ Defined in: [clickgo.ts:180](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8635
8801
|
|
|
8636
8802
|
> `abstract` **main**(): `void` \| `Promise`\<`void`\>
|
|
8637
8803
|
|
|
8638
|
-
Defined in: [clickgo.ts:
|
|
8804
|
+
Defined in: [clickgo.ts:195](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L195)
|
|
8639
8805
|
|
|
8640
8806
|
入口方法
|
|
8641
8807
|
|
|
@@ -8649,7 +8815,7 @@ Defined in: [clickgo.ts:193](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8649
8815
|
|
|
8650
8816
|
> **onConfigChanged**\<`T`, `TK`\>(`n`, `v`): `void` \| `Promise`\<`void`\>
|
|
8651
8817
|
|
|
8652
|
-
Defined in: [clickgo.ts:
|
|
8818
|
+
Defined in: [clickgo.ts:210](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L210)
|
|
8653
8819
|
|
|
8654
8820
|
系统配置变更事件
|
|
8655
8821
|
|
|
@@ -8683,7 +8849,7 @@ Defined in: [clickgo.ts:208](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8683
8849
|
|
|
8684
8850
|
> **onError**(`taskId`, `formId`, `error`, `info`): `void` \| `Promise`\<`void`\>
|
|
8685
8851
|
|
|
8686
|
-
Defined in: [clickgo.ts:
|
|
8852
|
+
Defined in: [clickgo.ts:198](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L198)
|
|
8687
8853
|
|
|
8688
8854
|
全局错误事件
|
|
8689
8855
|
|
|
@@ -8715,7 +8881,7 @@ Defined in: [clickgo.ts:196](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8715
8881
|
|
|
8716
8882
|
> **onFormBlurred**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
8717
8883
|
|
|
8718
|
-
Defined in: [clickgo.ts:
|
|
8884
|
+
Defined in: [clickgo.ts:266](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L266)
|
|
8719
8885
|
|
|
8720
8886
|
窗体丢失焦点事件
|
|
8721
8887
|
|
|
@@ -8739,7 +8905,7 @@ Defined in: [clickgo.ts:264](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8739
8905
|
|
|
8740
8906
|
> **onFormCreated**(`taskId`, `formId`, `title`, `icon`, `showInSystemTask`): `void` \| `Promise`\<`void`\>
|
|
8741
8907
|
|
|
8742
|
-
Defined in: [clickgo.ts:
|
|
8908
|
+
Defined in: [clickgo.ts:216](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L216)
|
|
8743
8909
|
|
|
8744
8910
|
窗体创建事件
|
|
8745
8911
|
|
|
@@ -8775,7 +8941,7 @@ Defined in: [clickgo.ts:214](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8775
8941
|
|
|
8776
8942
|
> **onFormFlash**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
8777
8943
|
|
|
8778
|
-
Defined in: [clickgo.ts:
|
|
8944
|
+
Defined in: [clickgo.ts:272](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L272)
|
|
8779
8945
|
|
|
8780
8946
|
窗体闪烁事件
|
|
8781
8947
|
|
|
@@ -8799,7 +8965,7 @@ Defined in: [clickgo.ts:270](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8799
8965
|
|
|
8800
8966
|
> **onFormFocused**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
8801
8967
|
|
|
8802
|
-
Defined in: [clickgo.ts:
|
|
8968
|
+
Defined in: [clickgo.ts:260](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L260)
|
|
8803
8969
|
|
|
8804
8970
|
窗体获得焦点事件
|
|
8805
8971
|
|
|
@@ -8823,7 +8989,7 @@ Defined in: [clickgo.ts:258](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8823
8989
|
|
|
8824
8990
|
> **onFormHashChange**(`taskId`, `formId`, `value`, `data`): `void` \| `Promise`\<`void`\>
|
|
8825
8991
|
|
|
8826
|
-
Defined in: [clickgo.ts:
|
|
8992
|
+
Defined in: [clickgo.ts:284](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L284)
|
|
8827
8993
|
|
|
8828
8994
|
窗体的 formHash 改变事件
|
|
8829
8995
|
|
|
@@ -8855,7 +9021,7 @@ Defined in: [clickgo.ts:282](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8855
9021
|
|
|
8856
9022
|
> **onFormIconChanged**(`taskId`, `formId`, `icon`): `void` \| `Promise`\<`void`\>
|
|
8857
9023
|
|
|
8858
|
-
Defined in: [clickgo.ts:
|
|
9024
|
+
Defined in: [clickgo.ts:236](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L236)
|
|
8859
9025
|
|
|
8860
9026
|
窗体图标改变事件
|
|
8861
9027
|
|
|
@@ -8883,7 +9049,7 @@ Defined in: [clickgo.ts:234](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8883
9049
|
|
|
8884
9050
|
> **onFormRemoved**(`taskId`, `formId`, `title`, `icon`): `void` \| `Promise`\<`void`\>
|
|
8885
9051
|
|
|
8886
|
-
Defined in: [clickgo.ts:
|
|
9052
|
+
Defined in: [clickgo.ts:224](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L224)
|
|
8887
9053
|
|
|
8888
9054
|
窗体销毁事件
|
|
8889
9055
|
|
|
@@ -8915,7 +9081,7 @@ Defined in: [clickgo.ts:222](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8915
9081
|
|
|
8916
9082
|
> **onFormShowChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
8917
9083
|
|
|
8918
|
-
Defined in: [clickgo.ts:
|
|
9084
|
+
Defined in: [clickgo.ts:254](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L254)
|
|
8919
9085
|
|
|
8920
9086
|
窗体显示状态改变事件
|
|
8921
9087
|
|
|
@@ -8943,7 +9109,7 @@ Defined in: [clickgo.ts:252](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8943
9109
|
|
|
8944
9110
|
> **onFormShowInSystemTaskChange**(`taskId`, `formId`, `value`): `void` \| `Promise`\<`void`\>
|
|
8945
9111
|
|
|
8946
|
-
Defined in: [clickgo.ts:
|
|
9112
|
+
Defined in: [clickgo.ts:278](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L278)
|
|
8947
9113
|
|
|
8948
9114
|
窗体是否显示在任务栏属性改变事件
|
|
8949
9115
|
|
|
@@ -8971,7 +9137,7 @@ Defined in: [clickgo.ts:276](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8971
9137
|
|
|
8972
9138
|
> **onFormStateMaxChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
8973
9139
|
|
|
8974
|
-
Defined in: [clickgo.ts:
|
|
9140
|
+
Defined in: [clickgo.ts:248](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L248)
|
|
8975
9141
|
|
|
8976
9142
|
窗体最大化状态改变事件
|
|
8977
9143
|
|
|
@@ -8999,7 +9165,7 @@ Defined in: [clickgo.ts:246](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8999
9165
|
|
|
9000
9166
|
> **onFormStateMinChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
9001
9167
|
|
|
9002
|
-
Defined in: [clickgo.ts:
|
|
9168
|
+
Defined in: [clickgo.ts:242](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L242)
|
|
9003
9169
|
|
|
9004
9170
|
窗体最小化状态改变事件
|
|
9005
9171
|
|
|
@@ -9027,7 +9193,7 @@ Defined in: [clickgo.ts:240](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9027
9193
|
|
|
9028
9194
|
> **onFormTitleChanged**(`taskId`, `formId`, `title`): `void` \| `Promise`\<`void`\>
|
|
9029
9195
|
|
|
9030
|
-
Defined in: [clickgo.ts:
|
|
9196
|
+
Defined in: [clickgo.ts:230](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L230)
|
|
9031
9197
|
|
|
9032
9198
|
窗体标题改变事件
|
|
9033
9199
|
|
|
@@ -9055,7 +9221,7 @@ Defined in: [clickgo.ts:228](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9055
9221
|
|
|
9056
9222
|
> **onHashChanged**(`hash`): `void` \| `Promise`\<`void`\>
|
|
9057
9223
|
|
|
9058
|
-
Defined in: [clickgo.ts:
|
|
9224
|
+
Defined in: [clickgo.ts:310](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L310)
|
|
9059
9225
|
|
|
9060
9226
|
location hash 改变事件
|
|
9061
9227
|
|
|
@@ -9075,7 +9241,7 @@ location hash 改变事件
|
|
|
9075
9241
|
|
|
9076
9242
|
> **onKeydown**(`e`): `void` \| `Promise`\<`void`\>
|
|
9077
9243
|
|
|
9078
|
-
Defined in: [clickgo.ts:
|
|
9244
|
+
Defined in: [clickgo.ts:316](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L316)
|
|
9079
9245
|
|
|
9080
9246
|
键盘按下事件
|
|
9081
9247
|
|
|
@@ -9095,7 +9261,7 @@ Defined in: [clickgo.ts:314](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9095
9261
|
|
|
9096
9262
|
> **onKeyup**(`e`): `void` \| `Promise`\<`void`\>
|
|
9097
9263
|
|
|
9098
|
-
Defined in: [clickgo.ts:
|
|
9264
|
+
Defined in: [clickgo.ts:322](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L322)
|
|
9099
9265
|
|
|
9100
9266
|
键盘弹起事件
|
|
9101
9267
|
|
|
@@ -9115,7 +9281,7 @@ Defined in: [clickgo.ts:320](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9115
9281
|
|
|
9116
9282
|
> **onLauncherFolderNameChanged**(`id`, `name`): `void` \| `Promise`\<`void`\>
|
|
9117
9283
|
|
|
9118
|
-
Defined in: [clickgo.ts:
|
|
9284
|
+
Defined in: [clickgo.ts:304](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L304)
|
|
9119
9285
|
|
|
9120
9286
|
launcher 文件夹名称修改事件
|
|
9121
9287
|
|
|
@@ -9139,7 +9305,7 @@ launcher 文件夹名称修改事件
|
|
|
9139
9305
|
|
|
9140
9306
|
> **onRuntimeFileLoad**(`url`): `void` \| `Promise`\<`void`\>
|
|
9141
9307
|
|
|
9142
|
-
Defined in: [clickgo.ts:
|
|
9308
|
+
Defined in: [clickgo.ts:328](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L328)
|
|
9143
9309
|
|
|
9144
9310
|
环境文件准备加载时的事件
|
|
9145
9311
|
|
|
@@ -9159,7 +9325,7 @@ Defined in: [clickgo.ts:326](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9159
9325
|
|
|
9160
9326
|
> **onRuntimeFileLoaded**(`url`, `state`): `void` \| `Promise`\<`void`\>
|
|
9161
9327
|
|
|
9162
|
-
Defined in: [clickgo.ts:
|
|
9328
|
+
Defined in: [clickgo.ts:334](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L334)
|
|
9163
9329
|
|
|
9164
9330
|
环境文件加载完成的事件
|
|
9165
9331
|
|
|
@@ -9183,7 +9349,7 @@ Defined in: [clickgo.ts:332](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9183
9349
|
|
|
9184
9350
|
> **onScreenResize**(): `void` \| `Promise`\<`void`\>
|
|
9185
9351
|
|
|
9186
|
-
Defined in: [clickgo.ts:
|
|
9352
|
+
Defined in: [clickgo.ts:204](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L204)
|
|
9187
9353
|
|
|
9188
9354
|
屏幕大小改变事件
|
|
9189
9355
|
|
|
@@ -9197,7 +9363,7 @@ Defined in: [clickgo.ts:202](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9197
9363
|
|
|
9198
9364
|
> **onTaskEnded**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
9199
9365
|
|
|
9200
|
-
Defined in: [clickgo.ts:
|
|
9366
|
+
Defined in: [clickgo.ts:298](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L298)
|
|
9201
9367
|
|
|
9202
9368
|
任务结束事件
|
|
9203
9369
|
|
|
@@ -9217,7 +9383,7 @@ Defined in: [clickgo.ts:296](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9217
9383
|
|
|
9218
9384
|
> **onTaskStarted**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
9219
9385
|
|
|
9220
|
-
Defined in: [clickgo.ts:
|
|
9386
|
+
Defined in: [clickgo.ts:292](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L292)
|
|
9221
9387
|
|
|
9222
9388
|
任务开始事件
|
|
9223
9389
|
|
|
@@ -9237,7 +9403,7 @@ Defined in: [clickgo.ts:290](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9237
9403
|
|
|
9238
9404
|
> **setSysId**(`sysId`): `void`
|
|
9239
9405
|
|
|
9240
|
-
Defined in: [clickgo.ts:
|
|
9406
|
+
Defined in: [clickgo.ts:174](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L174)
|
|
9241
9407
|
|
|
9242
9408
|
#### Parameters
|
|
9243
9409
|
|
|
@@ -9262,7 +9428,7 @@ clickgo/functions/getCdn.md
|
|
|
9262
9428
|
|
|
9263
9429
|
> **getCdn**(): `string`
|
|
9264
9430
|
|
|
9265
|
-
Defined in: [clickgo.ts:
|
|
9431
|
+
Defined in: [clickgo.ts:104](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L104)
|
|
9266
9432
|
|
|
9267
9433
|
获取当前 cdn 前缀
|
|
9268
9434
|
|
|
@@ -9283,7 +9449,7 @@ clickgo/functions/getDevice.md
|
|
|
9283
9449
|
|
|
9284
9450
|
> **getDevice**(): `object`
|
|
9285
9451
|
|
|
9286
|
-
Defined in: [clickgo.ts:
|
|
9452
|
+
Defined in: [clickgo.ts:130](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L130)
|
|
9287
9453
|
|
|
9288
9454
|
获取当前设备信息(支持 native 和 web)
|
|
9289
9455
|
|
|
@@ -9312,7 +9478,7 @@ clickgo/functions/getDirname.md
|
|
|
9312
9478
|
|
|
9313
9479
|
> **getDirname**(): `string`
|
|
9314
9480
|
|
|
9315
|
-
Defined in: [clickgo.ts:
|
|
9481
|
+
Defined in: [clickgo.ts:82](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L82)
|
|
9316
9482
|
|
|
9317
9483
|
获取当前 ClickGo 所在的目录,不以 / 结尾
|
|
9318
9484
|
|
|
@@ -9333,7 +9499,7 @@ clickgo/functions/getPlatform.md
|
|
|
9333
9499
|
|
|
9334
9500
|
> **getPlatform**(): `Platform` \| `"web"`
|
|
9335
9501
|
|
|
9336
|
-
Defined in: [clickgo.ts:
|
|
9502
|
+
Defined in: [clickgo.ts:117](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L117)
|
|
9337
9503
|
|
|
9338
9504
|
获取当前平台(web 则只返回 web)
|
|
9339
9505
|
|
|
@@ -9354,7 +9520,7 @@ clickgo/functions/getVersion.md
|
|
|
9354
9520
|
|
|
9355
9521
|
> **getVersion**(): `string`
|
|
9356
9522
|
|
|
9357
|
-
Defined in: [clickgo.ts:
|
|
9523
|
+
Defined in: [clickgo.ts:70](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L70)
|
|
9358
9524
|
|
|
9359
9525
|
获取当前版本
|
|
9360
9526
|
|
|
@@ -9375,7 +9541,7 @@ clickgo/functions/hasFrame.md
|
|
|
9375
9541
|
|
|
9376
9542
|
> **hasFrame**(): `boolean`
|
|
9377
9543
|
|
|
9378
|
-
Defined in: [clickgo.ts:
|
|
9544
|
+
Defined in: [clickgo.ts:161](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L161)
|
|
9379
9545
|
|
|
9380
9546
|
是否含有窗体外边框
|
|
9381
9547
|
|
|
@@ -9396,7 +9562,7 @@ clickgo/functions/isNative.md
|
|
|
9396
9562
|
|
|
9397
9563
|
> **isNative**(): `boolean`
|
|
9398
9564
|
|
|
9399
|
-
Defined in: [clickgo.ts:
|
|
9565
|
+
Defined in: [clickgo.ts:76](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L76)
|
|
9400
9566
|
|
|
9401
9567
|
是否是 native 环境
|
|
9402
9568
|
|
|
@@ -9417,7 +9583,7 @@ clickgo/functions/launcher.md
|
|
|
9417
9583
|
|
|
9418
9584
|
> **launcher**(`boot`): `Promise`\<`void`\>
|
|
9419
9585
|
|
|
9420
|
-
Defined in: [clickgo.ts:
|
|
9586
|
+
Defined in: [clickgo.ts:417](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L417)
|
|
9421
9587
|
|
|
9422
9588
|
启动 ClickGo
|
|
9423
9589
|
|
|
@@ -9446,7 +9612,7 @@ clickgo/functions/showBrowserWarning.md
|
|
|
9446
9612
|
|
|
9447
9613
|
> **showBrowserWarning**(`text`): `void`
|
|
9448
9614
|
|
|
9449
|
-
Defined in: [clickgo.ts:
|
|
9615
|
+
Defined in: [clickgo.ts:342](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L342)
|
|
9450
9616
|
|
|
9451
9617
|
显示浏览器运行环境提示
|
|
9452
9618
|
|
|
@@ -9581,7 +9747,7 @@ clickgo/variables/global.md
|
|
|
9581
9747
|
|
|
9582
9748
|
> `const` **global**: `any`
|
|
9583
9749
|
|
|
9584
|
-
Defined in: [clickgo.ts:
|
|
9750
|
+
Defined in: [clickgo.ts:99](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L99)
|
|
9585
9751
|
|
|
9586
9752
|
用户定义的全局对象
|
|
9587
9753
|
|
|
@@ -9626,6 +9792,12 @@ Defined in: [clickgo.ts:43](https://github.com/maiyun/clickgo/blob/master/dist/c
|
|
|
9626
9792
|
|
|
9627
9793
|
原生 jszip
|
|
9628
9794
|
|
|
9795
|
+
### monaco-editor
|
|
9796
|
+
|
|
9797
|
+
> **monaco-editor**: [`IMonacoLoader`](../../lib/core/interfaces/IMonacoLoader.md)
|
|
9798
|
+
|
|
9799
|
+
Monaco 模块的加载资源
|
|
9800
|
+
|
|
9629
9801
|
### mpegts
|
|
9630
9802
|
|
|
9631
9803
|
> **mpegts**: `__module`
|
|
@@ -9687,7 +9859,7 @@ lib/control/classes/AbstractControl.md
|
|
|
9687
9859
|
|
|
9688
9860
|
Defined in: [lib/control.ts:63](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L63)
|
|
9689
9861
|
|
|
9690
|
-
|
|
9862
|
+
控件的抽象类
|
|
9691
9863
|
|
|
9692
9864
|
## Constructors
|
|
9693
9865
|
|
|
@@ -10646,6 +10818,9 @@ lib/control/index.md
|
|
|
10646
10818
|
- [IPaletteChangedEvent](interfaces/IPaletteChangedEvent.md)
|
|
10647
10819
|
- [IPanelGoEvent](interfaces/IPanelGoEvent.md)
|
|
10648
10820
|
- [IPanelWentEvent](interfaces/IPanelWentEvent.md)
|
|
10821
|
+
- [IPanzoomEditEvent](interfaces/IPanzoomEditEvent.md)
|
|
10822
|
+
- [IPanzoomPoint](interfaces/IPanzoomPoint.md)
|
|
10823
|
+
- [IPanzoomView](interfaces/IPanzoomView.md)
|
|
10649
10824
|
- [IPdfViewEvent](interfaces/IPdfViewEvent.md)
|
|
10650
10825
|
- [IRadioChangeEvent](interfaces/IRadioChangeEvent.md)
|
|
10651
10826
|
- [ISelectAddedEvent](interfaces/ISelectAddedEvent.md)
|
|
@@ -10863,7 +11038,7 @@ lib/control/interfaces/IChecklistAddEvent.md
|
|
|
10863
11038
|
|
|
10864
11039
|
# Interface: IChecklistAddEvent
|
|
10865
11040
|
|
|
10866
|
-
Defined in: [lib/control.ts:
|
|
11041
|
+
Defined in: [lib/control.ts:1294](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1294)
|
|
10867
11042
|
|
|
10868
11043
|
Custom Event
|
|
10869
11044
|
|
|
@@ -10877,7 +11052,7 @@ Custom Event
|
|
|
10877
11052
|
|
|
10878
11053
|
> **detail**: `object`
|
|
10879
11054
|
|
|
10880
|
-
Defined in: [lib/control.ts:
|
|
11055
|
+
Defined in: [lib/control.ts:1295](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1295)
|
|
10881
11056
|
|
|
10882
11057
|
#### index
|
|
10883
11058
|
|
|
@@ -10926,7 +11101,7 @@ lib/control/interfaces/IChecklistItemclickedEvent.md
|
|
|
10926
11101
|
|
|
10927
11102
|
# Interface: IChecklistItemclickedEvent
|
|
10928
11103
|
|
|
10929
|
-
Defined in: [lib/control.ts:
|
|
11104
|
+
Defined in: [lib/control.ts:1301](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1301)
|
|
10930
11105
|
|
|
10931
11106
|
## Properties
|
|
10932
11107
|
|
|
@@ -10934,7 +11109,7 @@ Defined in: [lib/control.ts:1280](https://github.com/maiyun/clickgo/blob/master/
|
|
|
10934
11109
|
|
|
10935
11110
|
> **detail**: `object`
|
|
10936
11111
|
|
|
10937
|
-
Defined in: [lib/control.ts:
|
|
11112
|
+
Defined in: [lib/control.ts:1302](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1302)
|
|
10938
11113
|
|
|
10939
11114
|
#### arrow
|
|
10940
11115
|
|
|
@@ -10959,7 +11134,7 @@ lib/control/interfaces/IChecklistRemoveEvent.md
|
|
|
10959
11134
|
|
|
10960
11135
|
# Interface: IChecklistRemoveEvent
|
|
10961
11136
|
|
|
10962
|
-
Defined in: [lib/control.ts:
|
|
11137
|
+
Defined in: [lib/control.ts:1287](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1287)
|
|
10963
11138
|
|
|
10964
11139
|
Custom Event
|
|
10965
11140
|
|
|
@@ -10973,7 +11148,7 @@ Custom Event
|
|
|
10973
11148
|
|
|
10974
11149
|
> **detail**: `object`
|
|
10975
11150
|
|
|
10976
|
-
Defined in: [lib/control.ts:
|
|
11151
|
+
Defined in: [lib/control.ts:1288](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1288)
|
|
10977
11152
|
|
|
10978
11153
|
#### index
|
|
10979
11154
|
|
|
@@ -11022,7 +11197,7 @@ lib/control/interfaces/IColoristChangedEvent.md
|
|
|
11022
11197
|
|
|
11023
11198
|
# Interface: IColoristChangedEvent
|
|
11024
11199
|
|
|
11025
|
-
Defined in: [lib/control.ts:
|
|
11200
|
+
Defined in: [lib/control.ts:1414](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1414)
|
|
11026
11201
|
|
|
11027
11202
|
## Properties
|
|
11028
11203
|
|
|
@@ -11030,7 +11205,7 @@ Defined in: [lib/control.ts:1393](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11030
11205
|
|
|
11031
11206
|
> **detail**: `object`
|
|
11032
11207
|
|
|
11033
|
-
Defined in: [lib/control.ts:
|
|
11208
|
+
Defined in: [lib/control.ts:1415](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1415)
|
|
11034
11209
|
|
|
11035
11210
|
#### hsl?
|
|
11036
11211
|
|
|
@@ -11458,7 +11633,7 @@ lib/control/interfaces/IFabricLayerchangeEvent.md
|
|
|
11458
11633
|
|
|
11459
11634
|
# Interface: IFabricLayerchangeEvent
|
|
11460
11635
|
|
|
11461
|
-
Defined in: [lib/control.ts:
|
|
11636
|
+
Defined in: [lib/control.ts:1584](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1584)
|
|
11462
11637
|
|
|
11463
11638
|
## Properties
|
|
11464
11639
|
|
|
@@ -11466,7 +11641,7 @@ Defined in: [lib/control.ts:1563](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11466
11641
|
|
|
11467
11642
|
> **detail**: `object`
|
|
11468
11643
|
|
|
11469
|
-
Defined in: [lib/control.ts:
|
|
11644
|
+
Defined in: [lib/control.ts:1585](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1585)
|
|
11470
11645
|
|
|
11471
11646
|
#### next
|
|
11472
11647
|
|
|
@@ -11491,7 +11666,7 @@ lib/control/interfaces/IFabricLayerlistchangeEvent.md
|
|
|
11491
11666
|
|
|
11492
11667
|
# Interface: IFabricLayerlistchangeEvent
|
|
11493
11668
|
|
|
11494
|
-
Defined in: [lib/control.ts:
|
|
11669
|
+
Defined in: [lib/control.ts:1593](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1593)
|
|
11495
11670
|
|
|
11496
11671
|
## Properties
|
|
11497
11672
|
|
|
@@ -11499,7 +11674,7 @@ Defined in: [lib/control.ts:1572](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11499
11674
|
|
|
11500
11675
|
> **detail**: `object`
|
|
11501
11676
|
|
|
11502
|
-
Defined in: [lib/control.ts:
|
|
11677
|
+
Defined in: [lib/control.ts:1594](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1594)
|
|
11503
11678
|
|
|
11504
11679
|
#### names
|
|
11505
11680
|
|
|
@@ -11509,7 +11684,7 @@ Defined in: [lib/control.ts:1573](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11509
11684
|
|
|
11510
11685
|
#### type
|
|
11511
11686
|
|
|
11512
|
-
> **type**: `"
|
|
11687
|
+
> **type**: `"visible"` \| `"add"` \| `"move"` \| `"remove"` \| `"rename"` \| `"locked"`
|
|
11513
11688
|
|
|
11514
11689
|
变更类型:add 新增、remove 移除、rename 重命名、visible 可见性、locked 锁定状态、move 移动位置
|
|
11515
11690
|
|
|
@@ -11530,7 +11705,7 @@ lib/control/interfaces/IFabricObjectchangeEvent.md
|
|
|
11530
11705
|
|
|
11531
11706
|
# Interface: IFabricObjectchangeEvent
|
|
11532
11707
|
|
|
11533
|
-
Defined in: [lib/control.ts:
|
|
11708
|
+
Defined in: [lib/control.ts:1604](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1604)
|
|
11534
11709
|
|
|
11535
11710
|
## Properties
|
|
11536
11711
|
|
|
@@ -11538,7 +11713,7 @@ Defined in: [lib/control.ts:1583](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11538
11713
|
|
|
11539
11714
|
> **detail**: `object`
|
|
11540
11715
|
|
|
11541
|
-
Defined in: [lib/control.ts:
|
|
11716
|
+
Defined in: [lib/control.ts:1605](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1605)
|
|
11542
11717
|
|
|
11543
11718
|
#### angle
|
|
11544
11719
|
|
|
@@ -12204,7 +12379,7 @@ lib/control/interfaces/IIconviewDropEvent.md
|
|
|
12204
12379
|
|
|
12205
12380
|
# Interface: IIconviewDropEvent
|
|
12206
12381
|
|
|
12207
|
-
Defined in: [lib/control.ts:
|
|
12382
|
+
Defined in: [lib/control.ts:1240](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1240)
|
|
12208
12383
|
|
|
12209
12384
|
## Properties
|
|
12210
12385
|
|
|
@@ -12212,7 +12387,7 @@ Defined in: [lib/control.ts:1219](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12212
12387
|
|
|
12213
12388
|
> **detail**: `object`
|
|
12214
12389
|
|
|
12215
|
-
Defined in: [lib/control.ts:
|
|
12390
|
+
Defined in: [lib/control.ts:1241](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1241)
|
|
12216
12391
|
|
|
12217
12392
|
#### from
|
|
12218
12393
|
|
|
@@ -12249,7 +12424,7 @@ lib/control/interfaces/IIconviewItemclickedEvent.md
|
|
|
12249
12424
|
|
|
12250
12425
|
# Interface: IIconviewItemclickedEvent
|
|
12251
12426
|
|
|
12252
|
-
Defined in: [lib/control.ts:
|
|
12427
|
+
Defined in: [lib/control.ts:1227](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1227)
|
|
12253
12428
|
|
|
12254
12429
|
## Properties
|
|
12255
12430
|
|
|
@@ -12257,7 +12432,7 @@ Defined in: [lib/control.ts:1206](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12257
12432
|
|
|
12258
12433
|
> **detail**: `object`
|
|
12259
12434
|
|
|
12260
|
-
Defined in: [lib/control.ts:
|
|
12435
|
+
Defined in: [lib/control.ts:1228](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1228)
|
|
12261
12436
|
|
|
12262
12437
|
#### event
|
|
12263
12438
|
|
|
@@ -12278,7 +12453,7 @@ lib/control/interfaces/IIconviewOpenEvent.md
|
|
|
12278
12453
|
|
|
12279
12454
|
# Interface: IIconviewOpenEvent
|
|
12280
12455
|
|
|
12281
|
-
Defined in: [lib/control.ts:
|
|
12456
|
+
Defined in: [lib/control.ts:1234](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1234)
|
|
12282
12457
|
|
|
12283
12458
|
## Properties
|
|
12284
12459
|
|
|
@@ -12286,7 +12461,7 @@ Defined in: [lib/control.ts:1213](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12286
12461
|
|
|
12287
12462
|
> **detail**: `object`
|
|
12288
12463
|
|
|
12289
|
-
Defined in: [lib/control.ts:
|
|
12464
|
+
Defined in: [lib/control.ts:1235](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1235)
|
|
12290
12465
|
|
|
12291
12466
|
#### value
|
|
12292
12467
|
|
|
@@ -12303,7 +12478,7 @@ lib/control/interfaces/IIconviewSelectEvent.md
|
|
|
12303
12478
|
|
|
12304
12479
|
# Interface: IIconviewSelectEvent
|
|
12305
12480
|
|
|
12306
|
-
Defined in: [lib/control.ts:
|
|
12481
|
+
Defined in: [lib/control.ts:1256](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1256)
|
|
12307
12482
|
|
|
12308
12483
|
## Properties
|
|
12309
12484
|
|
|
@@ -12311,7 +12486,7 @@ Defined in: [lib/control.ts:1235](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12311
12486
|
|
|
12312
12487
|
> **detail**: `object`
|
|
12313
12488
|
|
|
12314
|
-
Defined in: [lib/control.ts:
|
|
12489
|
+
Defined in: [lib/control.ts:1257](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1257)
|
|
12315
12490
|
|
|
12316
12491
|
#### area
|
|
12317
12492
|
|
|
@@ -12364,7 +12539,7 @@ lib/control/interfaces/ILevelselectLevelEvent.md
|
|
|
12364
12539
|
|
|
12365
12540
|
# Interface: ILevelselectLevelEvent
|
|
12366
12541
|
|
|
12367
|
-
Defined in: [lib/control.ts:
|
|
12542
|
+
Defined in: [lib/control.ts:1274](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1274)
|
|
12368
12543
|
|
|
12369
12544
|
## Properties
|
|
12370
12545
|
|
|
@@ -12372,7 +12547,7 @@ Defined in: [lib/control.ts:1253](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12372
12547
|
|
|
12373
12548
|
> **detail**: `object`
|
|
12374
12549
|
|
|
12375
|
-
Defined in: [lib/control.ts:
|
|
12550
|
+
Defined in: [lib/control.ts:1275](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1275)
|
|
12376
12551
|
|
|
12377
12552
|
#### labels
|
|
12378
12553
|
|
|
@@ -12397,7 +12572,7 @@ lib/control/interfaces/IListAddEvent.md
|
|
|
12397
12572
|
|
|
12398
12573
|
# Interface: IListAddEvent
|
|
12399
12574
|
|
|
12400
|
-
Defined in: [lib/control.ts:
|
|
12575
|
+
Defined in: [lib/control.ts:1330](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1330)
|
|
12401
12576
|
|
|
12402
12577
|
Custom Event
|
|
12403
12578
|
|
|
@@ -12411,7 +12586,7 @@ Custom Event
|
|
|
12411
12586
|
|
|
12412
12587
|
> **detail**: `object`
|
|
12413
12588
|
|
|
12414
|
-
Defined in: [lib/control.ts:
|
|
12589
|
+
Defined in: [lib/control.ts:1331](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1331)
|
|
12415
12590
|
|
|
12416
12591
|
#### index
|
|
12417
12592
|
|
|
@@ -12460,7 +12635,7 @@ lib/control/interfaces/IListChangedEvent.md
|
|
|
12460
12635
|
|
|
12461
12636
|
# Interface: IListChangedEvent
|
|
12462
12637
|
|
|
12463
|
-
Defined in: [lib/control.ts:
|
|
12638
|
+
Defined in: [lib/control.ts:1317](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1317)
|
|
12464
12639
|
|
|
12465
12640
|
## Properties
|
|
12466
12641
|
|
|
@@ -12468,7 +12643,7 @@ Defined in: [lib/control.ts:1296](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12468
12643
|
|
|
12469
12644
|
> **detail**: `object`
|
|
12470
12645
|
|
|
12471
|
-
Defined in: [lib/control.ts:
|
|
12646
|
+
Defined in: [lib/control.ts:1318](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1318)
|
|
12472
12647
|
|
|
12473
12648
|
#### value
|
|
12474
12649
|
|
|
@@ -12485,7 +12660,7 @@ lib/control/interfaces/IListChangeEvent.md
|
|
|
12485
12660
|
|
|
12486
12661
|
# Interface: IListChangeEvent
|
|
12487
12662
|
|
|
12488
|
-
Defined in: [lib/control.ts:
|
|
12663
|
+
Defined in: [lib/control.ts:1311](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1311)
|
|
12489
12664
|
|
|
12490
12665
|
Custom Event
|
|
12491
12666
|
|
|
@@ -12499,7 +12674,7 @@ Custom Event
|
|
|
12499
12674
|
|
|
12500
12675
|
> **detail**: `object`
|
|
12501
12676
|
|
|
12502
|
-
Defined in: [lib/control.ts:
|
|
12677
|
+
Defined in: [lib/control.ts:1312](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1312)
|
|
12503
12678
|
|
|
12504
12679
|
#### value
|
|
12505
12680
|
|
|
@@ -12544,7 +12719,7 @@ lib/control/interfaces/IListItemclickedEvent.md
|
|
|
12544
12719
|
|
|
12545
12720
|
# Interface: IListItemclickedEvent
|
|
12546
12721
|
|
|
12547
|
-
Defined in: [lib/control.ts:
|
|
12722
|
+
Defined in: [lib/control.ts:1337](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1337)
|
|
12548
12723
|
|
|
12549
12724
|
## Properties
|
|
12550
12725
|
|
|
@@ -12552,7 +12727,7 @@ Defined in: [lib/control.ts:1316](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12552
12727
|
|
|
12553
12728
|
> **detail**: `object`
|
|
12554
12729
|
|
|
12555
|
-
Defined in: [lib/control.ts:
|
|
12730
|
+
Defined in: [lib/control.ts:1338](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1338)
|
|
12556
12731
|
|
|
12557
12732
|
#### arrow
|
|
12558
12733
|
|
|
@@ -12577,7 +12752,7 @@ lib/control/interfaces/IListItemdblclickedEvent.md
|
|
|
12577
12752
|
|
|
12578
12753
|
# Interface: IListItemdblclickedEvent
|
|
12579
12754
|
|
|
12580
|
-
Defined in: [lib/control.ts:
|
|
12755
|
+
Defined in: [lib/control.ts:1345](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1345)
|
|
12581
12756
|
|
|
12582
12757
|
## Properties
|
|
12583
12758
|
|
|
@@ -12585,7 +12760,7 @@ Defined in: [lib/control.ts:1324](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12585
12760
|
|
|
12586
12761
|
> **detail**: `object`
|
|
12587
12762
|
|
|
12588
|
-
Defined in: [lib/control.ts:
|
|
12763
|
+
Defined in: [lib/control.ts:1346](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1346)
|
|
12589
12764
|
|
|
12590
12765
|
#### arrow
|
|
12591
12766
|
|
|
@@ -12610,7 +12785,7 @@ lib/control/interfaces/IListRemoveEvent.md
|
|
|
12610
12785
|
|
|
12611
12786
|
# Interface: IListRemoveEvent
|
|
12612
12787
|
|
|
12613
|
-
Defined in: [lib/control.ts:
|
|
12788
|
+
Defined in: [lib/control.ts:1323](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1323)
|
|
12614
12789
|
|
|
12615
12790
|
Custom Event
|
|
12616
12791
|
|
|
@@ -12624,7 +12799,7 @@ Custom Event
|
|
|
12624
12799
|
|
|
12625
12800
|
> **detail**: `object`
|
|
12626
12801
|
|
|
12627
|
-
Defined in: [lib/control.ts:
|
|
12802
|
+
Defined in: [lib/control.ts:1324](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1324)
|
|
12628
12803
|
|
|
12629
12804
|
#### index
|
|
12630
12805
|
|
|
@@ -12740,7 +12915,7 @@ lib/control/interfaces/INavItemSelectEvent.md
|
|
|
12740
12915
|
|
|
12741
12916
|
# Interface: INavItemSelectEvent
|
|
12742
12917
|
|
|
12743
|
-
Defined in: [lib/control.ts:
|
|
12918
|
+
Defined in: [lib/control.ts:1355](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1355)
|
|
12744
12919
|
|
|
12745
12920
|
Custom Event
|
|
12746
12921
|
|
|
@@ -12754,7 +12929,7 @@ Custom Event
|
|
|
12754
12929
|
|
|
12755
12930
|
> **detail**: `object`
|
|
12756
12931
|
|
|
12757
|
-
Defined in: [lib/control.ts:
|
|
12932
|
+
Defined in: [lib/control.ts:1356](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1356)
|
|
12758
12933
|
|
|
12759
12934
|
#### name
|
|
12760
12935
|
|
|
@@ -12929,7 +13104,7 @@ lib/control/interfaces/IObjviewerLine.md
|
|
|
12929
13104
|
|
|
12930
13105
|
# Interface: IObjviewerLine
|
|
12931
13106
|
|
|
12932
|
-
Defined in: [lib/control.ts:
|
|
13107
|
+
Defined in: [lib/control.ts:1620](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1620)
|
|
12933
13108
|
|
|
12934
13109
|
## Properties
|
|
12935
13110
|
|
|
@@ -12937,7 +13112,7 @@ Defined in: [lib/control.ts:1599](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12937
13112
|
|
|
12938
13113
|
> **end**: [`IObjviewerLineObj`](IObjviewerLineObj.md)
|
|
12939
13114
|
|
|
12940
|
-
Defined in: [lib/control.ts:
|
|
13115
|
+
Defined in: [lib/control.ts:1624](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1624)
|
|
12941
13116
|
|
|
12942
13117
|
***
|
|
12943
13118
|
|
|
@@ -12945,7 +13120,7 @@ Defined in: [lib/control.ts:1603](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12945
13120
|
|
|
12946
13121
|
> `optional` **hue?**: `string`
|
|
12947
13122
|
|
|
12948
|
-
Defined in: [lib/control.ts:
|
|
13123
|
+
Defined in: [lib/control.ts:1626](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1626)
|
|
12949
13124
|
|
|
12950
13125
|
默认 255
|
|
12951
13126
|
|
|
@@ -12955,7 +13130,7 @@ Defined in: [lib/control.ts:1605](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12955
13130
|
|
|
12956
13131
|
> `optional` **name?**: `string`
|
|
12957
13132
|
|
|
12958
|
-
Defined in: [lib/control.ts:
|
|
13133
|
+
Defined in: [lib/control.ts:1622](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1622)
|
|
12959
13134
|
|
|
12960
13135
|
-- 可自定义线段的名称
|
|
12961
13136
|
|
|
@@ -12965,7 +13140,7 @@ Defined in: [lib/control.ts:1601](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12965
13140
|
|
|
12966
13141
|
> `optional` **path?**: `string`
|
|
12967
13142
|
|
|
12968
|
-
Defined in: [lib/control.ts:
|
|
13143
|
+
Defined in: [lib/control.ts:1627](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1627)
|
|
12969
13144
|
|
|
12970
13145
|
***
|
|
12971
13146
|
|
|
@@ -12973,7 +13148,7 @@ Defined in: [lib/control.ts:1606](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12973
13148
|
|
|
12974
13149
|
> **start**: [`IObjviewerLineObj`](IObjviewerLineObj.md)
|
|
12975
13150
|
|
|
12976
|
-
Defined in: [lib/control.ts:
|
|
13151
|
+
Defined in: [lib/control.ts:1623](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1623)
|
|
12977
13152
|
|
|
12978
13153
|
***
|
|
12979
13154
|
|
|
@@ -12981,7 +13156,7 @@ Defined in: [lib/control.ts:1602](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12981
13156
|
|
|
12982
13157
|
> `optional` **stroke?**: `"down"` \| `"solid"` \| `"dashed"` \| `"up"`
|
|
12983
13158
|
|
|
12984
|
-
Defined in: [lib/control.ts:
|
|
13159
|
+
Defined in: [lib/control.ts:1629](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1629)
|
|
12985
13160
|
|
|
12986
13161
|
默认 solid
|
|
12987
13162
|
|
|
@@ -12996,7 +13171,7 @@ lib/control/interfaces/IObjviewerLineObj.md
|
|
|
12996
13171
|
|
|
12997
13172
|
# Interface: IObjviewerLineObj
|
|
12998
13173
|
|
|
12999
|
-
Defined in: [lib/control.ts:
|
|
13174
|
+
Defined in: [lib/control.ts:1632](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1632)
|
|
13000
13175
|
|
|
13001
13176
|
## Properties
|
|
13002
13177
|
|
|
@@ -13004,7 +13179,7 @@ Defined in: [lib/control.ts:1611](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13004
13179
|
|
|
13005
13180
|
> **obj**: `HTMLElement` \| [`AbstractControl`](../classes/AbstractControl.md)
|
|
13006
13181
|
|
|
13007
|
-
Defined in: [lib/control.ts:
|
|
13182
|
+
Defined in: [lib/control.ts:1633](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1633)
|
|
13008
13183
|
|
|
13009
13184
|
***
|
|
13010
13185
|
|
|
@@ -13012,7 +13187,7 @@ Defined in: [lib/control.ts:1612](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13012
13187
|
|
|
13013
13188
|
> **pos**: `"b"` \| `"tr"` \| `"l"` \| `"lt"` \| `"t"` \| `"r"` \| `"rb"` \| `"bl"`
|
|
13014
13189
|
|
|
13015
|
-
Defined in: [lib/control.ts:
|
|
13190
|
+
Defined in: [lib/control.ts:1634](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1634)
|
|
13016
13191
|
|
|
13017
13192
|
lib/control/interfaces/IPaletteChangedEvent.md
|
|
13018
13193
|
---
|
|
@@ -13025,7 +13200,7 @@ lib/control/interfaces/IPaletteChangedEvent.md
|
|
|
13025
13200
|
|
|
13026
13201
|
# Interface: IPaletteChangedEvent
|
|
13027
13202
|
|
|
13028
|
-
Defined in: [lib/control.ts:
|
|
13203
|
+
Defined in: [lib/control.ts:1392](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1392)
|
|
13029
13204
|
|
|
13030
13205
|
## Properties
|
|
13031
13206
|
|
|
@@ -13033,7 +13208,7 @@ Defined in: [lib/control.ts:1371](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13033
13208
|
|
|
13034
13209
|
> **detail**: `object`
|
|
13035
13210
|
|
|
13036
|
-
Defined in: [lib/control.ts:
|
|
13211
|
+
Defined in: [lib/control.ts:1393](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1393)
|
|
13037
13212
|
|
|
13038
13213
|
#### hsl?
|
|
13039
13214
|
|
|
@@ -13094,7 +13269,7 @@ lib/control/interfaces/IPanelGoEvent.md
|
|
|
13094
13269
|
|
|
13095
13270
|
# Interface: IPanelGoEvent
|
|
13096
13271
|
|
|
13097
|
-
Defined in: [lib/control.ts:
|
|
13272
|
+
Defined in: [lib/control.ts:1364](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1364)
|
|
13098
13273
|
|
|
13099
13274
|
Custom Event
|
|
13100
13275
|
|
|
@@ -13108,7 +13283,7 @@ Custom Event
|
|
|
13108
13283
|
|
|
13109
13284
|
> **detail**: `object`
|
|
13110
13285
|
|
|
13111
|
-
Defined in: [lib/control.ts:
|
|
13286
|
+
Defined in: [lib/control.ts:1365](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1365)
|
|
13112
13287
|
|
|
13113
13288
|
#### from
|
|
13114
13289
|
|
|
@@ -13157,7 +13332,7 @@ lib/control/interfaces/IPanelWentEvent.md
|
|
|
13157
13332
|
|
|
13158
13333
|
# Interface: IPanelWentEvent
|
|
13159
13334
|
|
|
13160
|
-
Defined in: [lib/control.ts:
|
|
13335
|
+
Defined in: [lib/control.ts:1371](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1371)
|
|
13161
13336
|
|
|
13162
13337
|
## Properties
|
|
13163
13338
|
|
|
@@ -13165,7 +13340,7 @@ Defined in: [lib/control.ts:1350](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13165
13340
|
|
|
13166
13341
|
> **detail**: `object`
|
|
13167
13342
|
|
|
13168
|
-
Defined in: [lib/control.ts:
|
|
13343
|
+
Defined in: [lib/control.ts:1372](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1372)
|
|
13169
13344
|
|
|
13170
13345
|
#### from
|
|
13171
13346
|
|
|
@@ -13179,6 +13354,151 @@ Defined in: [lib/control.ts:1351](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13179
13354
|
|
|
13180
13355
|
> **to**: `string`
|
|
13181
13356
|
|
|
13357
|
+
lib/control/interfaces/IPanzoomEditEvent.md
|
|
13358
|
+
---
|
|
13359
|
+
|
|
13360
|
+
[**Documents for clickgo**](../../../index.md)
|
|
13361
|
+
|
|
13362
|
+
***
|
|
13363
|
+
|
|
13364
|
+
[Documents for clickgo](../../../index.md) / [lib/control](../index.md) / IPanzoomEditEvent
|
|
13365
|
+
|
|
13366
|
+
# Interface: IPanzoomEditEvent
|
|
13367
|
+
|
|
13368
|
+
Defined in: [lib/control.ts:1194](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1194)
|
|
13369
|
+
|
|
13370
|
+
编辑事件;editcancel 时 event 可能因主动销毁而不存在
|
|
13371
|
+
|
|
13372
|
+
## Extends
|
|
13373
|
+
|
|
13374
|
+
- [`IPanzoomPoint`](IPanzoomPoint.md)
|
|
13375
|
+
|
|
13376
|
+
## Properties
|
|
13377
|
+
|
|
13378
|
+
### event
|
|
13379
|
+
|
|
13380
|
+
> **event**: `Event` \| `undefined`
|
|
13381
|
+
|
|
13382
|
+
Defined in: [lib/control.ts:1195](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1195)
|
|
13383
|
+
|
|
13384
|
+
***
|
|
13385
|
+
|
|
13386
|
+
### inside
|
|
13387
|
+
|
|
13388
|
+
> **inside**: `boolean`
|
|
13389
|
+
|
|
13390
|
+
Defined in: [lib/control.ts:1190](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1190)
|
|
13391
|
+
|
|
13392
|
+
#### Inherited from
|
|
13393
|
+
|
|
13394
|
+
[`IPanzoomPoint`](IPanzoomPoint.md).[`inside`](IPanzoomPoint.md#inside)
|
|
13395
|
+
|
|
13396
|
+
***
|
|
13397
|
+
|
|
13398
|
+
### x
|
|
13399
|
+
|
|
13400
|
+
> **x**: `number`
|
|
13401
|
+
|
|
13402
|
+
Defined in: [lib/control.ts:1188](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1188)
|
|
13403
|
+
|
|
13404
|
+
#### Inherited from
|
|
13405
|
+
|
|
13406
|
+
[`IPanzoomPoint`](IPanzoomPoint.md).[`x`](IPanzoomPoint.md#x)
|
|
13407
|
+
|
|
13408
|
+
***
|
|
13409
|
+
|
|
13410
|
+
### y
|
|
13411
|
+
|
|
13412
|
+
> **y**: `number`
|
|
13413
|
+
|
|
13414
|
+
Defined in: [lib/control.ts:1189](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1189)
|
|
13415
|
+
|
|
13416
|
+
#### Inherited from
|
|
13417
|
+
|
|
13418
|
+
[`IPanzoomPoint`](IPanzoomPoint.md).[`y`](IPanzoomPoint.md#y)
|
|
13419
|
+
|
|
13420
|
+
lib/control/interfaces/IPanzoomPoint.md
|
|
13421
|
+
---
|
|
13422
|
+
|
|
13423
|
+
[**Documents for clickgo**](../../../index.md)
|
|
13424
|
+
|
|
13425
|
+
***
|
|
13426
|
+
|
|
13427
|
+
[Documents for clickgo](../../../index.md) / [lib/control](../index.md) / IPanzoomPoint
|
|
13428
|
+
|
|
13429
|
+
# Interface: IPanzoomPoint
|
|
13430
|
+
|
|
13431
|
+
Defined in: [lib/control.ts:1187](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1187)
|
|
13432
|
+
|
|
13433
|
+
Panzoom 内容坐标,单位为缩放前的内容像素
|
|
13434
|
+
|
|
13435
|
+
## Extended by
|
|
13436
|
+
|
|
13437
|
+
- [`IPanzoomEditEvent`](IPanzoomEditEvent.md)
|
|
13438
|
+
|
|
13439
|
+
## Properties
|
|
13440
|
+
|
|
13441
|
+
### inside
|
|
13442
|
+
|
|
13443
|
+
> **inside**: `boolean`
|
|
13444
|
+
|
|
13445
|
+
Defined in: [lib/control.ts:1190](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1190)
|
|
13446
|
+
|
|
13447
|
+
***
|
|
13448
|
+
|
|
13449
|
+
### x
|
|
13450
|
+
|
|
13451
|
+
> **x**: `number`
|
|
13452
|
+
|
|
13453
|
+
Defined in: [lib/control.ts:1188](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1188)
|
|
13454
|
+
|
|
13455
|
+
***
|
|
13456
|
+
|
|
13457
|
+
### y
|
|
13458
|
+
|
|
13459
|
+
> **y**: `number`
|
|
13460
|
+
|
|
13461
|
+
Defined in: [lib/control.ts:1189](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1189)
|
|
13462
|
+
|
|
13463
|
+
lib/control/interfaces/IPanzoomView.md
|
|
13464
|
+
---
|
|
13465
|
+
|
|
13466
|
+
[**Documents for clickgo**](../../../index.md)
|
|
13467
|
+
|
|
13468
|
+
***
|
|
13469
|
+
|
|
13470
|
+
[Documents for clickgo](../../../index.md) / [lib/control](../index.md) / IPanzoomView
|
|
13471
|
+
|
|
13472
|
+
# Interface: IPanzoomView
|
|
13473
|
+
|
|
13474
|
+
Defined in: [lib/control.ts:1180](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1180)
|
|
13475
|
+
|
|
13476
|
+
Panzoom 视图状态,偏移单位为视口 CSS 像素
|
|
13477
|
+
|
|
13478
|
+
## Properties
|
|
13479
|
+
|
|
13480
|
+
### x
|
|
13481
|
+
|
|
13482
|
+
> **x**: `number`
|
|
13483
|
+
|
|
13484
|
+
Defined in: [lib/control.ts:1182](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1182)
|
|
13485
|
+
|
|
13486
|
+
***
|
|
13487
|
+
|
|
13488
|
+
### y
|
|
13489
|
+
|
|
13490
|
+
> **y**: `number`
|
|
13491
|
+
|
|
13492
|
+
Defined in: [lib/control.ts:1183](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1183)
|
|
13493
|
+
|
|
13494
|
+
***
|
|
13495
|
+
|
|
13496
|
+
### zoom
|
|
13497
|
+
|
|
13498
|
+
> **zoom**: `number`
|
|
13499
|
+
|
|
13500
|
+
Defined in: [lib/control.ts:1181](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1181)
|
|
13501
|
+
|
|
13182
13502
|
lib/control/interfaces/IPdfViewEvent.md
|
|
13183
13503
|
---
|
|
13184
13504
|
|
|
@@ -13190,7 +13510,7 @@ lib/control/interfaces/IPdfViewEvent.md
|
|
|
13190
13510
|
|
|
13191
13511
|
# Interface: IPdfViewEvent
|
|
13192
13512
|
|
|
13193
|
-
Defined in: [lib/control.ts:
|
|
13513
|
+
Defined in: [lib/control.ts:1200](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1200)
|
|
13194
13514
|
|
|
13195
13515
|
## Properties
|
|
13196
13516
|
|
|
@@ -13198,7 +13518,7 @@ Defined in: [lib/control.ts:1179](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13198
13518
|
|
|
13199
13519
|
> **detail**: `object`
|
|
13200
13520
|
|
|
13201
|
-
Defined in: [lib/control.ts:
|
|
13521
|
+
Defined in: [lib/control.ts:1201](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1201)
|
|
13202
13522
|
|
|
13203
13523
|
#### height
|
|
13204
13524
|
|
|
@@ -13247,7 +13567,7 @@ lib/control/interfaces/IRadioChangeEvent.md
|
|
|
13247
13567
|
|
|
13248
13568
|
# Interface: IRadioChangeEvent
|
|
13249
13569
|
|
|
13250
|
-
Defined in: [lib/control.ts:
|
|
13570
|
+
Defined in: [lib/control.ts:1381](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1381)
|
|
13251
13571
|
|
|
13252
13572
|
Custom Event
|
|
13253
13573
|
|
|
@@ -13261,7 +13581,7 @@ Custom Event
|
|
|
13261
13581
|
|
|
13262
13582
|
> **detail**: `object`
|
|
13263
13583
|
|
|
13264
|
-
Defined in: [lib/control.ts:
|
|
13584
|
+
Defined in: [lib/control.ts:1382](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1382)
|
|
13265
13585
|
|
|
13266
13586
|
#### selected
|
|
13267
13587
|
|
|
@@ -13314,7 +13634,7 @@ lib/control/interfaces/ISelectAddedEvent.md
|
|
|
13314
13634
|
|
|
13315
13635
|
# Interface: ISelectAddedEvent
|
|
13316
13636
|
|
|
13317
|
-
Defined in: [lib/control.ts:
|
|
13637
|
+
Defined in: [lib/control.ts:1451](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1451)
|
|
13318
13638
|
|
|
13319
13639
|
## Properties
|
|
13320
13640
|
|
|
@@ -13322,7 +13642,7 @@ Defined in: [lib/control.ts:1430](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13322
13642
|
|
|
13323
13643
|
> **detail**: `object`
|
|
13324
13644
|
|
|
13325
|
-
Defined in: [lib/control.ts:
|
|
13645
|
+
Defined in: [lib/control.ts:1452](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1452)
|
|
13326
13646
|
|
|
13327
13647
|
#### index
|
|
13328
13648
|
|
|
@@ -13343,7 +13663,7 @@ lib/control/interfaces/ISelectAddEvent.md
|
|
|
13343
13663
|
|
|
13344
13664
|
# Interface: ISelectAddEvent
|
|
13345
13665
|
|
|
13346
|
-
Defined in: [lib/control.ts:
|
|
13666
|
+
Defined in: [lib/control.ts:1436](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1436)
|
|
13347
13667
|
|
|
13348
13668
|
Custom Event
|
|
13349
13669
|
|
|
@@ -13357,7 +13677,7 @@ Custom Event
|
|
|
13357
13677
|
|
|
13358
13678
|
> **detail**: `object`
|
|
13359
13679
|
|
|
13360
|
-
Defined in: [lib/control.ts:
|
|
13680
|
+
Defined in: [lib/control.ts:1437](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1437)
|
|
13361
13681
|
|
|
13362
13682
|
#### index
|
|
13363
13683
|
|
|
@@ -13406,7 +13726,7 @@ lib/control/interfaces/ISelectChangedEvent.md
|
|
|
13406
13726
|
|
|
13407
13727
|
# Interface: ISelectChangedEvent
|
|
13408
13728
|
|
|
13409
|
-
Defined in: [lib/control.ts:
|
|
13729
|
+
Defined in: [lib/control.ts:1472](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1472)
|
|
13410
13730
|
|
|
13411
13731
|
## Properties
|
|
13412
13732
|
|
|
@@ -13414,7 +13734,7 @@ Defined in: [lib/control.ts:1451](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13414
13734
|
|
|
13415
13735
|
> **detail**: `object`
|
|
13416
13736
|
|
|
13417
|
-
Defined in: [lib/control.ts:
|
|
13737
|
+
Defined in: [lib/control.ts:1473](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1473)
|
|
13418
13738
|
|
|
13419
13739
|
#### before
|
|
13420
13740
|
|
|
@@ -13435,7 +13755,7 @@ lib/control/interfaces/ISelectChangeEvent.md
|
|
|
13435
13755
|
|
|
13436
13756
|
# Interface: ISelectChangeEvent
|
|
13437
13757
|
|
|
13438
|
-
Defined in: [lib/control.ts:
|
|
13758
|
+
Defined in: [lib/control.ts:1466](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1466)
|
|
13439
13759
|
|
|
13440
13760
|
Custom Event
|
|
13441
13761
|
|
|
@@ -13449,7 +13769,7 @@ Custom Event
|
|
|
13449
13769
|
|
|
13450
13770
|
> **detail**: `object`
|
|
13451
13771
|
|
|
13452
|
-
Defined in: [lib/control.ts:
|
|
13772
|
+
Defined in: [lib/control.ts:1467](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1467)
|
|
13453
13773
|
|
|
13454
13774
|
#### value
|
|
13455
13775
|
|
|
@@ -13494,7 +13814,7 @@ lib/control/interfaces/ISelectItemclickedEvent.md
|
|
|
13494
13814
|
|
|
13495
13815
|
# Interface: ISelectItemclickedEvent
|
|
13496
13816
|
|
|
13497
|
-
Defined in: [lib/control.ts:
|
|
13817
|
+
Defined in: [lib/control.ts:1494](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1494)
|
|
13498
13818
|
|
|
13499
13819
|
## Properties
|
|
13500
13820
|
|
|
@@ -13502,7 +13822,7 @@ Defined in: [lib/control.ts:1473](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13502
13822
|
|
|
13503
13823
|
> **detail**: `object`
|
|
13504
13824
|
|
|
13505
|
-
Defined in: [lib/control.ts:
|
|
13825
|
+
Defined in: [lib/control.ts:1495](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1495)
|
|
13506
13826
|
|
|
13507
13827
|
#### arrow
|
|
13508
13828
|
|
|
@@ -13527,7 +13847,7 @@ lib/control/interfaces/ISelectRemoteEvent.md
|
|
|
13527
13847
|
|
|
13528
13848
|
# Interface: ISelectRemoteEvent
|
|
13529
13849
|
|
|
13530
|
-
Defined in: [lib/control.ts:
|
|
13850
|
+
Defined in: [lib/control.ts:1486](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1486)
|
|
13531
13851
|
|
|
13532
13852
|
## Properties
|
|
13533
13853
|
|
|
@@ -13535,7 +13855,7 @@ Defined in: [lib/control.ts:1465](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13535
13855
|
|
|
13536
13856
|
> **detail**: `object`
|
|
13537
13857
|
|
|
13538
|
-
Defined in: [lib/control.ts:
|
|
13858
|
+
Defined in: [lib/control.ts:1487](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1487)
|
|
13539
13859
|
|
|
13540
13860
|
#### callback
|
|
13541
13861
|
|
|
@@ -13568,7 +13888,7 @@ lib/control/interfaces/ISelectRemovedEvent.md
|
|
|
13568
13888
|
|
|
13569
13889
|
# Interface: ISelectRemovedEvent
|
|
13570
13890
|
|
|
13571
|
-
Defined in: [lib/control.ts:
|
|
13891
|
+
Defined in: [lib/control.ts:1458](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1458)
|
|
13572
13892
|
|
|
13573
13893
|
## Properties
|
|
13574
13894
|
|
|
@@ -13576,7 +13896,7 @@ Defined in: [lib/control.ts:1437](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13576
13896
|
|
|
13577
13897
|
> **detail**: `object`
|
|
13578
13898
|
|
|
13579
|
-
Defined in: [lib/control.ts:
|
|
13899
|
+
Defined in: [lib/control.ts:1459](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1459)
|
|
13580
13900
|
|
|
13581
13901
|
#### index
|
|
13582
13902
|
|
|
@@ -13601,7 +13921,7 @@ lib/control/interfaces/ISelectRemoveEvent.md
|
|
|
13601
13921
|
|
|
13602
13922
|
# Interface: ISelectRemoveEvent
|
|
13603
13923
|
|
|
13604
|
-
Defined in: [lib/control.ts:
|
|
13924
|
+
Defined in: [lib/control.ts:1443](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1443)
|
|
13605
13925
|
|
|
13606
13926
|
Custom Event
|
|
13607
13927
|
|
|
@@ -13615,7 +13935,7 @@ Custom Event
|
|
|
13615
13935
|
|
|
13616
13936
|
> **detail**: `object`
|
|
13617
13937
|
|
|
13618
|
-
Defined in: [lib/control.ts:
|
|
13938
|
+
Defined in: [lib/control.ts:1444](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1444)
|
|
13619
13939
|
|
|
13620
13940
|
#### index
|
|
13621
13941
|
|
|
@@ -13668,7 +13988,7 @@ lib/control/interfaces/ISelectTagclickEvent.md
|
|
|
13668
13988
|
|
|
13669
13989
|
# Interface: ISelectTagclickEvent
|
|
13670
13990
|
|
|
13671
|
-
Defined in: [lib/control.ts:
|
|
13991
|
+
Defined in: [lib/control.ts:1479](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1479)
|
|
13672
13992
|
|
|
13673
13993
|
## Properties
|
|
13674
13994
|
|
|
@@ -13676,7 +13996,7 @@ Defined in: [lib/control.ts:1458](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13676
13996
|
|
|
13677
13997
|
> **detail**: `object`
|
|
13678
13998
|
|
|
13679
|
-
Defined in: [lib/control.ts:
|
|
13999
|
+
Defined in: [lib/control.ts:1480](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1480)
|
|
13680
14000
|
|
|
13681
14001
|
#### index
|
|
13682
14002
|
|
|
@@ -13697,7 +14017,7 @@ lib/control/interfaces/IStabChangeEvent.md
|
|
|
13697
14017
|
|
|
13698
14018
|
# Interface: IStabChangeEvent
|
|
13699
14019
|
|
|
13700
|
-
Defined in: [lib/control.ts:
|
|
14020
|
+
Defined in: [lib/control.ts:1504](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1504)
|
|
13701
14021
|
|
|
13702
14022
|
Custom Event
|
|
13703
14023
|
|
|
@@ -13711,7 +14031,7 @@ Custom Event
|
|
|
13711
14031
|
|
|
13712
14032
|
> **detail**: `object`
|
|
13713
14033
|
|
|
13714
|
-
Defined in: [lib/control.ts:
|
|
14034
|
+
Defined in: [lib/control.ts:1505](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1505)
|
|
13715
14035
|
|
|
13716
14036
|
#### value
|
|
13717
14037
|
|
|
@@ -13756,7 +14076,7 @@ lib/control/interfaces/IStepClickedEvent.md
|
|
|
13756
14076
|
|
|
13757
14077
|
# Interface: IStepClickedEvent
|
|
13758
14078
|
|
|
13759
|
-
Defined in: [lib/control.ts:
|
|
14079
|
+
Defined in: [lib/control.ts:1574](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1574)
|
|
13760
14080
|
|
|
13761
14081
|
## Properties
|
|
13762
14082
|
|
|
@@ -13764,7 +14084,7 @@ Defined in: [lib/control.ts:1553](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13764
14084
|
|
|
13765
14085
|
> **detail**: `object`
|
|
13766
14086
|
|
|
13767
|
-
Defined in: [lib/control.ts:
|
|
14087
|
+
Defined in: [lib/control.ts:1575](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1575)
|
|
13768
14088
|
|
|
13769
14089
|
#### index
|
|
13770
14090
|
|
|
@@ -13789,7 +14109,7 @@ lib/control/interfaces/ISwitchChangeEvent.md
|
|
|
13789
14109
|
|
|
13790
14110
|
# Interface: ISwitchChangeEvent
|
|
13791
14111
|
|
|
13792
|
-
Defined in: [lib/control.ts:
|
|
14112
|
+
Defined in: [lib/control.ts:1512](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1512)
|
|
13793
14113
|
|
|
13794
14114
|
Custom Event
|
|
13795
14115
|
|
|
@@ -13803,7 +14123,7 @@ Custom Event
|
|
|
13803
14123
|
|
|
13804
14124
|
> **detail**: `object`
|
|
13805
14125
|
|
|
13806
|
-
Defined in: [lib/control.ts:
|
|
14126
|
+
Defined in: [lib/control.ts:1513](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1513)
|
|
13807
14127
|
|
|
13808
14128
|
#### value
|
|
13809
14129
|
|
|
@@ -13848,7 +14168,7 @@ lib/control/interfaces/ITabChangedEvent.md
|
|
|
13848
14168
|
|
|
13849
14169
|
# Interface: ITabChangedEvent
|
|
13850
14170
|
|
|
13851
|
-
Defined in: [lib/control.ts:
|
|
14171
|
+
Defined in: [lib/control.ts:1526](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1526)
|
|
13852
14172
|
|
|
13853
14173
|
## Properties
|
|
13854
14174
|
|
|
@@ -13856,7 +14176,7 @@ Defined in: [lib/control.ts:1505](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13856
14176
|
|
|
13857
14177
|
> **detail**: `object`
|
|
13858
14178
|
|
|
13859
|
-
Defined in: [lib/control.ts:
|
|
14179
|
+
Defined in: [lib/control.ts:1527](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1527)
|
|
13860
14180
|
|
|
13861
14181
|
#### value
|
|
13862
14182
|
|
|
@@ -13873,7 +14193,7 @@ lib/control/interfaces/ITabChangeEvent.md
|
|
|
13873
14193
|
|
|
13874
14194
|
# Interface: ITabChangeEvent
|
|
13875
14195
|
|
|
13876
|
-
Defined in: [lib/control.ts:
|
|
14196
|
+
Defined in: [lib/control.ts:1520](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1520)
|
|
13877
14197
|
|
|
13878
14198
|
Custom Event
|
|
13879
14199
|
|
|
@@ -13887,7 +14207,7 @@ Custom Event
|
|
|
13887
14207
|
|
|
13888
14208
|
> **detail**: `object`
|
|
13889
14209
|
|
|
13890
|
-
Defined in: [lib/control.ts:
|
|
14210
|
+
Defined in: [lib/control.ts:1521](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1521)
|
|
13891
14211
|
|
|
13892
14212
|
#### value
|
|
13893
14213
|
|
|
@@ -13932,7 +14252,7 @@ lib/control/interfaces/ITabCloseEvent.md
|
|
|
13932
14252
|
|
|
13933
14253
|
# Interface: ITabCloseEvent
|
|
13934
14254
|
|
|
13935
|
-
Defined in: [lib/control.ts:
|
|
14255
|
+
Defined in: [lib/control.ts:1532](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1532)
|
|
13936
14256
|
|
|
13937
14257
|
Custom Event
|
|
13938
14258
|
|
|
@@ -13946,7 +14266,7 @@ Custom Event
|
|
|
13946
14266
|
|
|
13947
14267
|
> **detail**: `object`
|
|
13948
14268
|
|
|
13949
|
-
Defined in: [lib/control.ts:
|
|
14269
|
+
Defined in: [lib/control.ts:1533](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1533)
|
|
13950
14270
|
|
|
13951
14271
|
#### index
|
|
13952
14272
|
|
|
@@ -13995,7 +14315,7 @@ lib/control/interfaces/ITableSortEvent.md
|
|
|
13995
14315
|
|
|
13996
14316
|
# Interface: ITableSortEvent
|
|
13997
14317
|
|
|
13998
|
-
Defined in: [lib/control.ts:
|
|
14318
|
+
Defined in: [lib/control.ts:1541](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1541)
|
|
13999
14319
|
|
|
14000
14320
|
Custom Event
|
|
14001
14321
|
|
|
@@ -14009,7 +14329,7 @@ Custom Event
|
|
|
14009
14329
|
|
|
14010
14330
|
> **detail**: `object`
|
|
14011
14331
|
|
|
14012
|
-
Defined in: [lib/control.ts:
|
|
14332
|
+
Defined in: [lib/control.ts:1542](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1542)
|
|
14013
14333
|
|
|
14014
14334
|
#### index
|
|
14015
14335
|
|
|
@@ -14062,7 +14382,7 @@ lib/control/interfaces/ITagDropEvent.md
|
|
|
14062
14382
|
|
|
14063
14383
|
# Interface: ITagDropEvent
|
|
14064
14384
|
|
|
14065
|
-
Defined in: [lib/control.ts:
|
|
14385
|
+
Defined in: [lib/control.ts:1565](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1565)
|
|
14066
14386
|
|
|
14067
14387
|
## Properties
|
|
14068
14388
|
|
|
@@ -14070,7 +14390,7 @@ Defined in: [lib/control.ts:1544](https://github.com/maiyun/clickgo/blob/master/
|
|
|
14070
14390
|
|
|
14071
14391
|
> **detail**: `object`
|
|
14072
14392
|
|
|
14073
|
-
Defined in: [lib/control.ts:
|
|
14393
|
+
Defined in: [lib/control.ts:1566](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1566)
|
|
14074
14394
|
|
|
14075
14395
|
#### after
|
|
14076
14396
|
|
|
@@ -14217,7 +14537,7 @@ lib/control/interfaces/ITuieditorImguploadEvent.md
|
|
|
14217
14537
|
|
|
14218
14538
|
# Interface: ITuieditorImguploadEvent
|
|
14219
14539
|
|
|
14220
|
-
Defined in: [lib/control.ts:
|
|
14540
|
+
Defined in: [lib/control.ts:1551](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1551)
|
|
14221
14541
|
|
|
14222
14542
|
## Properties
|
|
14223
14543
|
|
|
@@ -14225,7 +14545,7 @@ Defined in: [lib/control.ts:1530](https://github.com/maiyun/clickgo/blob/master/
|
|
|
14225
14545
|
|
|
14226
14546
|
> **detail**: `object`
|
|
14227
14547
|
|
|
14228
|
-
Defined in: [lib/control.ts:
|
|
14548
|
+
Defined in: [lib/control.ts:1552](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1552)
|
|
14229
14549
|
|
|
14230
14550
|
#### callback
|
|
14231
14551
|
|
|
@@ -14274,7 +14594,7 @@ lib/control/interfaces/IUploaderRemoveEvent.md
|
|
|
14274
14594
|
|
|
14275
14595
|
# Interface: IUploaderRemoveEvent
|
|
14276
14596
|
|
|
14277
|
-
Defined in: [lib/control.ts:
|
|
14597
|
+
Defined in: [lib/control.ts:1219](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1219)
|
|
14278
14598
|
|
|
14279
14599
|
Custom Event
|
|
14280
14600
|
|
|
@@ -14288,7 +14608,7 @@ Custom Event
|
|
|
14288
14608
|
|
|
14289
14609
|
> **detail**: `object`
|
|
14290
14610
|
|
|
14291
|
-
Defined in: [lib/control.ts:
|
|
14611
|
+
Defined in: [lib/control.ts:1220](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1220)
|
|
14292
14612
|
|
|
14293
14613
|
#### index
|
|
14294
14614
|
|
|
@@ -15012,7 +15332,7 @@ lib/core/functions/checkModule.md
|
|
|
15012
15332
|
|
|
15013
15333
|
> **checkModule**(`name`): `boolean`
|
|
15014
15334
|
|
|
15015
|
-
Defined in: [lib/core.ts:
|
|
15335
|
+
Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1354)
|
|
15016
15336
|
|
|
15017
15337
|
检查特殊模块是否注册
|
|
15018
15338
|
|
|
@@ -15172,9 +15492,25 @@ lib/core/functions/getModule.md
|
|
|
15172
15492
|
|
|
15173
15493
|
## Call Signature
|
|
15174
15494
|
|
|
15495
|
+
> **getModule**(`name`): `Promise`\<[`IMonacoLoader`](../interfaces/IMonacoLoader.md) \| `null`\>
|
|
15496
|
+
|
|
15497
|
+
Defined in: [lib/core.ts:1358](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1358)
|
|
15498
|
+
|
|
15499
|
+
### Parameters
|
|
15500
|
+
|
|
15501
|
+
#### name
|
|
15502
|
+
|
|
15503
|
+
`"monaco-editor"`
|
|
15504
|
+
|
|
15505
|
+
### Returns
|
|
15506
|
+
|
|
15507
|
+
`Promise`\<[`IMonacoLoader`](../interfaces/IMonacoLoader.md) \| `null`\>
|
|
15508
|
+
|
|
15509
|
+
## Call Signature
|
|
15510
|
+
|
|
15175
15511
|
> **getModule**(`name`): `Promise`\<[`ITumsPlayer`](../interfaces/ITumsPlayer.md) \| `null`\>
|
|
15176
15512
|
|
|
15177
|
-
Defined in: [lib/core.ts:
|
|
15513
|
+
Defined in: [lib/core.ts:1359](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1359)
|
|
15178
15514
|
|
|
15179
15515
|
### Parameters
|
|
15180
15516
|
|
|
@@ -15190,7 +15526,7 @@ Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15190
15526
|
|
|
15191
15527
|
> **getModule**(`name`): `Promise`\<\{ \} \| `null`\>
|
|
15192
15528
|
|
|
15193
|
-
Defined in: [lib/core.ts:
|
|
15529
|
+
Defined in: [lib/core.ts:1360](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1360)
|
|
15194
15530
|
|
|
15195
15531
|
### Parameters
|
|
15196
15532
|
|
|
@@ -15206,7 +15542,7 @@ Defined in: [lib/core.ts:1355](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15206
15542
|
|
|
15207
15543
|
> **getModule**(`name`): `Promise`\<`__module` \| `null`\>
|
|
15208
15544
|
|
|
15209
|
-
Defined in: [lib/core.ts:
|
|
15545
|
+
Defined in: [lib/core.ts:1361](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1361)
|
|
15210
15546
|
|
|
15211
15547
|
### Parameters
|
|
15212
15548
|
|
|
@@ -15222,7 +15558,7 @@ Defined in: [lib/core.ts:1356](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15222
15558
|
|
|
15223
15559
|
> **getModule**(`name`): `Promise`\<`any`\>
|
|
15224
15560
|
|
|
15225
|
-
Defined in: [lib/core.ts:
|
|
15561
|
+
Defined in: [lib/core.ts:1362](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1362)
|
|
15226
15562
|
|
|
15227
15563
|
### Parameters
|
|
15228
15564
|
|
|
@@ -15282,7 +15618,7 @@ lib/core/functions/init.md
|
|
|
15282
15618
|
|
|
15283
15619
|
> **init**(): `void`
|
|
15284
15620
|
|
|
15285
|
-
Defined in: [lib/core.ts:
|
|
15621
|
+
Defined in: [lib/core.ts:1424](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1424)
|
|
15286
15622
|
|
|
15287
15623
|
## Returns
|
|
15288
15624
|
|
|
@@ -15330,7 +15666,7 @@ lib/core/functions/loadModule.md
|
|
|
15330
15666
|
|
|
15331
15667
|
> **loadModule**(`name`): `Promise`\<`boolean`\>
|
|
15332
15668
|
|
|
15333
|
-
Defined in: [lib/core.ts:
|
|
15669
|
+
Defined in: [lib/core.ts:1379](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1379)
|
|
15334
15670
|
|
|
15335
15671
|
加载模块,返回 true / false
|
|
15336
15672
|
|
|
@@ -15452,7 +15788,7 @@ lib/core/functions/regModule.md
|
|
|
15452
15788
|
|
|
15453
15789
|
> **regModule**(`current`, `name`, `opt`): `Promise`\<`boolean`\>
|
|
15454
15790
|
|
|
15455
|
-
Defined in: [lib/core.ts:
|
|
15791
|
+
Defined in: [lib/core.ts:1325](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1325)
|
|
15456
15792
|
|
|
15457
15793
|
注册模块
|
|
15458
15794
|
|
|
@@ -15588,6 +15924,7 @@ lib/core/index.md
|
|
|
15588
15924
|
- [IConfig](interfaces/IConfig.md)
|
|
15589
15925
|
- [IConfigLauncherItem](interfaces/IConfigLauncherItem.md)
|
|
15590
15926
|
- [ICoreFetchAppOptions](interfaces/ICoreFetchAppOptions.md)
|
|
15927
|
+
- [IMonacoLoader](interfaces/IMonacoLoader.md)
|
|
15591
15928
|
- [ITumsPlayer](interfaces/ITumsPlayer.md)
|
|
15592
15929
|
- [IVApp](interfaces/IVApp.md)
|
|
15593
15930
|
- [IVNode](interfaces/IVNode.md)
|
|
@@ -15637,7 +15974,7 @@ lib/core/interfaces/IAppConfig.md
|
|
|
15637
15974
|
|
|
15638
15975
|
# Interface: IAppConfig
|
|
15639
15976
|
|
|
15640
|
-
Defined in: [lib/core.ts:
|
|
15977
|
+
Defined in: [lib/core.ts:1589](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1589)
|
|
15641
15978
|
|
|
15642
15979
|
应用文件包 config
|
|
15643
15980
|
|
|
@@ -15647,7 +15984,7 @@ Defined in: [lib/core.ts:1584](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15647
15984
|
|
|
15648
15985
|
> **author**: `string`
|
|
15649
15986
|
|
|
15650
|
-
Defined in: [lib/core.ts:
|
|
15987
|
+
Defined in: [lib/core.ts:1597](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1597)
|
|
15651
15988
|
|
|
15652
15989
|
作者
|
|
15653
15990
|
|
|
@@ -15657,7 +15994,7 @@ Defined in: [lib/core.ts:1592](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15657
15994
|
|
|
15658
15995
|
> **controls**: `string`[]
|
|
15659
15996
|
|
|
15660
|
-
Defined in: [lib/core.ts:
|
|
15997
|
+
Defined in: [lib/core.ts:1600](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1600)
|
|
15661
15998
|
|
|
15662
15999
|
将要加载的控件
|
|
15663
16000
|
|
|
@@ -15667,7 +16004,7 @@ Defined in: [lib/core.ts:1595](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15667
16004
|
|
|
15668
16005
|
> `optional` **files?**: `string`[]
|
|
15669
16006
|
|
|
15670
|
-
Defined in: [lib/core.ts:
|
|
16007
|
+
Defined in: [lib/core.ts:1613](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1613)
|
|
15671
16008
|
|
|
15672
16009
|
将要加载的非 js 文件列表,打包为 cga 模式下此配置可省略
|
|
15673
16010
|
|
|
@@ -15677,7 +16014,7 @@ Defined in: [lib/core.ts:1608](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15677
16014
|
|
|
15678
16015
|
> `optional` **icon?**: `string`
|
|
15679
16016
|
|
|
15680
|
-
Defined in: [lib/core.ts:
|
|
16017
|
+
Defined in: [lib/core.ts:1610](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1610)
|
|
15681
16018
|
|
|
15682
16019
|
图标路径,需包含扩展名
|
|
15683
16020
|
|
|
@@ -15687,7 +16024,7 @@ Defined in: [lib/core.ts:1605](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15687
16024
|
|
|
15688
16025
|
> `optional` **locales?**: `Record`\<`string`, `string`\>
|
|
15689
16026
|
|
|
15690
|
-
Defined in: [lib/core.ts:
|
|
16027
|
+
Defined in: [lib/core.ts:1606](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1606)
|
|
15691
16028
|
|
|
15692
16029
|
将自动加载的语言包,path: lang
|
|
15693
16030
|
|
|
@@ -15697,7 +16034,7 @@ Defined in: [lib/core.ts:1601](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15697
16034
|
|
|
15698
16035
|
> `optional` **modules?**: `string`[]
|
|
15699
16036
|
|
|
15700
|
-
Defined in: [lib/core.ts:
|
|
16037
|
+
Defined in: [lib/core.ts:1615](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1615)
|
|
15701
16038
|
|
|
15702
16039
|
要提前加载的库名
|
|
15703
16040
|
|
|
@@ -15707,7 +16044,7 @@ Defined in: [lib/core.ts:1610](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15707
16044
|
|
|
15708
16045
|
> **name**: `string`
|
|
15709
16046
|
|
|
15710
|
-
Defined in: [lib/core.ts:
|
|
16047
|
+
Defined in: [lib/core.ts:1591](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1591)
|
|
15711
16048
|
|
|
15712
16049
|
应用名
|
|
15713
16050
|
|
|
@@ -15717,7 +16054,7 @@ Defined in: [lib/core.ts:1586](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15717
16054
|
|
|
15718
16055
|
> `optional` **permissions?**: `string`[]
|
|
15719
16056
|
|
|
15720
|
-
Defined in: [lib/core.ts:
|
|
16057
|
+
Defined in: [lib/core.ts:1604](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1604)
|
|
15721
16058
|
|
|
15722
16059
|
将自动申请的权限
|
|
15723
16060
|
|
|
@@ -15727,7 +16064,7 @@ Defined in: [lib/core.ts:1599](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15727
16064
|
|
|
15728
16065
|
> `optional` **style?**: `string`
|
|
15729
16066
|
|
|
15730
|
-
Defined in: [lib/core.ts:
|
|
16067
|
+
Defined in: [lib/core.ts:1608](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1608)
|
|
15731
16068
|
|
|
15732
16069
|
全局样式,不带扩展名,系统会在末尾添加 .css
|
|
15733
16070
|
|
|
@@ -15737,7 +16074,7 @@ Defined in: [lib/core.ts:1603](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15737
16074
|
|
|
15738
16075
|
> `optional` **themes?**: `string`[]
|
|
15739
16076
|
|
|
15740
|
-
Defined in: [lib/core.ts:
|
|
16077
|
+
Defined in: [lib/core.ts:1602](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1602)
|
|
15741
16078
|
|
|
15742
16079
|
将自动加载的主题
|
|
15743
16080
|
|
|
@@ -15747,7 +16084,7 @@ Defined in: [lib/core.ts:1597](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15747
16084
|
|
|
15748
16085
|
> **ver**: `number`
|
|
15749
16086
|
|
|
15750
|
-
Defined in: [lib/core.ts:
|
|
16087
|
+
Defined in: [lib/core.ts:1593](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1593)
|
|
15751
16088
|
|
|
15752
16089
|
发行版本
|
|
15753
16090
|
|
|
@@ -15757,7 +16094,7 @@ Defined in: [lib/core.ts:1588](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15757
16094
|
|
|
15758
16095
|
> **version**: `string`
|
|
15759
16096
|
|
|
15760
|
-
Defined in: [lib/core.ts:
|
|
16097
|
+
Defined in: [lib/core.ts:1595](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1595)
|
|
15761
16098
|
|
|
15762
16099
|
发行版本字符串
|
|
15763
16100
|
|
|
@@ -15772,7 +16109,7 @@ lib/core/interfaces/IApp.md
|
|
|
15772
16109
|
|
|
15773
16110
|
# Interface: IApp
|
|
15774
16111
|
|
|
15775
|
-
Defined in: [lib/core.ts:
|
|
16112
|
+
Defined in: [lib/core.ts:1556](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1556)
|
|
15776
16113
|
|
|
15777
16114
|
应用包解包后对象
|
|
15778
16115
|
|
|
@@ -15782,7 +16119,7 @@ Defined in: [lib/core.ts:1551](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15782
16119
|
|
|
15783
16120
|
> **config**: [`IAppConfig`](IAppConfig.md)
|
|
15784
16121
|
|
|
15785
|
-
Defined in: [lib/core.ts:
|
|
16122
|
+
Defined in: [lib/core.ts:1559](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1559)
|
|
15786
16123
|
|
|
15787
16124
|
控件对象配置文件
|
|
15788
16125
|
|
|
@@ -15792,7 +16129,7 @@ Defined in: [lib/core.ts:1554](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15792
16129
|
|
|
15793
16130
|
> **icon**: `string`
|
|
15794
16131
|
|
|
15795
|
-
Defined in: [lib/core.ts:
|
|
16132
|
+
Defined in: [lib/core.ts:1561](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1561)
|
|
15796
16133
|
|
|
15797
16134
|
应用图标
|
|
15798
16135
|
|
|
@@ -15802,7 +16139,7 @@ Defined in: [lib/core.ts:1556](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15802
16139
|
|
|
15803
16140
|
> **package**: [`IAppPackage`](IAppPackage.md)
|
|
15804
16141
|
|
|
15805
|
-
Defined in: [lib/core.ts:
|
|
16142
|
+
Defined in: [lib/core.ts:1563](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1563)
|
|
15806
16143
|
|
|
15807
16144
|
新 CGA 的按需解密包读取器
|
|
15808
16145
|
|
|
@@ -15812,7 +16149,7 @@ Defined in: [lib/core.ts:1558](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15812
16149
|
|
|
15813
16150
|
> **type**: `"app"`
|
|
15814
16151
|
|
|
15815
|
-
Defined in: [lib/core.ts:
|
|
16152
|
+
Defined in: [lib/core.ts:1557](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1557)
|
|
15816
16153
|
|
|
15817
16154
|
lib/core/interfaces/IAppPackageEntry.md
|
|
15818
16155
|
---
|
|
@@ -15825,7 +16162,7 @@ lib/core/interfaces/IAppPackageEntry.md
|
|
|
15825
16162
|
|
|
15826
16163
|
# Interface: IAppPackageEntry
|
|
15827
16164
|
|
|
15828
|
-
Defined in: [lib/core.ts:
|
|
16165
|
+
Defined in: [lib/core.ts:1567](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1567)
|
|
15829
16166
|
|
|
15830
16167
|
CGA 包内项目
|
|
15831
16168
|
|
|
@@ -15835,7 +16172,7 @@ CGA 包内项目
|
|
|
15835
16172
|
|
|
15836
16173
|
> **isDirectory**: `boolean`
|
|
15837
16174
|
|
|
15838
|
-
Defined in: [lib/core.ts:
|
|
16175
|
+
Defined in: [lib/core.ts:1568](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1568)
|
|
15839
16176
|
|
|
15840
16177
|
***
|
|
15841
16178
|
|
|
@@ -15843,7 +16180,7 @@ Defined in: [lib/core.ts:1563](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15843
16180
|
|
|
15844
16181
|
> **isFile**: `boolean`
|
|
15845
16182
|
|
|
15846
|
-
Defined in: [lib/core.ts:
|
|
16183
|
+
Defined in: [lib/core.ts:1569](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1569)
|
|
15847
16184
|
|
|
15848
16185
|
***
|
|
15849
16186
|
|
|
@@ -15851,7 +16188,7 @@ Defined in: [lib/core.ts:1564](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15851
16188
|
|
|
15852
16189
|
> **name**: `string`
|
|
15853
16190
|
|
|
15854
|
-
Defined in: [lib/core.ts:
|
|
16191
|
+
Defined in: [lib/core.ts:1570](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1570)
|
|
15855
16192
|
|
|
15856
16193
|
lib/core/interfaces/IAppPackage.md
|
|
15857
16194
|
---
|
|
@@ -15864,7 +16201,7 @@ lib/core/interfaces/IAppPackage.md
|
|
|
15864
16201
|
|
|
15865
16202
|
# Interface: IAppPackage
|
|
15866
16203
|
|
|
15867
|
-
Defined in: [lib/core.ts:
|
|
16204
|
+
Defined in: [lib/core.ts:1581](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1581)
|
|
15868
16205
|
|
|
15869
16206
|
CGA 按需解密包读取器
|
|
15870
16207
|
|
|
@@ -15874,7 +16211,7 @@ CGA 按需解密包读取器
|
|
|
15874
16211
|
|
|
15875
16212
|
> **clear**(): `void`
|
|
15876
16213
|
|
|
15877
|
-
Defined in: [lib/core.ts:
|
|
16214
|
+
Defined in: [lib/core.ts:1585](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1585)
|
|
15878
16215
|
|
|
15879
16216
|
#### Returns
|
|
15880
16217
|
|
|
@@ -15886,7 +16223,7 @@ Defined in: [lib/core.ts:1580](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15886
16223
|
|
|
15887
16224
|
> **getContent**(`path`): `Promise`\<`string` \| `Blob` \| `null`\>
|
|
15888
16225
|
|
|
15889
|
-
Defined in: [lib/core.ts:
|
|
16226
|
+
Defined in: [lib/core.ts:1582](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1582)
|
|
15890
16227
|
|
|
15891
16228
|
#### Parameters
|
|
15892
16229
|
|
|
@@ -15904,7 +16241,7 @@ Defined in: [lib/core.ts:1577](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15904
16241
|
|
|
15905
16242
|
> **readDir**(`path`): [`IAppPackageEntry`](IAppPackageEntry.md)[]
|
|
15906
16243
|
|
|
15907
|
-
Defined in: [lib/core.ts:
|
|
16244
|
+
Defined in: [lib/core.ts:1584](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1584)
|
|
15908
16245
|
|
|
15909
16246
|
#### Parameters
|
|
15910
16247
|
|
|
@@ -15922,7 +16259,7 @@ Defined in: [lib/core.ts:1579](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15922
16259
|
|
|
15923
16260
|
> **stats**(`path`): [`IAppPackageStats`](IAppPackageStats.md) \| `null`
|
|
15924
16261
|
|
|
15925
|
-
Defined in: [lib/core.ts:
|
|
16262
|
+
Defined in: [lib/core.ts:1583](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1583)
|
|
15926
16263
|
|
|
15927
16264
|
#### Parameters
|
|
15928
16265
|
|
|
@@ -15945,7 +16282,7 @@ lib/core/interfaces/IAppPackageStats.md
|
|
|
15945
16282
|
|
|
15946
16283
|
# Interface: IAppPackageStats
|
|
15947
16284
|
|
|
15948
|
-
Defined in: [lib/core.ts:
|
|
16285
|
+
Defined in: [lib/core.ts:1574](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1574)
|
|
15949
16286
|
|
|
15950
16287
|
CGA 包内项目属性
|
|
15951
16288
|
|
|
@@ -15955,7 +16292,7 @@ CGA 包内项目属性
|
|
|
15955
16292
|
|
|
15956
16293
|
> **isDirectory**: `boolean`
|
|
15957
16294
|
|
|
15958
|
-
Defined in: [lib/core.ts:
|
|
16295
|
+
Defined in: [lib/core.ts:1575](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1575)
|
|
15959
16296
|
|
|
15960
16297
|
***
|
|
15961
16298
|
|
|
@@ -15963,7 +16300,7 @@ Defined in: [lib/core.ts:1570](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15963
16300
|
|
|
15964
16301
|
> **isFile**: `boolean`
|
|
15965
16302
|
|
|
15966
|
-
Defined in: [lib/core.ts:
|
|
16303
|
+
Defined in: [lib/core.ts:1576](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1576)
|
|
15967
16304
|
|
|
15968
16305
|
***
|
|
15969
16306
|
|
|
@@ -15971,7 +16308,7 @@ Defined in: [lib/core.ts:1571](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15971
16308
|
|
|
15972
16309
|
> **size**: `number`
|
|
15973
16310
|
|
|
15974
|
-
Defined in: [lib/core.ts:
|
|
16311
|
+
Defined in: [lib/core.ts:1577](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1577)
|
|
15975
16312
|
|
|
15976
16313
|
lib/core/interfaces/IAvailArea.md
|
|
15977
16314
|
---
|
|
@@ -15984,7 +16321,7 @@ lib/core/interfaces/IAvailArea.md
|
|
|
15984
16321
|
|
|
15985
16322
|
# Interface: IAvailArea
|
|
15986
16323
|
|
|
15987
|
-
Defined in: [lib/core.ts:
|
|
16324
|
+
Defined in: [lib/core.ts:1522](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1522)
|
|
15988
16325
|
|
|
15989
16326
|
屏幕可用区域
|
|
15990
16327
|
|
|
@@ -15994,7 +16331,7 @@ Defined in: [lib/core.ts:1517](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15994
16331
|
|
|
15995
16332
|
> **height**: `number`
|
|
15996
16333
|
|
|
15997
|
-
Defined in: [lib/core.ts:
|
|
16334
|
+
Defined in: [lib/core.ts:1526](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1526)
|
|
15998
16335
|
|
|
15999
16336
|
***
|
|
16000
16337
|
|
|
@@ -16002,7 +16339,7 @@ Defined in: [lib/core.ts:1521](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16002
16339
|
|
|
16003
16340
|
> **left**: `number`
|
|
16004
16341
|
|
|
16005
|
-
Defined in: [lib/core.ts:
|
|
16342
|
+
Defined in: [lib/core.ts:1523](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1523)
|
|
16006
16343
|
|
|
16007
16344
|
***
|
|
16008
16345
|
|
|
@@ -16010,7 +16347,7 @@ Defined in: [lib/core.ts:1518](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16010
16347
|
|
|
16011
16348
|
> **oheight**: `number`
|
|
16012
16349
|
|
|
16013
|
-
Defined in: [lib/core.ts:
|
|
16350
|
+
Defined in: [lib/core.ts:1528](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1528)
|
|
16014
16351
|
|
|
16015
16352
|
***
|
|
16016
16353
|
|
|
@@ -16018,7 +16355,7 @@ Defined in: [lib/core.ts:1523](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16018
16355
|
|
|
16019
16356
|
> **owidth**: `number`
|
|
16020
16357
|
|
|
16021
|
-
Defined in: [lib/core.ts:
|
|
16358
|
+
Defined in: [lib/core.ts:1527](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1527)
|
|
16022
16359
|
|
|
16023
16360
|
***
|
|
16024
16361
|
|
|
@@ -16026,7 +16363,7 @@ Defined in: [lib/core.ts:1522](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16026
16363
|
|
|
16027
16364
|
> **top**: `number`
|
|
16028
16365
|
|
|
16029
|
-
Defined in: [lib/core.ts:
|
|
16366
|
+
Defined in: [lib/core.ts:1524](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1524)
|
|
16030
16367
|
|
|
16031
16368
|
***
|
|
16032
16369
|
|
|
@@ -16034,7 +16371,7 @@ Defined in: [lib/core.ts:1519](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16034
16371
|
|
|
16035
16372
|
> **width**: `number`
|
|
16036
16373
|
|
|
16037
|
-
Defined in: [lib/core.ts:
|
|
16374
|
+
Defined in: [lib/core.ts:1525](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1525)
|
|
16038
16375
|
|
|
16039
16376
|
lib/core/interfaces/IConfigLauncherItem.md
|
|
16040
16377
|
---
|
|
@@ -16047,7 +16384,7 @@ lib/core/interfaces/IConfigLauncherItem.md
|
|
|
16047
16384
|
|
|
16048
16385
|
# Interface: IConfigLauncherItem
|
|
16049
16386
|
|
|
16050
|
-
Defined in: [lib/core.ts:
|
|
16387
|
+
Defined in: [lib/core.ts:1513](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1513)
|
|
16051
16388
|
|
|
16052
16389
|
Launcher 的 item 对象
|
|
16053
16390
|
|
|
@@ -16057,7 +16394,7 @@ Launcher 的 item 对象
|
|
|
16057
16394
|
|
|
16058
16395
|
> `optional` **icon?**: `string`
|
|
16059
16396
|
|
|
16060
|
-
Defined in: [lib/core.ts:
|
|
16397
|
+
Defined in: [lib/core.ts:1517](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1517)
|
|
16061
16398
|
|
|
16062
16399
|
***
|
|
16063
16400
|
|
|
@@ -16065,7 +16402,7 @@ Defined in: [lib/core.ts:1512](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16065
16402
|
|
|
16066
16403
|
> `optional` **id?**: `string`
|
|
16067
16404
|
|
|
16068
|
-
Defined in: [lib/core.ts:
|
|
16405
|
+
Defined in: [lib/core.ts:1514](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1514)
|
|
16069
16406
|
|
|
16070
16407
|
***
|
|
16071
16408
|
|
|
@@ -16073,7 +16410,7 @@ Defined in: [lib/core.ts:1509](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16073
16410
|
|
|
16074
16411
|
> `optional` **list?**: `object`[]
|
|
16075
16412
|
|
|
16076
|
-
Defined in: [lib/core.ts:
|
|
16413
|
+
Defined in: [lib/core.ts:1518](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1518)
|
|
16077
16414
|
|
|
16078
16415
|
#### icon
|
|
16079
16416
|
|
|
@@ -16097,7 +16434,7 @@ Defined in: [lib/core.ts:1513](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16097
16434
|
|
|
16098
16435
|
> **name**: `string`
|
|
16099
16436
|
|
|
16100
|
-
Defined in: [lib/core.ts:
|
|
16437
|
+
Defined in: [lib/core.ts:1515](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1515)
|
|
16101
16438
|
|
|
16102
16439
|
***
|
|
16103
16440
|
|
|
@@ -16105,7 +16442,7 @@ Defined in: [lib/core.ts:1510](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16105
16442
|
|
|
16106
16443
|
> `optional` **path?**: `string`
|
|
16107
16444
|
|
|
16108
|
-
Defined in: [lib/core.ts:
|
|
16445
|
+
Defined in: [lib/core.ts:1516](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1516)
|
|
16109
16446
|
|
|
16110
16447
|
lib/core/interfaces/IConfig.md
|
|
16111
16448
|
---
|
|
@@ -16118,7 +16455,7 @@ lib/core/interfaces/IConfig.md
|
|
|
16118
16455
|
|
|
16119
16456
|
# Interface: IConfig
|
|
16120
16457
|
|
|
16121
|
-
Defined in: [lib/core.ts:
|
|
16458
|
+
Defined in: [lib/core.ts:1501](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1501)
|
|
16122
16459
|
|
|
16123
16460
|
Config 对象
|
|
16124
16461
|
|
|
@@ -16128,7 +16465,7 @@ Config 对象
|
|
|
16128
16465
|
|
|
16129
16466
|
> **desktop.icon.recycler**: `boolean`
|
|
16130
16467
|
|
|
16131
|
-
Defined in: [lib/core.ts:
|
|
16468
|
+
Defined in: [lib/core.ts:1506](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1506)
|
|
16132
16469
|
|
|
16133
16470
|
***
|
|
16134
16471
|
|
|
@@ -16136,7 +16473,7 @@ Defined in: [lib/core.ts:1501](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16136
16473
|
|
|
16137
16474
|
> **desktop.icon.storage**: `boolean`
|
|
16138
16475
|
|
|
16139
|
-
Defined in: [lib/core.ts:
|
|
16476
|
+
Defined in: [lib/core.ts:1505](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1505)
|
|
16140
16477
|
|
|
16141
16478
|
***
|
|
16142
16479
|
|
|
@@ -16144,7 +16481,7 @@ Defined in: [lib/core.ts:1500](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16144
16481
|
|
|
16145
16482
|
> **desktop.path**: `string` \| `null`
|
|
16146
16483
|
|
|
16147
|
-
Defined in: [lib/core.ts:
|
|
16484
|
+
Defined in: [lib/core.ts:1508](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1508)
|
|
16148
16485
|
|
|
16149
16486
|
***
|
|
16150
16487
|
|
|
@@ -16152,7 +16489,7 @@ Defined in: [lib/core.ts:1503](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16152
16489
|
|
|
16153
16490
|
> **desktop.wallpaper**: `string` \| `null`
|
|
16154
16491
|
|
|
16155
|
-
Defined in: [lib/core.ts:
|
|
16492
|
+
Defined in: [lib/core.ts:1507](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1507)
|
|
16156
16493
|
|
|
16157
16494
|
***
|
|
16158
16495
|
|
|
@@ -16160,7 +16497,7 @@ Defined in: [lib/core.ts:1502](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16160
16497
|
|
|
16161
16498
|
> **launcher.list**: [`IConfigLauncherItem`](IConfigLauncherItem.md)[]
|
|
16162
16499
|
|
|
16163
|
-
Defined in: [lib/core.ts:
|
|
16500
|
+
Defined in: [lib/core.ts:1509](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1509)
|
|
16164
16501
|
|
|
16165
16502
|
***
|
|
16166
16503
|
|
|
@@ -16168,7 +16505,7 @@ Defined in: [lib/core.ts:1504](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16168
16505
|
|
|
16169
16506
|
> **locale**: `string`
|
|
16170
16507
|
|
|
16171
|
-
Defined in: [lib/core.ts:
|
|
16508
|
+
Defined in: [lib/core.ts:1502](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1502)
|
|
16172
16509
|
|
|
16173
16510
|
***
|
|
16174
16511
|
|
|
@@ -16176,7 +16513,7 @@ Defined in: [lib/core.ts:1497](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16176
16513
|
|
|
16177
16514
|
> **task.pin**: `Record`\<`string`, \{ `icon`: `string`; `name`: `string`; \}\>
|
|
16178
16515
|
|
|
16179
|
-
Defined in: [lib/core.ts:
|
|
16516
|
+
Defined in: [lib/core.ts:1504](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1504)
|
|
16180
16517
|
|
|
16181
16518
|
***
|
|
16182
16519
|
|
|
@@ -16184,7 +16521,7 @@ Defined in: [lib/core.ts:1499](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16184
16521
|
|
|
16185
16522
|
> **task.position**: `"left"` \| `"top"` \| `"right"` \| `"bottom"`
|
|
16186
16523
|
|
|
16187
|
-
Defined in: [lib/core.ts:
|
|
16524
|
+
Defined in: [lib/core.ts:1503](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1503)
|
|
16188
16525
|
|
|
16189
16526
|
lib/core/interfaces/ICoreFetchAppOptions.md
|
|
16190
16527
|
---
|
|
@@ -16197,7 +16534,7 @@ lib/core/interfaces/ICoreFetchAppOptions.md
|
|
|
16197
16534
|
|
|
16198
16535
|
# Interface: ICoreFetchAppOptions
|
|
16199
16536
|
|
|
16200
|
-
Defined in: [lib/core.ts:
|
|
16537
|
+
Defined in: [lib/core.ts:1535](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1535)
|
|
16201
16538
|
|
|
16202
16539
|
现场下载 app 的参数
|
|
16203
16540
|
|
|
@@ -16207,7 +16544,7 @@ Defined in: [lib/core.ts:1530](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16207
16544
|
|
|
16208
16545
|
> `optional` **after?**: `string`
|
|
16209
16546
|
|
|
16210
|
-
Defined in: [lib/core.ts:
|
|
16547
|
+
Defined in: [lib/core.ts:1545](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1545)
|
|
16211
16548
|
|
|
16212
16549
|
网址后面附带的前缀,如 ?123
|
|
16213
16550
|
|
|
@@ -16217,7 +16554,7 @@ Defined in: [lib/core.ts:1540](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16217
16554
|
|
|
16218
16555
|
> `optional` **notify?**: `number` \| \{ `id?`: `number`; `loaded?`: `number`; `total?`: `number`; \}
|
|
16219
16556
|
|
|
16220
|
-
Defined in: [lib/core.ts:
|
|
16557
|
+
Defined in: [lib/core.ts:1536](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1536)
|
|
16221
16558
|
|
|
16222
16559
|
#### Union Members
|
|
16223
16560
|
|
|
@@ -16253,7 +16590,7 @@ notify id
|
|
|
16253
16590
|
|
|
16254
16591
|
> `optional` **progress?**: (`loaded`, `total`, `per`) => `void` \| `Promise`\<`void`\>
|
|
16255
16592
|
|
|
16256
|
-
Defined in: [lib/core.ts:
|
|
16593
|
+
Defined in: [lib/core.ts:1552](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1552)
|
|
16257
16594
|
|
|
16258
16595
|
下载进度
|
|
16259
16596
|
|
|
@@ -16281,6 +16618,41 @@ Defined in: [lib/core.ts:1547](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16281
16618
|
|
|
16282
16619
|
`void` \| `Promise`\<`void`\>
|
|
16283
16620
|
|
|
16621
|
+
lib/core/interfaces/IMonacoLoader.md
|
|
16622
|
+
---
|
|
16623
|
+
|
|
16624
|
+
[**Documents for clickgo**](../../../index.md)
|
|
16625
|
+
|
|
16626
|
+
***
|
|
16627
|
+
|
|
16628
|
+
[Documents for clickgo](../../../index.md) / [lib/core](../index.md) / IMonacoLoader
|
|
16629
|
+
|
|
16630
|
+
# Interface: IMonacoLoader
|
|
16631
|
+
|
|
16632
|
+
Defined in: [lib/core.ts:1716](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1716)
|
|
16633
|
+
|
|
16634
|
+
Monaco 模块的加载资源,编辑器实例由控件在独立 iframe 内创建
|
|
16635
|
+
|
|
16636
|
+
## Properties
|
|
16637
|
+
|
|
16638
|
+
### baseUrl
|
|
16639
|
+
|
|
16640
|
+
> **baseUrl**: `string`
|
|
16641
|
+
|
|
16642
|
+
Defined in: [lib/core.ts:1720](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1720)
|
|
16643
|
+
|
|
16644
|
+
编辑器和 Worker 的资源根路径,以 / 结尾
|
|
16645
|
+
|
|
16646
|
+
***
|
|
16647
|
+
|
|
16648
|
+
### loader
|
|
16649
|
+
|
|
16650
|
+
> **loader**: `string`
|
|
16651
|
+
|
|
16652
|
+
Defined in: [lib/core.ts:1718](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1718)
|
|
16653
|
+
|
|
16654
|
+
AMD loader 的 data URL
|
|
16655
|
+
|
|
16284
16656
|
lib/core/interfaces/ITumsPlayer.md
|
|
16285
16657
|
---
|
|
16286
16658
|
|
|
@@ -16292,7 +16664,7 @@ lib/core/interfaces/ITumsPlayer.md
|
|
|
16292
16664
|
|
|
16293
16665
|
# Interface: ITumsPlayer
|
|
16294
16666
|
|
|
16295
|
-
Defined in: [lib/core.ts:
|
|
16667
|
+
Defined in: [lib/core.ts:1701](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1701)
|
|
16296
16668
|
|
|
16297
16669
|
tums-player 模块对象
|
|
16298
16670
|
|
|
@@ -16302,7 +16674,7 @@ tums-player 模块对象
|
|
|
16302
16674
|
|
|
16303
16675
|
> **default**: `any`
|
|
16304
16676
|
|
|
16305
|
-
Defined in: [lib/core.ts:
|
|
16677
|
+
Defined in: [lib/core.ts:1702](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1702)
|
|
16306
16678
|
|
|
16307
16679
|
***
|
|
16308
16680
|
|
|
@@ -16310,7 +16682,7 @@ Defined in: [lib/core.ts:1697](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16310
16682
|
|
|
16311
16683
|
> **startTalk**: (`opt`) => `Promise`\<`void`\>
|
|
16312
16684
|
|
|
16313
|
-
Defined in: [lib/core.ts:
|
|
16685
|
+
Defined in: [lib/core.ts:1704](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1704)
|
|
16314
16686
|
|
|
16315
16687
|
开始对讲
|
|
16316
16688
|
|
|
@@ -16346,7 +16718,7 @@ half_duplex-半双工模式,vad-VAD 人声检测模式,aec-AEC 全双工模式
|
|
|
16346
16718
|
|
|
16347
16719
|
> **stopTalk**: () => `void`
|
|
16348
16720
|
|
|
16349
|
-
Defined in: [lib/core.ts:
|
|
16721
|
+
Defined in: [lib/core.ts:1712](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1712)
|
|
16350
16722
|
|
|
16351
16723
|
停止对讲
|
|
16352
16724
|
|
|
@@ -16365,7 +16737,7 @@ lib/core/interfaces/IVApp.md
|
|
|
16365
16737
|
|
|
16366
16738
|
# Interface: IVApp
|
|
16367
16739
|
|
|
16368
|
-
Defined in: [lib/core.ts:
|
|
16740
|
+
Defined in: [lib/core.ts:1681](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1681)
|
|
16369
16741
|
|
|
16370
16742
|
Vue 应用
|
|
16371
16743
|
|
|
@@ -16375,7 +16747,7 @@ Vue 应用
|
|
|
16375
16747
|
|
|
16376
16748
|
> **\_container**: `HTMLElement`
|
|
16377
16749
|
|
|
16378
|
-
Defined in: [lib/core.ts:
|
|
16750
|
+
Defined in: [lib/core.ts:1693](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1693)
|
|
16379
16751
|
|
|
16380
16752
|
***
|
|
16381
16753
|
|
|
@@ -16383,7 +16755,7 @@ Defined in: [lib/core.ts:1688](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16383
16755
|
|
|
16384
16756
|
> **config**: [`IVueConfig`](IVueConfig.md)
|
|
16385
16757
|
|
|
16386
|
-
Defined in: [lib/core.ts:
|
|
16758
|
+
Defined in: [lib/core.ts:1684](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1684)
|
|
16387
16759
|
|
|
16388
16760
|
***
|
|
16389
16761
|
|
|
@@ -16391,7 +16763,7 @@ Defined in: [lib/core.ts:1679](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16391
16763
|
|
|
16392
16764
|
> **version**: `string`
|
|
16393
16765
|
|
|
16394
|
-
Defined in: [lib/core.ts:
|
|
16766
|
+
Defined in: [lib/core.ts:1691](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1691)
|
|
16395
16767
|
|
|
16396
16768
|
## Methods
|
|
16397
16769
|
|
|
@@ -16401,7 +16773,7 @@ Defined in: [lib/core.ts:1686](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16401
16773
|
|
|
16402
16774
|
> **component**(`name`): `any`
|
|
16403
16775
|
|
|
16404
|
-
Defined in: [lib/core.ts:
|
|
16776
|
+
Defined in: [lib/core.ts:1682](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1682)
|
|
16405
16777
|
|
|
16406
16778
|
##### Parameters
|
|
16407
16779
|
|
|
@@ -16417,7 +16789,7 @@ Defined in: [lib/core.ts:1677](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16417
16789
|
|
|
16418
16790
|
> **component**(`name`, `config`): `this`
|
|
16419
16791
|
|
|
16420
|
-
Defined in: [lib/core.ts:
|
|
16792
|
+
Defined in: [lib/core.ts:1683](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1683)
|
|
16421
16793
|
|
|
16422
16794
|
##### Parameters
|
|
16423
16795
|
|
|
@@ -16441,7 +16813,7 @@ Defined in: [lib/core.ts:1678](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16441
16813
|
|
|
16442
16814
|
> **directive**(`name`): `any`
|
|
16443
16815
|
|
|
16444
|
-
Defined in: [lib/core.ts:
|
|
16816
|
+
Defined in: [lib/core.ts:1685](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1685)
|
|
16445
16817
|
|
|
16446
16818
|
##### Parameters
|
|
16447
16819
|
|
|
@@ -16457,7 +16829,7 @@ Defined in: [lib/core.ts:1680](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16457
16829
|
|
|
16458
16830
|
> **directive**(`name`, `config`): `this`
|
|
16459
16831
|
|
|
16460
|
-
Defined in: [lib/core.ts:
|
|
16832
|
+
Defined in: [lib/core.ts:1686](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1686)
|
|
16461
16833
|
|
|
16462
16834
|
##### Parameters
|
|
16463
16835
|
|
|
@@ -16479,7 +16851,7 @@ Defined in: [lib/core.ts:1681](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16479
16851
|
|
|
16480
16852
|
> **mixin**(`mixin`): `this`
|
|
16481
16853
|
|
|
16482
|
-
Defined in: [lib/core.ts:
|
|
16854
|
+
Defined in: [lib/core.ts:1687](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1687)
|
|
16483
16855
|
|
|
16484
16856
|
#### Parameters
|
|
16485
16857
|
|
|
@@ -16497,7 +16869,7 @@ Defined in: [lib/core.ts:1682](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16497
16869
|
|
|
16498
16870
|
> **mount**(`rootContainer`): [`IVue`](IVue.md)
|
|
16499
16871
|
|
|
16500
|
-
Defined in: [lib/core.ts:
|
|
16872
|
+
Defined in: [lib/core.ts:1688](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1688)
|
|
16501
16873
|
|
|
16502
16874
|
#### Parameters
|
|
16503
16875
|
|
|
@@ -16515,7 +16887,7 @@ Defined in: [lib/core.ts:1683](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16515
16887
|
|
|
16516
16888
|
> **provide**\<`T`\>(`key`, `value`): `this`
|
|
16517
16889
|
|
|
16518
|
-
Defined in: [lib/core.ts:
|
|
16890
|
+
Defined in: [lib/core.ts:1689](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1689)
|
|
16519
16891
|
|
|
16520
16892
|
#### Type Parameters
|
|
16521
16893
|
|
|
@@ -16543,7 +16915,7 @@ Defined in: [lib/core.ts:1684](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16543
16915
|
|
|
16544
16916
|
> **unmount**(): `void`
|
|
16545
16917
|
|
|
16546
|
-
Defined in: [lib/core.ts:
|
|
16918
|
+
Defined in: [lib/core.ts:1690](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1690)
|
|
16547
16919
|
|
|
16548
16920
|
#### Returns
|
|
16549
16921
|
|
|
@@ -16560,7 +16932,7 @@ lib/core/interfaces/IVNode.md
|
|
|
16560
16932
|
|
|
16561
16933
|
# Interface: IVNode
|
|
16562
16934
|
|
|
16563
|
-
Defined in: [lib/core.ts:
|
|
16935
|
+
Defined in: [lib/core.ts:1644](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1644)
|
|
16564
16936
|
|
|
16565
16937
|
Vue 节点
|
|
16566
16938
|
|
|
@@ -16574,7 +16946,7 @@ Vue 节点
|
|
|
16574
16946
|
|
|
16575
16947
|
> **children**: `object` & `IVNode`[]
|
|
16576
16948
|
|
|
16577
|
-
Defined in: [lib/core.ts:
|
|
16949
|
+
Defined in: [lib/core.ts:1645](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1645)
|
|
16578
16950
|
|
|
16579
16951
|
#### Type Declaration
|
|
16580
16952
|
|
|
@@ -16588,7 +16960,7 @@ Defined in: [lib/core.ts:1640](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16588
16960
|
|
|
16589
16961
|
> **props**: `Record`\<`string`, `any`\>
|
|
16590
16962
|
|
|
16591
|
-
Defined in: [lib/core.ts:
|
|
16963
|
+
Defined in: [lib/core.ts:1649](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1649)
|
|
16592
16964
|
|
|
16593
16965
|
***
|
|
16594
16966
|
|
|
@@ -16596,7 +16968,7 @@ Defined in: [lib/core.ts:1644](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16596
16968
|
|
|
16597
16969
|
> **type**: `symbol` \| `Record`\<`string`, `any`\>
|
|
16598
16970
|
|
|
16599
|
-
Defined in: [lib/core.ts:
|
|
16971
|
+
Defined in: [lib/core.ts:1650](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1650)
|
|
16600
16972
|
|
|
16601
16973
|
lib/core/interfaces/IVueConfig.md
|
|
16602
16974
|
---
|
|
@@ -16609,7 +16981,7 @@ lib/core/interfaces/IVueConfig.md
|
|
|
16609
16981
|
|
|
16610
16982
|
# Interface: IVueConfig
|
|
16611
16983
|
|
|
16612
|
-
Defined in: [lib/core.ts:
|
|
16984
|
+
Defined in: [lib/core.ts:1671](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1671)
|
|
16613
16985
|
|
|
16614
16986
|
Vue 配置
|
|
16615
16987
|
|
|
@@ -16619,7 +16991,7 @@ Vue 配置
|
|
|
16619
16991
|
|
|
16620
16992
|
> **globalProperties**: `Record`\<`string`, `any`\>
|
|
16621
16993
|
|
|
16622
|
-
Defined in: [lib/core.ts:
|
|
16994
|
+
Defined in: [lib/core.ts:1673](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1673)
|
|
16623
16995
|
|
|
16624
16996
|
***
|
|
16625
16997
|
|
|
@@ -16627,7 +16999,7 @@ Defined in: [lib/core.ts:1668](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16627
16999
|
|
|
16628
17000
|
> **optionMergeStrategies**: `Record`\<`string`, [`IVueOptionMergeFunction`](../type-aliases/IVueOptionMergeFunction.md)\>
|
|
16629
17001
|
|
|
16630
|
-
Defined in: [lib/core.ts:
|
|
17002
|
+
Defined in: [lib/core.ts:1675](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1675)
|
|
16631
17003
|
|
|
16632
17004
|
***
|
|
16633
17005
|
|
|
@@ -16635,7 +17007,7 @@ Defined in: [lib/core.ts:1670](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16635
17007
|
|
|
16636
17008
|
> **performance**: `boolean`
|
|
16637
17009
|
|
|
16638
|
-
Defined in: [lib/core.ts:
|
|
17010
|
+
Defined in: [lib/core.ts:1676](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1676)
|
|
16639
17011
|
|
|
16640
17012
|
## Methods
|
|
16641
17013
|
|
|
@@ -16643,7 +17015,7 @@ Defined in: [lib/core.ts:1671](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16643
17015
|
|
|
16644
17016
|
> `optional` **errorHandler**(`err`, `instance`, `info`): `void`
|
|
16645
17017
|
|
|
16646
|
-
Defined in: [lib/core.ts:
|
|
17018
|
+
Defined in: [lib/core.ts:1672](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1672)
|
|
16647
17019
|
|
|
16648
17020
|
#### Parameters
|
|
16649
17021
|
|
|
@@ -16669,7 +17041,7 @@ Defined in: [lib/core.ts:1667](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16669
17041
|
|
|
16670
17042
|
> **isCustomElement**(`tag`): `boolean`
|
|
16671
17043
|
|
|
16672
|
-
Defined in: [lib/core.ts:
|
|
17044
|
+
Defined in: [lib/core.ts:1674](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1674)
|
|
16673
17045
|
|
|
16674
17046
|
#### Parameters
|
|
16675
17047
|
|
|
@@ -16687,7 +17059,7 @@ Defined in: [lib/core.ts:1669](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16687
17059
|
|
|
16688
17060
|
> `optional` **warnHandler**(`msg`, `instance`, `trace`): `void`
|
|
16689
17061
|
|
|
16690
|
-
Defined in: [lib/core.ts:
|
|
17062
|
+
Defined in: [lib/core.ts:1677](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1677)
|
|
16691
17063
|
|
|
16692
17064
|
#### Parameters
|
|
16693
17065
|
|
|
@@ -16718,7 +17090,7 @@ lib/core/interfaces/IVue.md
|
|
|
16718
17090
|
|
|
16719
17091
|
# Interface: IVue
|
|
16720
17092
|
|
|
16721
|
-
Defined in: [lib/core.ts:
|
|
17093
|
+
Defined in: [lib/core.ts:1619](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1619)
|
|
16722
17094
|
|
|
16723
17095
|
Vue 实例
|
|
16724
17096
|
|
|
@@ -16732,7 +17104,7 @@ Vue 实例
|
|
|
16732
17104
|
|
|
16733
17105
|
> **$attrs**: `Record`\<`string`, `string`\>
|
|
16734
17106
|
|
|
16735
|
-
Defined in: [lib/core.ts:
|
|
17107
|
+
Defined in: [lib/core.ts:1620](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1620)
|
|
16736
17108
|
|
|
16737
17109
|
***
|
|
16738
17110
|
|
|
@@ -16740,7 +17112,7 @@ Defined in: [lib/core.ts:1615](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16740
17112
|
|
|
16741
17113
|
> **$data**: `Record`\<`string`, `any`\>
|
|
16742
17114
|
|
|
16743
|
-
Defined in: [lib/core.ts:
|
|
17115
|
+
Defined in: [lib/core.ts:1621](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1621)
|
|
16744
17116
|
|
|
16745
17117
|
***
|
|
16746
17118
|
|
|
@@ -16748,7 +17120,7 @@ Defined in: [lib/core.ts:1616](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16748
17120
|
|
|
16749
17121
|
> **$el**: `HTMLElement`
|
|
16750
17122
|
|
|
16751
|
-
Defined in: [lib/core.ts:
|
|
17123
|
+
Defined in: [lib/core.ts:1622](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1622)
|
|
16752
17124
|
|
|
16753
17125
|
***
|
|
16754
17126
|
|
|
@@ -16756,7 +17128,7 @@ Defined in: [lib/core.ts:1617](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16756
17128
|
|
|
16757
17129
|
> **$options**: `Record`\<`string`, `any`\>
|
|
16758
17130
|
|
|
16759
|
-
Defined in: [lib/core.ts:
|
|
17131
|
+
Defined in: [lib/core.ts:1626](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1626)
|
|
16760
17132
|
|
|
16761
17133
|
***
|
|
16762
17134
|
|
|
@@ -16764,7 +17136,7 @@ Defined in: [lib/core.ts:1621](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16764
17136
|
|
|
16765
17137
|
> **$parent**: `IVue` \| `null`
|
|
16766
17138
|
|
|
16767
|
-
Defined in: [lib/core.ts:
|
|
17139
|
+
Defined in: [lib/core.ts:1627](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1627)
|
|
16768
17140
|
|
|
16769
17141
|
***
|
|
16770
17142
|
|
|
@@ -16772,7 +17144,7 @@ Defined in: [lib/core.ts:1622](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16772
17144
|
|
|
16773
17145
|
> **$props**: `Record`\<`string`, `any`\>
|
|
16774
17146
|
|
|
16775
|
-
Defined in: [lib/core.ts:
|
|
17147
|
+
Defined in: [lib/core.ts:1628](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1628)
|
|
16776
17148
|
|
|
16777
17149
|
***
|
|
16778
17150
|
|
|
@@ -16780,7 +17152,7 @@ Defined in: [lib/core.ts:1623](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16780
17152
|
|
|
16781
17153
|
> **$refs**: `Record`\<`string`, `HTMLElement` & `IVue`\>
|
|
16782
17154
|
|
|
16783
|
-
Defined in: [lib/core.ts:
|
|
17155
|
+
Defined in: [lib/core.ts:1629](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1629)
|
|
16784
17156
|
|
|
16785
17157
|
***
|
|
16786
17158
|
|
|
@@ -16788,7 +17160,7 @@ Defined in: [lib/core.ts:1624](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16788
17160
|
|
|
16789
17161
|
> **$root**: `IVue`
|
|
16790
17162
|
|
|
16791
|
-
Defined in: [lib/core.ts:
|
|
17163
|
+
Defined in: [lib/core.ts:1630](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1630)
|
|
16792
17164
|
|
|
16793
17165
|
***
|
|
16794
17166
|
|
|
@@ -16796,7 +17168,7 @@ Defined in: [lib/core.ts:1625](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16796
17168
|
|
|
16797
17169
|
> **$slots**: `object`
|
|
16798
17170
|
|
|
16799
|
-
Defined in: [lib/core.ts:
|
|
17171
|
+
Defined in: [lib/core.ts:1631](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1631)
|
|
16800
17172
|
|
|
16801
17173
|
#### Index Signature
|
|
16802
17174
|
|
|
@@ -16812,7 +17184,7 @@ Defined in: [lib/core.ts:1626](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16812
17184
|
|
|
16813
17185
|
> **$watch**: (`o`, `cb`, `opt?`) => `void`
|
|
16814
17186
|
|
|
16815
|
-
Defined in: [lib/core.ts:
|
|
17187
|
+
Defined in: [lib/core.ts:1635](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1635)
|
|
16816
17188
|
|
|
16817
17189
|
#### Parameters
|
|
16818
17190
|
|
|
@@ -16844,7 +17216,7 @@ Defined in: [lib/core.ts:1630](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16844
17216
|
|
|
16845
17217
|
> **$emit**(`name`, ...`arg`): `void`
|
|
16846
17218
|
|
|
16847
|
-
Defined in: [lib/core.ts:
|
|
17219
|
+
Defined in: [lib/core.ts:1623](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1623)
|
|
16848
17220
|
|
|
16849
17221
|
#### Parameters
|
|
16850
17222
|
|
|
@@ -16866,7 +17238,7 @@ Defined in: [lib/core.ts:1618](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16866
17238
|
|
|
16867
17239
|
> **$forceUpdate**(): `void`
|
|
16868
17240
|
|
|
16869
|
-
Defined in: [lib/core.ts:
|
|
17241
|
+
Defined in: [lib/core.ts:1624](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1624)
|
|
16870
17242
|
|
|
16871
17243
|
#### Returns
|
|
16872
17244
|
|
|
@@ -16878,7 +17250,7 @@ Defined in: [lib/core.ts:1619](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16878
17250
|
|
|
16879
17251
|
> **$nextTick**(): `Promise`\<`void`\>
|
|
16880
17252
|
|
|
16881
|
-
Defined in: [lib/core.ts:
|
|
17253
|
+
Defined in: [lib/core.ts:1625](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1625)
|
|
16882
17254
|
|
|
16883
17255
|
#### Returns
|
|
16884
17256
|
|
|
@@ -16895,7 +17267,7 @@ lib/core/interfaces/IVueObject.md
|
|
|
16895
17267
|
|
|
16896
17268
|
# Interface: IVueObject
|
|
16897
17269
|
|
|
16898
|
-
Defined in: [lib/core.ts:
|
|
17270
|
+
Defined in: [lib/core.ts:1655](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1655)
|
|
16899
17271
|
|
|
16900
17272
|
## Methods
|
|
16901
17273
|
|
|
@@ -16903,7 +17275,7 @@ Defined in: [lib/core.ts:1650](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16903
17275
|
|
|
16904
17276
|
> **createApp**(`opt`): [`IVApp`](IVApp.md)
|
|
16905
17277
|
|
|
16906
|
-
Defined in: [lib/core.ts:
|
|
17278
|
+
Defined in: [lib/core.ts:1656](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1656)
|
|
16907
17279
|
|
|
16908
17280
|
#### Parameters
|
|
16909
17281
|
|
|
@@ -16921,7 +17293,7 @@ Defined in: [lib/core.ts:1651](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16921
17293
|
|
|
16922
17294
|
> **h**(`tag`, `props?`, `list?`): `any`
|
|
16923
17295
|
|
|
16924
|
-
Defined in: [lib/core.ts:
|
|
17296
|
+
Defined in: [lib/core.ts:1664](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1664)
|
|
16925
17297
|
|
|
16926
17298
|
#### Parameters
|
|
16927
17299
|
|
|
@@ -16947,7 +17319,7 @@ Defined in: [lib/core.ts:1659](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16947
17319
|
|
|
16948
17320
|
> **reactive**\<`T`\>(`obj`): `T`
|
|
16949
17321
|
|
|
16950
|
-
Defined in: [lib/core.ts:
|
|
17322
|
+
Defined in: [lib/core.ts:1658](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1658)
|
|
16951
17323
|
|
|
16952
17324
|
#### Type Parameters
|
|
16953
17325
|
|
|
@@ -16971,7 +17343,7 @@ Defined in: [lib/core.ts:1653](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16971
17343
|
|
|
16972
17344
|
> **ref**\<`T`\>(`obj`): `object`
|
|
16973
17345
|
|
|
16974
|
-
Defined in: [lib/core.ts:
|
|
17346
|
+
Defined in: [lib/core.ts:1657](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1657)
|
|
16975
17347
|
|
|
16976
17348
|
#### Type Parameters
|
|
16977
17349
|
|
|
@@ -16999,7 +17371,7 @@ Defined in: [lib/core.ts:1652](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16999
17371
|
|
|
17000
17372
|
> **watch**(`v`, `cb`, `opt`): `void`
|
|
17001
17373
|
|
|
17002
|
-
Defined in: [lib/core.ts:
|
|
17374
|
+
Defined in: [lib/core.ts:1659](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1659)
|
|
17003
17375
|
|
|
17004
17376
|
#### Parameters
|
|
17005
17377
|
|
|
@@ -17032,7 +17404,7 @@ lib/core/type-aliases/IVueOptionMergeFunction.md
|
|
|
17032
17404
|
|
|
17033
17405
|
> **IVueOptionMergeFunction** = (`to`, `from`, `instance`) => `any`
|
|
17034
17406
|
|
|
17035
|
-
Defined in: [lib/core.ts:
|
|
17407
|
+
Defined in: [lib/core.ts:1668](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1668)
|
|
17036
17408
|
|
|
17037
17409
|
Vue 选项合并函数
|
|
17038
17410
|
|
|
@@ -17067,7 +17439,7 @@ lib/core/type-aliases/TCurrent.md
|
|
|
17067
17439
|
|
|
17068
17440
|
> **TCurrent** = `string` \| [`AbstractForm`](../../form/classes/AbstractForm.md) \| [`AbstractPanel`](../../form/classes/AbstractPanel.md) \| [`AbstractControl`](../../control/classes/AbstractControl.md) \| [`AbstractApp`](../classes/AbstractApp.md)
|
|
17069
17441
|
|
|
17070
|
-
Defined in: [lib/core.ts:
|
|
17442
|
+
Defined in: [lib/core.ts:1696](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1696)
|
|
17071
17443
|
|
|
17072
17444
|
lib/core/type-aliases/TGlobalEvent.md
|
|
17073
17445
|
---
|
|
@@ -17082,7 +17454,7 @@ lib/core/type-aliases/TGlobalEvent.md
|
|
|
17082
17454
|
|
|
17083
17455
|
> **TGlobalEvent** = `"error"` \| `"screenResize"` \| `"configChanged"` \| `"formCreated"` \| `"formRemoved"` \| `"formTitleChanged"` \| `"formIconChanged"` \| `"formStateMinChanged"` \| `"formStateMaxChanged"` \| `"formShowChanged"` \| `"formFocused"` \| `"formBlurred"` \| `"formFlash"` \| `"formShowInSystemTaskChange"` \| `"formHashChange"` \| `"taskStarted"` \| `"taskEnded"` \| `"launcherFolderNameChanged"` \| `"hashChanged"` \| `"keydown"` \| `"keyup"`
|
|
17084
17456
|
|
|
17085
|
-
Defined in: [lib/core.ts:
|
|
17457
|
+
Defined in: [lib/core.ts:1532](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1532)
|
|
17086
17458
|
|
|
17087
17459
|
全局事件类型
|
|
17088
17460
|
|
|
@@ -22612,7 +22984,7 @@ lib/form/functions/captcha.md
|
|
|
22612
22984
|
|
|
22613
22985
|
> **captcha**(`current`, `opt`): `Promise`\<`false` \| [`ICaptchaResultEvent`](../../control/interfaces/ICaptchaResultEvent.md)\>
|
|
22614
22986
|
|
|
22615
|
-
Defined in: [lib/form.ts:
|
|
22987
|
+
Defined in: [lib/form.ts:4412](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4412)
|
|
22616
22988
|
|
|
22617
22989
|
显示一个验证码窗口
|
|
22618
22990
|
|
|
@@ -22728,7 +23100,7 @@ lib/form/functions/confirm.md
|
|
|
22728
23100
|
|
|
22729
23101
|
> **confirm**(`current`, `opt`): `Promise`\<`number` \| `boolean`\>
|
|
22730
23102
|
|
|
22731
|
-
Defined in: [lib/form.ts:
|
|
23103
|
+
Defined in: [lib/form.ts:4483](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4483)
|
|
22732
23104
|
|
|
22733
23105
|
显示一个 confirm
|
|
22734
23106
|
|
|
@@ -22763,7 +23135,7 @@ lib/form/functions/create.md
|
|
|
22763
23135
|
|
|
22764
23136
|
> **create**\<`T`\>(`current`, `cls`, `data?`, `opt?`): `Promise`\<`T`\>
|
|
22765
23137
|
|
|
22766
|
-
Defined in: [lib/form.ts:
|
|
23138
|
+
Defined in: [lib/form.ts:3831](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3831)
|
|
22767
23139
|
|
|
22768
23140
|
创建一个窗体
|
|
22769
23141
|
|
|
@@ -22828,7 +23200,7 @@ lib/form/functions/createPanel.md
|
|
|
22828
23200
|
|
|
22829
23201
|
> **createPanel**\<`T`\>(`rootPanel`, `cls`, `opt?`): `Promise`\<\{ `id`: `string`; `vapp`: [`IVApp`](../../core/interfaces/IVApp.md); `vroot`: `T`; \}\>
|
|
22830
23202
|
|
|
22831
|
-
Defined in: [lib/form.ts:
|
|
23203
|
+
Defined in: [lib/form.ts:3464](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3464)
|
|
22832
23204
|
|
|
22833
23205
|
创建 panel 对象,一般情况下无需使用
|
|
22834
23206
|
|
|
@@ -22891,7 +23263,7 @@ lib/form/functions/dialog.md
|
|
|
22891
23263
|
|
|
22892
23264
|
> **dialog**(`current`, `opt`): `Promise`\<`string`\>
|
|
22893
23265
|
|
|
22894
|
-
Defined in: [lib/form.ts:
|
|
23266
|
+
Defined in: [lib/form.ts:4316](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4316)
|
|
22895
23267
|
|
|
22896
23268
|
显示一个 dialog
|
|
22897
23269
|
|
|
@@ -22926,7 +23298,7 @@ lib/form/functions/doFocusAndPopEvent.md
|
|
|
22926
23298
|
|
|
22927
23299
|
> **doFocusAndPopEvent**(`e`): `Promise`\<`void`\>
|
|
22928
23300
|
|
|
22929
|
-
Defined in: [lib/form.ts:
|
|
23301
|
+
Defined in: [lib/form.ts:3265](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3265)
|
|
22930
23302
|
|
|
22931
23303
|
点下 pointerdown 屏幕任意一位置时根据点击处处理隐藏 pop 和焦点丢失事件,鼠标和 touch 只会响应一个
|
|
22932
23304
|
|
|
@@ -22955,7 +23327,7 @@ lib/form/functions/flash.md
|
|
|
22955
23327
|
|
|
22956
23328
|
> **flash**(`current`, `formId`): `Promise`\<`void`\>
|
|
22957
23329
|
|
|
22958
|
-
Defined in: [lib/form.ts:
|
|
23330
|
+
Defined in: [lib/form.ts:4580](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4580)
|
|
22959
23331
|
|
|
22960
23332
|
让窗体闪烁
|
|
22961
23333
|
|
|
@@ -23323,7 +23695,7 @@ lib/form/functions/hideLauncher.md
|
|
|
23323
23695
|
|
|
23324
23696
|
> **hideLauncher**(): `void`
|
|
23325
23697
|
|
|
23326
|
-
Defined in: [lib/form.ts:
|
|
23698
|
+
Defined in: [lib/form.ts:4617](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4617)
|
|
23327
23699
|
|
|
23328
23700
|
隐藏 launcher 界面
|
|
23329
23701
|
|
|
@@ -23373,7 +23745,7 @@ lib/form/functions/hidePop.md
|
|
|
23373
23745
|
|
|
23374
23746
|
> **hidePop**(`pop?`): `void`
|
|
23375
23747
|
|
|
23376
|
-
Defined in: [lib/form.ts:
|
|
23748
|
+
Defined in: [lib/form.ts:3164](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3164)
|
|
23377
23749
|
|
|
23378
23750
|
隐藏正在显示中的所有 pop,或指定 pop/el
|
|
23379
23751
|
|
|
@@ -23421,7 +23793,7 @@ lib/form/functions/init.md
|
|
|
23421
23793
|
|
|
23422
23794
|
> **init**(): `void`
|
|
23423
23795
|
|
|
23424
|
-
Defined in: [lib/form.ts:
|
|
23796
|
+
Defined in: [lib/form.ts:4631](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4631)
|
|
23425
23797
|
|
|
23426
23798
|
## Returns
|
|
23427
23799
|
|
|
@@ -23469,7 +23841,7 @@ lib/form/functions/isJustPop.md
|
|
|
23469
23841
|
|
|
23470
23842
|
> **isJustPop**(`el`): `boolean`
|
|
23471
23843
|
|
|
23472
|
-
Defined in: [lib/form.ts:
|
|
23844
|
+
Defined in: [lib/form.ts:3246](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3246)
|
|
23473
23845
|
|
|
23474
23846
|
检测 pop 是不是刚刚显示的
|
|
23475
23847
|
|
|
@@ -23684,7 +24056,7 @@ lib/form/functions/prompt.md
|
|
|
23684
24056
|
|
|
23685
24057
|
> **prompt**(`current`, `opt`): `Promise`\<`string`\>
|
|
23686
24058
|
|
|
23687
|
-
Defined in: [lib/form.ts:
|
|
24059
|
+
Defined in: [lib/form.ts:4520](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4520)
|
|
23688
24060
|
|
|
23689
24061
|
显示一个输入框 dialog
|
|
23690
24062
|
|
|
@@ -23810,7 +24182,7 @@ lib/form/functions/remove.md
|
|
|
23810
24182
|
|
|
23811
24183
|
> **remove**(`formId`): `boolean`
|
|
23812
24184
|
|
|
23813
|
-
Defined in: [lib/form.ts:
|
|
24185
|
+
Defined in: [lib/form.ts:3334](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3334)
|
|
23814
24186
|
|
|
23815
24187
|
移除一个 form(关闭窗口)
|
|
23816
24188
|
|
|
@@ -23839,7 +24211,7 @@ lib/form/functions/removePanel.md
|
|
|
23839
24211
|
|
|
23840
24212
|
> **removePanel**(`id`, `vapp`, `el`): `boolean`
|
|
23841
24213
|
|
|
23842
|
-
Defined in: [lib/form.ts:
|
|
24214
|
+
Defined in: [lib/form.ts:3407](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3407)
|
|
23843
24215
|
|
|
23844
24216
|
移除 panel 挂载,通常发生在 panel 控件的 onBeforeUnmount 中
|
|
23845
24217
|
|
|
@@ -24012,7 +24384,7 @@ lib/form/functions/showLauncher.md
|
|
|
24012
24384
|
|
|
24013
24385
|
> **showLauncher**(): `void`
|
|
24014
24386
|
|
|
24015
|
-
Defined in: [lib/form.ts:
|
|
24387
|
+
Defined in: [lib/form.ts:4607](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4607)
|
|
24016
24388
|
|
|
24017
24389
|
显示 launcher 界面
|
|
24018
24390
|
|
|
@@ -24033,7 +24405,7 @@ lib/form/functions/showPop.md
|
|
|
24033
24405
|
|
|
24034
24406
|
> **showPop**(`el`, `pop`, `direction`, `opt?`): `void`
|
|
24035
24407
|
|
|
24036
|
-
Defined in: [lib/form.ts:
|
|
24408
|
+
Defined in: [lib/form.ts:3048](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3048)
|
|
24037
24409
|
|
|
24038
24410
|
获取 pop 显示出来的坐标并报系统全局记录
|
|
24039
24411
|
|
|
@@ -24077,6 +24449,12 @@ width / height 显示的 pop 定义自定义宽/高度,可省略;null,true
|
|
|
24077
24449
|
|
|
24078
24450
|
`boolean`
|
|
24079
24451
|
|
|
24452
|
+
#### overflow?
|
|
24453
|
+
|
|
24454
|
+
`"auto"` \| `"visible"`
|
|
24455
|
+
|
|
24456
|
+
滚动内容默认 auto;带外部箭头的提示框使用 visible
|
|
24457
|
+
|
|
24080
24458
|
#### size?
|
|
24081
24459
|
|
|
24082
24460
|
\{ `height?`: `number`; `width?`: `number`; \}
|
|
@@ -24277,7 +24655,7 @@ lib/form/interfaces/IAbstractPanelQsChangeShowEvent.md
|
|
|
24277
24655
|
|
|
24278
24656
|
# Interface: IAbstractPanelQsChangeShowEvent
|
|
24279
24657
|
|
|
24280
|
-
Defined in: [lib/form.ts:
|
|
24658
|
+
Defined in: [lib/form.ts:4676](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4676)
|
|
24281
24659
|
|
|
24282
24660
|
AbstractPanel qsChange 显示事件
|
|
24283
24661
|
|
|
@@ -24287,7 +24665,7 @@ AbstractPanel qsChange 显示事件
|
|
|
24287
24665
|
|
|
24288
24666
|
> **detail**: `object`
|
|
24289
24667
|
|
|
24290
|
-
Defined in: [lib/form.ts:
|
|
24668
|
+
Defined in: [lib/form.ts:4677](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4677)
|
|
24291
24669
|
|
|
24292
24670
|
#### action
|
|
24293
24671
|
|
|
@@ -24328,7 +24706,7 @@ lib/form/interfaces/IAbstractPanelShowEvent.md
|
|
|
24328
24706
|
|
|
24329
24707
|
# Interface: IAbstractPanelShowEvent
|
|
24330
24708
|
|
|
24331
|
-
Defined in: [lib/form.ts:
|
|
24709
|
+
Defined in: [lib/form.ts:4661](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4661)
|
|
24332
24710
|
|
|
24333
24711
|
AbstractPanel 显示事件
|
|
24334
24712
|
|
|
@@ -24338,7 +24716,7 @@ AbstractPanel 显示事件
|
|
|
24338
24716
|
|
|
24339
24717
|
> **detail**: `object`
|
|
24340
24718
|
|
|
24341
|
-
Defined in: [lib/form.ts:
|
|
24719
|
+
Defined in: [lib/form.ts:4662](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4662)
|
|
24342
24720
|
|
|
24343
24721
|
#### action
|
|
24344
24722
|
|
|
@@ -24379,7 +24757,7 @@ lib/form/interfaces/IFormCaptchaOptions.md
|
|
|
24379
24757
|
|
|
24380
24758
|
# Interface: IFormCaptchaOptions
|
|
24381
24759
|
|
|
24382
|
-
Defined in: [lib/form.ts:
|
|
24760
|
+
Defined in: [lib/form.ts:4806](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4806)
|
|
24383
24761
|
|
|
24384
24762
|
显示验证码选项
|
|
24385
24763
|
|
|
@@ -24389,7 +24767,7 @@ Defined in: [lib/form.ts:4797](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24389
24767
|
|
|
24390
24768
|
> **akey**: `string`
|
|
24391
24769
|
|
|
24392
|
-
Defined in: [lib/form.ts:
|
|
24770
|
+
Defined in: [lib/form.ts:4810](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4810)
|
|
24393
24771
|
|
|
24394
24772
|
验证码 key
|
|
24395
24773
|
|
|
@@ -24399,7 +24777,7 @@ Defined in: [lib/form.ts:4801](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24399
24777
|
|
|
24400
24778
|
> **factory**: `"tc"` \| `"cf"`
|
|
24401
24779
|
|
|
24402
|
-
Defined in: [lib/form.ts:
|
|
24780
|
+
Defined in: [lib/form.ts:4808](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4808)
|
|
24403
24781
|
|
|
24404
24782
|
验证码服务商
|
|
24405
24783
|
|
|
@@ -24414,7 +24792,7 @@ lib/form/interfaces/IFormConfirmOptions.md
|
|
|
24414
24792
|
|
|
24415
24793
|
# Interface: IFormConfirmOptions
|
|
24416
24794
|
|
|
24417
|
-
Defined in: [lib/form.ts:
|
|
24795
|
+
Defined in: [lib/form.ts:4799](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4799)
|
|
24418
24796
|
|
|
24419
24797
|
Confirm 选项
|
|
24420
24798
|
|
|
@@ -24424,7 +24802,7 @@ Confirm 选项
|
|
|
24424
24802
|
|
|
24425
24803
|
> `optional` **cancel?**: `boolean`
|
|
24426
24804
|
|
|
24427
|
-
Defined in: [lib/form.ts:
|
|
24805
|
+
Defined in: [lib/form.ts:4802](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4802)
|
|
24428
24806
|
|
|
24429
24807
|
***
|
|
24430
24808
|
|
|
@@ -24432,7 +24810,7 @@ Defined in: [lib/form.ts:4793](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24432
24810
|
|
|
24433
24811
|
> **content**: `string`
|
|
24434
24812
|
|
|
24435
|
-
Defined in: [lib/form.ts:
|
|
24813
|
+
Defined in: [lib/form.ts:4801](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4801)
|
|
24436
24814
|
|
|
24437
24815
|
***
|
|
24438
24816
|
|
|
@@ -24440,7 +24818,7 @@ Defined in: [lib/form.ts:4792](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24440
24818
|
|
|
24441
24819
|
> `optional` **title?**: `string`
|
|
24442
24820
|
|
|
24443
|
-
Defined in: [lib/form.ts:
|
|
24821
|
+
Defined in: [lib/form.ts:4800](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4800)
|
|
24444
24822
|
|
|
24445
24823
|
lib/form/interfaces/IFormDialogOptions.md
|
|
24446
24824
|
---
|
|
@@ -24453,7 +24831,7 @@ lib/form/interfaces/IFormDialogOptions.md
|
|
|
24453
24831
|
|
|
24454
24832
|
# Interface: IFormDialogOptions
|
|
24455
24833
|
|
|
24456
|
-
Defined in: [lib/form.ts:
|
|
24834
|
+
Defined in: [lib/form.ts:4745](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4745)
|
|
24457
24835
|
|
|
24458
24836
|
Dialog 选项
|
|
24459
24837
|
|
|
@@ -24463,7 +24841,7 @@ Dialog 选项
|
|
|
24463
24841
|
|
|
24464
24842
|
> `optional` **autoDialogResult?**: `boolean`
|
|
24465
24843
|
|
|
24466
|
-
Defined in: [lib/form.ts:
|
|
24844
|
+
Defined in: [lib/form.ts:4753](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4753)
|
|
24467
24845
|
|
|
24468
24846
|
点击按钮后是否自动将按钮文本写入 dialogResult,默认 true
|
|
24469
24847
|
|
|
@@ -24473,7 +24851,7 @@ Defined in: [lib/form.ts:4744](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24473
24851
|
|
|
24474
24852
|
> `optional` **buttons?**: `string`[]
|
|
24475
24853
|
|
|
24476
|
-
Defined in: [lib/form.ts:
|
|
24854
|
+
Defined in: [lib/form.ts:4751](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4751)
|
|
24477
24855
|
|
|
24478
24856
|
底部按钮文本列表,默认使用当前语言的确定按钮文本
|
|
24479
24857
|
|
|
@@ -24483,7 +24861,7 @@ Defined in: [lib/form.ts:4742](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24483
24861
|
|
|
24484
24862
|
> **content**: `string`
|
|
24485
24863
|
|
|
24486
|
-
Defined in: [lib/form.ts:
|
|
24864
|
+
Defined in: [lib/form.ts:4749](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4749)
|
|
24487
24865
|
|
|
24488
24866
|
dialog 内容,支持直接传布局字符串
|
|
24489
24867
|
|
|
@@ -24493,7 +24871,7 @@ dialog 内容,支持直接传布局字符串
|
|
|
24493
24871
|
|
|
24494
24872
|
> `optional` **data?**: `Record`\<`string`, `any`\>
|
|
24495
24873
|
|
|
24496
|
-
Defined in: [lib/form.ts:
|
|
24874
|
+
Defined in: [lib/form.ts:4767](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4767)
|
|
24497
24875
|
|
|
24498
24876
|
传值,需要用 data.x 读取
|
|
24499
24877
|
|
|
@@ -24503,7 +24881,7 @@ Defined in: [lib/form.ts:4758](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24503
24881
|
|
|
24504
24882
|
> `optional` **direction?**: `"v"` \| `"h"`
|
|
24505
24883
|
|
|
24506
|
-
Defined in: [lib/form.ts:
|
|
24884
|
+
Defined in: [lib/form.ts:4756](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4756)
|
|
24507
24885
|
|
|
24508
24886
|
dialog 控件内容布局方向,h 为横向,v 为纵向
|
|
24509
24887
|
|
|
@@ -24513,7 +24891,7 @@ dialog 控件内容布局方向,h 为横向,v 为纵向
|
|
|
24513
24891
|
|
|
24514
24892
|
> `optional` **gutter?**: `string` \| `number`
|
|
24515
24893
|
|
|
24516
|
-
Defined in: [lib/form.ts:
|
|
24894
|
+
Defined in: [lib/form.ts:4758](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4758)
|
|
24517
24895
|
|
|
24518
24896
|
dialog 控件内容区项目间距,会透传给 dialog 控件
|
|
24519
24897
|
|
|
@@ -24523,7 +24901,7 @@ dialog 控件内容区项目间距,会透传给 dialog 控件
|
|
|
24523
24901
|
|
|
24524
24902
|
> `optional` **height?**: `string` \| `number`
|
|
24525
24903
|
|
|
24526
|
-
Defined in: [lib/form.ts:
|
|
24904
|
+
Defined in: [lib/form.ts:4762](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4762)
|
|
24527
24905
|
|
|
24528
24906
|
dialog 控件高度,传数字时为像素值,传 fill 时代表填充可用高度
|
|
24529
24907
|
|
|
@@ -24533,7 +24911,7 @@ dialog 控件高度,传数字时为像素值,传 fill 时代表填充可用
|
|
|
24533
24911
|
|
|
24534
24912
|
> `optional` **methods?**: `Record`\<`string`, (...`param`) => `any`\>
|
|
24535
24913
|
|
|
24536
|
-
Defined in: [lib/form.ts:
|
|
24914
|
+
Defined in: [lib/form.ts:4769](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4769)
|
|
24537
24915
|
|
|
24538
24916
|
传值,需要用 methods.x 读取
|
|
24539
24917
|
|
|
@@ -24543,7 +24921,7 @@ Defined in: [lib/form.ts:4760](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24543
24921
|
|
|
24544
24922
|
> `optional` **onMounted?**: () => `void` \| `Promise`\<`void`\>
|
|
24545
24923
|
|
|
24546
|
-
Defined in: [lib/form.ts:
|
|
24924
|
+
Defined in: [lib/form.ts:4789](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4789)
|
|
24547
24925
|
|
|
24548
24926
|
窗体挂载完成事件
|
|
24549
24927
|
|
|
@@ -24557,7 +24935,7 @@ Defined in: [lib/form.ts:4780](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24557
24935
|
|
|
24558
24936
|
> `optional` **padding?**: `string` \| `boolean`
|
|
24559
24937
|
|
|
24560
|
-
Defined in: [lib/form.ts:
|
|
24938
|
+
Defined in: [lib/form.ts:4764](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4764)
|
|
24561
24939
|
|
|
24562
24940
|
dialog 控件内容区是否显示内边距,默认表现与控件自身一致
|
|
24563
24941
|
|
|
@@ -24567,7 +24945,7 @@ dialog 控件内容区是否显示内边距,默认表现与控件自身一致
|
|
|
24567
24945
|
|
|
24568
24946
|
> `optional` **path?**: `string`
|
|
24569
24947
|
|
|
24570
|
-
Defined in: [lib/form.ts:
|
|
24948
|
+
Defined in: [lib/form.ts:4773](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4773)
|
|
24571
24949
|
|
|
24572
24950
|
路径基,以 / 结束或文件路径则以文件的基路径为准,可留空
|
|
24573
24951
|
|
|
@@ -24577,7 +24955,7 @@ Defined in: [lib/form.ts:4764](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24577
24955
|
|
|
24578
24956
|
> `optional` **select?**: (`this`, `e`, `button`) => `void`
|
|
24579
24957
|
|
|
24580
|
-
Defined in: [lib/form.ts:
|
|
24958
|
+
Defined in: [lib/form.ts:4780](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4780)
|
|
24581
24959
|
|
|
24582
24960
|
点击按钮触发事件,不能用 Promise
|
|
24583
24961
|
|
|
@@ -24609,7 +24987,7 @@ Defined in: [lib/form.ts:4771](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24609
24987
|
|
|
24610
24988
|
> `optional` **style?**: `string`
|
|
24611
24989
|
|
|
24612
|
-
Defined in: [lib/form.ts:
|
|
24990
|
+
Defined in: [lib/form.ts:4771](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4771)
|
|
24613
24991
|
|
|
24614
24992
|
样式表
|
|
24615
24993
|
|
|
@@ -24619,7 +24997,7 @@ Defined in: [lib/form.ts:4762](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24619
24997
|
|
|
24620
24998
|
> `optional` **title?**: `string`
|
|
24621
24999
|
|
|
24622
|
-
Defined in: [lib/form.ts:
|
|
25000
|
+
Defined in: [lib/form.ts:4747](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4747)
|
|
24623
25001
|
|
|
24624
25002
|
dialog 窗体标题,不传则使用默认标题 dialog
|
|
24625
25003
|
|
|
@@ -24629,7 +25007,7 @@ dialog 窗体标题,不传则使用默认标题 dialog
|
|
|
24629
25007
|
|
|
24630
25008
|
> `optional` **width?**: `string` \| `number`
|
|
24631
25009
|
|
|
24632
|
-
Defined in: [lib/form.ts:
|
|
25010
|
+
Defined in: [lib/form.ts:4760](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4760)
|
|
24633
25011
|
|
|
24634
25012
|
dialog 控件宽度,传数字时为像素值,传 fill 时代表填充可用宽度
|
|
24635
25013
|
|
|
@@ -24644,7 +25022,7 @@ lib/form/interfaces/IFormDialogSelectEvent.md
|
|
|
24644
25022
|
|
|
24645
25023
|
# Interface: IFormDialogSelectEvent
|
|
24646
25024
|
|
|
24647
|
-
Defined in: [lib/form.ts:
|
|
25025
|
+
Defined in: [lib/form.ts:4792](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4792)
|
|
24648
25026
|
|
|
24649
25027
|
Custom Event
|
|
24650
25028
|
|
|
@@ -24658,7 +25036,7 @@ Custom Event
|
|
|
24658
25036
|
|
|
24659
25037
|
> **detail**: `object`
|
|
24660
25038
|
|
|
24661
|
-
Defined in: [lib/form.ts:
|
|
25039
|
+
Defined in: [lib/form.ts:4793](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4793)
|
|
24662
25040
|
|
|
24663
25041
|
#### button
|
|
24664
25042
|
|
|
@@ -24703,7 +25081,7 @@ lib/form/interfaces/IFormInfo.md
|
|
|
24703
25081
|
|
|
24704
25082
|
# Interface: IFormInfo
|
|
24705
25083
|
|
|
24706
|
-
Defined in: [lib/form.ts:
|
|
25084
|
+
Defined in: [lib/form.ts:4700](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4700)
|
|
24707
25085
|
|
|
24708
25086
|
Form 的简略情况,通常在 list 当中
|
|
24709
25087
|
|
|
@@ -24713,7 +25091,7 @@ Form 的简略情况,通常在 list 当中
|
|
|
24713
25091
|
|
|
24714
25092
|
> **focus**: `boolean`
|
|
24715
25093
|
|
|
24716
|
-
Defined in: [lib/form.ts:
|
|
25094
|
+
Defined in: [lib/form.ts:4707](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4707)
|
|
24717
25095
|
|
|
24718
25096
|
***
|
|
24719
25097
|
|
|
@@ -24721,7 +25099,7 @@ Defined in: [lib/form.ts:4698](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24721
25099
|
|
|
24722
25100
|
> **icon**: `string`
|
|
24723
25101
|
|
|
24724
|
-
Defined in: [lib/form.ts:
|
|
25102
|
+
Defined in: [lib/form.ts:4703](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4703)
|
|
24725
25103
|
|
|
24726
25104
|
***
|
|
24727
25105
|
|
|
@@ -24729,7 +25107,7 @@ Defined in: [lib/form.ts:4694](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24729
25107
|
|
|
24730
25108
|
> **show**: `boolean`
|
|
24731
25109
|
|
|
24732
|
-
Defined in: [lib/form.ts:
|
|
25110
|
+
Defined in: [lib/form.ts:4706](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4706)
|
|
24733
25111
|
|
|
24734
25112
|
***
|
|
24735
25113
|
|
|
@@ -24737,7 +25115,7 @@ Defined in: [lib/form.ts:4697](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24737
25115
|
|
|
24738
25116
|
> **showInSystemTask**: `boolean`
|
|
24739
25117
|
|
|
24740
|
-
Defined in: [lib/form.ts:
|
|
25118
|
+
Defined in: [lib/form.ts:4708](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4708)
|
|
24741
25119
|
|
|
24742
25120
|
***
|
|
24743
25121
|
|
|
@@ -24745,7 +25123,7 @@ Defined in: [lib/form.ts:4699](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24745
25123
|
|
|
24746
25124
|
> **stateMax**: `boolean`
|
|
24747
25125
|
|
|
24748
|
-
Defined in: [lib/form.ts:
|
|
25126
|
+
Defined in: [lib/form.ts:4704](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4704)
|
|
24749
25127
|
|
|
24750
25128
|
***
|
|
24751
25129
|
|
|
@@ -24753,7 +25131,7 @@ Defined in: [lib/form.ts:4695](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24753
25131
|
|
|
24754
25132
|
> **stateMin**: `boolean`
|
|
24755
25133
|
|
|
24756
|
-
Defined in: [lib/form.ts:
|
|
25134
|
+
Defined in: [lib/form.ts:4705](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4705)
|
|
24757
25135
|
|
|
24758
25136
|
***
|
|
24759
25137
|
|
|
@@ -24761,7 +25139,7 @@ Defined in: [lib/form.ts:4696](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24761
25139
|
|
|
24762
25140
|
> **taskId**: `string`
|
|
24763
25141
|
|
|
24764
|
-
Defined in: [lib/form.ts:
|
|
25142
|
+
Defined in: [lib/form.ts:4701](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4701)
|
|
24765
25143
|
|
|
24766
25144
|
***
|
|
24767
25145
|
|
|
@@ -24769,7 +25147,7 @@ Defined in: [lib/form.ts:4692](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24769
25147
|
|
|
24770
25148
|
> **title**: `string`
|
|
24771
25149
|
|
|
24772
|
-
Defined in: [lib/form.ts:
|
|
25150
|
+
Defined in: [lib/form.ts:4702](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4702)
|
|
24773
25151
|
|
|
24774
25152
|
lib/form/interfaces/IForm.md
|
|
24775
25153
|
---
|
|
@@ -24782,7 +25160,7 @@ lib/form/interfaces/IForm.md
|
|
|
24782
25160
|
|
|
24783
25161
|
# Interface: IForm
|
|
24784
25162
|
|
|
24785
|
-
Defined in: [lib/form.ts:
|
|
25163
|
+
Defined in: [lib/form.ts:4691](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4691)
|
|
24786
25164
|
|
|
24787
25165
|
运行时 task 中的 form 对象
|
|
24788
25166
|
|
|
@@ -24792,7 +25170,7 @@ Defined in: [lib/form.ts:4682](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24792
25170
|
|
|
24793
25171
|
> **closed**: `boolean`
|
|
24794
25172
|
|
|
24795
|
-
Defined in: [lib/form.ts:
|
|
25173
|
+
Defined in: [lib/form.ts:4696](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4696)
|
|
24796
25174
|
|
|
24797
25175
|
是否已经执行过了关闭窗体方法,此处加判断为了防止重复执行 close 导致的 bug
|
|
24798
25176
|
|
|
@@ -24802,7 +25180,7 @@ Defined in: [lib/form.ts:4687](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24802
25180
|
|
|
24803
25181
|
> **id**: `string`
|
|
24804
25182
|
|
|
24805
|
-
Defined in: [lib/form.ts:
|
|
25183
|
+
Defined in: [lib/form.ts:4692](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4692)
|
|
24806
25184
|
|
|
24807
25185
|
***
|
|
24808
25186
|
|
|
@@ -24810,7 +25188,7 @@ Defined in: [lib/form.ts:4683](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24810
25188
|
|
|
24811
25189
|
> **vapp**: [`IVApp`](../../core/interfaces/IVApp.md)
|
|
24812
25190
|
|
|
24813
|
-
Defined in: [lib/form.ts:
|
|
25191
|
+
Defined in: [lib/form.ts:4693](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4693)
|
|
24814
25192
|
|
|
24815
25193
|
***
|
|
24816
25194
|
|
|
@@ -24818,7 +25196,7 @@ Defined in: [lib/form.ts:4684](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24818
25196
|
|
|
24819
25197
|
> **vroot**: [`IVue`](../../core/interfaces/IVue.md)
|
|
24820
25198
|
|
|
24821
|
-
Defined in: [lib/form.ts:
|
|
25199
|
+
Defined in: [lib/form.ts:4694](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4694)
|
|
24822
25200
|
|
|
24823
25201
|
lib/form/interfaces/IFormPromptOptions.md
|
|
24824
25202
|
---
|
|
@@ -24831,7 +25209,7 @@ lib/form/interfaces/IFormPromptOptions.md
|
|
|
24831
25209
|
|
|
24832
25210
|
# Interface: IFormPromptOptions
|
|
24833
25211
|
|
|
24834
|
-
Defined in: [lib/form.ts:
|
|
25212
|
+
Defined in: [lib/form.ts:4814](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4814)
|
|
24835
25213
|
|
|
24836
25214
|
Prompt 选项
|
|
24837
25215
|
|
|
@@ -24841,7 +25219,7 @@ Prompt 选项
|
|
|
24841
25219
|
|
|
24842
25220
|
> `optional` **cancel?**: `boolean`
|
|
24843
25221
|
|
|
24844
|
-
Defined in: [lib/form.ts:
|
|
25222
|
+
Defined in: [lib/form.ts:4822](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4822)
|
|
24845
25223
|
|
|
24846
25224
|
是否显示取消按钮,默认显示
|
|
24847
25225
|
|
|
@@ -24851,7 +25229,7 @@ Defined in: [lib/form.ts:4813](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24851
25229
|
|
|
24852
25230
|
> **content**: `string`
|
|
24853
25231
|
|
|
24854
|
-
Defined in: [lib/form.ts:
|
|
25232
|
+
Defined in: [lib/form.ts:4818](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4818)
|
|
24855
25233
|
|
|
24856
25234
|
内容说明
|
|
24857
25235
|
|
|
@@ -24861,7 +25239,7 @@ Defined in: [lib/form.ts:4809](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24861
25239
|
|
|
24862
25240
|
> `optional` **select?**: (`this`, `e`, `button`) => `void`
|
|
24863
25241
|
|
|
24864
|
-
Defined in: [lib/form.ts:
|
|
25242
|
+
Defined in: [lib/form.ts:4829](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4829)
|
|
24865
25243
|
|
|
24866
25244
|
点击按钮触发事件
|
|
24867
25245
|
|
|
@@ -24893,7 +25271,7 @@ true 代表确定,false 代表取消
|
|
|
24893
25271
|
|
|
24894
25272
|
> `optional` **text?**: `string`
|
|
24895
25273
|
|
|
24896
|
-
Defined in: [lib/form.ts:
|
|
25274
|
+
Defined in: [lib/form.ts:4820](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4820)
|
|
24897
25275
|
|
|
24898
25276
|
文本默认值
|
|
24899
25277
|
|
|
@@ -24903,7 +25281,7 @@ Defined in: [lib/form.ts:4811](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24903
25281
|
|
|
24904
25282
|
> `optional` **title?**: `string`
|
|
24905
25283
|
|
|
24906
|
-
Defined in: [lib/form.ts:
|
|
25284
|
+
Defined in: [lib/form.ts:4816](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4816)
|
|
24907
25285
|
|
|
24908
25286
|
标题
|
|
24909
25287
|
|
|
@@ -24918,7 +25296,7 @@ lib/form/interfaces/IFormPromptSelectEvent.md
|
|
|
24918
25296
|
|
|
24919
25297
|
# Interface: IFormPromptSelectEvent
|
|
24920
25298
|
|
|
24921
|
-
Defined in: [lib/form.ts:
|
|
25299
|
+
Defined in: [lib/form.ts:4836](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4836)
|
|
24922
25300
|
|
|
24923
25301
|
Custom Event
|
|
24924
25302
|
|
|
@@ -24932,7 +25310,7 @@ Custom Event
|
|
|
24932
25310
|
|
|
24933
25311
|
> **detail**: `object`
|
|
24934
25312
|
|
|
24935
|
-
Defined in: [lib/form.ts:
|
|
25313
|
+
Defined in: [lib/form.ts:4837](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4837)
|
|
24936
25314
|
|
|
24937
25315
|
#### button
|
|
24938
25316
|
|
|
@@ -24983,7 +25361,7 @@ lib/form/interfaces/IMoveDragOptions.md
|
|
|
24983
25361
|
|
|
24984
25362
|
# Interface: IMoveDragOptions
|
|
24985
25363
|
|
|
24986
|
-
Defined in: [lib/form.ts:
|
|
25364
|
+
Defined in: [lib/form.ts:4712](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4712)
|
|
24987
25365
|
|
|
24988
25366
|
移动 drag 到新位置函数的选项
|
|
24989
25367
|
|
|
@@ -24993,7 +25371,7 @@ Defined in: [lib/form.ts:4703](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24993
25371
|
|
|
24994
25372
|
> `optional` **height?**: `number`
|
|
24995
25373
|
|
|
24996
|
-
Defined in: [lib/form.ts:
|
|
25374
|
+
Defined in: [lib/form.ts:4716](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4716)
|
|
24997
25375
|
|
|
24998
25376
|
***
|
|
24999
25377
|
|
|
@@ -25001,7 +25379,7 @@ Defined in: [lib/form.ts:4707](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25001
25379
|
|
|
25002
25380
|
> `optional` **icon?**: `boolean`
|
|
25003
25381
|
|
|
25004
|
-
Defined in: [lib/form.ts:
|
|
25382
|
+
Defined in: [lib/form.ts:4717](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4717)
|
|
25005
25383
|
|
|
25006
25384
|
***
|
|
25007
25385
|
|
|
@@ -25009,7 +25387,7 @@ Defined in: [lib/form.ts:4708](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25009
25387
|
|
|
25010
25388
|
> `optional` **left?**: `number`
|
|
25011
25389
|
|
|
25012
|
-
Defined in: [lib/form.ts:
|
|
25390
|
+
Defined in: [lib/form.ts:4714](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4714)
|
|
25013
25391
|
|
|
25014
25392
|
***
|
|
25015
25393
|
|
|
@@ -25017,7 +25395,7 @@ Defined in: [lib/form.ts:4705](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25017
25395
|
|
|
25018
25396
|
> `optional` **top?**: `number`
|
|
25019
25397
|
|
|
25020
|
-
Defined in: [lib/form.ts:
|
|
25398
|
+
Defined in: [lib/form.ts:4713](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4713)
|
|
25021
25399
|
|
|
25022
25400
|
***
|
|
25023
25401
|
|
|
@@ -25025,7 +25403,7 @@ Defined in: [lib/form.ts:4704](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25025
25403
|
|
|
25026
25404
|
> `optional` **width?**: `number`
|
|
25027
25405
|
|
|
25028
|
-
Defined in: [lib/form.ts:
|
|
25406
|
+
Defined in: [lib/form.ts:4715](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4715)
|
|
25029
25407
|
|
|
25030
25408
|
lib/form/interfaces/INotifyContentOptions.md
|
|
25031
25409
|
---
|
|
@@ -25038,7 +25416,7 @@ lib/form/interfaces/INotifyContentOptions.md
|
|
|
25038
25416
|
|
|
25039
25417
|
# Interface: INotifyContentOptions
|
|
25040
25418
|
|
|
25041
|
-
Defined in: [lib/form.ts:
|
|
25419
|
+
Defined in: [lib/form.ts:4734](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4734)
|
|
25042
25420
|
|
|
25043
25421
|
notify 信息框的修改选项
|
|
25044
25422
|
|
|
@@ -25048,7 +25426,7 @@ notify 信息框的修改选项
|
|
|
25048
25426
|
|
|
25049
25427
|
> `optional` **content?**: `string`
|
|
25050
25428
|
|
|
25051
|
-
Defined in: [lib/form.ts:
|
|
25429
|
+
Defined in: [lib/form.ts:4736](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4736)
|
|
25052
25430
|
|
|
25053
25431
|
***
|
|
25054
25432
|
|
|
@@ -25056,7 +25434,7 @@ Defined in: [lib/form.ts:4727](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25056
25434
|
|
|
25057
25435
|
> `optional` **note?**: `string`
|
|
25058
25436
|
|
|
25059
|
-
Defined in: [lib/form.ts:
|
|
25437
|
+
Defined in: [lib/form.ts:4737](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4737)
|
|
25060
25438
|
|
|
25061
25439
|
***
|
|
25062
25440
|
|
|
@@ -25064,7 +25442,7 @@ Defined in: [lib/form.ts:4728](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25064
25442
|
|
|
25065
25443
|
> `optional` **progress?**: `number`
|
|
25066
25444
|
|
|
25067
|
-
Defined in: [lib/form.ts:
|
|
25445
|
+
Defined in: [lib/form.ts:4739](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4739)
|
|
25068
25446
|
|
|
25069
25447
|
可顺便修改进度
|
|
25070
25448
|
|
|
@@ -25074,7 +25452,7 @@ Defined in: [lib/form.ts:4730](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25074
25452
|
|
|
25075
25453
|
> `optional` **timeout?**: `number`
|
|
25076
25454
|
|
|
25077
|
-
Defined in: [lib/form.ts:
|
|
25455
|
+
Defined in: [lib/form.ts:4741](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4741)
|
|
25078
25456
|
|
|
25079
25457
|
设置后将在 x 毫秒后隐藏,这不会大于创建时的设置的总时长
|
|
25080
25458
|
|
|
@@ -25084,7 +25462,7 @@ Defined in: [lib/form.ts:4732](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25084
25462
|
|
|
25085
25463
|
> `optional` **title?**: `string`
|
|
25086
25464
|
|
|
25087
|
-
Defined in: [lib/form.ts:
|
|
25465
|
+
Defined in: [lib/form.ts:4735](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4735)
|
|
25088
25466
|
|
|
25089
25467
|
lib/form/interfaces/INotifyOptions.md
|
|
25090
25468
|
---
|
|
@@ -25097,7 +25475,7 @@ lib/form/interfaces/INotifyOptions.md
|
|
|
25097
25475
|
|
|
25098
25476
|
# Interface: INotifyOptions
|
|
25099
25477
|
|
|
25100
|
-
Defined in: [lib/form.ts:
|
|
25478
|
+
Defined in: [lib/form.ts:4721](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4721)
|
|
25101
25479
|
|
|
25102
25480
|
弹出 notify 信息框的选项
|
|
25103
25481
|
|
|
@@ -25107,7 +25485,7 @@ Defined in: [lib/form.ts:4712](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25107
25485
|
|
|
25108
25486
|
> `optional` **content?**: `string`
|
|
25109
25487
|
|
|
25110
|
-
Defined in: [lib/form.ts:
|
|
25488
|
+
Defined in: [lib/form.ts:4724](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4724)
|
|
25111
25489
|
|
|
25112
25490
|
正文
|
|
25113
25491
|
|
|
@@ -25117,7 +25495,7 @@ Defined in: [lib/form.ts:4715](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25117
25495
|
|
|
25118
25496
|
> `optional` **icon?**: `string` \| `null`
|
|
25119
25497
|
|
|
25120
|
-
Defined in: [lib/form.ts:
|
|
25498
|
+
Defined in: [lib/form.ts:4727](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4727)
|
|
25121
25499
|
|
|
25122
25500
|
***
|
|
25123
25501
|
|
|
@@ -25125,7 +25503,7 @@ Defined in: [lib/form.ts:4718](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25125
25503
|
|
|
25126
25504
|
> `optional` **note?**: `string`
|
|
25127
25505
|
|
|
25128
|
-
Defined in: [lib/form.ts:
|
|
25506
|
+
Defined in: [lib/form.ts:4726](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4726)
|
|
25129
25507
|
|
|
25130
25508
|
浅色描述
|
|
25131
25509
|
|
|
@@ -25135,7 +25513,7 @@ Defined in: [lib/form.ts:4717](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25135
25513
|
|
|
25136
25514
|
> `optional` **progress?**: `boolean`
|
|
25137
25515
|
|
|
25138
|
-
Defined in: [lib/form.ts:
|
|
25516
|
+
Defined in: [lib/form.ts:4730](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4730)
|
|
25139
25517
|
|
|
25140
25518
|
***
|
|
25141
25519
|
|
|
@@ -25143,7 +25521,7 @@ Defined in: [lib/form.ts:4721](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25143
25521
|
|
|
25144
25522
|
> `optional` **timeout?**: `number`
|
|
25145
25523
|
|
|
25146
|
-
Defined in: [lib/form.ts:
|
|
25524
|
+
Defined in: [lib/form.ts:4728](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4728)
|
|
25147
25525
|
|
|
25148
25526
|
***
|
|
25149
25527
|
|
|
@@ -25151,7 +25529,7 @@ Defined in: [lib/form.ts:4719](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25151
25529
|
|
|
25152
25530
|
> `optional` **title?**: `string`
|
|
25153
25531
|
|
|
25154
|
-
Defined in: [lib/form.ts:
|
|
25532
|
+
Defined in: [lib/form.ts:4722](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4722)
|
|
25155
25533
|
|
|
25156
25534
|
***
|
|
25157
25535
|
|
|
@@ -25159,7 +25537,7 @@ Defined in: [lib/form.ts:4713](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25159
25537
|
|
|
25160
25538
|
> `optional` **type?**: `"progress"` \| `"info"` \| `"warning"` \| `"danger"` \| `"primary"`
|
|
25161
25539
|
|
|
25162
|
-
Defined in: [lib/form.ts:
|
|
25540
|
+
Defined in: [lib/form.ts:4729](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4729)
|
|
25163
25541
|
|
|
25164
25542
|
lib/form/variables/activePanels.md
|
|
25165
25543
|
---
|