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