clickgo 6.1.5 → 6.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/demo.cga +0 -0
- package/dist/app/task.cga +0 -0
- package/dist/clickgo.d.ts +2 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/monaco.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/control.d.ts +17 -1
- package/dist/lib/core.d.ts +8 -0
- package/dist/lib/form.d.ts +2 -0
- package/doc/clickgo-rag.md +765 -357
- package/package.json +2 -2
package/doc/clickgo-rag.md
CHANGED
|
@@ -3916,34 +3916,42 @@ CSS 样式字符串。
|
|
|
3916
3916
|
## imgviewer
|
|
3917
3917
|
---
|
|
3918
3918
|
|
|
3919
|
-
|
|
3919
|
+
图片查看器,支持鼠标拖动、双指移动与缩放、围绕鼠标位置的滚轮缩放。新图片完整显示并居中。
|
|
3920
3920
|
|
|
3921
3921
|
### 参数
|
|
3922
3922
|
|
|
3923
3923
|
#### src
|
|
3924
3924
|
|
|
3925
|
-
`string[]` | `string
|
|
3926
|
-
|
|
3927
|
-
图片地址列表。
|
|
3925
|
+
`string[]` | `string`,图片地址或地址列表,默认空数组。支持包内路径、HTTP(S)、Data URL、Blob URL。Blob URL 的创建和释放由调用方负责。
|
|
3928
3926
|
|
|
3929
3927
|
#### modelValue
|
|
3930
3928
|
|
|
3931
|
-
`number` | `string`
|
|
3929
|
+
`number` | `string`,当前图片索引,默认 `0`,保持原有绑定含义。
|
|
3930
|
+
|
|
3931
|
+
#### zoom
|
|
3932
3932
|
|
|
3933
|
-
|
|
3933
|
+
`number` | `string`,双向绑定缩放比例,默认 `1`,范围 `0.05` 至 `5`。`1` 表示原始尺寸。切换图片时自动适应视口。
|
|
3934
3934
|
|
|
3935
|
-
###
|
|
3935
|
+
### 事件
|
|
3936
|
+
|
|
3937
|
+
#### change
|
|
3938
|
+
|
|
3939
|
+
视图变化时触发,参数为 `clickgo.control.IPanzoomView`,包含 `zoom`、`x`、`y`。
|
|
3936
3940
|
|
|
3937
|
-
|
|
3941
|
+
### 方法
|
|
3938
3942
|
|
|
3939
|
-
|
|
3943
|
+
- `zoomFit()`:完整显示并居中,调整视口大小时继续适应。
|
|
3944
|
+
- `zoomActual()`:以原始尺寸居中显示。
|
|
3940
3945
|
|
|
3941
3946
|
### 示例
|
|
3942
3947
|
|
|
3943
3948
|
```xml
|
|
3944
|
-
<imgviewer :src="
|
|
3949
|
+
<imgviewer ref="viewer" :src="images" v-model="index" v-model:zoom="zoom" style="flex: 1;"></imgviewer>
|
|
3950
|
+
<slider v-model="zoom" min="0.05" max="5" step="0.01" label="缩放"></slider>
|
|
3951
|
+
<button @click="refs.viewer.zoomFit()">适应</button>
|
|
3945
3952
|
```
|
|
3946
3953
|
|
|
3954
|
+
|
|
3947
3955
|
## jodit
|
|
3948
3956
|
---
|
|
3949
3957
|
|
|
@@ -4977,6 +4985,14 @@ CSS 样式字符串。
|
|
|
4977
4985
|
|
|
4978
4986
|
快捷键,以 `+` 分隔各键名,如 `Ctrl+Alt+T`、`Ctrl+Shift+S`。支持的修饰键:`Ctrl`、`Alt`、`Shift`、`Meta`,在 macOS 上会自动替换为对应符号(`⌘` `⌥` `⇧`)。若只传单个键名(如 `T`),则自动前置 `Ctrl`/`⌘`。快捷键仅在菜单项所属窗体获得焦点时生效,触发效果与点击菜单项一致。
|
|
4979
4987
|
|
|
4988
|
+
#### altOnly
|
|
4989
|
+
|
|
4990
|
+
`boolean` | `string`
|
|
4991
|
+
|
|
4992
|
+
是否仅显示 `alt` 的快捷键提示,默认 false。模板中写作 `alt-only`。
|
|
4993
|
+
开启后不注册、不拦截快捷键,鼠标点击和 check/radio 行为保持正常。
|
|
4994
|
+
支持动态切换。适合快捷键已由编辑器或浏览器处理的菜单项。
|
|
4995
|
+
|
|
4980
4996
|
#### type
|
|
4981
4997
|
|
|
4982
4998
|
`string`
|
|
@@ -5017,6 +5033,10 @@ radio 类型时的标签值。
|
|
|
5017
5033
|
<menulist-item label="Open" alt="Ctrl+O" @click="onOpen"></menulist-item>
|
|
5018
5034
|
```
|
|
5019
5035
|
|
|
5036
|
+
```xml
|
|
5037
|
+
<menulist-item alt="X" alt-only @click="onCut">剪切</menulist-item>
|
|
5038
|
+
```
|
|
5039
|
+
|
|
5020
5040
|
|
|
5021
5041
|
## menulist-split
|
|
5022
5042
|
---
|
|
@@ -5058,33 +5078,47 @@ Monaco 代码编辑器组件。
|
|
|
5058
5078
|
|
|
5059
5079
|
`string`
|
|
5060
5080
|
|
|
5061
|
-
|
|
5081
|
+
双向绑定。`files` 为空或未设置时为编辑器内容;`files` 非空时为当前文件的路径。
|
|
5082
|
+
路径不存在时显示空编辑区,不保留上一个文件。
|
|
5062
5083
|
|
|
5063
5084
|
#### language
|
|
5064
5085
|
|
|
5065
5086
|
`string`
|
|
5066
5087
|
|
|
5067
|
-
|
|
5088
|
+
当前文件的代码语言,不区分大小写。为空时,多文件按扩展名推断,单文件使用纯文本。
|
|
5068
5089
|
|
|
5069
5090
|
#### theme
|
|
5070
5091
|
|
|
5071
5092
|
`string`
|
|
5072
5093
|
|
|
5073
|
-
|
|
5094
|
+
编辑器主题,如 `vs`、`vs-dark`、`hc-black`、`hc-light`。为空时使用 `vs`。
|
|
5074
5095
|
|
|
5075
5096
|
#### files
|
|
5076
5097
|
|
|
5077
|
-
`Record<string,
|
|
5098
|
+
`Record<string, string>` | `undefined`
|
|
5099
|
+
|
|
5100
|
+
双向绑定,键为文件路径或 URI,值为文本内容,默认 `{}`。
|
|
5101
|
+
非空时进入多文件模式,所有文件参与代码提示;清空后进入单文件模式。
|
|
5102
|
+
声明文件(`.d.ts`、`.d.mts`、`.d.cts`)的新增、修改和删除会自动刷新类型诊断,无需修改当前代码。
|
|
5103
|
+
编辑时发出新的文件对象。切换文件保留撤销历史、选区和滚动位置。
|
|
5104
|
+
|
|
5105
|
+
#### options
|
|
5106
|
+
|
|
5107
|
+
`Record<string, unknown>`
|
|
5078
5108
|
|
|
5079
|
-
|
|
5109
|
+
Monaco 编辑器选项,默认 `{}`,支持动态更新,如 `wordWrap`、`tabSize`、`minimap`。
|
|
5110
|
+
`readonly`、`disabled` 优先于选项中的 `readOnly` 和 `domReadOnly`。
|
|
5111
|
+
控件使用自定义右键菜单和自己的文本模型,`contextmenu`、初始化 `model` 由控件管理。
|
|
5112
|
+
未设置字体选项时继承控件字体,默认关闭小地图并自动调整布局。
|
|
5080
5113
|
|
|
5081
5114
|
### 事件
|
|
5082
5115
|
|
|
5083
5116
|
#### jump
|
|
5084
5117
|
|
|
5085
|
-
`(info: {
|
|
5118
|
+
`(info: { resource: Monaco.Uri; options: { selection?: Monaco.IRange | Monaco.IPosition } }) => void`
|
|
5086
5119
|
|
|
5087
|
-
|
|
5120
|
+
跳转到其他文件时触发。`resource.path` 为目标路径,`options.selection` 为目标位置。
|
|
5121
|
+
由应用切换当前文件并设置选区;控件不会自动切换文件。
|
|
5088
5122
|
|
|
5089
5123
|
#### init
|
|
5090
5124
|
|
|
@@ -5092,11 +5126,49 @@ Monaco 代码编辑器组件。
|
|
|
5092
5126
|
|
|
5093
5127
|
编辑器初始化完成时触发。
|
|
5094
5128
|
|
|
5129
|
+
#### error
|
|
5130
|
+
|
|
5131
|
+
`(info: { stage: 'iframe' | 'loader' | 'module' | 'editor' | 'timeout' | 'clipboard'; error: unknown }) => void`
|
|
5132
|
+
|
|
5133
|
+
加载或剪贴板操作失败时触发。初始化失败结束加载状态并释放资源。
|
|
5134
|
+
|
|
5135
|
+
#### change
|
|
5136
|
+
|
|
5137
|
+
`(event: { detail: { path: string; value: string } }) => void`
|
|
5138
|
+
|
|
5139
|
+
编辑器内容改变时触发,包括用户编辑、撤销、重做。单文件模式的 `path` 为空字符串。
|
|
5140
|
+
外部绑定内容同步不重复触发。
|
|
5141
|
+
|
|
5142
|
+
#### focus
|
|
5143
|
+
|
|
5144
|
+
`() => void`
|
|
5145
|
+
|
|
5146
|
+
编辑区获取焦点时触发。
|
|
5147
|
+
|
|
5148
|
+
#### blur
|
|
5149
|
+
|
|
5150
|
+
`() => void`
|
|
5151
|
+
|
|
5152
|
+
编辑区失去焦点时触发。
|
|
5153
|
+
|
|
5154
|
+
### 方法
|
|
5155
|
+
|
|
5156
|
+
#### execCmd(ac)
|
|
5157
|
+
|
|
5158
|
+
执行 `copy`、`cut`、`paste`。禁用时不执行,只读时只允许复制。
|
|
5159
|
+
自定义剪切处理非空选区;编辑器内的快捷键由 Monaco 处理。
|
|
5160
|
+
|
|
5161
|
+
#### refreshModels()
|
|
5162
|
+
|
|
5163
|
+
根据当前绑定刷新文件和内容,一般由控件自动调用。
|
|
5164
|
+
|
|
5165
|
+
通过 `init` 或控件 `access.instance` 可调用 Monaco 编辑器公开 API,如格式化、查找、设置选区。
|
|
5166
|
+
|
|
5095
5167
|
### 样式
|
|
5096
5168
|
|
|
5097
5169
|
使用 flex 布局,编辑器填满容器空间。支持语法高亮、自动补全、代码折叠。
|
|
5098
5170
|
|
|
5099
|
-
|
|
5171
|
+
支持多种编程语言、行号,可通过 `theme` 切换主题,通过 `options` 开启小地图。
|
|
5100
5172
|
|
|
5101
5173
|
### 示例
|
|
5102
5174
|
|
|
@@ -5104,6 +5176,11 @@ Monaco 代码编辑器组件。
|
|
|
5104
5176
|
<monaco v-model="code" language="javascript" @init="onInit"></monaco>
|
|
5105
5177
|
```
|
|
5106
5178
|
|
|
5179
|
+
```xml
|
|
5180
|
+
<monaco v-model="path" v-model:files="files" :options="{wordWrap: 'on', minimap: {enabled: true}}" @change="onChange" @error="onError"></monaco>
|
|
5181
|
+
```
|
|
5182
|
+
|
|
5183
|
+
|
|
5107
5184
|
## mpegts
|
|
5108
5185
|
---
|
|
5109
5186
|
|
|
@@ -5806,6 +5883,95 @@ noVNC 远程桌面组件。
|
|
|
5806
5883
|
<panel :map="map"></panel>
|
|
5807
5884
|
```
|
|
5808
5885
|
|
|
5886
|
+
## panzoom
|
|
5887
|
+
---
|
|
5888
|
+
|
|
5889
|
+
平移缩放视口。插槽可承载 Canvas、SVG、图片等内容,不转换为图片,不接管内容重绘。支持鼠标拖动、双指平移与缩放、滚轮缩放,无原生滚动条。
|
|
5890
|
+
|
|
5891
|
+
### 参数
|
|
5892
|
+
|
|
5893
|
+
#### contentWidth
|
|
5894
|
+
|
|
5895
|
+
`number` | `string`,内容原始宽度,默认 `0`。Canvas 应与其绘图坐标宽度一致。
|
|
5896
|
+
|
|
5897
|
+
#### contentHeight
|
|
5898
|
+
|
|
5899
|
+
`number` | `string`,内容原始高度,默认 `0`。
|
|
5900
|
+
|
|
5901
|
+
#### modelValue
|
|
5902
|
+
|
|
5903
|
+
`number` | `string`,双向绑定绝对缩放比例,默认 `1`。`1` 表示内容像素与 CSS 像素一一对应,可直接绑定 Slider。外部更改比例时围绕视口中心缩放。
|
|
5904
|
+
|
|
5905
|
+
#### x
|
|
5906
|
+
|
|
5907
|
+
`number` | `string`,双向绑定水平偏移,单位为视口 CSS 像素,默认 `0`。
|
|
5908
|
+
|
|
5909
|
+
#### y
|
|
5910
|
+
|
|
5911
|
+
`number` | `string`,双向绑定垂直偏移,默认 `0`。
|
|
5912
|
+
|
|
5913
|
+
#### zoomMin
|
|
5914
|
+
|
|
5915
|
+
`number` | `string`,最小缩放比例,默认 `0.05`,必须大于 `0`。
|
|
5916
|
+
|
|
5917
|
+
#### zoomMax
|
|
5918
|
+
|
|
5919
|
+
`number` | `string`,最大缩放比例,默认 `20`,不得小于 `zoomMin`。
|
|
5920
|
+
|
|
5921
|
+
#### autoFit
|
|
5922
|
+
|
|
5923
|
+
`boolean` | `string`,默认 `true`。首次显示和内容尺寸改变时完整显示并居中;手动操作后调整视口保持当前比例和中心。调用 `zoomFit()` 后恢复随视口适应。仅重绘内容不会重置视图。保存/恢复指定视图时设为 `false`。
|
|
5924
|
+
|
|
5925
|
+
#### disabled
|
|
5926
|
+
|
|
5927
|
+
`boolean` | `string`,是否禁用用户交互,默认 `false`。禁用或卸载时结束活动手势,取消未提交的编辑。
|
|
5928
|
+
|
|
5929
|
+
#### mode
|
|
5930
|
+
|
|
5931
|
+
`'pan'` | `'edit'`,默认 `pan`。`edit` 模式单指/鼠标操作通过编辑事件交给调用方;第二指加入立即取消尚未提交的编辑并转为平移缩放,直到所有手指离开才允许下一次编辑。滚轮仍可缩放。
|
|
5932
|
+
|
|
5933
|
+
### 事件
|
|
5934
|
+
|
|
5935
|
+
#### change
|
|
5936
|
+
|
|
5937
|
+
视图改变时触发,参数为 `clickgo.control.IPanzoomView`:`{ zoom, x, y }`。可与 `v-model`、`v-model:x`、`v-model:y` 同时使用。
|
|
5938
|
+
|
|
5939
|
+
#### editstart
|
|
5940
|
+
|
|
5941
|
+
内容内单指/鼠标按下时触发。参数为 `clickgo.control.IPanzoomEditEvent`:`{ x, y, inside, event }`,坐标已转换为原始内容坐标。此时只能开始临时编辑,不应写入不可撤销的历史。
|
|
5942
|
+
|
|
5943
|
+
#### editmove
|
|
5944
|
+
|
|
5945
|
+
编辑移动时触发,参数同 `editstart`。移出内容后 `inside` 为 `false`,由调用方决定是否绘制。
|
|
5946
|
+
|
|
5947
|
+
#### editend
|
|
5948
|
+
|
|
5949
|
+
单指/鼠标正常抬起时提交编辑,参数同 `editstart`。调用方可在这里写入历史。
|
|
5950
|
+
|
|
5951
|
+
#### editcancel
|
|
5952
|
+
|
|
5953
|
+
第二指加入、滚轮打断、指针取消、窗口失焦、模式切换、禁用或卸载时取消编辑。调用方应恢复 `editstart` 前的状态。参数坐标为最后一次编辑位置,`event` 在主动销毁时可能不存在。每次编辑只产生一次 `editend` 或 `editcancel`。
|
|
5954
|
+
|
|
5955
|
+
### 方法
|
|
5956
|
+
|
|
5957
|
+
- `zoomTo(zoom, x?, y?)`:围绕视口内指定坐标缩放,默认视口中心。
|
|
5958
|
+
- `zoomFit()`:完整显示并居中,比例仍受上下限约束。
|
|
5959
|
+
- `zoomActual()`:以 `1:1` 居中,比例仍受上下限约束。
|
|
5960
|
+
- `toLocal(clientX, clientY)`:浏览器坐标转内容坐标,返回 `{ x, y, inside }`。
|
|
5961
|
+
|
|
5962
|
+
控件自身聚焦时,`+` / `-` 缩放,`0` 适应,`1` 原始尺寸。不要在插槽上重复绑定 Pointer 手势;编辑请使用上述事件,保证多指取消语义。
|
|
5963
|
+
|
|
5964
|
+
### 示例
|
|
5965
|
+
|
|
5966
|
+
```xml
|
|
5967
|
+
<panzoom ref="viewer" v-model="zoom" content-width="640" content-height="480" style="flex: 1;">
|
|
5968
|
+
<canvas ref="canvas" width="640" height="480"></canvas>
|
|
5969
|
+
</panzoom>
|
|
5970
|
+
<slider v-model="zoom" min="0.05" max="20" step="0.01" label="缩放"></slider>
|
|
5971
|
+
<button @click="refs.viewer.zoomFit()">适应</button>
|
|
5972
|
+
```
|
|
5973
|
+
|
|
5974
|
+
|
|
5809
5975
|
## pdf
|
|
5810
5976
|
---
|
|
5811
5977
|
|
|
@@ -7867,6 +8033,8 @@ number 类型下增减按钮、键盘上下键及拖拽调值的步长,必须
|
|
|
7867
8033
|
|
|
7868
8034
|
工具栏主要命令。
|
|
7869
8035
|
|
|
8036
|
+
使用 `<toolbar-split></toolbar-split>` 分隔不同功能组,无需业务侧自定义分隔线样式。
|
|
8037
|
+
|
|
7870
8038
|
#### right
|
|
7871
8039
|
|
|
7872
8040
|
始终固定在工具栏右侧的命令。可在这里放置带 `pop` 插槽的按钮,将低优先级命令保留为 ClickGo 菜单。
|
|
@@ -7877,6 +8045,8 @@ number 类型下增减按钮、键盘上下键及拖拽调值的步长,必须
|
|
|
7877
8045
|
<toolbar>
|
|
7878
8046
|
<button type="tool">Open</button>
|
|
7879
8047
|
<button type="tool">Save</button>
|
|
8048
|
+
<toolbar-split></toolbar-split>
|
|
8049
|
+
<button type="tool">Undo</button>
|
|
7880
8050
|
<template v-slot:right>
|
|
7881
8051
|
<button type="tool" area="mark">
|
|
7882
8052
|
More
|
|
@@ -7891,6 +8061,32 @@ number 类型下增减按钮、键盘上下键及拖拽调值的步长,必须
|
|
|
7891
8061
|
```
|
|
7892
8062
|
|
|
7893
8063
|
|
|
8064
|
+
## toolbar-split
|
|
8065
|
+
---
|
|
8066
|
+
|
|
8067
|
+
工具栏分隔线组件,用于分隔不同功能组的命令。
|
|
8068
|
+
|
|
8069
|
+
### 样式
|
|
8070
|
+
|
|
8071
|
+
作为 Toolbar 默认插槽或右侧插槽的子组件,显示居中的竖向分隔线。
|
|
8072
|
+
|
|
8073
|
+
线宽为 1px,高度使用主题的 `--g-size-m`,颜色使用 `--g-border-color`,自动适应亮暗主题。命令间距由 Toolbar 管理,组件不额外添加边距,也不参与点击和键盘焦点。
|
|
8074
|
+
|
|
8075
|
+
组件无参数、事件或插槽,提供 `separator` 角色和 `vertical` 方向供辅助技术识别。
|
|
8076
|
+
|
|
8077
|
+
### 示例
|
|
8078
|
+
|
|
8079
|
+
```xml
|
|
8080
|
+
<toolbar>
|
|
8081
|
+
<button type="tool">Open</button>
|
|
8082
|
+
<button type="tool">Save</button>
|
|
8083
|
+
<toolbar-split></toolbar-split>
|
|
8084
|
+
<button type="tool">Undo</button>
|
|
8085
|
+
<button type="tool">Redo</button>
|
|
8086
|
+
</toolbar>
|
|
8087
|
+
```
|
|
8088
|
+
|
|
8089
|
+
|
|
7894
8090
|
## tuieditor
|
|
7895
8091
|
---
|
|
7896
8092
|
|
|
@@ -8581,7 +8777,7 @@ clickgo/classes/AbstractBoot.md
|
|
|
8581
8777
|
|
|
8582
8778
|
# Abstract Class: AbstractBoot
|
|
8583
8779
|
|
|
8584
|
-
Defined in: [clickgo.ts:
|
|
8780
|
+
Defined in: [clickgo.ts:166](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L166)
|
|
8585
8781
|
|
|
8586
8782
|
全局类
|
|
8587
8783
|
|
|
@@ -8591,7 +8787,7 @@ Defined in: [clickgo.ts:164](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8591
8787
|
|
|
8592
8788
|
> **new AbstractBoot**(`opt?`): `AbstractBoot`
|
|
8593
8789
|
|
|
8594
|
-
Defined in: [clickgo.ts:
|
|
8790
|
+
Defined in: [clickgo.ts:186](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L186)
|
|
8595
8791
|
|
|
8596
8792
|
#### Parameters
|
|
8597
8793
|
|
|
@@ -8611,7 +8807,7 @@ Defined in: [clickgo.ts:184](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8611
8807
|
|
|
8612
8808
|
> `protected` **\_sysId**: `string` = `''`
|
|
8613
8809
|
|
|
8614
|
-
Defined in: [clickgo.ts:
|
|
8810
|
+
Defined in: [clickgo.ts:172](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L172)
|
|
8615
8811
|
|
|
8616
8812
|
切勿传给 App
|
|
8617
8813
|
|
|
@@ -8621,7 +8817,7 @@ Defined in: [clickgo.ts:170](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8621
8817
|
|
|
8622
8818
|
> **isDebug**(): `boolean`
|
|
8623
8819
|
|
|
8624
|
-
Defined in: [clickgo.ts:
|
|
8820
|
+
Defined in: [clickgo.ts:182](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L182)
|
|
8625
8821
|
|
|
8626
8822
|
判断当前是否是 debug 模式
|
|
8627
8823
|
|
|
@@ -8635,7 +8831,7 @@ Defined in: [clickgo.ts:180](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8635
8831
|
|
|
8636
8832
|
> `abstract` **main**(): `void` \| `Promise`\<`void`\>
|
|
8637
8833
|
|
|
8638
|
-
Defined in: [clickgo.ts:
|
|
8834
|
+
Defined in: [clickgo.ts:195](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L195)
|
|
8639
8835
|
|
|
8640
8836
|
入口方法
|
|
8641
8837
|
|
|
@@ -8649,7 +8845,7 @@ Defined in: [clickgo.ts:193](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8649
8845
|
|
|
8650
8846
|
> **onConfigChanged**\<`T`, `TK`\>(`n`, `v`): `void` \| `Promise`\<`void`\>
|
|
8651
8847
|
|
|
8652
|
-
Defined in: [clickgo.ts:
|
|
8848
|
+
Defined in: [clickgo.ts:210](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L210)
|
|
8653
8849
|
|
|
8654
8850
|
系统配置变更事件
|
|
8655
8851
|
|
|
@@ -8683,7 +8879,7 @@ Defined in: [clickgo.ts:208](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8683
8879
|
|
|
8684
8880
|
> **onError**(`taskId`, `formId`, `error`, `info`): `void` \| `Promise`\<`void`\>
|
|
8685
8881
|
|
|
8686
|
-
Defined in: [clickgo.ts:
|
|
8882
|
+
Defined in: [clickgo.ts:198](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L198)
|
|
8687
8883
|
|
|
8688
8884
|
全局错误事件
|
|
8689
8885
|
|
|
@@ -8715,7 +8911,7 @@ Defined in: [clickgo.ts:196](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8715
8911
|
|
|
8716
8912
|
> **onFormBlurred**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
8717
8913
|
|
|
8718
|
-
Defined in: [clickgo.ts:
|
|
8914
|
+
Defined in: [clickgo.ts:266](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L266)
|
|
8719
8915
|
|
|
8720
8916
|
窗体丢失焦点事件
|
|
8721
8917
|
|
|
@@ -8739,7 +8935,7 @@ Defined in: [clickgo.ts:264](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8739
8935
|
|
|
8740
8936
|
> **onFormCreated**(`taskId`, `formId`, `title`, `icon`, `showInSystemTask`): `void` \| `Promise`\<`void`\>
|
|
8741
8937
|
|
|
8742
|
-
Defined in: [clickgo.ts:
|
|
8938
|
+
Defined in: [clickgo.ts:216](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L216)
|
|
8743
8939
|
|
|
8744
8940
|
窗体创建事件
|
|
8745
8941
|
|
|
@@ -8775,7 +8971,7 @@ Defined in: [clickgo.ts:214](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8775
8971
|
|
|
8776
8972
|
> **onFormFlash**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
8777
8973
|
|
|
8778
|
-
Defined in: [clickgo.ts:
|
|
8974
|
+
Defined in: [clickgo.ts:272](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L272)
|
|
8779
8975
|
|
|
8780
8976
|
窗体闪烁事件
|
|
8781
8977
|
|
|
@@ -8799,7 +8995,7 @@ Defined in: [clickgo.ts:270](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8799
8995
|
|
|
8800
8996
|
> **onFormFocused**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
8801
8997
|
|
|
8802
|
-
Defined in: [clickgo.ts:
|
|
8998
|
+
Defined in: [clickgo.ts:260](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L260)
|
|
8803
8999
|
|
|
8804
9000
|
窗体获得焦点事件
|
|
8805
9001
|
|
|
@@ -8823,7 +9019,7 @@ Defined in: [clickgo.ts:258](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8823
9019
|
|
|
8824
9020
|
> **onFormHashChange**(`taskId`, `formId`, `value`, `data`): `void` \| `Promise`\<`void`\>
|
|
8825
9021
|
|
|
8826
|
-
Defined in: [clickgo.ts:
|
|
9022
|
+
Defined in: [clickgo.ts:284](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L284)
|
|
8827
9023
|
|
|
8828
9024
|
窗体的 formHash 改变事件
|
|
8829
9025
|
|
|
@@ -8855,7 +9051,7 @@ Defined in: [clickgo.ts:282](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8855
9051
|
|
|
8856
9052
|
> **onFormIconChanged**(`taskId`, `formId`, `icon`): `void` \| `Promise`\<`void`\>
|
|
8857
9053
|
|
|
8858
|
-
Defined in: [clickgo.ts:
|
|
9054
|
+
Defined in: [clickgo.ts:236](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L236)
|
|
8859
9055
|
|
|
8860
9056
|
窗体图标改变事件
|
|
8861
9057
|
|
|
@@ -8883,7 +9079,7 @@ Defined in: [clickgo.ts:234](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8883
9079
|
|
|
8884
9080
|
> **onFormRemoved**(`taskId`, `formId`, `title`, `icon`): `void` \| `Promise`\<`void`\>
|
|
8885
9081
|
|
|
8886
|
-
Defined in: [clickgo.ts:
|
|
9082
|
+
Defined in: [clickgo.ts:224](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L224)
|
|
8887
9083
|
|
|
8888
9084
|
窗体销毁事件
|
|
8889
9085
|
|
|
@@ -8915,7 +9111,7 @@ Defined in: [clickgo.ts:222](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8915
9111
|
|
|
8916
9112
|
> **onFormShowChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
8917
9113
|
|
|
8918
|
-
Defined in: [clickgo.ts:
|
|
9114
|
+
Defined in: [clickgo.ts:254](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L254)
|
|
8919
9115
|
|
|
8920
9116
|
窗体显示状态改变事件
|
|
8921
9117
|
|
|
@@ -8943,7 +9139,7 @@ Defined in: [clickgo.ts:252](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8943
9139
|
|
|
8944
9140
|
> **onFormShowInSystemTaskChange**(`taskId`, `formId`, `value`): `void` \| `Promise`\<`void`\>
|
|
8945
9141
|
|
|
8946
|
-
Defined in: [clickgo.ts:
|
|
9142
|
+
Defined in: [clickgo.ts:278](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L278)
|
|
8947
9143
|
|
|
8948
9144
|
窗体是否显示在任务栏属性改变事件
|
|
8949
9145
|
|
|
@@ -8971,7 +9167,7 @@ Defined in: [clickgo.ts:276](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8971
9167
|
|
|
8972
9168
|
> **onFormStateMaxChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
8973
9169
|
|
|
8974
|
-
Defined in: [clickgo.ts:
|
|
9170
|
+
Defined in: [clickgo.ts:248](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L248)
|
|
8975
9171
|
|
|
8976
9172
|
窗体最大化状态改变事件
|
|
8977
9173
|
|
|
@@ -8999,7 +9195,7 @@ Defined in: [clickgo.ts:246](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
8999
9195
|
|
|
9000
9196
|
> **onFormStateMinChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
9001
9197
|
|
|
9002
|
-
Defined in: [clickgo.ts:
|
|
9198
|
+
Defined in: [clickgo.ts:242](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L242)
|
|
9003
9199
|
|
|
9004
9200
|
窗体最小化状态改变事件
|
|
9005
9201
|
|
|
@@ -9027,7 +9223,7 @@ Defined in: [clickgo.ts:240](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9027
9223
|
|
|
9028
9224
|
> **onFormTitleChanged**(`taskId`, `formId`, `title`): `void` \| `Promise`\<`void`\>
|
|
9029
9225
|
|
|
9030
|
-
Defined in: [clickgo.ts:
|
|
9226
|
+
Defined in: [clickgo.ts:230](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L230)
|
|
9031
9227
|
|
|
9032
9228
|
窗体标题改变事件
|
|
9033
9229
|
|
|
@@ -9055,7 +9251,7 @@ Defined in: [clickgo.ts:228](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9055
9251
|
|
|
9056
9252
|
> **onHashChanged**(`hash`): `void` \| `Promise`\<`void`\>
|
|
9057
9253
|
|
|
9058
|
-
Defined in: [clickgo.ts:
|
|
9254
|
+
Defined in: [clickgo.ts:310](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L310)
|
|
9059
9255
|
|
|
9060
9256
|
location hash 改变事件
|
|
9061
9257
|
|
|
@@ -9075,7 +9271,7 @@ location hash 改变事件
|
|
|
9075
9271
|
|
|
9076
9272
|
> **onKeydown**(`e`): `void` \| `Promise`\<`void`\>
|
|
9077
9273
|
|
|
9078
|
-
Defined in: [clickgo.ts:
|
|
9274
|
+
Defined in: [clickgo.ts:316](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L316)
|
|
9079
9275
|
|
|
9080
9276
|
键盘按下事件
|
|
9081
9277
|
|
|
@@ -9095,7 +9291,7 @@ Defined in: [clickgo.ts:314](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9095
9291
|
|
|
9096
9292
|
> **onKeyup**(`e`): `void` \| `Promise`\<`void`\>
|
|
9097
9293
|
|
|
9098
|
-
Defined in: [clickgo.ts:
|
|
9294
|
+
Defined in: [clickgo.ts:322](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L322)
|
|
9099
9295
|
|
|
9100
9296
|
键盘弹起事件
|
|
9101
9297
|
|
|
@@ -9115,7 +9311,7 @@ Defined in: [clickgo.ts:320](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9115
9311
|
|
|
9116
9312
|
> **onLauncherFolderNameChanged**(`id`, `name`): `void` \| `Promise`\<`void`\>
|
|
9117
9313
|
|
|
9118
|
-
Defined in: [clickgo.ts:
|
|
9314
|
+
Defined in: [clickgo.ts:304](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L304)
|
|
9119
9315
|
|
|
9120
9316
|
launcher 文件夹名称修改事件
|
|
9121
9317
|
|
|
@@ -9139,7 +9335,7 @@ launcher 文件夹名称修改事件
|
|
|
9139
9335
|
|
|
9140
9336
|
> **onRuntimeFileLoad**(`url`): `void` \| `Promise`\<`void`\>
|
|
9141
9337
|
|
|
9142
|
-
Defined in: [clickgo.ts:
|
|
9338
|
+
Defined in: [clickgo.ts:328](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L328)
|
|
9143
9339
|
|
|
9144
9340
|
环境文件准备加载时的事件
|
|
9145
9341
|
|
|
@@ -9159,7 +9355,7 @@ Defined in: [clickgo.ts:326](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9159
9355
|
|
|
9160
9356
|
> **onRuntimeFileLoaded**(`url`, `state`): `void` \| `Promise`\<`void`\>
|
|
9161
9357
|
|
|
9162
|
-
Defined in: [clickgo.ts:
|
|
9358
|
+
Defined in: [clickgo.ts:334](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L334)
|
|
9163
9359
|
|
|
9164
9360
|
环境文件加载完成的事件
|
|
9165
9361
|
|
|
@@ -9183,7 +9379,7 @@ Defined in: [clickgo.ts:332](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9183
9379
|
|
|
9184
9380
|
> **onScreenResize**(): `void` \| `Promise`\<`void`\>
|
|
9185
9381
|
|
|
9186
|
-
Defined in: [clickgo.ts:
|
|
9382
|
+
Defined in: [clickgo.ts:204](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L204)
|
|
9187
9383
|
|
|
9188
9384
|
屏幕大小改变事件
|
|
9189
9385
|
|
|
@@ -9197,7 +9393,7 @@ Defined in: [clickgo.ts:202](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9197
9393
|
|
|
9198
9394
|
> **onTaskEnded**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
9199
9395
|
|
|
9200
|
-
Defined in: [clickgo.ts:
|
|
9396
|
+
Defined in: [clickgo.ts:298](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L298)
|
|
9201
9397
|
|
|
9202
9398
|
任务结束事件
|
|
9203
9399
|
|
|
@@ -9217,7 +9413,7 @@ Defined in: [clickgo.ts:296](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9217
9413
|
|
|
9218
9414
|
> **onTaskStarted**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
9219
9415
|
|
|
9220
|
-
Defined in: [clickgo.ts:
|
|
9416
|
+
Defined in: [clickgo.ts:292](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L292)
|
|
9221
9417
|
|
|
9222
9418
|
任务开始事件
|
|
9223
9419
|
|
|
@@ -9237,7 +9433,7 @@ Defined in: [clickgo.ts:290](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9237
9433
|
|
|
9238
9434
|
> **setSysId**(`sysId`): `void`
|
|
9239
9435
|
|
|
9240
|
-
Defined in: [clickgo.ts:
|
|
9436
|
+
Defined in: [clickgo.ts:174](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L174)
|
|
9241
9437
|
|
|
9242
9438
|
#### Parameters
|
|
9243
9439
|
|
|
@@ -9262,7 +9458,7 @@ clickgo/functions/getCdn.md
|
|
|
9262
9458
|
|
|
9263
9459
|
> **getCdn**(): `string`
|
|
9264
9460
|
|
|
9265
|
-
Defined in: [clickgo.ts:
|
|
9461
|
+
Defined in: [clickgo.ts:104](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L104)
|
|
9266
9462
|
|
|
9267
9463
|
获取当前 cdn 前缀
|
|
9268
9464
|
|
|
@@ -9283,7 +9479,7 @@ clickgo/functions/getDevice.md
|
|
|
9283
9479
|
|
|
9284
9480
|
> **getDevice**(): `object`
|
|
9285
9481
|
|
|
9286
|
-
Defined in: [clickgo.ts:
|
|
9482
|
+
Defined in: [clickgo.ts:130](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L130)
|
|
9287
9483
|
|
|
9288
9484
|
获取当前设备信息(支持 native 和 web)
|
|
9289
9485
|
|
|
@@ -9312,7 +9508,7 @@ clickgo/functions/getDirname.md
|
|
|
9312
9508
|
|
|
9313
9509
|
> **getDirname**(): `string`
|
|
9314
9510
|
|
|
9315
|
-
Defined in: [clickgo.ts:
|
|
9511
|
+
Defined in: [clickgo.ts:82](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L82)
|
|
9316
9512
|
|
|
9317
9513
|
获取当前 ClickGo 所在的目录,不以 / 结尾
|
|
9318
9514
|
|
|
@@ -9333,7 +9529,7 @@ clickgo/functions/getPlatform.md
|
|
|
9333
9529
|
|
|
9334
9530
|
> **getPlatform**(): `Platform` \| `"web"`
|
|
9335
9531
|
|
|
9336
|
-
Defined in: [clickgo.ts:
|
|
9532
|
+
Defined in: [clickgo.ts:117](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L117)
|
|
9337
9533
|
|
|
9338
9534
|
获取当前平台(web 则只返回 web)
|
|
9339
9535
|
|
|
@@ -9354,7 +9550,7 @@ clickgo/functions/getVersion.md
|
|
|
9354
9550
|
|
|
9355
9551
|
> **getVersion**(): `string`
|
|
9356
9552
|
|
|
9357
|
-
Defined in: [clickgo.ts:
|
|
9553
|
+
Defined in: [clickgo.ts:70](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L70)
|
|
9358
9554
|
|
|
9359
9555
|
获取当前版本
|
|
9360
9556
|
|
|
@@ -9375,7 +9571,7 @@ clickgo/functions/hasFrame.md
|
|
|
9375
9571
|
|
|
9376
9572
|
> **hasFrame**(): `boolean`
|
|
9377
9573
|
|
|
9378
|
-
Defined in: [clickgo.ts:
|
|
9574
|
+
Defined in: [clickgo.ts:161](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L161)
|
|
9379
9575
|
|
|
9380
9576
|
是否含有窗体外边框
|
|
9381
9577
|
|
|
@@ -9396,7 +9592,7 @@ clickgo/functions/isNative.md
|
|
|
9396
9592
|
|
|
9397
9593
|
> **isNative**(): `boolean`
|
|
9398
9594
|
|
|
9399
|
-
Defined in: [clickgo.ts:
|
|
9595
|
+
Defined in: [clickgo.ts:76](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L76)
|
|
9400
9596
|
|
|
9401
9597
|
是否是 native 环境
|
|
9402
9598
|
|
|
@@ -9417,7 +9613,7 @@ clickgo/functions/launcher.md
|
|
|
9417
9613
|
|
|
9418
9614
|
> **launcher**(`boot`): `Promise`\<`void`\>
|
|
9419
9615
|
|
|
9420
|
-
Defined in: [clickgo.ts:
|
|
9616
|
+
Defined in: [clickgo.ts:417](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L417)
|
|
9421
9617
|
|
|
9422
9618
|
启动 ClickGo
|
|
9423
9619
|
|
|
@@ -9446,7 +9642,7 @@ clickgo/functions/showBrowserWarning.md
|
|
|
9446
9642
|
|
|
9447
9643
|
> **showBrowserWarning**(`text`): `void`
|
|
9448
9644
|
|
|
9449
|
-
Defined in: [clickgo.ts:
|
|
9645
|
+
Defined in: [clickgo.ts:342](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L342)
|
|
9450
9646
|
|
|
9451
9647
|
显示浏览器运行环境提示
|
|
9452
9648
|
|
|
@@ -9581,7 +9777,7 @@ clickgo/variables/global.md
|
|
|
9581
9777
|
|
|
9582
9778
|
> `const` **global**: `any`
|
|
9583
9779
|
|
|
9584
|
-
Defined in: [clickgo.ts:
|
|
9780
|
+
Defined in: [clickgo.ts:99](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L99)
|
|
9585
9781
|
|
|
9586
9782
|
用户定义的全局对象
|
|
9587
9783
|
|
|
@@ -9626,6 +9822,12 @@ Defined in: [clickgo.ts:43](https://github.com/maiyun/clickgo/blob/master/dist/c
|
|
|
9626
9822
|
|
|
9627
9823
|
原生 jszip
|
|
9628
9824
|
|
|
9825
|
+
### monaco-editor
|
|
9826
|
+
|
|
9827
|
+
> **monaco-editor**: [`IMonacoLoader`](../../lib/core/interfaces/IMonacoLoader.md)
|
|
9828
|
+
|
|
9829
|
+
Monaco 模块的加载资源
|
|
9830
|
+
|
|
9629
9831
|
### mpegts
|
|
9630
9832
|
|
|
9631
9833
|
> **mpegts**: `__module`
|
|
@@ -9687,7 +9889,7 @@ lib/control/classes/AbstractControl.md
|
|
|
9687
9889
|
|
|
9688
9890
|
Defined in: [lib/control.ts:63](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L63)
|
|
9689
9891
|
|
|
9690
|
-
|
|
9892
|
+
控件的抽象类
|
|
9691
9893
|
|
|
9692
9894
|
## Constructors
|
|
9693
9895
|
|
|
@@ -10646,6 +10848,9 @@ lib/control/index.md
|
|
|
10646
10848
|
- [IPaletteChangedEvent](interfaces/IPaletteChangedEvent.md)
|
|
10647
10849
|
- [IPanelGoEvent](interfaces/IPanelGoEvent.md)
|
|
10648
10850
|
- [IPanelWentEvent](interfaces/IPanelWentEvent.md)
|
|
10851
|
+
- [IPanzoomEditEvent](interfaces/IPanzoomEditEvent.md)
|
|
10852
|
+
- [IPanzoomPoint](interfaces/IPanzoomPoint.md)
|
|
10853
|
+
- [IPanzoomView](interfaces/IPanzoomView.md)
|
|
10649
10854
|
- [IPdfViewEvent](interfaces/IPdfViewEvent.md)
|
|
10650
10855
|
- [IRadioChangeEvent](interfaces/IRadioChangeEvent.md)
|
|
10651
10856
|
- [ISelectAddedEvent](interfaces/ISelectAddedEvent.md)
|
|
@@ -10863,7 +11068,7 @@ lib/control/interfaces/IChecklistAddEvent.md
|
|
|
10863
11068
|
|
|
10864
11069
|
# Interface: IChecklistAddEvent
|
|
10865
11070
|
|
|
10866
|
-
Defined in: [lib/control.ts:
|
|
11071
|
+
Defined in: [lib/control.ts:1294](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1294)
|
|
10867
11072
|
|
|
10868
11073
|
Custom Event
|
|
10869
11074
|
|
|
@@ -10877,7 +11082,7 @@ Custom Event
|
|
|
10877
11082
|
|
|
10878
11083
|
> **detail**: `object`
|
|
10879
11084
|
|
|
10880
|
-
Defined in: [lib/control.ts:
|
|
11085
|
+
Defined in: [lib/control.ts:1295](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1295)
|
|
10881
11086
|
|
|
10882
11087
|
#### index
|
|
10883
11088
|
|
|
@@ -10926,7 +11131,7 @@ lib/control/interfaces/IChecklistItemclickedEvent.md
|
|
|
10926
11131
|
|
|
10927
11132
|
# Interface: IChecklistItemclickedEvent
|
|
10928
11133
|
|
|
10929
|
-
Defined in: [lib/control.ts:
|
|
11134
|
+
Defined in: [lib/control.ts:1301](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1301)
|
|
10930
11135
|
|
|
10931
11136
|
## Properties
|
|
10932
11137
|
|
|
@@ -10934,7 +11139,7 @@ Defined in: [lib/control.ts:1280](https://github.com/maiyun/clickgo/blob/master/
|
|
|
10934
11139
|
|
|
10935
11140
|
> **detail**: `object`
|
|
10936
11141
|
|
|
10937
|
-
Defined in: [lib/control.ts:
|
|
11142
|
+
Defined in: [lib/control.ts:1302](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1302)
|
|
10938
11143
|
|
|
10939
11144
|
#### arrow
|
|
10940
11145
|
|
|
@@ -10959,7 +11164,7 @@ lib/control/interfaces/IChecklistRemoveEvent.md
|
|
|
10959
11164
|
|
|
10960
11165
|
# Interface: IChecklistRemoveEvent
|
|
10961
11166
|
|
|
10962
|
-
Defined in: [lib/control.ts:
|
|
11167
|
+
Defined in: [lib/control.ts:1287](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1287)
|
|
10963
11168
|
|
|
10964
11169
|
Custom Event
|
|
10965
11170
|
|
|
@@ -10973,7 +11178,7 @@ Custom Event
|
|
|
10973
11178
|
|
|
10974
11179
|
> **detail**: `object`
|
|
10975
11180
|
|
|
10976
|
-
Defined in: [lib/control.ts:
|
|
11181
|
+
Defined in: [lib/control.ts:1288](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1288)
|
|
10977
11182
|
|
|
10978
11183
|
#### index
|
|
10979
11184
|
|
|
@@ -11022,7 +11227,7 @@ lib/control/interfaces/IColoristChangedEvent.md
|
|
|
11022
11227
|
|
|
11023
11228
|
# Interface: IColoristChangedEvent
|
|
11024
11229
|
|
|
11025
|
-
Defined in: [lib/control.ts:
|
|
11230
|
+
Defined in: [lib/control.ts:1414](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1414)
|
|
11026
11231
|
|
|
11027
11232
|
## Properties
|
|
11028
11233
|
|
|
@@ -11030,7 +11235,7 @@ Defined in: [lib/control.ts:1393](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11030
11235
|
|
|
11031
11236
|
> **detail**: `object`
|
|
11032
11237
|
|
|
11033
|
-
Defined in: [lib/control.ts:
|
|
11238
|
+
Defined in: [lib/control.ts:1415](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1415)
|
|
11034
11239
|
|
|
11035
11240
|
#### hsl?
|
|
11036
11241
|
|
|
@@ -11458,7 +11663,7 @@ lib/control/interfaces/IFabricLayerchangeEvent.md
|
|
|
11458
11663
|
|
|
11459
11664
|
# Interface: IFabricLayerchangeEvent
|
|
11460
11665
|
|
|
11461
|
-
Defined in: [lib/control.ts:
|
|
11666
|
+
Defined in: [lib/control.ts:1584](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1584)
|
|
11462
11667
|
|
|
11463
11668
|
## Properties
|
|
11464
11669
|
|
|
@@ -11466,7 +11671,7 @@ Defined in: [lib/control.ts:1563](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11466
11671
|
|
|
11467
11672
|
> **detail**: `object`
|
|
11468
11673
|
|
|
11469
|
-
Defined in: [lib/control.ts:
|
|
11674
|
+
Defined in: [lib/control.ts:1585](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1585)
|
|
11470
11675
|
|
|
11471
11676
|
#### next
|
|
11472
11677
|
|
|
@@ -11491,7 +11696,7 @@ lib/control/interfaces/IFabricLayerlistchangeEvent.md
|
|
|
11491
11696
|
|
|
11492
11697
|
# Interface: IFabricLayerlistchangeEvent
|
|
11493
11698
|
|
|
11494
|
-
Defined in: [lib/control.ts:
|
|
11699
|
+
Defined in: [lib/control.ts:1593](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1593)
|
|
11495
11700
|
|
|
11496
11701
|
## Properties
|
|
11497
11702
|
|
|
@@ -11499,7 +11704,7 @@ Defined in: [lib/control.ts:1572](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11499
11704
|
|
|
11500
11705
|
> **detail**: `object`
|
|
11501
11706
|
|
|
11502
|
-
Defined in: [lib/control.ts:
|
|
11707
|
+
Defined in: [lib/control.ts:1594](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1594)
|
|
11503
11708
|
|
|
11504
11709
|
#### names
|
|
11505
11710
|
|
|
@@ -11509,7 +11714,7 @@ Defined in: [lib/control.ts:1573](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11509
11714
|
|
|
11510
11715
|
#### type
|
|
11511
11716
|
|
|
11512
|
-
> **type**: `"
|
|
11717
|
+
> **type**: `"visible"` \| `"add"` \| `"move"` \| `"remove"` \| `"rename"` \| `"locked"`
|
|
11513
11718
|
|
|
11514
11719
|
变更类型:add 新增、remove 移除、rename 重命名、visible 可见性、locked 锁定状态、move 移动位置
|
|
11515
11720
|
|
|
@@ -11530,7 +11735,7 @@ lib/control/interfaces/IFabricObjectchangeEvent.md
|
|
|
11530
11735
|
|
|
11531
11736
|
# Interface: IFabricObjectchangeEvent
|
|
11532
11737
|
|
|
11533
|
-
Defined in: [lib/control.ts:
|
|
11738
|
+
Defined in: [lib/control.ts:1604](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1604)
|
|
11534
11739
|
|
|
11535
11740
|
## Properties
|
|
11536
11741
|
|
|
@@ -11538,7 +11743,7 @@ Defined in: [lib/control.ts:1583](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11538
11743
|
|
|
11539
11744
|
> **detail**: `object`
|
|
11540
11745
|
|
|
11541
|
-
Defined in: [lib/control.ts:
|
|
11746
|
+
Defined in: [lib/control.ts:1605](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1605)
|
|
11542
11747
|
|
|
11543
11748
|
#### angle
|
|
11544
11749
|
|
|
@@ -12204,7 +12409,7 @@ lib/control/interfaces/IIconviewDropEvent.md
|
|
|
12204
12409
|
|
|
12205
12410
|
# Interface: IIconviewDropEvent
|
|
12206
12411
|
|
|
12207
|
-
Defined in: [lib/control.ts:
|
|
12412
|
+
Defined in: [lib/control.ts:1240](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1240)
|
|
12208
12413
|
|
|
12209
12414
|
## Properties
|
|
12210
12415
|
|
|
@@ -12212,7 +12417,7 @@ Defined in: [lib/control.ts:1219](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12212
12417
|
|
|
12213
12418
|
> **detail**: `object`
|
|
12214
12419
|
|
|
12215
|
-
Defined in: [lib/control.ts:
|
|
12420
|
+
Defined in: [lib/control.ts:1241](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1241)
|
|
12216
12421
|
|
|
12217
12422
|
#### from
|
|
12218
12423
|
|
|
@@ -12249,7 +12454,7 @@ lib/control/interfaces/IIconviewItemclickedEvent.md
|
|
|
12249
12454
|
|
|
12250
12455
|
# Interface: IIconviewItemclickedEvent
|
|
12251
12456
|
|
|
12252
|
-
Defined in: [lib/control.ts:
|
|
12457
|
+
Defined in: [lib/control.ts:1227](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1227)
|
|
12253
12458
|
|
|
12254
12459
|
## Properties
|
|
12255
12460
|
|
|
@@ -12257,7 +12462,7 @@ Defined in: [lib/control.ts:1206](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12257
12462
|
|
|
12258
12463
|
> **detail**: `object`
|
|
12259
12464
|
|
|
12260
|
-
Defined in: [lib/control.ts:
|
|
12465
|
+
Defined in: [lib/control.ts:1228](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1228)
|
|
12261
12466
|
|
|
12262
12467
|
#### event
|
|
12263
12468
|
|
|
@@ -12278,7 +12483,7 @@ lib/control/interfaces/IIconviewOpenEvent.md
|
|
|
12278
12483
|
|
|
12279
12484
|
# Interface: IIconviewOpenEvent
|
|
12280
12485
|
|
|
12281
|
-
Defined in: [lib/control.ts:
|
|
12486
|
+
Defined in: [lib/control.ts:1234](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1234)
|
|
12282
12487
|
|
|
12283
12488
|
## Properties
|
|
12284
12489
|
|
|
@@ -12286,7 +12491,7 @@ Defined in: [lib/control.ts:1213](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12286
12491
|
|
|
12287
12492
|
> **detail**: `object`
|
|
12288
12493
|
|
|
12289
|
-
Defined in: [lib/control.ts:
|
|
12494
|
+
Defined in: [lib/control.ts:1235](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1235)
|
|
12290
12495
|
|
|
12291
12496
|
#### value
|
|
12292
12497
|
|
|
@@ -12303,7 +12508,7 @@ lib/control/interfaces/IIconviewSelectEvent.md
|
|
|
12303
12508
|
|
|
12304
12509
|
# Interface: IIconviewSelectEvent
|
|
12305
12510
|
|
|
12306
|
-
Defined in: [lib/control.ts:
|
|
12511
|
+
Defined in: [lib/control.ts:1256](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1256)
|
|
12307
12512
|
|
|
12308
12513
|
## Properties
|
|
12309
12514
|
|
|
@@ -12311,7 +12516,7 @@ Defined in: [lib/control.ts:1235](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12311
12516
|
|
|
12312
12517
|
> **detail**: `object`
|
|
12313
12518
|
|
|
12314
|
-
Defined in: [lib/control.ts:
|
|
12519
|
+
Defined in: [lib/control.ts:1257](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1257)
|
|
12315
12520
|
|
|
12316
12521
|
#### area
|
|
12317
12522
|
|
|
@@ -12364,7 +12569,7 @@ lib/control/interfaces/ILevelselectLevelEvent.md
|
|
|
12364
12569
|
|
|
12365
12570
|
# Interface: ILevelselectLevelEvent
|
|
12366
12571
|
|
|
12367
|
-
Defined in: [lib/control.ts:
|
|
12572
|
+
Defined in: [lib/control.ts:1274](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1274)
|
|
12368
12573
|
|
|
12369
12574
|
## Properties
|
|
12370
12575
|
|
|
@@ -12372,7 +12577,7 @@ Defined in: [lib/control.ts:1253](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12372
12577
|
|
|
12373
12578
|
> **detail**: `object`
|
|
12374
12579
|
|
|
12375
|
-
Defined in: [lib/control.ts:
|
|
12580
|
+
Defined in: [lib/control.ts:1275](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1275)
|
|
12376
12581
|
|
|
12377
12582
|
#### labels
|
|
12378
12583
|
|
|
@@ -12397,7 +12602,7 @@ lib/control/interfaces/IListAddEvent.md
|
|
|
12397
12602
|
|
|
12398
12603
|
# Interface: IListAddEvent
|
|
12399
12604
|
|
|
12400
|
-
Defined in: [lib/control.ts:
|
|
12605
|
+
Defined in: [lib/control.ts:1330](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1330)
|
|
12401
12606
|
|
|
12402
12607
|
Custom Event
|
|
12403
12608
|
|
|
@@ -12411,7 +12616,7 @@ Custom Event
|
|
|
12411
12616
|
|
|
12412
12617
|
> **detail**: `object`
|
|
12413
12618
|
|
|
12414
|
-
Defined in: [lib/control.ts:
|
|
12619
|
+
Defined in: [lib/control.ts:1331](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1331)
|
|
12415
12620
|
|
|
12416
12621
|
#### index
|
|
12417
12622
|
|
|
@@ -12460,7 +12665,7 @@ lib/control/interfaces/IListChangedEvent.md
|
|
|
12460
12665
|
|
|
12461
12666
|
# Interface: IListChangedEvent
|
|
12462
12667
|
|
|
12463
|
-
Defined in: [lib/control.ts:
|
|
12668
|
+
Defined in: [lib/control.ts:1317](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1317)
|
|
12464
12669
|
|
|
12465
12670
|
## Properties
|
|
12466
12671
|
|
|
@@ -12468,7 +12673,7 @@ Defined in: [lib/control.ts:1296](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12468
12673
|
|
|
12469
12674
|
> **detail**: `object`
|
|
12470
12675
|
|
|
12471
|
-
Defined in: [lib/control.ts:
|
|
12676
|
+
Defined in: [lib/control.ts:1318](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1318)
|
|
12472
12677
|
|
|
12473
12678
|
#### value
|
|
12474
12679
|
|
|
@@ -12485,7 +12690,7 @@ lib/control/interfaces/IListChangeEvent.md
|
|
|
12485
12690
|
|
|
12486
12691
|
# Interface: IListChangeEvent
|
|
12487
12692
|
|
|
12488
|
-
Defined in: [lib/control.ts:
|
|
12693
|
+
Defined in: [lib/control.ts:1311](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1311)
|
|
12489
12694
|
|
|
12490
12695
|
Custom Event
|
|
12491
12696
|
|
|
@@ -12499,7 +12704,7 @@ Custom Event
|
|
|
12499
12704
|
|
|
12500
12705
|
> **detail**: `object`
|
|
12501
12706
|
|
|
12502
|
-
Defined in: [lib/control.ts:
|
|
12707
|
+
Defined in: [lib/control.ts:1312](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1312)
|
|
12503
12708
|
|
|
12504
12709
|
#### value
|
|
12505
12710
|
|
|
@@ -12544,7 +12749,7 @@ lib/control/interfaces/IListItemclickedEvent.md
|
|
|
12544
12749
|
|
|
12545
12750
|
# Interface: IListItemclickedEvent
|
|
12546
12751
|
|
|
12547
|
-
Defined in: [lib/control.ts:
|
|
12752
|
+
Defined in: [lib/control.ts:1337](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1337)
|
|
12548
12753
|
|
|
12549
12754
|
## Properties
|
|
12550
12755
|
|
|
@@ -12552,7 +12757,7 @@ Defined in: [lib/control.ts:1316](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12552
12757
|
|
|
12553
12758
|
> **detail**: `object`
|
|
12554
12759
|
|
|
12555
|
-
Defined in: [lib/control.ts:
|
|
12760
|
+
Defined in: [lib/control.ts:1338](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1338)
|
|
12556
12761
|
|
|
12557
12762
|
#### arrow
|
|
12558
12763
|
|
|
@@ -12577,7 +12782,7 @@ lib/control/interfaces/IListItemdblclickedEvent.md
|
|
|
12577
12782
|
|
|
12578
12783
|
# Interface: IListItemdblclickedEvent
|
|
12579
12784
|
|
|
12580
|
-
Defined in: [lib/control.ts:
|
|
12785
|
+
Defined in: [lib/control.ts:1345](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1345)
|
|
12581
12786
|
|
|
12582
12787
|
## Properties
|
|
12583
12788
|
|
|
@@ -12585,7 +12790,7 @@ Defined in: [lib/control.ts:1324](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12585
12790
|
|
|
12586
12791
|
> **detail**: `object`
|
|
12587
12792
|
|
|
12588
|
-
Defined in: [lib/control.ts:
|
|
12793
|
+
Defined in: [lib/control.ts:1346](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1346)
|
|
12589
12794
|
|
|
12590
12795
|
#### arrow
|
|
12591
12796
|
|
|
@@ -12610,7 +12815,7 @@ lib/control/interfaces/IListRemoveEvent.md
|
|
|
12610
12815
|
|
|
12611
12816
|
# Interface: IListRemoveEvent
|
|
12612
12817
|
|
|
12613
|
-
Defined in: [lib/control.ts:
|
|
12818
|
+
Defined in: [lib/control.ts:1323](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1323)
|
|
12614
12819
|
|
|
12615
12820
|
Custom Event
|
|
12616
12821
|
|
|
@@ -12624,7 +12829,7 @@ Custom Event
|
|
|
12624
12829
|
|
|
12625
12830
|
> **detail**: `object`
|
|
12626
12831
|
|
|
12627
|
-
Defined in: [lib/control.ts:
|
|
12832
|
+
Defined in: [lib/control.ts:1324](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1324)
|
|
12628
12833
|
|
|
12629
12834
|
#### index
|
|
12630
12835
|
|
|
@@ -12740,7 +12945,7 @@ lib/control/interfaces/INavItemSelectEvent.md
|
|
|
12740
12945
|
|
|
12741
12946
|
# Interface: INavItemSelectEvent
|
|
12742
12947
|
|
|
12743
|
-
Defined in: [lib/control.ts:
|
|
12948
|
+
Defined in: [lib/control.ts:1355](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1355)
|
|
12744
12949
|
|
|
12745
12950
|
Custom Event
|
|
12746
12951
|
|
|
@@ -12754,7 +12959,7 @@ Custom Event
|
|
|
12754
12959
|
|
|
12755
12960
|
> **detail**: `object`
|
|
12756
12961
|
|
|
12757
|
-
Defined in: [lib/control.ts:
|
|
12962
|
+
Defined in: [lib/control.ts:1356](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1356)
|
|
12758
12963
|
|
|
12759
12964
|
#### name
|
|
12760
12965
|
|
|
@@ -12929,7 +13134,7 @@ lib/control/interfaces/IObjviewerLine.md
|
|
|
12929
13134
|
|
|
12930
13135
|
# Interface: IObjviewerLine
|
|
12931
13136
|
|
|
12932
|
-
Defined in: [lib/control.ts:
|
|
13137
|
+
Defined in: [lib/control.ts:1620](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1620)
|
|
12933
13138
|
|
|
12934
13139
|
## Properties
|
|
12935
13140
|
|
|
@@ -12937,7 +13142,7 @@ Defined in: [lib/control.ts:1599](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12937
13142
|
|
|
12938
13143
|
> **end**: [`IObjviewerLineObj`](IObjviewerLineObj.md)
|
|
12939
13144
|
|
|
12940
|
-
Defined in: [lib/control.ts:
|
|
13145
|
+
Defined in: [lib/control.ts:1624](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1624)
|
|
12941
13146
|
|
|
12942
13147
|
***
|
|
12943
13148
|
|
|
@@ -12945,7 +13150,7 @@ Defined in: [lib/control.ts:1603](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12945
13150
|
|
|
12946
13151
|
> `optional` **hue?**: `string`
|
|
12947
13152
|
|
|
12948
|
-
Defined in: [lib/control.ts:
|
|
13153
|
+
Defined in: [lib/control.ts:1626](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1626)
|
|
12949
13154
|
|
|
12950
13155
|
默认 255
|
|
12951
13156
|
|
|
@@ -12955,7 +13160,7 @@ Defined in: [lib/control.ts:1605](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12955
13160
|
|
|
12956
13161
|
> `optional` **name?**: `string`
|
|
12957
13162
|
|
|
12958
|
-
Defined in: [lib/control.ts:
|
|
13163
|
+
Defined in: [lib/control.ts:1622](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1622)
|
|
12959
13164
|
|
|
12960
13165
|
-- 可自定义线段的名称
|
|
12961
13166
|
|
|
@@ -12965,7 +13170,7 @@ Defined in: [lib/control.ts:1601](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12965
13170
|
|
|
12966
13171
|
> `optional` **path?**: `string`
|
|
12967
13172
|
|
|
12968
|
-
Defined in: [lib/control.ts:
|
|
13173
|
+
Defined in: [lib/control.ts:1627](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1627)
|
|
12969
13174
|
|
|
12970
13175
|
***
|
|
12971
13176
|
|
|
@@ -12973,7 +13178,7 @@ Defined in: [lib/control.ts:1606](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12973
13178
|
|
|
12974
13179
|
> **start**: [`IObjviewerLineObj`](IObjviewerLineObj.md)
|
|
12975
13180
|
|
|
12976
|
-
Defined in: [lib/control.ts:
|
|
13181
|
+
Defined in: [lib/control.ts:1623](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1623)
|
|
12977
13182
|
|
|
12978
13183
|
***
|
|
12979
13184
|
|
|
@@ -12981,7 +13186,7 @@ Defined in: [lib/control.ts:1602](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12981
13186
|
|
|
12982
13187
|
> `optional` **stroke?**: `"down"` \| `"solid"` \| `"dashed"` \| `"up"`
|
|
12983
13188
|
|
|
12984
|
-
Defined in: [lib/control.ts:
|
|
13189
|
+
Defined in: [lib/control.ts:1629](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1629)
|
|
12985
13190
|
|
|
12986
13191
|
默认 solid
|
|
12987
13192
|
|
|
@@ -12996,7 +13201,7 @@ lib/control/interfaces/IObjviewerLineObj.md
|
|
|
12996
13201
|
|
|
12997
13202
|
# Interface: IObjviewerLineObj
|
|
12998
13203
|
|
|
12999
|
-
Defined in: [lib/control.ts:
|
|
13204
|
+
Defined in: [lib/control.ts:1632](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1632)
|
|
13000
13205
|
|
|
13001
13206
|
## Properties
|
|
13002
13207
|
|
|
@@ -13004,7 +13209,7 @@ Defined in: [lib/control.ts:1611](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13004
13209
|
|
|
13005
13210
|
> **obj**: `HTMLElement` \| [`AbstractControl`](../classes/AbstractControl.md)
|
|
13006
13211
|
|
|
13007
|
-
Defined in: [lib/control.ts:
|
|
13212
|
+
Defined in: [lib/control.ts:1633](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1633)
|
|
13008
13213
|
|
|
13009
13214
|
***
|
|
13010
13215
|
|
|
@@ -13012,7 +13217,7 @@ Defined in: [lib/control.ts:1612](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13012
13217
|
|
|
13013
13218
|
> **pos**: `"b"` \| `"tr"` \| `"l"` \| `"lt"` \| `"t"` \| `"r"` \| `"rb"` \| `"bl"`
|
|
13014
13219
|
|
|
13015
|
-
Defined in: [lib/control.ts:
|
|
13220
|
+
Defined in: [lib/control.ts:1634](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1634)
|
|
13016
13221
|
|
|
13017
13222
|
lib/control/interfaces/IPaletteChangedEvent.md
|
|
13018
13223
|
---
|
|
@@ -13025,7 +13230,7 @@ lib/control/interfaces/IPaletteChangedEvent.md
|
|
|
13025
13230
|
|
|
13026
13231
|
# Interface: IPaletteChangedEvent
|
|
13027
13232
|
|
|
13028
|
-
Defined in: [lib/control.ts:
|
|
13233
|
+
Defined in: [lib/control.ts:1392](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1392)
|
|
13029
13234
|
|
|
13030
13235
|
## Properties
|
|
13031
13236
|
|
|
@@ -13033,7 +13238,7 @@ Defined in: [lib/control.ts:1371](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13033
13238
|
|
|
13034
13239
|
> **detail**: `object`
|
|
13035
13240
|
|
|
13036
|
-
Defined in: [lib/control.ts:
|
|
13241
|
+
Defined in: [lib/control.ts:1393](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1393)
|
|
13037
13242
|
|
|
13038
13243
|
#### hsl?
|
|
13039
13244
|
|
|
@@ -13094,7 +13299,7 @@ lib/control/interfaces/IPanelGoEvent.md
|
|
|
13094
13299
|
|
|
13095
13300
|
# Interface: IPanelGoEvent
|
|
13096
13301
|
|
|
13097
|
-
Defined in: [lib/control.ts:
|
|
13302
|
+
Defined in: [lib/control.ts:1364](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1364)
|
|
13098
13303
|
|
|
13099
13304
|
Custom Event
|
|
13100
13305
|
|
|
@@ -13108,7 +13313,7 @@ Custom Event
|
|
|
13108
13313
|
|
|
13109
13314
|
> **detail**: `object`
|
|
13110
13315
|
|
|
13111
|
-
Defined in: [lib/control.ts:
|
|
13316
|
+
Defined in: [lib/control.ts:1365](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1365)
|
|
13112
13317
|
|
|
13113
13318
|
#### from
|
|
13114
13319
|
|
|
@@ -13157,7 +13362,7 @@ lib/control/interfaces/IPanelWentEvent.md
|
|
|
13157
13362
|
|
|
13158
13363
|
# Interface: IPanelWentEvent
|
|
13159
13364
|
|
|
13160
|
-
Defined in: [lib/control.ts:
|
|
13365
|
+
Defined in: [lib/control.ts:1371](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1371)
|
|
13161
13366
|
|
|
13162
13367
|
## Properties
|
|
13163
13368
|
|
|
@@ -13165,7 +13370,7 @@ Defined in: [lib/control.ts:1350](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13165
13370
|
|
|
13166
13371
|
> **detail**: `object`
|
|
13167
13372
|
|
|
13168
|
-
Defined in: [lib/control.ts:
|
|
13373
|
+
Defined in: [lib/control.ts:1372](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1372)
|
|
13169
13374
|
|
|
13170
13375
|
#### from
|
|
13171
13376
|
|
|
@@ -13179,6 +13384,151 @@ Defined in: [lib/control.ts:1351](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13179
13384
|
|
|
13180
13385
|
> **to**: `string`
|
|
13181
13386
|
|
|
13387
|
+
lib/control/interfaces/IPanzoomEditEvent.md
|
|
13388
|
+
---
|
|
13389
|
+
|
|
13390
|
+
[**Documents for clickgo**](../../../index.md)
|
|
13391
|
+
|
|
13392
|
+
***
|
|
13393
|
+
|
|
13394
|
+
[Documents for clickgo](../../../index.md) / [lib/control](../index.md) / IPanzoomEditEvent
|
|
13395
|
+
|
|
13396
|
+
# Interface: IPanzoomEditEvent
|
|
13397
|
+
|
|
13398
|
+
Defined in: [lib/control.ts:1194](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1194)
|
|
13399
|
+
|
|
13400
|
+
编辑事件;editcancel 时 event 可能因主动销毁而不存在
|
|
13401
|
+
|
|
13402
|
+
## Extends
|
|
13403
|
+
|
|
13404
|
+
- [`IPanzoomPoint`](IPanzoomPoint.md)
|
|
13405
|
+
|
|
13406
|
+
## Properties
|
|
13407
|
+
|
|
13408
|
+
### event
|
|
13409
|
+
|
|
13410
|
+
> **event**: `Event` \| `undefined`
|
|
13411
|
+
|
|
13412
|
+
Defined in: [lib/control.ts:1195](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1195)
|
|
13413
|
+
|
|
13414
|
+
***
|
|
13415
|
+
|
|
13416
|
+
### inside
|
|
13417
|
+
|
|
13418
|
+
> **inside**: `boolean`
|
|
13419
|
+
|
|
13420
|
+
Defined in: [lib/control.ts:1190](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1190)
|
|
13421
|
+
|
|
13422
|
+
#### Inherited from
|
|
13423
|
+
|
|
13424
|
+
[`IPanzoomPoint`](IPanzoomPoint.md).[`inside`](IPanzoomPoint.md#inside)
|
|
13425
|
+
|
|
13426
|
+
***
|
|
13427
|
+
|
|
13428
|
+
### x
|
|
13429
|
+
|
|
13430
|
+
> **x**: `number`
|
|
13431
|
+
|
|
13432
|
+
Defined in: [lib/control.ts:1188](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1188)
|
|
13433
|
+
|
|
13434
|
+
#### Inherited from
|
|
13435
|
+
|
|
13436
|
+
[`IPanzoomPoint`](IPanzoomPoint.md).[`x`](IPanzoomPoint.md#x)
|
|
13437
|
+
|
|
13438
|
+
***
|
|
13439
|
+
|
|
13440
|
+
### y
|
|
13441
|
+
|
|
13442
|
+
> **y**: `number`
|
|
13443
|
+
|
|
13444
|
+
Defined in: [lib/control.ts:1189](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1189)
|
|
13445
|
+
|
|
13446
|
+
#### Inherited from
|
|
13447
|
+
|
|
13448
|
+
[`IPanzoomPoint`](IPanzoomPoint.md).[`y`](IPanzoomPoint.md#y)
|
|
13449
|
+
|
|
13450
|
+
lib/control/interfaces/IPanzoomPoint.md
|
|
13451
|
+
---
|
|
13452
|
+
|
|
13453
|
+
[**Documents for clickgo**](../../../index.md)
|
|
13454
|
+
|
|
13455
|
+
***
|
|
13456
|
+
|
|
13457
|
+
[Documents for clickgo](../../../index.md) / [lib/control](../index.md) / IPanzoomPoint
|
|
13458
|
+
|
|
13459
|
+
# Interface: IPanzoomPoint
|
|
13460
|
+
|
|
13461
|
+
Defined in: [lib/control.ts:1187](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1187)
|
|
13462
|
+
|
|
13463
|
+
Panzoom 内容坐标,单位为缩放前的内容像素
|
|
13464
|
+
|
|
13465
|
+
## Extended by
|
|
13466
|
+
|
|
13467
|
+
- [`IPanzoomEditEvent`](IPanzoomEditEvent.md)
|
|
13468
|
+
|
|
13469
|
+
## Properties
|
|
13470
|
+
|
|
13471
|
+
### inside
|
|
13472
|
+
|
|
13473
|
+
> **inside**: `boolean`
|
|
13474
|
+
|
|
13475
|
+
Defined in: [lib/control.ts:1190](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1190)
|
|
13476
|
+
|
|
13477
|
+
***
|
|
13478
|
+
|
|
13479
|
+
### x
|
|
13480
|
+
|
|
13481
|
+
> **x**: `number`
|
|
13482
|
+
|
|
13483
|
+
Defined in: [lib/control.ts:1188](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1188)
|
|
13484
|
+
|
|
13485
|
+
***
|
|
13486
|
+
|
|
13487
|
+
### y
|
|
13488
|
+
|
|
13489
|
+
> **y**: `number`
|
|
13490
|
+
|
|
13491
|
+
Defined in: [lib/control.ts:1189](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1189)
|
|
13492
|
+
|
|
13493
|
+
lib/control/interfaces/IPanzoomView.md
|
|
13494
|
+
---
|
|
13495
|
+
|
|
13496
|
+
[**Documents for clickgo**](../../../index.md)
|
|
13497
|
+
|
|
13498
|
+
***
|
|
13499
|
+
|
|
13500
|
+
[Documents for clickgo](../../../index.md) / [lib/control](../index.md) / IPanzoomView
|
|
13501
|
+
|
|
13502
|
+
# Interface: IPanzoomView
|
|
13503
|
+
|
|
13504
|
+
Defined in: [lib/control.ts:1180](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1180)
|
|
13505
|
+
|
|
13506
|
+
Panzoom 视图状态,偏移单位为视口 CSS 像素
|
|
13507
|
+
|
|
13508
|
+
## Properties
|
|
13509
|
+
|
|
13510
|
+
### x
|
|
13511
|
+
|
|
13512
|
+
> **x**: `number`
|
|
13513
|
+
|
|
13514
|
+
Defined in: [lib/control.ts:1182](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1182)
|
|
13515
|
+
|
|
13516
|
+
***
|
|
13517
|
+
|
|
13518
|
+
### y
|
|
13519
|
+
|
|
13520
|
+
> **y**: `number`
|
|
13521
|
+
|
|
13522
|
+
Defined in: [lib/control.ts:1183](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1183)
|
|
13523
|
+
|
|
13524
|
+
***
|
|
13525
|
+
|
|
13526
|
+
### zoom
|
|
13527
|
+
|
|
13528
|
+
> **zoom**: `number`
|
|
13529
|
+
|
|
13530
|
+
Defined in: [lib/control.ts:1181](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1181)
|
|
13531
|
+
|
|
13182
13532
|
lib/control/interfaces/IPdfViewEvent.md
|
|
13183
13533
|
---
|
|
13184
13534
|
|
|
@@ -13190,7 +13540,7 @@ lib/control/interfaces/IPdfViewEvent.md
|
|
|
13190
13540
|
|
|
13191
13541
|
# Interface: IPdfViewEvent
|
|
13192
13542
|
|
|
13193
|
-
Defined in: [lib/control.ts:
|
|
13543
|
+
Defined in: [lib/control.ts:1200](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1200)
|
|
13194
13544
|
|
|
13195
13545
|
## Properties
|
|
13196
13546
|
|
|
@@ -13198,7 +13548,7 @@ Defined in: [lib/control.ts:1179](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13198
13548
|
|
|
13199
13549
|
> **detail**: `object`
|
|
13200
13550
|
|
|
13201
|
-
Defined in: [lib/control.ts:
|
|
13551
|
+
Defined in: [lib/control.ts:1201](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1201)
|
|
13202
13552
|
|
|
13203
13553
|
#### height
|
|
13204
13554
|
|
|
@@ -13247,7 +13597,7 @@ lib/control/interfaces/IRadioChangeEvent.md
|
|
|
13247
13597
|
|
|
13248
13598
|
# Interface: IRadioChangeEvent
|
|
13249
13599
|
|
|
13250
|
-
Defined in: [lib/control.ts:
|
|
13600
|
+
Defined in: [lib/control.ts:1381](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1381)
|
|
13251
13601
|
|
|
13252
13602
|
Custom Event
|
|
13253
13603
|
|
|
@@ -13261,7 +13611,7 @@ Custom Event
|
|
|
13261
13611
|
|
|
13262
13612
|
> **detail**: `object`
|
|
13263
13613
|
|
|
13264
|
-
Defined in: [lib/control.ts:
|
|
13614
|
+
Defined in: [lib/control.ts:1382](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1382)
|
|
13265
13615
|
|
|
13266
13616
|
#### selected
|
|
13267
13617
|
|
|
@@ -13314,7 +13664,7 @@ lib/control/interfaces/ISelectAddedEvent.md
|
|
|
13314
13664
|
|
|
13315
13665
|
# Interface: ISelectAddedEvent
|
|
13316
13666
|
|
|
13317
|
-
Defined in: [lib/control.ts:
|
|
13667
|
+
Defined in: [lib/control.ts:1451](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1451)
|
|
13318
13668
|
|
|
13319
13669
|
## Properties
|
|
13320
13670
|
|
|
@@ -13322,7 +13672,7 @@ Defined in: [lib/control.ts:1430](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13322
13672
|
|
|
13323
13673
|
> **detail**: `object`
|
|
13324
13674
|
|
|
13325
|
-
Defined in: [lib/control.ts:
|
|
13675
|
+
Defined in: [lib/control.ts:1452](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1452)
|
|
13326
13676
|
|
|
13327
13677
|
#### index
|
|
13328
13678
|
|
|
@@ -13343,7 +13693,7 @@ lib/control/interfaces/ISelectAddEvent.md
|
|
|
13343
13693
|
|
|
13344
13694
|
# Interface: ISelectAddEvent
|
|
13345
13695
|
|
|
13346
|
-
Defined in: [lib/control.ts:
|
|
13696
|
+
Defined in: [lib/control.ts:1436](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1436)
|
|
13347
13697
|
|
|
13348
13698
|
Custom Event
|
|
13349
13699
|
|
|
@@ -13357,7 +13707,7 @@ Custom Event
|
|
|
13357
13707
|
|
|
13358
13708
|
> **detail**: `object`
|
|
13359
13709
|
|
|
13360
|
-
Defined in: [lib/control.ts:
|
|
13710
|
+
Defined in: [lib/control.ts:1437](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1437)
|
|
13361
13711
|
|
|
13362
13712
|
#### index
|
|
13363
13713
|
|
|
@@ -13406,7 +13756,7 @@ lib/control/interfaces/ISelectChangedEvent.md
|
|
|
13406
13756
|
|
|
13407
13757
|
# Interface: ISelectChangedEvent
|
|
13408
13758
|
|
|
13409
|
-
Defined in: [lib/control.ts:
|
|
13759
|
+
Defined in: [lib/control.ts:1472](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1472)
|
|
13410
13760
|
|
|
13411
13761
|
## Properties
|
|
13412
13762
|
|
|
@@ -13414,7 +13764,7 @@ Defined in: [lib/control.ts:1451](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13414
13764
|
|
|
13415
13765
|
> **detail**: `object`
|
|
13416
13766
|
|
|
13417
|
-
Defined in: [lib/control.ts:
|
|
13767
|
+
Defined in: [lib/control.ts:1473](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1473)
|
|
13418
13768
|
|
|
13419
13769
|
#### before
|
|
13420
13770
|
|
|
@@ -13435,7 +13785,7 @@ lib/control/interfaces/ISelectChangeEvent.md
|
|
|
13435
13785
|
|
|
13436
13786
|
# Interface: ISelectChangeEvent
|
|
13437
13787
|
|
|
13438
|
-
Defined in: [lib/control.ts:
|
|
13788
|
+
Defined in: [lib/control.ts:1466](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1466)
|
|
13439
13789
|
|
|
13440
13790
|
Custom Event
|
|
13441
13791
|
|
|
@@ -13449,7 +13799,7 @@ Custom Event
|
|
|
13449
13799
|
|
|
13450
13800
|
> **detail**: `object`
|
|
13451
13801
|
|
|
13452
|
-
Defined in: [lib/control.ts:
|
|
13802
|
+
Defined in: [lib/control.ts:1467](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1467)
|
|
13453
13803
|
|
|
13454
13804
|
#### value
|
|
13455
13805
|
|
|
@@ -13494,7 +13844,7 @@ lib/control/interfaces/ISelectItemclickedEvent.md
|
|
|
13494
13844
|
|
|
13495
13845
|
# Interface: ISelectItemclickedEvent
|
|
13496
13846
|
|
|
13497
|
-
Defined in: [lib/control.ts:
|
|
13847
|
+
Defined in: [lib/control.ts:1494](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1494)
|
|
13498
13848
|
|
|
13499
13849
|
## Properties
|
|
13500
13850
|
|
|
@@ -13502,7 +13852,7 @@ Defined in: [lib/control.ts:1473](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13502
13852
|
|
|
13503
13853
|
> **detail**: `object`
|
|
13504
13854
|
|
|
13505
|
-
Defined in: [lib/control.ts:
|
|
13855
|
+
Defined in: [lib/control.ts:1495](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1495)
|
|
13506
13856
|
|
|
13507
13857
|
#### arrow
|
|
13508
13858
|
|
|
@@ -13527,7 +13877,7 @@ lib/control/interfaces/ISelectRemoteEvent.md
|
|
|
13527
13877
|
|
|
13528
13878
|
# Interface: ISelectRemoteEvent
|
|
13529
13879
|
|
|
13530
|
-
Defined in: [lib/control.ts:
|
|
13880
|
+
Defined in: [lib/control.ts:1486](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1486)
|
|
13531
13881
|
|
|
13532
13882
|
## Properties
|
|
13533
13883
|
|
|
@@ -13535,7 +13885,7 @@ Defined in: [lib/control.ts:1465](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13535
13885
|
|
|
13536
13886
|
> **detail**: `object`
|
|
13537
13887
|
|
|
13538
|
-
Defined in: [lib/control.ts:
|
|
13888
|
+
Defined in: [lib/control.ts:1487](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1487)
|
|
13539
13889
|
|
|
13540
13890
|
#### callback
|
|
13541
13891
|
|
|
@@ -13568,7 +13918,7 @@ lib/control/interfaces/ISelectRemovedEvent.md
|
|
|
13568
13918
|
|
|
13569
13919
|
# Interface: ISelectRemovedEvent
|
|
13570
13920
|
|
|
13571
|
-
Defined in: [lib/control.ts:
|
|
13921
|
+
Defined in: [lib/control.ts:1458](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1458)
|
|
13572
13922
|
|
|
13573
13923
|
## Properties
|
|
13574
13924
|
|
|
@@ -13576,7 +13926,7 @@ Defined in: [lib/control.ts:1437](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13576
13926
|
|
|
13577
13927
|
> **detail**: `object`
|
|
13578
13928
|
|
|
13579
|
-
Defined in: [lib/control.ts:
|
|
13929
|
+
Defined in: [lib/control.ts:1459](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1459)
|
|
13580
13930
|
|
|
13581
13931
|
#### index
|
|
13582
13932
|
|
|
@@ -13601,7 +13951,7 @@ lib/control/interfaces/ISelectRemoveEvent.md
|
|
|
13601
13951
|
|
|
13602
13952
|
# Interface: ISelectRemoveEvent
|
|
13603
13953
|
|
|
13604
|
-
Defined in: [lib/control.ts:
|
|
13954
|
+
Defined in: [lib/control.ts:1443](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1443)
|
|
13605
13955
|
|
|
13606
13956
|
Custom Event
|
|
13607
13957
|
|
|
@@ -13615,7 +13965,7 @@ Custom Event
|
|
|
13615
13965
|
|
|
13616
13966
|
> **detail**: `object`
|
|
13617
13967
|
|
|
13618
|
-
Defined in: [lib/control.ts:
|
|
13968
|
+
Defined in: [lib/control.ts:1444](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1444)
|
|
13619
13969
|
|
|
13620
13970
|
#### index
|
|
13621
13971
|
|
|
@@ -13668,7 +14018,7 @@ lib/control/interfaces/ISelectTagclickEvent.md
|
|
|
13668
14018
|
|
|
13669
14019
|
# Interface: ISelectTagclickEvent
|
|
13670
14020
|
|
|
13671
|
-
Defined in: [lib/control.ts:
|
|
14021
|
+
Defined in: [lib/control.ts:1479](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1479)
|
|
13672
14022
|
|
|
13673
14023
|
## Properties
|
|
13674
14024
|
|
|
@@ -13676,7 +14026,7 @@ Defined in: [lib/control.ts:1458](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13676
14026
|
|
|
13677
14027
|
> **detail**: `object`
|
|
13678
14028
|
|
|
13679
|
-
Defined in: [lib/control.ts:
|
|
14029
|
+
Defined in: [lib/control.ts:1480](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1480)
|
|
13680
14030
|
|
|
13681
14031
|
#### index
|
|
13682
14032
|
|
|
@@ -13697,7 +14047,7 @@ lib/control/interfaces/IStabChangeEvent.md
|
|
|
13697
14047
|
|
|
13698
14048
|
# Interface: IStabChangeEvent
|
|
13699
14049
|
|
|
13700
|
-
Defined in: [lib/control.ts:
|
|
14050
|
+
Defined in: [lib/control.ts:1504](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1504)
|
|
13701
14051
|
|
|
13702
14052
|
Custom Event
|
|
13703
14053
|
|
|
@@ -13711,7 +14061,7 @@ Custom Event
|
|
|
13711
14061
|
|
|
13712
14062
|
> **detail**: `object`
|
|
13713
14063
|
|
|
13714
|
-
Defined in: [lib/control.ts:
|
|
14064
|
+
Defined in: [lib/control.ts:1505](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1505)
|
|
13715
14065
|
|
|
13716
14066
|
#### value
|
|
13717
14067
|
|
|
@@ -13756,7 +14106,7 @@ lib/control/interfaces/IStepClickedEvent.md
|
|
|
13756
14106
|
|
|
13757
14107
|
# Interface: IStepClickedEvent
|
|
13758
14108
|
|
|
13759
|
-
Defined in: [lib/control.ts:
|
|
14109
|
+
Defined in: [lib/control.ts:1574](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1574)
|
|
13760
14110
|
|
|
13761
14111
|
## Properties
|
|
13762
14112
|
|
|
@@ -13764,7 +14114,7 @@ Defined in: [lib/control.ts:1553](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13764
14114
|
|
|
13765
14115
|
> **detail**: `object`
|
|
13766
14116
|
|
|
13767
|
-
Defined in: [lib/control.ts:
|
|
14117
|
+
Defined in: [lib/control.ts:1575](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1575)
|
|
13768
14118
|
|
|
13769
14119
|
#### index
|
|
13770
14120
|
|
|
@@ -13789,7 +14139,7 @@ lib/control/interfaces/ISwitchChangeEvent.md
|
|
|
13789
14139
|
|
|
13790
14140
|
# Interface: ISwitchChangeEvent
|
|
13791
14141
|
|
|
13792
|
-
Defined in: [lib/control.ts:
|
|
14142
|
+
Defined in: [lib/control.ts:1512](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1512)
|
|
13793
14143
|
|
|
13794
14144
|
Custom Event
|
|
13795
14145
|
|
|
@@ -13803,7 +14153,7 @@ Custom Event
|
|
|
13803
14153
|
|
|
13804
14154
|
> **detail**: `object`
|
|
13805
14155
|
|
|
13806
|
-
Defined in: [lib/control.ts:
|
|
14156
|
+
Defined in: [lib/control.ts:1513](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1513)
|
|
13807
14157
|
|
|
13808
14158
|
#### value
|
|
13809
14159
|
|
|
@@ -13848,7 +14198,7 @@ lib/control/interfaces/ITabChangedEvent.md
|
|
|
13848
14198
|
|
|
13849
14199
|
# Interface: ITabChangedEvent
|
|
13850
14200
|
|
|
13851
|
-
Defined in: [lib/control.ts:
|
|
14201
|
+
Defined in: [lib/control.ts:1526](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1526)
|
|
13852
14202
|
|
|
13853
14203
|
## Properties
|
|
13854
14204
|
|
|
@@ -13856,7 +14206,7 @@ Defined in: [lib/control.ts:1505](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13856
14206
|
|
|
13857
14207
|
> **detail**: `object`
|
|
13858
14208
|
|
|
13859
|
-
Defined in: [lib/control.ts:
|
|
14209
|
+
Defined in: [lib/control.ts:1527](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1527)
|
|
13860
14210
|
|
|
13861
14211
|
#### value
|
|
13862
14212
|
|
|
@@ -13873,7 +14223,7 @@ lib/control/interfaces/ITabChangeEvent.md
|
|
|
13873
14223
|
|
|
13874
14224
|
# Interface: ITabChangeEvent
|
|
13875
14225
|
|
|
13876
|
-
Defined in: [lib/control.ts:
|
|
14226
|
+
Defined in: [lib/control.ts:1520](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1520)
|
|
13877
14227
|
|
|
13878
14228
|
Custom Event
|
|
13879
14229
|
|
|
@@ -13887,7 +14237,7 @@ Custom Event
|
|
|
13887
14237
|
|
|
13888
14238
|
> **detail**: `object`
|
|
13889
14239
|
|
|
13890
|
-
Defined in: [lib/control.ts:
|
|
14240
|
+
Defined in: [lib/control.ts:1521](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1521)
|
|
13891
14241
|
|
|
13892
14242
|
#### value
|
|
13893
14243
|
|
|
@@ -13932,7 +14282,7 @@ lib/control/interfaces/ITabCloseEvent.md
|
|
|
13932
14282
|
|
|
13933
14283
|
# Interface: ITabCloseEvent
|
|
13934
14284
|
|
|
13935
|
-
Defined in: [lib/control.ts:
|
|
14285
|
+
Defined in: [lib/control.ts:1532](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1532)
|
|
13936
14286
|
|
|
13937
14287
|
Custom Event
|
|
13938
14288
|
|
|
@@ -13946,7 +14296,7 @@ Custom Event
|
|
|
13946
14296
|
|
|
13947
14297
|
> **detail**: `object`
|
|
13948
14298
|
|
|
13949
|
-
Defined in: [lib/control.ts:
|
|
14299
|
+
Defined in: [lib/control.ts:1533](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1533)
|
|
13950
14300
|
|
|
13951
14301
|
#### index
|
|
13952
14302
|
|
|
@@ -13995,7 +14345,7 @@ lib/control/interfaces/ITableSortEvent.md
|
|
|
13995
14345
|
|
|
13996
14346
|
# Interface: ITableSortEvent
|
|
13997
14347
|
|
|
13998
|
-
Defined in: [lib/control.ts:
|
|
14348
|
+
Defined in: [lib/control.ts:1541](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1541)
|
|
13999
14349
|
|
|
14000
14350
|
Custom Event
|
|
14001
14351
|
|
|
@@ -14009,7 +14359,7 @@ Custom Event
|
|
|
14009
14359
|
|
|
14010
14360
|
> **detail**: `object`
|
|
14011
14361
|
|
|
14012
|
-
Defined in: [lib/control.ts:
|
|
14362
|
+
Defined in: [lib/control.ts:1542](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1542)
|
|
14013
14363
|
|
|
14014
14364
|
#### index
|
|
14015
14365
|
|
|
@@ -14062,7 +14412,7 @@ lib/control/interfaces/ITagDropEvent.md
|
|
|
14062
14412
|
|
|
14063
14413
|
# Interface: ITagDropEvent
|
|
14064
14414
|
|
|
14065
|
-
Defined in: [lib/control.ts:
|
|
14415
|
+
Defined in: [lib/control.ts:1565](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1565)
|
|
14066
14416
|
|
|
14067
14417
|
## Properties
|
|
14068
14418
|
|
|
@@ -14070,7 +14420,7 @@ Defined in: [lib/control.ts:1544](https://github.com/maiyun/clickgo/blob/master/
|
|
|
14070
14420
|
|
|
14071
14421
|
> **detail**: `object`
|
|
14072
14422
|
|
|
14073
|
-
Defined in: [lib/control.ts:
|
|
14423
|
+
Defined in: [lib/control.ts:1566](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1566)
|
|
14074
14424
|
|
|
14075
14425
|
#### after
|
|
14076
14426
|
|
|
@@ -14217,7 +14567,7 @@ lib/control/interfaces/ITuieditorImguploadEvent.md
|
|
|
14217
14567
|
|
|
14218
14568
|
# Interface: ITuieditorImguploadEvent
|
|
14219
14569
|
|
|
14220
|
-
Defined in: [lib/control.ts:
|
|
14570
|
+
Defined in: [lib/control.ts:1551](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1551)
|
|
14221
14571
|
|
|
14222
14572
|
## Properties
|
|
14223
14573
|
|
|
@@ -14225,7 +14575,7 @@ Defined in: [lib/control.ts:1530](https://github.com/maiyun/clickgo/blob/master/
|
|
|
14225
14575
|
|
|
14226
14576
|
> **detail**: `object`
|
|
14227
14577
|
|
|
14228
|
-
Defined in: [lib/control.ts:
|
|
14578
|
+
Defined in: [lib/control.ts:1552](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1552)
|
|
14229
14579
|
|
|
14230
14580
|
#### callback
|
|
14231
14581
|
|
|
@@ -14274,7 +14624,7 @@ lib/control/interfaces/IUploaderRemoveEvent.md
|
|
|
14274
14624
|
|
|
14275
14625
|
# Interface: IUploaderRemoveEvent
|
|
14276
14626
|
|
|
14277
|
-
Defined in: [lib/control.ts:
|
|
14627
|
+
Defined in: [lib/control.ts:1219](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1219)
|
|
14278
14628
|
|
|
14279
14629
|
Custom Event
|
|
14280
14630
|
|
|
@@ -14288,7 +14638,7 @@ Custom Event
|
|
|
14288
14638
|
|
|
14289
14639
|
> **detail**: `object`
|
|
14290
14640
|
|
|
14291
|
-
Defined in: [lib/control.ts:
|
|
14641
|
+
Defined in: [lib/control.ts:1220](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1220)
|
|
14292
14642
|
|
|
14293
14643
|
#### index
|
|
14294
14644
|
|
|
@@ -15012,7 +15362,7 @@ lib/core/functions/checkModule.md
|
|
|
15012
15362
|
|
|
15013
15363
|
> **checkModule**(`name`): `boolean`
|
|
15014
15364
|
|
|
15015
|
-
Defined in: [lib/core.ts:
|
|
15365
|
+
Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1354)
|
|
15016
15366
|
|
|
15017
15367
|
检查特殊模块是否注册
|
|
15018
15368
|
|
|
@@ -15172,9 +15522,25 @@ lib/core/functions/getModule.md
|
|
|
15172
15522
|
|
|
15173
15523
|
## Call Signature
|
|
15174
15524
|
|
|
15525
|
+
> **getModule**(`name`): `Promise`\<[`IMonacoLoader`](../interfaces/IMonacoLoader.md) \| `null`\>
|
|
15526
|
+
|
|
15527
|
+
Defined in: [lib/core.ts:1358](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1358)
|
|
15528
|
+
|
|
15529
|
+
### Parameters
|
|
15530
|
+
|
|
15531
|
+
#### name
|
|
15532
|
+
|
|
15533
|
+
`"monaco-editor"`
|
|
15534
|
+
|
|
15535
|
+
### Returns
|
|
15536
|
+
|
|
15537
|
+
`Promise`\<[`IMonacoLoader`](../interfaces/IMonacoLoader.md) \| `null`\>
|
|
15538
|
+
|
|
15539
|
+
## Call Signature
|
|
15540
|
+
|
|
15175
15541
|
> **getModule**(`name`): `Promise`\<[`ITumsPlayer`](../interfaces/ITumsPlayer.md) \| `null`\>
|
|
15176
15542
|
|
|
15177
|
-
Defined in: [lib/core.ts:
|
|
15543
|
+
Defined in: [lib/core.ts:1359](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1359)
|
|
15178
15544
|
|
|
15179
15545
|
### Parameters
|
|
15180
15546
|
|
|
@@ -15190,7 +15556,7 @@ Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15190
15556
|
|
|
15191
15557
|
> **getModule**(`name`): `Promise`\<\{ \} \| `null`\>
|
|
15192
15558
|
|
|
15193
|
-
Defined in: [lib/core.ts:
|
|
15559
|
+
Defined in: [lib/core.ts:1360](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1360)
|
|
15194
15560
|
|
|
15195
15561
|
### Parameters
|
|
15196
15562
|
|
|
@@ -15206,7 +15572,7 @@ Defined in: [lib/core.ts:1355](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15206
15572
|
|
|
15207
15573
|
> **getModule**(`name`): `Promise`\<`__module` \| `null`\>
|
|
15208
15574
|
|
|
15209
|
-
Defined in: [lib/core.ts:
|
|
15575
|
+
Defined in: [lib/core.ts:1361](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1361)
|
|
15210
15576
|
|
|
15211
15577
|
### Parameters
|
|
15212
15578
|
|
|
@@ -15222,7 +15588,7 @@ Defined in: [lib/core.ts:1356](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15222
15588
|
|
|
15223
15589
|
> **getModule**(`name`): `Promise`\<`any`\>
|
|
15224
15590
|
|
|
15225
|
-
Defined in: [lib/core.ts:
|
|
15591
|
+
Defined in: [lib/core.ts:1362](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1362)
|
|
15226
15592
|
|
|
15227
15593
|
### Parameters
|
|
15228
15594
|
|
|
@@ -15282,7 +15648,7 @@ lib/core/functions/init.md
|
|
|
15282
15648
|
|
|
15283
15649
|
> **init**(): `void`
|
|
15284
15650
|
|
|
15285
|
-
Defined in: [lib/core.ts:
|
|
15651
|
+
Defined in: [lib/core.ts:1424](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1424)
|
|
15286
15652
|
|
|
15287
15653
|
## Returns
|
|
15288
15654
|
|
|
@@ -15330,7 +15696,7 @@ lib/core/functions/loadModule.md
|
|
|
15330
15696
|
|
|
15331
15697
|
> **loadModule**(`name`): `Promise`\<`boolean`\>
|
|
15332
15698
|
|
|
15333
|
-
Defined in: [lib/core.ts:
|
|
15699
|
+
Defined in: [lib/core.ts:1379](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1379)
|
|
15334
15700
|
|
|
15335
15701
|
加载模块,返回 true / false
|
|
15336
15702
|
|
|
@@ -15452,7 +15818,7 @@ lib/core/functions/regModule.md
|
|
|
15452
15818
|
|
|
15453
15819
|
> **regModule**(`current`, `name`, `opt`): `Promise`\<`boolean`\>
|
|
15454
15820
|
|
|
15455
|
-
Defined in: [lib/core.ts:
|
|
15821
|
+
Defined in: [lib/core.ts:1325](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1325)
|
|
15456
15822
|
|
|
15457
15823
|
注册模块
|
|
15458
15824
|
|
|
@@ -15588,6 +15954,7 @@ lib/core/index.md
|
|
|
15588
15954
|
- [IConfig](interfaces/IConfig.md)
|
|
15589
15955
|
- [IConfigLauncherItem](interfaces/IConfigLauncherItem.md)
|
|
15590
15956
|
- [ICoreFetchAppOptions](interfaces/ICoreFetchAppOptions.md)
|
|
15957
|
+
- [IMonacoLoader](interfaces/IMonacoLoader.md)
|
|
15591
15958
|
- [ITumsPlayer](interfaces/ITumsPlayer.md)
|
|
15592
15959
|
- [IVApp](interfaces/IVApp.md)
|
|
15593
15960
|
- [IVNode](interfaces/IVNode.md)
|
|
@@ -15637,7 +16004,7 @@ lib/core/interfaces/IAppConfig.md
|
|
|
15637
16004
|
|
|
15638
16005
|
# Interface: IAppConfig
|
|
15639
16006
|
|
|
15640
|
-
Defined in: [lib/core.ts:
|
|
16007
|
+
Defined in: [lib/core.ts:1589](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1589)
|
|
15641
16008
|
|
|
15642
16009
|
应用文件包 config
|
|
15643
16010
|
|
|
@@ -15647,7 +16014,7 @@ Defined in: [lib/core.ts:1584](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15647
16014
|
|
|
15648
16015
|
> **author**: `string`
|
|
15649
16016
|
|
|
15650
|
-
Defined in: [lib/core.ts:
|
|
16017
|
+
Defined in: [lib/core.ts:1597](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1597)
|
|
15651
16018
|
|
|
15652
16019
|
作者
|
|
15653
16020
|
|
|
@@ -15657,7 +16024,7 @@ Defined in: [lib/core.ts:1592](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15657
16024
|
|
|
15658
16025
|
> **controls**: `string`[]
|
|
15659
16026
|
|
|
15660
|
-
Defined in: [lib/core.ts:
|
|
16027
|
+
Defined in: [lib/core.ts:1600](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1600)
|
|
15661
16028
|
|
|
15662
16029
|
将要加载的控件
|
|
15663
16030
|
|
|
@@ -15667,7 +16034,7 @@ Defined in: [lib/core.ts:1595](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15667
16034
|
|
|
15668
16035
|
> `optional` **files?**: `string`[]
|
|
15669
16036
|
|
|
15670
|
-
Defined in: [lib/core.ts:
|
|
16037
|
+
Defined in: [lib/core.ts:1613](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1613)
|
|
15671
16038
|
|
|
15672
16039
|
将要加载的非 js 文件列表,打包为 cga 模式下此配置可省略
|
|
15673
16040
|
|
|
@@ -15677,7 +16044,7 @@ Defined in: [lib/core.ts:1608](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15677
16044
|
|
|
15678
16045
|
> `optional` **icon?**: `string`
|
|
15679
16046
|
|
|
15680
|
-
Defined in: [lib/core.ts:
|
|
16047
|
+
Defined in: [lib/core.ts:1610](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1610)
|
|
15681
16048
|
|
|
15682
16049
|
图标路径,需包含扩展名
|
|
15683
16050
|
|
|
@@ -15687,7 +16054,7 @@ Defined in: [lib/core.ts:1605](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15687
16054
|
|
|
15688
16055
|
> `optional` **locales?**: `Record`\<`string`, `string`\>
|
|
15689
16056
|
|
|
15690
|
-
Defined in: [lib/core.ts:
|
|
16057
|
+
Defined in: [lib/core.ts:1606](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1606)
|
|
15691
16058
|
|
|
15692
16059
|
将自动加载的语言包,path: lang
|
|
15693
16060
|
|
|
@@ -15697,7 +16064,7 @@ Defined in: [lib/core.ts:1601](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15697
16064
|
|
|
15698
16065
|
> `optional` **modules?**: `string`[]
|
|
15699
16066
|
|
|
15700
|
-
Defined in: [lib/core.ts:
|
|
16067
|
+
Defined in: [lib/core.ts:1615](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1615)
|
|
15701
16068
|
|
|
15702
16069
|
要提前加载的库名
|
|
15703
16070
|
|
|
@@ -15707,7 +16074,7 @@ Defined in: [lib/core.ts:1610](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15707
16074
|
|
|
15708
16075
|
> **name**: `string`
|
|
15709
16076
|
|
|
15710
|
-
Defined in: [lib/core.ts:
|
|
16077
|
+
Defined in: [lib/core.ts:1591](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1591)
|
|
15711
16078
|
|
|
15712
16079
|
应用名
|
|
15713
16080
|
|
|
@@ -15717,7 +16084,7 @@ Defined in: [lib/core.ts:1586](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15717
16084
|
|
|
15718
16085
|
> `optional` **permissions?**: `string`[]
|
|
15719
16086
|
|
|
15720
|
-
Defined in: [lib/core.ts:
|
|
16087
|
+
Defined in: [lib/core.ts:1604](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1604)
|
|
15721
16088
|
|
|
15722
16089
|
将自动申请的权限
|
|
15723
16090
|
|
|
@@ -15727,7 +16094,7 @@ Defined in: [lib/core.ts:1599](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15727
16094
|
|
|
15728
16095
|
> `optional` **style?**: `string`
|
|
15729
16096
|
|
|
15730
|
-
Defined in: [lib/core.ts:
|
|
16097
|
+
Defined in: [lib/core.ts:1608](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1608)
|
|
15731
16098
|
|
|
15732
16099
|
全局样式,不带扩展名,系统会在末尾添加 .css
|
|
15733
16100
|
|
|
@@ -15737,7 +16104,7 @@ Defined in: [lib/core.ts:1603](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15737
16104
|
|
|
15738
16105
|
> `optional` **themes?**: `string`[]
|
|
15739
16106
|
|
|
15740
|
-
Defined in: [lib/core.ts:
|
|
16107
|
+
Defined in: [lib/core.ts:1602](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1602)
|
|
15741
16108
|
|
|
15742
16109
|
将自动加载的主题
|
|
15743
16110
|
|
|
@@ -15747,7 +16114,7 @@ Defined in: [lib/core.ts:1597](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15747
16114
|
|
|
15748
16115
|
> **ver**: `number`
|
|
15749
16116
|
|
|
15750
|
-
Defined in: [lib/core.ts:
|
|
16117
|
+
Defined in: [lib/core.ts:1593](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1593)
|
|
15751
16118
|
|
|
15752
16119
|
发行版本
|
|
15753
16120
|
|
|
@@ -15757,7 +16124,7 @@ Defined in: [lib/core.ts:1588](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15757
16124
|
|
|
15758
16125
|
> **version**: `string`
|
|
15759
16126
|
|
|
15760
|
-
Defined in: [lib/core.ts:
|
|
16127
|
+
Defined in: [lib/core.ts:1595](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1595)
|
|
15761
16128
|
|
|
15762
16129
|
发行版本字符串
|
|
15763
16130
|
|
|
@@ -15772,7 +16139,7 @@ lib/core/interfaces/IApp.md
|
|
|
15772
16139
|
|
|
15773
16140
|
# Interface: IApp
|
|
15774
16141
|
|
|
15775
|
-
Defined in: [lib/core.ts:
|
|
16142
|
+
Defined in: [lib/core.ts:1556](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1556)
|
|
15776
16143
|
|
|
15777
16144
|
应用包解包后对象
|
|
15778
16145
|
|
|
@@ -15782,7 +16149,7 @@ Defined in: [lib/core.ts:1551](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15782
16149
|
|
|
15783
16150
|
> **config**: [`IAppConfig`](IAppConfig.md)
|
|
15784
16151
|
|
|
15785
|
-
Defined in: [lib/core.ts:
|
|
16152
|
+
Defined in: [lib/core.ts:1559](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1559)
|
|
15786
16153
|
|
|
15787
16154
|
控件对象配置文件
|
|
15788
16155
|
|
|
@@ -15792,7 +16159,7 @@ Defined in: [lib/core.ts:1554](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15792
16159
|
|
|
15793
16160
|
> **icon**: `string`
|
|
15794
16161
|
|
|
15795
|
-
Defined in: [lib/core.ts:
|
|
16162
|
+
Defined in: [lib/core.ts:1561](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1561)
|
|
15796
16163
|
|
|
15797
16164
|
应用图标
|
|
15798
16165
|
|
|
@@ -15802,7 +16169,7 @@ Defined in: [lib/core.ts:1556](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15802
16169
|
|
|
15803
16170
|
> **package**: [`IAppPackage`](IAppPackage.md)
|
|
15804
16171
|
|
|
15805
|
-
Defined in: [lib/core.ts:
|
|
16172
|
+
Defined in: [lib/core.ts:1563](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1563)
|
|
15806
16173
|
|
|
15807
16174
|
新 CGA 的按需解密包读取器
|
|
15808
16175
|
|
|
@@ -15812,7 +16179,7 @@ Defined in: [lib/core.ts:1558](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15812
16179
|
|
|
15813
16180
|
> **type**: `"app"`
|
|
15814
16181
|
|
|
15815
|
-
Defined in: [lib/core.ts:
|
|
16182
|
+
Defined in: [lib/core.ts:1557](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1557)
|
|
15816
16183
|
|
|
15817
16184
|
lib/core/interfaces/IAppPackageEntry.md
|
|
15818
16185
|
---
|
|
@@ -15825,7 +16192,7 @@ lib/core/interfaces/IAppPackageEntry.md
|
|
|
15825
16192
|
|
|
15826
16193
|
# Interface: IAppPackageEntry
|
|
15827
16194
|
|
|
15828
|
-
Defined in: [lib/core.ts:
|
|
16195
|
+
Defined in: [lib/core.ts:1567](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1567)
|
|
15829
16196
|
|
|
15830
16197
|
CGA 包内项目
|
|
15831
16198
|
|
|
@@ -15835,7 +16202,7 @@ CGA 包内项目
|
|
|
15835
16202
|
|
|
15836
16203
|
> **isDirectory**: `boolean`
|
|
15837
16204
|
|
|
15838
|
-
Defined in: [lib/core.ts:
|
|
16205
|
+
Defined in: [lib/core.ts:1568](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1568)
|
|
15839
16206
|
|
|
15840
16207
|
***
|
|
15841
16208
|
|
|
@@ -15843,7 +16210,7 @@ Defined in: [lib/core.ts:1563](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15843
16210
|
|
|
15844
16211
|
> **isFile**: `boolean`
|
|
15845
16212
|
|
|
15846
|
-
Defined in: [lib/core.ts:
|
|
16213
|
+
Defined in: [lib/core.ts:1569](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1569)
|
|
15847
16214
|
|
|
15848
16215
|
***
|
|
15849
16216
|
|
|
@@ -15851,7 +16218,7 @@ Defined in: [lib/core.ts:1564](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15851
16218
|
|
|
15852
16219
|
> **name**: `string`
|
|
15853
16220
|
|
|
15854
|
-
Defined in: [lib/core.ts:
|
|
16221
|
+
Defined in: [lib/core.ts:1570](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1570)
|
|
15855
16222
|
|
|
15856
16223
|
lib/core/interfaces/IAppPackage.md
|
|
15857
16224
|
---
|
|
@@ -15864,7 +16231,7 @@ lib/core/interfaces/IAppPackage.md
|
|
|
15864
16231
|
|
|
15865
16232
|
# Interface: IAppPackage
|
|
15866
16233
|
|
|
15867
|
-
Defined in: [lib/core.ts:
|
|
16234
|
+
Defined in: [lib/core.ts:1581](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1581)
|
|
15868
16235
|
|
|
15869
16236
|
CGA 按需解密包读取器
|
|
15870
16237
|
|
|
@@ -15874,7 +16241,7 @@ CGA 按需解密包读取器
|
|
|
15874
16241
|
|
|
15875
16242
|
> **clear**(): `void`
|
|
15876
16243
|
|
|
15877
|
-
Defined in: [lib/core.ts:
|
|
16244
|
+
Defined in: [lib/core.ts:1585](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1585)
|
|
15878
16245
|
|
|
15879
16246
|
#### Returns
|
|
15880
16247
|
|
|
@@ -15886,7 +16253,7 @@ Defined in: [lib/core.ts:1580](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15886
16253
|
|
|
15887
16254
|
> **getContent**(`path`): `Promise`\<`string` \| `Blob` \| `null`\>
|
|
15888
16255
|
|
|
15889
|
-
Defined in: [lib/core.ts:
|
|
16256
|
+
Defined in: [lib/core.ts:1582](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1582)
|
|
15890
16257
|
|
|
15891
16258
|
#### Parameters
|
|
15892
16259
|
|
|
@@ -15904,7 +16271,7 @@ Defined in: [lib/core.ts:1577](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15904
16271
|
|
|
15905
16272
|
> **readDir**(`path`): [`IAppPackageEntry`](IAppPackageEntry.md)[]
|
|
15906
16273
|
|
|
15907
|
-
Defined in: [lib/core.ts:
|
|
16274
|
+
Defined in: [lib/core.ts:1584](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1584)
|
|
15908
16275
|
|
|
15909
16276
|
#### Parameters
|
|
15910
16277
|
|
|
@@ -15922,7 +16289,7 @@ Defined in: [lib/core.ts:1579](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15922
16289
|
|
|
15923
16290
|
> **stats**(`path`): [`IAppPackageStats`](IAppPackageStats.md) \| `null`
|
|
15924
16291
|
|
|
15925
|
-
Defined in: [lib/core.ts:
|
|
16292
|
+
Defined in: [lib/core.ts:1583](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1583)
|
|
15926
16293
|
|
|
15927
16294
|
#### Parameters
|
|
15928
16295
|
|
|
@@ -15945,7 +16312,7 @@ lib/core/interfaces/IAppPackageStats.md
|
|
|
15945
16312
|
|
|
15946
16313
|
# Interface: IAppPackageStats
|
|
15947
16314
|
|
|
15948
|
-
Defined in: [lib/core.ts:
|
|
16315
|
+
Defined in: [lib/core.ts:1574](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1574)
|
|
15949
16316
|
|
|
15950
16317
|
CGA 包内项目属性
|
|
15951
16318
|
|
|
@@ -15955,7 +16322,7 @@ CGA 包内项目属性
|
|
|
15955
16322
|
|
|
15956
16323
|
> **isDirectory**: `boolean`
|
|
15957
16324
|
|
|
15958
|
-
Defined in: [lib/core.ts:
|
|
16325
|
+
Defined in: [lib/core.ts:1575](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1575)
|
|
15959
16326
|
|
|
15960
16327
|
***
|
|
15961
16328
|
|
|
@@ -15963,7 +16330,7 @@ Defined in: [lib/core.ts:1570](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15963
16330
|
|
|
15964
16331
|
> **isFile**: `boolean`
|
|
15965
16332
|
|
|
15966
|
-
Defined in: [lib/core.ts:
|
|
16333
|
+
Defined in: [lib/core.ts:1576](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1576)
|
|
15967
16334
|
|
|
15968
16335
|
***
|
|
15969
16336
|
|
|
@@ -15971,7 +16338,7 @@ Defined in: [lib/core.ts:1571](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15971
16338
|
|
|
15972
16339
|
> **size**: `number`
|
|
15973
16340
|
|
|
15974
|
-
Defined in: [lib/core.ts:
|
|
16341
|
+
Defined in: [lib/core.ts:1577](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1577)
|
|
15975
16342
|
|
|
15976
16343
|
lib/core/interfaces/IAvailArea.md
|
|
15977
16344
|
---
|
|
@@ -15984,7 +16351,7 @@ lib/core/interfaces/IAvailArea.md
|
|
|
15984
16351
|
|
|
15985
16352
|
# Interface: IAvailArea
|
|
15986
16353
|
|
|
15987
|
-
Defined in: [lib/core.ts:
|
|
16354
|
+
Defined in: [lib/core.ts:1522](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1522)
|
|
15988
16355
|
|
|
15989
16356
|
屏幕可用区域
|
|
15990
16357
|
|
|
@@ -15994,7 +16361,7 @@ Defined in: [lib/core.ts:1517](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15994
16361
|
|
|
15995
16362
|
> **height**: `number`
|
|
15996
16363
|
|
|
15997
|
-
Defined in: [lib/core.ts:
|
|
16364
|
+
Defined in: [lib/core.ts:1526](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1526)
|
|
15998
16365
|
|
|
15999
16366
|
***
|
|
16000
16367
|
|
|
@@ -16002,7 +16369,7 @@ Defined in: [lib/core.ts:1521](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16002
16369
|
|
|
16003
16370
|
> **left**: `number`
|
|
16004
16371
|
|
|
16005
|
-
Defined in: [lib/core.ts:
|
|
16372
|
+
Defined in: [lib/core.ts:1523](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1523)
|
|
16006
16373
|
|
|
16007
16374
|
***
|
|
16008
16375
|
|
|
@@ -16010,7 +16377,7 @@ Defined in: [lib/core.ts:1518](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16010
16377
|
|
|
16011
16378
|
> **oheight**: `number`
|
|
16012
16379
|
|
|
16013
|
-
Defined in: [lib/core.ts:
|
|
16380
|
+
Defined in: [lib/core.ts:1528](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1528)
|
|
16014
16381
|
|
|
16015
16382
|
***
|
|
16016
16383
|
|
|
@@ -16018,7 +16385,7 @@ Defined in: [lib/core.ts:1523](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16018
16385
|
|
|
16019
16386
|
> **owidth**: `number`
|
|
16020
16387
|
|
|
16021
|
-
Defined in: [lib/core.ts:
|
|
16388
|
+
Defined in: [lib/core.ts:1527](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1527)
|
|
16022
16389
|
|
|
16023
16390
|
***
|
|
16024
16391
|
|
|
@@ -16026,7 +16393,7 @@ Defined in: [lib/core.ts:1522](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16026
16393
|
|
|
16027
16394
|
> **top**: `number`
|
|
16028
16395
|
|
|
16029
|
-
Defined in: [lib/core.ts:
|
|
16396
|
+
Defined in: [lib/core.ts:1524](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1524)
|
|
16030
16397
|
|
|
16031
16398
|
***
|
|
16032
16399
|
|
|
@@ -16034,7 +16401,7 @@ Defined in: [lib/core.ts:1519](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16034
16401
|
|
|
16035
16402
|
> **width**: `number`
|
|
16036
16403
|
|
|
16037
|
-
Defined in: [lib/core.ts:
|
|
16404
|
+
Defined in: [lib/core.ts:1525](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1525)
|
|
16038
16405
|
|
|
16039
16406
|
lib/core/interfaces/IConfigLauncherItem.md
|
|
16040
16407
|
---
|
|
@@ -16047,7 +16414,7 @@ lib/core/interfaces/IConfigLauncherItem.md
|
|
|
16047
16414
|
|
|
16048
16415
|
# Interface: IConfigLauncherItem
|
|
16049
16416
|
|
|
16050
|
-
Defined in: [lib/core.ts:
|
|
16417
|
+
Defined in: [lib/core.ts:1513](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1513)
|
|
16051
16418
|
|
|
16052
16419
|
Launcher 的 item 对象
|
|
16053
16420
|
|
|
@@ -16057,7 +16424,7 @@ Launcher 的 item 对象
|
|
|
16057
16424
|
|
|
16058
16425
|
> `optional` **icon?**: `string`
|
|
16059
16426
|
|
|
16060
|
-
Defined in: [lib/core.ts:
|
|
16427
|
+
Defined in: [lib/core.ts:1517](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1517)
|
|
16061
16428
|
|
|
16062
16429
|
***
|
|
16063
16430
|
|
|
@@ -16065,7 +16432,7 @@ Defined in: [lib/core.ts:1512](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16065
16432
|
|
|
16066
16433
|
> `optional` **id?**: `string`
|
|
16067
16434
|
|
|
16068
|
-
Defined in: [lib/core.ts:
|
|
16435
|
+
Defined in: [lib/core.ts:1514](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1514)
|
|
16069
16436
|
|
|
16070
16437
|
***
|
|
16071
16438
|
|
|
@@ -16073,7 +16440,7 @@ Defined in: [lib/core.ts:1509](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16073
16440
|
|
|
16074
16441
|
> `optional` **list?**: `object`[]
|
|
16075
16442
|
|
|
16076
|
-
Defined in: [lib/core.ts:
|
|
16443
|
+
Defined in: [lib/core.ts:1518](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1518)
|
|
16077
16444
|
|
|
16078
16445
|
#### icon
|
|
16079
16446
|
|
|
@@ -16097,7 +16464,7 @@ Defined in: [lib/core.ts:1513](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16097
16464
|
|
|
16098
16465
|
> **name**: `string`
|
|
16099
16466
|
|
|
16100
|
-
Defined in: [lib/core.ts:
|
|
16467
|
+
Defined in: [lib/core.ts:1515](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1515)
|
|
16101
16468
|
|
|
16102
16469
|
***
|
|
16103
16470
|
|
|
@@ -16105,7 +16472,7 @@ Defined in: [lib/core.ts:1510](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16105
16472
|
|
|
16106
16473
|
> `optional` **path?**: `string`
|
|
16107
16474
|
|
|
16108
|
-
Defined in: [lib/core.ts:
|
|
16475
|
+
Defined in: [lib/core.ts:1516](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1516)
|
|
16109
16476
|
|
|
16110
16477
|
lib/core/interfaces/IConfig.md
|
|
16111
16478
|
---
|
|
@@ -16118,7 +16485,7 @@ lib/core/interfaces/IConfig.md
|
|
|
16118
16485
|
|
|
16119
16486
|
# Interface: IConfig
|
|
16120
16487
|
|
|
16121
|
-
Defined in: [lib/core.ts:
|
|
16488
|
+
Defined in: [lib/core.ts:1501](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1501)
|
|
16122
16489
|
|
|
16123
16490
|
Config 对象
|
|
16124
16491
|
|
|
@@ -16128,7 +16495,7 @@ Config 对象
|
|
|
16128
16495
|
|
|
16129
16496
|
> **desktop.icon.recycler**: `boolean`
|
|
16130
16497
|
|
|
16131
|
-
Defined in: [lib/core.ts:
|
|
16498
|
+
Defined in: [lib/core.ts:1506](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1506)
|
|
16132
16499
|
|
|
16133
16500
|
***
|
|
16134
16501
|
|
|
@@ -16136,7 +16503,7 @@ Defined in: [lib/core.ts:1501](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16136
16503
|
|
|
16137
16504
|
> **desktop.icon.storage**: `boolean`
|
|
16138
16505
|
|
|
16139
|
-
Defined in: [lib/core.ts:
|
|
16506
|
+
Defined in: [lib/core.ts:1505](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1505)
|
|
16140
16507
|
|
|
16141
16508
|
***
|
|
16142
16509
|
|
|
@@ -16144,7 +16511,7 @@ Defined in: [lib/core.ts:1500](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16144
16511
|
|
|
16145
16512
|
> **desktop.path**: `string` \| `null`
|
|
16146
16513
|
|
|
16147
|
-
Defined in: [lib/core.ts:
|
|
16514
|
+
Defined in: [lib/core.ts:1508](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1508)
|
|
16148
16515
|
|
|
16149
16516
|
***
|
|
16150
16517
|
|
|
@@ -16152,7 +16519,7 @@ Defined in: [lib/core.ts:1503](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16152
16519
|
|
|
16153
16520
|
> **desktop.wallpaper**: `string` \| `null`
|
|
16154
16521
|
|
|
16155
|
-
Defined in: [lib/core.ts:
|
|
16522
|
+
Defined in: [lib/core.ts:1507](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1507)
|
|
16156
16523
|
|
|
16157
16524
|
***
|
|
16158
16525
|
|
|
@@ -16160,7 +16527,7 @@ Defined in: [lib/core.ts:1502](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16160
16527
|
|
|
16161
16528
|
> **launcher.list**: [`IConfigLauncherItem`](IConfigLauncherItem.md)[]
|
|
16162
16529
|
|
|
16163
|
-
Defined in: [lib/core.ts:
|
|
16530
|
+
Defined in: [lib/core.ts:1509](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1509)
|
|
16164
16531
|
|
|
16165
16532
|
***
|
|
16166
16533
|
|
|
@@ -16168,7 +16535,7 @@ Defined in: [lib/core.ts:1504](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16168
16535
|
|
|
16169
16536
|
> **locale**: `string`
|
|
16170
16537
|
|
|
16171
|
-
Defined in: [lib/core.ts:
|
|
16538
|
+
Defined in: [lib/core.ts:1502](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1502)
|
|
16172
16539
|
|
|
16173
16540
|
***
|
|
16174
16541
|
|
|
@@ -16176,7 +16543,7 @@ Defined in: [lib/core.ts:1497](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16176
16543
|
|
|
16177
16544
|
> **task.pin**: `Record`\<`string`, \{ `icon`: `string`; `name`: `string`; \}\>
|
|
16178
16545
|
|
|
16179
|
-
Defined in: [lib/core.ts:
|
|
16546
|
+
Defined in: [lib/core.ts:1504](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1504)
|
|
16180
16547
|
|
|
16181
16548
|
***
|
|
16182
16549
|
|
|
@@ -16184,7 +16551,7 @@ Defined in: [lib/core.ts:1499](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16184
16551
|
|
|
16185
16552
|
> **task.position**: `"left"` \| `"top"` \| `"right"` \| `"bottom"`
|
|
16186
16553
|
|
|
16187
|
-
Defined in: [lib/core.ts:
|
|
16554
|
+
Defined in: [lib/core.ts:1503](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1503)
|
|
16188
16555
|
|
|
16189
16556
|
lib/core/interfaces/ICoreFetchAppOptions.md
|
|
16190
16557
|
---
|
|
@@ -16197,7 +16564,7 @@ lib/core/interfaces/ICoreFetchAppOptions.md
|
|
|
16197
16564
|
|
|
16198
16565
|
# Interface: ICoreFetchAppOptions
|
|
16199
16566
|
|
|
16200
|
-
Defined in: [lib/core.ts:
|
|
16567
|
+
Defined in: [lib/core.ts:1535](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1535)
|
|
16201
16568
|
|
|
16202
16569
|
现场下载 app 的参数
|
|
16203
16570
|
|
|
@@ -16207,7 +16574,7 @@ Defined in: [lib/core.ts:1530](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16207
16574
|
|
|
16208
16575
|
> `optional` **after?**: `string`
|
|
16209
16576
|
|
|
16210
|
-
Defined in: [lib/core.ts:
|
|
16577
|
+
Defined in: [lib/core.ts:1545](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1545)
|
|
16211
16578
|
|
|
16212
16579
|
网址后面附带的前缀,如 ?123
|
|
16213
16580
|
|
|
@@ -16217,7 +16584,7 @@ Defined in: [lib/core.ts:1540](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16217
16584
|
|
|
16218
16585
|
> `optional` **notify?**: `number` \| \{ `id?`: `number`; `loaded?`: `number`; `total?`: `number`; \}
|
|
16219
16586
|
|
|
16220
|
-
Defined in: [lib/core.ts:
|
|
16587
|
+
Defined in: [lib/core.ts:1536](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1536)
|
|
16221
16588
|
|
|
16222
16589
|
#### Union Members
|
|
16223
16590
|
|
|
@@ -16253,7 +16620,7 @@ notify id
|
|
|
16253
16620
|
|
|
16254
16621
|
> `optional` **progress?**: (`loaded`, `total`, `per`) => `void` \| `Promise`\<`void`\>
|
|
16255
16622
|
|
|
16256
|
-
Defined in: [lib/core.ts:
|
|
16623
|
+
Defined in: [lib/core.ts:1552](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1552)
|
|
16257
16624
|
|
|
16258
16625
|
下载进度
|
|
16259
16626
|
|
|
@@ -16281,6 +16648,41 @@ Defined in: [lib/core.ts:1547](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16281
16648
|
|
|
16282
16649
|
`void` \| `Promise`\<`void`\>
|
|
16283
16650
|
|
|
16651
|
+
lib/core/interfaces/IMonacoLoader.md
|
|
16652
|
+
---
|
|
16653
|
+
|
|
16654
|
+
[**Documents for clickgo**](../../../index.md)
|
|
16655
|
+
|
|
16656
|
+
***
|
|
16657
|
+
|
|
16658
|
+
[Documents for clickgo](../../../index.md) / [lib/core](../index.md) / IMonacoLoader
|
|
16659
|
+
|
|
16660
|
+
# Interface: IMonacoLoader
|
|
16661
|
+
|
|
16662
|
+
Defined in: [lib/core.ts:1716](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1716)
|
|
16663
|
+
|
|
16664
|
+
Monaco 模块的加载资源,编辑器实例由控件在独立 iframe 内创建
|
|
16665
|
+
|
|
16666
|
+
## Properties
|
|
16667
|
+
|
|
16668
|
+
### baseUrl
|
|
16669
|
+
|
|
16670
|
+
> **baseUrl**: `string`
|
|
16671
|
+
|
|
16672
|
+
Defined in: [lib/core.ts:1720](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1720)
|
|
16673
|
+
|
|
16674
|
+
编辑器和 Worker 的资源根路径,以 / 结尾
|
|
16675
|
+
|
|
16676
|
+
***
|
|
16677
|
+
|
|
16678
|
+
### loader
|
|
16679
|
+
|
|
16680
|
+
> **loader**: `string`
|
|
16681
|
+
|
|
16682
|
+
Defined in: [lib/core.ts:1718](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1718)
|
|
16683
|
+
|
|
16684
|
+
AMD loader 的 data URL
|
|
16685
|
+
|
|
16284
16686
|
lib/core/interfaces/ITumsPlayer.md
|
|
16285
16687
|
---
|
|
16286
16688
|
|
|
@@ -16292,7 +16694,7 @@ lib/core/interfaces/ITumsPlayer.md
|
|
|
16292
16694
|
|
|
16293
16695
|
# Interface: ITumsPlayer
|
|
16294
16696
|
|
|
16295
|
-
Defined in: [lib/core.ts:
|
|
16697
|
+
Defined in: [lib/core.ts:1701](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1701)
|
|
16296
16698
|
|
|
16297
16699
|
tums-player 模块对象
|
|
16298
16700
|
|
|
@@ -16302,7 +16704,7 @@ tums-player 模块对象
|
|
|
16302
16704
|
|
|
16303
16705
|
> **default**: `any`
|
|
16304
16706
|
|
|
16305
|
-
Defined in: [lib/core.ts:
|
|
16707
|
+
Defined in: [lib/core.ts:1702](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1702)
|
|
16306
16708
|
|
|
16307
16709
|
***
|
|
16308
16710
|
|
|
@@ -16310,7 +16712,7 @@ Defined in: [lib/core.ts:1697](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16310
16712
|
|
|
16311
16713
|
> **startTalk**: (`opt`) => `Promise`\<`void`\>
|
|
16312
16714
|
|
|
16313
|
-
Defined in: [lib/core.ts:
|
|
16715
|
+
Defined in: [lib/core.ts:1704](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1704)
|
|
16314
16716
|
|
|
16315
16717
|
开始对讲
|
|
16316
16718
|
|
|
@@ -16346,7 +16748,7 @@ half_duplex-半双工模式,vad-VAD 人声检测模式,aec-AEC 全双工模式
|
|
|
16346
16748
|
|
|
16347
16749
|
> **stopTalk**: () => `void`
|
|
16348
16750
|
|
|
16349
|
-
Defined in: [lib/core.ts:
|
|
16751
|
+
Defined in: [lib/core.ts:1712](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1712)
|
|
16350
16752
|
|
|
16351
16753
|
停止对讲
|
|
16352
16754
|
|
|
@@ -16365,7 +16767,7 @@ lib/core/interfaces/IVApp.md
|
|
|
16365
16767
|
|
|
16366
16768
|
# Interface: IVApp
|
|
16367
16769
|
|
|
16368
|
-
Defined in: [lib/core.ts:
|
|
16770
|
+
Defined in: [lib/core.ts:1681](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1681)
|
|
16369
16771
|
|
|
16370
16772
|
Vue 应用
|
|
16371
16773
|
|
|
@@ -16375,7 +16777,7 @@ Vue 应用
|
|
|
16375
16777
|
|
|
16376
16778
|
> **\_container**: `HTMLElement`
|
|
16377
16779
|
|
|
16378
|
-
Defined in: [lib/core.ts:
|
|
16780
|
+
Defined in: [lib/core.ts:1693](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1693)
|
|
16379
16781
|
|
|
16380
16782
|
***
|
|
16381
16783
|
|
|
@@ -16383,7 +16785,7 @@ Defined in: [lib/core.ts:1688](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16383
16785
|
|
|
16384
16786
|
> **config**: [`IVueConfig`](IVueConfig.md)
|
|
16385
16787
|
|
|
16386
|
-
Defined in: [lib/core.ts:
|
|
16788
|
+
Defined in: [lib/core.ts:1684](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1684)
|
|
16387
16789
|
|
|
16388
16790
|
***
|
|
16389
16791
|
|
|
@@ -16391,7 +16793,7 @@ Defined in: [lib/core.ts:1679](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16391
16793
|
|
|
16392
16794
|
> **version**: `string`
|
|
16393
16795
|
|
|
16394
|
-
Defined in: [lib/core.ts:
|
|
16796
|
+
Defined in: [lib/core.ts:1691](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1691)
|
|
16395
16797
|
|
|
16396
16798
|
## Methods
|
|
16397
16799
|
|
|
@@ -16401,7 +16803,7 @@ Defined in: [lib/core.ts:1686](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16401
16803
|
|
|
16402
16804
|
> **component**(`name`): `any`
|
|
16403
16805
|
|
|
16404
|
-
Defined in: [lib/core.ts:
|
|
16806
|
+
Defined in: [lib/core.ts:1682](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1682)
|
|
16405
16807
|
|
|
16406
16808
|
##### Parameters
|
|
16407
16809
|
|
|
@@ -16417,7 +16819,7 @@ Defined in: [lib/core.ts:1677](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16417
16819
|
|
|
16418
16820
|
> **component**(`name`, `config`): `this`
|
|
16419
16821
|
|
|
16420
|
-
Defined in: [lib/core.ts:
|
|
16822
|
+
Defined in: [lib/core.ts:1683](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1683)
|
|
16421
16823
|
|
|
16422
16824
|
##### Parameters
|
|
16423
16825
|
|
|
@@ -16441,7 +16843,7 @@ Defined in: [lib/core.ts:1678](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16441
16843
|
|
|
16442
16844
|
> **directive**(`name`): `any`
|
|
16443
16845
|
|
|
16444
|
-
Defined in: [lib/core.ts:
|
|
16846
|
+
Defined in: [lib/core.ts:1685](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1685)
|
|
16445
16847
|
|
|
16446
16848
|
##### Parameters
|
|
16447
16849
|
|
|
@@ -16457,7 +16859,7 @@ Defined in: [lib/core.ts:1680](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16457
16859
|
|
|
16458
16860
|
> **directive**(`name`, `config`): `this`
|
|
16459
16861
|
|
|
16460
|
-
Defined in: [lib/core.ts:
|
|
16862
|
+
Defined in: [lib/core.ts:1686](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1686)
|
|
16461
16863
|
|
|
16462
16864
|
##### Parameters
|
|
16463
16865
|
|
|
@@ -16479,7 +16881,7 @@ Defined in: [lib/core.ts:1681](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16479
16881
|
|
|
16480
16882
|
> **mixin**(`mixin`): `this`
|
|
16481
16883
|
|
|
16482
|
-
Defined in: [lib/core.ts:
|
|
16884
|
+
Defined in: [lib/core.ts:1687](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1687)
|
|
16483
16885
|
|
|
16484
16886
|
#### Parameters
|
|
16485
16887
|
|
|
@@ -16497,7 +16899,7 @@ Defined in: [lib/core.ts:1682](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16497
16899
|
|
|
16498
16900
|
> **mount**(`rootContainer`): [`IVue`](IVue.md)
|
|
16499
16901
|
|
|
16500
|
-
Defined in: [lib/core.ts:
|
|
16902
|
+
Defined in: [lib/core.ts:1688](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1688)
|
|
16501
16903
|
|
|
16502
16904
|
#### Parameters
|
|
16503
16905
|
|
|
@@ -16515,7 +16917,7 @@ Defined in: [lib/core.ts:1683](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16515
16917
|
|
|
16516
16918
|
> **provide**\<`T`\>(`key`, `value`): `this`
|
|
16517
16919
|
|
|
16518
|
-
Defined in: [lib/core.ts:
|
|
16920
|
+
Defined in: [lib/core.ts:1689](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1689)
|
|
16519
16921
|
|
|
16520
16922
|
#### Type Parameters
|
|
16521
16923
|
|
|
@@ -16543,7 +16945,7 @@ Defined in: [lib/core.ts:1684](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16543
16945
|
|
|
16544
16946
|
> **unmount**(): `void`
|
|
16545
16947
|
|
|
16546
|
-
Defined in: [lib/core.ts:
|
|
16948
|
+
Defined in: [lib/core.ts:1690](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1690)
|
|
16547
16949
|
|
|
16548
16950
|
#### Returns
|
|
16549
16951
|
|
|
@@ -16560,7 +16962,7 @@ lib/core/interfaces/IVNode.md
|
|
|
16560
16962
|
|
|
16561
16963
|
# Interface: IVNode
|
|
16562
16964
|
|
|
16563
|
-
Defined in: [lib/core.ts:
|
|
16965
|
+
Defined in: [lib/core.ts:1644](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1644)
|
|
16564
16966
|
|
|
16565
16967
|
Vue 节点
|
|
16566
16968
|
|
|
@@ -16574,7 +16976,7 @@ Vue 节点
|
|
|
16574
16976
|
|
|
16575
16977
|
> **children**: `object` & `IVNode`[]
|
|
16576
16978
|
|
|
16577
|
-
Defined in: [lib/core.ts:
|
|
16979
|
+
Defined in: [lib/core.ts:1645](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1645)
|
|
16578
16980
|
|
|
16579
16981
|
#### Type Declaration
|
|
16580
16982
|
|
|
@@ -16588,7 +16990,7 @@ Defined in: [lib/core.ts:1640](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16588
16990
|
|
|
16589
16991
|
> **props**: `Record`\<`string`, `any`\>
|
|
16590
16992
|
|
|
16591
|
-
Defined in: [lib/core.ts:
|
|
16993
|
+
Defined in: [lib/core.ts:1649](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1649)
|
|
16592
16994
|
|
|
16593
16995
|
***
|
|
16594
16996
|
|
|
@@ -16596,7 +16998,7 @@ Defined in: [lib/core.ts:1644](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16596
16998
|
|
|
16597
16999
|
> **type**: `symbol` \| `Record`\<`string`, `any`\>
|
|
16598
17000
|
|
|
16599
|
-
Defined in: [lib/core.ts:
|
|
17001
|
+
Defined in: [lib/core.ts:1650](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1650)
|
|
16600
17002
|
|
|
16601
17003
|
lib/core/interfaces/IVueConfig.md
|
|
16602
17004
|
---
|
|
@@ -16609,7 +17011,7 @@ lib/core/interfaces/IVueConfig.md
|
|
|
16609
17011
|
|
|
16610
17012
|
# Interface: IVueConfig
|
|
16611
17013
|
|
|
16612
|
-
Defined in: [lib/core.ts:
|
|
17014
|
+
Defined in: [lib/core.ts:1671](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1671)
|
|
16613
17015
|
|
|
16614
17016
|
Vue 配置
|
|
16615
17017
|
|
|
@@ -16619,7 +17021,7 @@ Vue 配置
|
|
|
16619
17021
|
|
|
16620
17022
|
> **globalProperties**: `Record`\<`string`, `any`\>
|
|
16621
17023
|
|
|
16622
|
-
Defined in: [lib/core.ts:
|
|
17024
|
+
Defined in: [lib/core.ts:1673](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1673)
|
|
16623
17025
|
|
|
16624
17026
|
***
|
|
16625
17027
|
|
|
@@ -16627,7 +17029,7 @@ Defined in: [lib/core.ts:1668](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16627
17029
|
|
|
16628
17030
|
> **optionMergeStrategies**: `Record`\<`string`, [`IVueOptionMergeFunction`](../type-aliases/IVueOptionMergeFunction.md)\>
|
|
16629
17031
|
|
|
16630
|
-
Defined in: [lib/core.ts:
|
|
17032
|
+
Defined in: [lib/core.ts:1675](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1675)
|
|
16631
17033
|
|
|
16632
17034
|
***
|
|
16633
17035
|
|
|
@@ -16635,7 +17037,7 @@ Defined in: [lib/core.ts:1670](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16635
17037
|
|
|
16636
17038
|
> **performance**: `boolean`
|
|
16637
17039
|
|
|
16638
|
-
Defined in: [lib/core.ts:
|
|
17040
|
+
Defined in: [lib/core.ts:1676](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1676)
|
|
16639
17041
|
|
|
16640
17042
|
## Methods
|
|
16641
17043
|
|
|
@@ -16643,7 +17045,7 @@ Defined in: [lib/core.ts:1671](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16643
17045
|
|
|
16644
17046
|
> `optional` **errorHandler**(`err`, `instance`, `info`): `void`
|
|
16645
17047
|
|
|
16646
|
-
Defined in: [lib/core.ts:
|
|
17048
|
+
Defined in: [lib/core.ts:1672](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1672)
|
|
16647
17049
|
|
|
16648
17050
|
#### Parameters
|
|
16649
17051
|
|
|
@@ -16669,7 +17071,7 @@ Defined in: [lib/core.ts:1667](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16669
17071
|
|
|
16670
17072
|
> **isCustomElement**(`tag`): `boolean`
|
|
16671
17073
|
|
|
16672
|
-
Defined in: [lib/core.ts:
|
|
17074
|
+
Defined in: [lib/core.ts:1674](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1674)
|
|
16673
17075
|
|
|
16674
17076
|
#### Parameters
|
|
16675
17077
|
|
|
@@ -16687,7 +17089,7 @@ Defined in: [lib/core.ts:1669](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16687
17089
|
|
|
16688
17090
|
> `optional` **warnHandler**(`msg`, `instance`, `trace`): `void`
|
|
16689
17091
|
|
|
16690
|
-
Defined in: [lib/core.ts:
|
|
17092
|
+
Defined in: [lib/core.ts:1677](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1677)
|
|
16691
17093
|
|
|
16692
17094
|
#### Parameters
|
|
16693
17095
|
|
|
@@ -16718,7 +17120,7 @@ lib/core/interfaces/IVue.md
|
|
|
16718
17120
|
|
|
16719
17121
|
# Interface: IVue
|
|
16720
17122
|
|
|
16721
|
-
Defined in: [lib/core.ts:
|
|
17123
|
+
Defined in: [lib/core.ts:1619](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1619)
|
|
16722
17124
|
|
|
16723
17125
|
Vue 实例
|
|
16724
17126
|
|
|
@@ -16732,7 +17134,7 @@ Vue 实例
|
|
|
16732
17134
|
|
|
16733
17135
|
> **$attrs**: `Record`\<`string`, `string`\>
|
|
16734
17136
|
|
|
16735
|
-
Defined in: [lib/core.ts:
|
|
17137
|
+
Defined in: [lib/core.ts:1620](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1620)
|
|
16736
17138
|
|
|
16737
17139
|
***
|
|
16738
17140
|
|
|
@@ -16740,7 +17142,7 @@ Defined in: [lib/core.ts:1615](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16740
17142
|
|
|
16741
17143
|
> **$data**: `Record`\<`string`, `any`\>
|
|
16742
17144
|
|
|
16743
|
-
Defined in: [lib/core.ts:
|
|
17145
|
+
Defined in: [lib/core.ts:1621](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1621)
|
|
16744
17146
|
|
|
16745
17147
|
***
|
|
16746
17148
|
|
|
@@ -16748,7 +17150,7 @@ Defined in: [lib/core.ts:1616](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16748
17150
|
|
|
16749
17151
|
> **$el**: `HTMLElement`
|
|
16750
17152
|
|
|
16751
|
-
Defined in: [lib/core.ts:
|
|
17153
|
+
Defined in: [lib/core.ts:1622](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1622)
|
|
16752
17154
|
|
|
16753
17155
|
***
|
|
16754
17156
|
|
|
@@ -16756,7 +17158,7 @@ Defined in: [lib/core.ts:1617](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16756
17158
|
|
|
16757
17159
|
> **$options**: `Record`\<`string`, `any`\>
|
|
16758
17160
|
|
|
16759
|
-
Defined in: [lib/core.ts:
|
|
17161
|
+
Defined in: [lib/core.ts:1626](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1626)
|
|
16760
17162
|
|
|
16761
17163
|
***
|
|
16762
17164
|
|
|
@@ -16764,7 +17166,7 @@ Defined in: [lib/core.ts:1621](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16764
17166
|
|
|
16765
17167
|
> **$parent**: `IVue` \| `null`
|
|
16766
17168
|
|
|
16767
|
-
Defined in: [lib/core.ts:
|
|
17169
|
+
Defined in: [lib/core.ts:1627](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1627)
|
|
16768
17170
|
|
|
16769
17171
|
***
|
|
16770
17172
|
|
|
@@ -16772,7 +17174,7 @@ Defined in: [lib/core.ts:1622](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16772
17174
|
|
|
16773
17175
|
> **$props**: `Record`\<`string`, `any`\>
|
|
16774
17176
|
|
|
16775
|
-
Defined in: [lib/core.ts:
|
|
17177
|
+
Defined in: [lib/core.ts:1628](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1628)
|
|
16776
17178
|
|
|
16777
17179
|
***
|
|
16778
17180
|
|
|
@@ -16780,7 +17182,7 @@ Defined in: [lib/core.ts:1623](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16780
17182
|
|
|
16781
17183
|
> **$refs**: `Record`\<`string`, `HTMLElement` & `IVue`\>
|
|
16782
17184
|
|
|
16783
|
-
Defined in: [lib/core.ts:
|
|
17185
|
+
Defined in: [lib/core.ts:1629](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1629)
|
|
16784
17186
|
|
|
16785
17187
|
***
|
|
16786
17188
|
|
|
@@ -16788,7 +17190,7 @@ Defined in: [lib/core.ts:1624](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16788
17190
|
|
|
16789
17191
|
> **$root**: `IVue`
|
|
16790
17192
|
|
|
16791
|
-
Defined in: [lib/core.ts:
|
|
17193
|
+
Defined in: [lib/core.ts:1630](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1630)
|
|
16792
17194
|
|
|
16793
17195
|
***
|
|
16794
17196
|
|
|
@@ -16796,7 +17198,7 @@ Defined in: [lib/core.ts:1625](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16796
17198
|
|
|
16797
17199
|
> **$slots**: `object`
|
|
16798
17200
|
|
|
16799
|
-
Defined in: [lib/core.ts:
|
|
17201
|
+
Defined in: [lib/core.ts:1631](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1631)
|
|
16800
17202
|
|
|
16801
17203
|
#### Index Signature
|
|
16802
17204
|
|
|
@@ -16812,7 +17214,7 @@ Defined in: [lib/core.ts:1626](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16812
17214
|
|
|
16813
17215
|
> **$watch**: (`o`, `cb`, `opt?`) => `void`
|
|
16814
17216
|
|
|
16815
|
-
Defined in: [lib/core.ts:
|
|
17217
|
+
Defined in: [lib/core.ts:1635](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1635)
|
|
16816
17218
|
|
|
16817
17219
|
#### Parameters
|
|
16818
17220
|
|
|
@@ -16844,7 +17246,7 @@ Defined in: [lib/core.ts:1630](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16844
17246
|
|
|
16845
17247
|
> **$emit**(`name`, ...`arg`): `void`
|
|
16846
17248
|
|
|
16847
|
-
Defined in: [lib/core.ts:
|
|
17249
|
+
Defined in: [lib/core.ts:1623](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1623)
|
|
16848
17250
|
|
|
16849
17251
|
#### Parameters
|
|
16850
17252
|
|
|
@@ -16866,7 +17268,7 @@ Defined in: [lib/core.ts:1618](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16866
17268
|
|
|
16867
17269
|
> **$forceUpdate**(): `void`
|
|
16868
17270
|
|
|
16869
|
-
Defined in: [lib/core.ts:
|
|
17271
|
+
Defined in: [lib/core.ts:1624](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1624)
|
|
16870
17272
|
|
|
16871
17273
|
#### Returns
|
|
16872
17274
|
|
|
@@ -16878,7 +17280,7 @@ Defined in: [lib/core.ts:1619](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16878
17280
|
|
|
16879
17281
|
> **$nextTick**(): `Promise`\<`void`\>
|
|
16880
17282
|
|
|
16881
|
-
Defined in: [lib/core.ts:
|
|
17283
|
+
Defined in: [lib/core.ts:1625](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1625)
|
|
16882
17284
|
|
|
16883
17285
|
#### Returns
|
|
16884
17286
|
|
|
@@ -16895,7 +17297,7 @@ lib/core/interfaces/IVueObject.md
|
|
|
16895
17297
|
|
|
16896
17298
|
# Interface: IVueObject
|
|
16897
17299
|
|
|
16898
|
-
Defined in: [lib/core.ts:
|
|
17300
|
+
Defined in: [lib/core.ts:1655](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1655)
|
|
16899
17301
|
|
|
16900
17302
|
## Methods
|
|
16901
17303
|
|
|
@@ -16903,7 +17305,7 @@ Defined in: [lib/core.ts:1650](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16903
17305
|
|
|
16904
17306
|
> **createApp**(`opt`): [`IVApp`](IVApp.md)
|
|
16905
17307
|
|
|
16906
|
-
Defined in: [lib/core.ts:
|
|
17308
|
+
Defined in: [lib/core.ts:1656](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1656)
|
|
16907
17309
|
|
|
16908
17310
|
#### Parameters
|
|
16909
17311
|
|
|
@@ -16921,7 +17323,7 @@ Defined in: [lib/core.ts:1651](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16921
17323
|
|
|
16922
17324
|
> **h**(`tag`, `props?`, `list?`): `any`
|
|
16923
17325
|
|
|
16924
|
-
Defined in: [lib/core.ts:
|
|
17326
|
+
Defined in: [lib/core.ts:1664](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1664)
|
|
16925
17327
|
|
|
16926
17328
|
#### Parameters
|
|
16927
17329
|
|
|
@@ -16947,7 +17349,7 @@ Defined in: [lib/core.ts:1659](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16947
17349
|
|
|
16948
17350
|
> **reactive**\<`T`\>(`obj`): `T`
|
|
16949
17351
|
|
|
16950
|
-
Defined in: [lib/core.ts:
|
|
17352
|
+
Defined in: [lib/core.ts:1658](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1658)
|
|
16951
17353
|
|
|
16952
17354
|
#### Type Parameters
|
|
16953
17355
|
|
|
@@ -16971,7 +17373,7 @@ Defined in: [lib/core.ts:1653](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16971
17373
|
|
|
16972
17374
|
> **ref**\<`T`\>(`obj`): `object`
|
|
16973
17375
|
|
|
16974
|
-
Defined in: [lib/core.ts:
|
|
17376
|
+
Defined in: [lib/core.ts:1657](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1657)
|
|
16975
17377
|
|
|
16976
17378
|
#### Type Parameters
|
|
16977
17379
|
|
|
@@ -16999,7 +17401,7 @@ Defined in: [lib/core.ts:1652](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16999
17401
|
|
|
17000
17402
|
> **watch**(`v`, `cb`, `opt`): `void`
|
|
17001
17403
|
|
|
17002
|
-
Defined in: [lib/core.ts:
|
|
17404
|
+
Defined in: [lib/core.ts:1659](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1659)
|
|
17003
17405
|
|
|
17004
17406
|
#### Parameters
|
|
17005
17407
|
|
|
@@ -17032,7 +17434,7 @@ lib/core/type-aliases/IVueOptionMergeFunction.md
|
|
|
17032
17434
|
|
|
17033
17435
|
> **IVueOptionMergeFunction** = (`to`, `from`, `instance`) => `any`
|
|
17034
17436
|
|
|
17035
|
-
Defined in: [lib/core.ts:
|
|
17437
|
+
Defined in: [lib/core.ts:1668](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1668)
|
|
17036
17438
|
|
|
17037
17439
|
Vue 选项合并函数
|
|
17038
17440
|
|
|
@@ -17067,7 +17469,7 @@ lib/core/type-aliases/TCurrent.md
|
|
|
17067
17469
|
|
|
17068
17470
|
> **TCurrent** = `string` \| [`AbstractForm`](../../form/classes/AbstractForm.md) \| [`AbstractPanel`](../../form/classes/AbstractPanel.md) \| [`AbstractControl`](../../control/classes/AbstractControl.md) \| [`AbstractApp`](../classes/AbstractApp.md)
|
|
17069
17471
|
|
|
17070
|
-
Defined in: [lib/core.ts:
|
|
17472
|
+
Defined in: [lib/core.ts:1696](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1696)
|
|
17071
17473
|
|
|
17072
17474
|
lib/core/type-aliases/TGlobalEvent.md
|
|
17073
17475
|
---
|
|
@@ -17082,7 +17484,7 @@ lib/core/type-aliases/TGlobalEvent.md
|
|
|
17082
17484
|
|
|
17083
17485
|
> **TGlobalEvent** = `"error"` \| `"screenResize"` \| `"configChanged"` \| `"formCreated"` \| `"formRemoved"` \| `"formTitleChanged"` \| `"formIconChanged"` \| `"formStateMinChanged"` \| `"formStateMaxChanged"` \| `"formShowChanged"` \| `"formFocused"` \| `"formBlurred"` \| `"formFlash"` \| `"formShowInSystemTaskChange"` \| `"formHashChange"` \| `"taskStarted"` \| `"taskEnded"` \| `"launcherFolderNameChanged"` \| `"hashChanged"` \| `"keydown"` \| `"keyup"`
|
|
17084
17486
|
|
|
17085
|
-
Defined in: [lib/core.ts:
|
|
17487
|
+
Defined in: [lib/core.ts:1532](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1532)
|
|
17086
17488
|
|
|
17087
17489
|
全局事件类型
|
|
17088
17490
|
|
|
@@ -22612,7 +23014,7 @@ lib/form/functions/captcha.md
|
|
|
22612
23014
|
|
|
22613
23015
|
> **captcha**(`current`, `opt`): `Promise`\<`false` \| [`ICaptchaResultEvent`](../../control/interfaces/ICaptchaResultEvent.md)\>
|
|
22614
23016
|
|
|
22615
|
-
Defined in: [lib/form.ts:
|
|
23017
|
+
Defined in: [lib/form.ts:4412](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4412)
|
|
22616
23018
|
|
|
22617
23019
|
显示一个验证码窗口
|
|
22618
23020
|
|
|
@@ -22728,7 +23130,7 @@ lib/form/functions/confirm.md
|
|
|
22728
23130
|
|
|
22729
23131
|
> **confirm**(`current`, `opt`): `Promise`\<`number` \| `boolean`\>
|
|
22730
23132
|
|
|
22731
|
-
Defined in: [lib/form.ts:
|
|
23133
|
+
Defined in: [lib/form.ts:4483](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4483)
|
|
22732
23134
|
|
|
22733
23135
|
显示一个 confirm
|
|
22734
23136
|
|
|
@@ -22763,7 +23165,7 @@ lib/form/functions/create.md
|
|
|
22763
23165
|
|
|
22764
23166
|
> **create**\<`T`\>(`current`, `cls`, `data?`, `opt?`): `Promise`\<`T`\>
|
|
22765
23167
|
|
|
22766
|
-
Defined in: [lib/form.ts:
|
|
23168
|
+
Defined in: [lib/form.ts:3831](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3831)
|
|
22767
23169
|
|
|
22768
23170
|
创建一个窗体
|
|
22769
23171
|
|
|
@@ -22828,7 +23230,7 @@ lib/form/functions/createPanel.md
|
|
|
22828
23230
|
|
|
22829
23231
|
> **createPanel**\<`T`\>(`rootPanel`, `cls`, `opt?`): `Promise`\<\{ `id`: `string`; `vapp`: [`IVApp`](../../core/interfaces/IVApp.md); `vroot`: `T`; \}\>
|
|
22830
23232
|
|
|
22831
|
-
Defined in: [lib/form.ts:
|
|
23233
|
+
Defined in: [lib/form.ts:3464](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3464)
|
|
22832
23234
|
|
|
22833
23235
|
创建 panel 对象,一般情况下无需使用
|
|
22834
23236
|
|
|
@@ -22891,7 +23293,7 @@ lib/form/functions/dialog.md
|
|
|
22891
23293
|
|
|
22892
23294
|
> **dialog**(`current`, `opt`): `Promise`\<`string`\>
|
|
22893
23295
|
|
|
22894
|
-
Defined in: [lib/form.ts:
|
|
23296
|
+
Defined in: [lib/form.ts:4316](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4316)
|
|
22895
23297
|
|
|
22896
23298
|
显示一个 dialog
|
|
22897
23299
|
|
|
@@ -22926,7 +23328,7 @@ lib/form/functions/doFocusAndPopEvent.md
|
|
|
22926
23328
|
|
|
22927
23329
|
> **doFocusAndPopEvent**(`e`): `Promise`\<`void`\>
|
|
22928
23330
|
|
|
22929
|
-
Defined in: [lib/form.ts:
|
|
23331
|
+
Defined in: [lib/form.ts:3265](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3265)
|
|
22930
23332
|
|
|
22931
23333
|
点下 pointerdown 屏幕任意一位置时根据点击处处理隐藏 pop 和焦点丢失事件,鼠标和 touch 只会响应一个
|
|
22932
23334
|
|
|
@@ -22955,7 +23357,7 @@ lib/form/functions/flash.md
|
|
|
22955
23357
|
|
|
22956
23358
|
> **flash**(`current`, `formId`): `Promise`\<`void`\>
|
|
22957
23359
|
|
|
22958
|
-
Defined in: [lib/form.ts:
|
|
23360
|
+
Defined in: [lib/form.ts:4580](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4580)
|
|
22959
23361
|
|
|
22960
23362
|
让窗体闪烁
|
|
22961
23363
|
|
|
@@ -23323,7 +23725,7 @@ lib/form/functions/hideLauncher.md
|
|
|
23323
23725
|
|
|
23324
23726
|
> **hideLauncher**(): `void`
|
|
23325
23727
|
|
|
23326
|
-
Defined in: [lib/form.ts:
|
|
23728
|
+
Defined in: [lib/form.ts:4617](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4617)
|
|
23327
23729
|
|
|
23328
23730
|
隐藏 launcher 界面
|
|
23329
23731
|
|
|
@@ -23373,7 +23775,7 @@ lib/form/functions/hidePop.md
|
|
|
23373
23775
|
|
|
23374
23776
|
> **hidePop**(`pop?`): `void`
|
|
23375
23777
|
|
|
23376
|
-
Defined in: [lib/form.ts:
|
|
23778
|
+
Defined in: [lib/form.ts:3164](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3164)
|
|
23377
23779
|
|
|
23378
23780
|
隐藏正在显示中的所有 pop,或指定 pop/el
|
|
23379
23781
|
|
|
@@ -23421,7 +23823,7 @@ lib/form/functions/init.md
|
|
|
23421
23823
|
|
|
23422
23824
|
> **init**(): `void`
|
|
23423
23825
|
|
|
23424
|
-
Defined in: [lib/form.ts:
|
|
23826
|
+
Defined in: [lib/form.ts:4631](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4631)
|
|
23425
23827
|
|
|
23426
23828
|
## Returns
|
|
23427
23829
|
|
|
@@ -23469,7 +23871,7 @@ lib/form/functions/isJustPop.md
|
|
|
23469
23871
|
|
|
23470
23872
|
> **isJustPop**(`el`): `boolean`
|
|
23471
23873
|
|
|
23472
|
-
Defined in: [lib/form.ts:
|
|
23874
|
+
Defined in: [lib/form.ts:3246](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3246)
|
|
23473
23875
|
|
|
23474
23876
|
检测 pop 是不是刚刚显示的
|
|
23475
23877
|
|
|
@@ -23684,7 +24086,7 @@ lib/form/functions/prompt.md
|
|
|
23684
24086
|
|
|
23685
24087
|
> **prompt**(`current`, `opt`): `Promise`\<`string`\>
|
|
23686
24088
|
|
|
23687
|
-
Defined in: [lib/form.ts:
|
|
24089
|
+
Defined in: [lib/form.ts:4520](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4520)
|
|
23688
24090
|
|
|
23689
24091
|
显示一个输入框 dialog
|
|
23690
24092
|
|
|
@@ -23810,7 +24212,7 @@ lib/form/functions/remove.md
|
|
|
23810
24212
|
|
|
23811
24213
|
> **remove**(`formId`): `boolean`
|
|
23812
24214
|
|
|
23813
|
-
Defined in: [lib/form.ts:
|
|
24215
|
+
Defined in: [lib/form.ts:3334](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3334)
|
|
23814
24216
|
|
|
23815
24217
|
移除一个 form(关闭窗口)
|
|
23816
24218
|
|
|
@@ -23839,7 +24241,7 @@ lib/form/functions/removePanel.md
|
|
|
23839
24241
|
|
|
23840
24242
|
> **removePanel**(`id`, `vapp`, `el`): `boolean`
|
|
23841
24243
|
|
|
23842
|
-
Defined in: [lib/form.ts:
|
|
24244
|
+
Defined in: [lib/form.ts:3407](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3407)
|
|
23843
24245
|
|
|
23844
24246
|
移除 panel 挂载,通常发生在 panel 控件的 onBeforeUnmount 中
|
|
23845
24247
|
|
|
@@ -24012,7 +24414,7 @@ lib/form/functions/showLauncher.md
|
|
|
24012
24414
|
|
|
24013
24415
|
> **showLauncher**(): `void`
|
|
24014
24416
|
|
|
24015
|
-
Defined in: [lib/form.ts:
|
|
24417
|
+
Defined in: [lib/form.ts:4607](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4607)
|
|
24016
24418
|
|
|
24017
24419
|
显示 launcher 界面
|
|
24018
24420
|
|
|
@@ -24033,7 +24435,7 @@ lib/form/functions/showPop.md
|
|
|
24033
24435
|
|
|
24034
24436
|
> **showPop**(`el`, `pop`, `direction`, `opt?`): `void`
|
|
24035
24437
|
|
|
24036
|
-
Defined in: [lib/form.ts:
|
|
24438
|
+
Defined in: [lib/form.ts:3048](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3048)
|
|
24037
24439
|
|
|
24038
24440
|
获取 pop 显示出来的坐标并报系统全局记录
|
|
24039
24441
|
|
|
@@ -24077,6 +24479,12 @@ width / height 显示的 pop 定义自定义宽/高度,可省略;null,true
|
|
|
24077
24479
|
|
|
24078
24480
|
`boolean`
|
|
24079
24481
|
|
|
24482
|
+
#### overflow?
|
|
24483
|
+
|
|
24484
|
+
`"auto"` \| `"visible"`
|
|
24485
|
+
|
|
24486
|
+
滚动内容默认 auto;带外部箭头的提示框使用 visible
|
|
24487
|
+
|
|
24080
24488
|
#### size?
|
|
24081
24489
|
|
|
24082
24490
|
\{ `height?`: `number`; `width?`: `number`; \}
|
|
@@ -24277,7 +24685,7 @@ lib/form/interfaces/IAbstractPanelQsChangeShowEvent.md
|
|
|
24277
24685
|
|
|
24278
24686
|
# Interface: IAbstractPanelQsChangeShowEvent
|
|
24279
24687
|
|
|
24280
|
-
Defined in: [lib/form.ts:
|
|
24688
|
+
Defined in: [lib/form.ts:4676](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4676)
|
|
24281
24689
|
|
|
24282
24690
|
AbstractPanel qsChange 显示事件
|
|
24283
24691
|
|
|
@@ -24287,7 +24695,7 @@ AbstractPanel qsChange 显示事件
|
|
|
24287
24695
|
|
|
24288
24696
|
> **detail**: `object`
|
|
24289
24697
|
|
|
24290
|
-
Defined in: [lib/form.ts:
|
|
24698
|
+
Defined in: [lib/form.ts:4677](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4677)
|
|
24291
24699
|
|
|
24292
24700
|
#### action
|
|
24293
24701
|
|
|
@@ -24328,7 +24736,7 @@ lib/form/interfaces/IAbstractPanelShowEvent.md
|
|
|
24328
24736
|
|
|
24329
24737
|
# Interface: IAbstractPanelShowEvent
|
|
24330
24738
|
|
|
24331
|
-
Defined in: [lib/form.ts:
|
|
24739
|
+
Defined in: [lib/form.ts:4661](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4661)
|
|
24332
24740
|
|
|
24333
24741
|
AbstractPanel 显示事件
|
|
24334
24742
|
|
|
@@ -24338,7 +24746,7 @@ AbstractPanel 显示事件
|
|
|
24338
24746
|
|
|
24339
24747
|
> **detail**: `object`
|
|
24340
24748
|
|
|
24341
|
-
Defined in: [lib/form.ts:
|
|
24749
|
+
Defined in: [lib/form.ts:4662](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4662)
|
|
24342
24750
|
|
|
24343
24751
|
#### action
|
|
24344
24752
|
|
|
@@ -24379,7 +24787,7 @@ lib/form/interfaces/IFormCaptchaOptions.md
|
|
|
24379
24787
|
|
|
24380
24788
|
# Interface: IFormCaptchaOptions
|
|
24381
24789
|
|
|
24382
|
-
Defined in: [lib/form.ts:
|
|
24790
|
+
Defined in: [lib/form.ts:4806](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4806)
|
|
24383
24791
|
|
|
24384
24792
|
显示验证码选项
|
|
24385
24793
|
|
|
@@ -24389,7 +24797,7 @@ Defined in: [lib/form.ts:4797](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24389
24797
|
|
|
24390
24798
|
> **akey**: `string`
|
|
24391
24799
|
|
|
24392
|
-
Defined in: [lib/form.ts:
|
|
24800
|
+
Defined in: [lib/form.ts:4810](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4810)
|
|
24393
24801
|
|
|
24394
24802
|
验证码 key
|
|
24395
24803
|
|
|
@@ -24399,7 +24807,7 @@ Defined in: [lib/form.ts:4801](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24399
24807
|
|
|
24400
24808
|
> **factory**: `"tc"` \| `"cf"`
|
|
24401
24809
|
|
|
24402
|
-
Defined in: [lib/form.ts:
|
|
24810
|
+
Defined in: [lib/form.ts:4808](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4808)
|
|
24403
24811
|
|
|
24404
24812
|
验证码服务商
|
|
24405
24813
|
|
|
@@ -24414,7 +24822,7 @@ lib/form/interfaces/IFormConfirmOptions.md
|
|
|
24414
24822
|
|
|
24415
24823
|
# Interface: IFormConfirmOptions
|
|
24416
24824
|
|
|
24417
|
-
Defined in: [lib/form.ts:
|
|
24825
|
+
Defined in: [lib/form.ts:4799](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4799)
|
|
24418
24826
|
|
|
24419
24827
|
Confirm 选项
|
|
24420
24828
|
|
|
@@ -24424,7 +24832,7 @@ Confirm 选项
|
|
|
24424
24832
|
|
|
24425
24833
|
> `optional` **cancel?**: `boolean`
|
|
24426
24834
|
|
|
24427
|
-
Defined in: [lib/form.ts:
|
|
24835
|
+
Defined in: [lib/form.ts:4802](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4802)
|
|
24428
24836
|
|
|
24429
24837
|
***
|
|
24430
24838
|
|
|
@@ -24432,7 +24840,7 @@ Defined in: [lib/form.ts:4793](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24432
24840
|
|
|
24433
24841
|
> **content**: `string`
|
|
24434
24842
|
|
|
24435
|
-
Defined in: [lib/form.ts:
|
|
24843
|
+
Defined in: [lib/form.ts:4801](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4801)
|
|
24436
24844
|
|
|
24437
24845
|
***
|
|
24438
24846
|
|
|
@@ -24440,7 +24848,7 @@ Defined in: [lib/form.ts:4792](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24440
24848
|
|
|
24441
24849
|
> `optional` **title?**: `string`
|
|
24442
24850
|
|
|
24443
|
-
Defined in: [lib/form.ts:
|
|
24851
|
+
Defined in: [lib/form.ts:4800](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4800)
|
|
24444
24852
|
|
|
24445
24853
|
lib/form/interfaces/IFormDialogOptions.md
|
|
24446
24854
|
---
|
|
@@ -24453,7 +24861,7 @@ lib/form/interfaces/IFormDialogOptions.md
|
|
|
24453
24861
|
|
|
24454
24862
|
# Interface: IFormDialogOptions
|
|
24455
24863
|
|
|
24456
|
-
Defined in: [lib/form.ts:
|
|
24864
|
+
Defined in: [lib/form.ts:4745](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4745)
|
|
24457
24865
|
|
|
24458
24866
|
Dialog 选项
|
|
24459
24867
|
|
|
@@ -24463,7 +24871,7 @@ Dialog 选项
|
|
|
24463
24871
|
|
|
24464
24872
|
> `optional` **autoDialogResult?**: `boolean`
|
|
24465
24873
|
|
|
24466
|
-
Defined in: [lib/form.ts:
|
|
24874
|
+
Defined in: [lib/form.ts:4753](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4753)
|
|
24467
24875
|
|
|
24468
24876
|
点击按钮后是否自动将按钮文本写入 dialogResult,默认 true
|
|
24469
24877
|
|
|
@@ -24473,7 +24881,7 @@ Defined in: [lib/form.ts:4744](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24473
24881
|
|
|
24474
24882
|
> `optional` **buttons?**: `string`[]
|
|
24475
24883
|
|
|
24476
|
-
Defined in: [lib/form.ts:
|
|
24884
|
+
Defined in: [lib/form.ts:4751](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4751)
|
|
24477
24885
|
|
|
24478
24886
|
底部按钮文本列表,默认使用当前语言的确定按钮文本
|
|
24479
24887
|
|
|
@@ -24483,7 +24891,7 @@ Defined in: [lib/form.ts:4742](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24483
24891
|
|
|
24484
24892
|
> **content**: `string`
|
|
24485
24893
|
|
|
24486
|
-
Defined in: [lib/form.ts:
|
|
24894
|
+
Defined in: [lib/form.ts:4749](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4749)
|
|
24487
24895
|
|
|
24488
24896
|
dialog 内容,支持直接传布局字符串
|
|
24489
24897
|
|
|
@@ -24493,7 +24901,7 @@ dialog 内容,支持直接传布局字符串
|
|
|
24493
24901
|
|
|
24494
24902
|
> `optional` **data?**: `Record`\<`string`, `any`\>
|
|
24495
24903
|
|
|
24496
|
-
Defined in: [lib/form.ts:
|
|
24904
|
+
Defined in: [lib/form.ts:4767](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4767)
|
|
24497
24905
|
|
|
24498
24906
|
传值,需要用 data.x 读取
|
|
24499
24907
|
|
|
@@ -24503,7 +24911,7 @@ Defined in: [lib/form.ts:4758](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24503
24911
|
|
|
24504
24912
|
> `optional` **direction?**: `"v"` \| `"h"`
|
|
24505
24913
|
|
|
24506
|
-
Defined in: [lib/form.ts:
|
|
24914
|
+
Defined in: [lib/form.ts:4756](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4756)
|
|
24507
24915
|
|
|
24508
24916
|
dialog 控件内容布局方向,h 为横向,v 为纵向
|
|
24509
24917
|
|
|
@@ -24513,7 +24921,7 @@ dialog 控件内容布局方向,h 为横向,v 为纵向
|
|
|
24513
24921
|
|
|
24514
24922
|
> `optional` **gutter?**: `string` \| `number`
|
|
24515
24923
|
|
|
24516
|
-
Defined in: [lib/form.ts:
|
|
24924
|
+
Defined in: [lib/form.ts:4758](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4758)
|
|
24517
24925
|
|
|
24518
24926
|
dialog 控件内容区项目间距,会透传给 dialog 控件
|
|
24519
24927
|
|
|
@@ -24523,7 +24931,7 @@ dialog 控件内容区项目间距,会透传给 dialog 控件
|
|
|
24523
24931
|
|
|
24524
24932
|
> `optional` **height?**: `string` \| `number`
|
|
24525
24933
|
|
|
24526
|
-
Defined in: [lib/form.ts:
|
|
24934
|
+
Defined in: [lib/form.ts:4762](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4762)
|
|
24527
24935
|
|
|
24528
24936
|
dialog 控件高度,传数字时为像素值,传 fill 时代表填充可用高度
|
|
24529
24937
|
|
|
@@ -24533,7 +24941,7 @@ dialog 控件高度,传数字时为像素值,传 fill 时代表填充可用
|
|
|
24533
24941
|
|
|
24534
24942
|
> `optional` **methods?**: `Record`\<`string`, (...`param`) => `any`\>
|
|
24535
24943
|
|
|
24536
|
-
Defined in: [lib/form.ts:
|
|
24944
|
+
Defined in: [lib/form.ts:4769](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4769)
|
|
24537
24945
|
|
|
24538
24946
|
传值,需要用 methods.x 读取
|
|
24539
24947
|
|
|
@@ -24543,7 +24951,7 @@ Defined in: [lib/form.ts:4760](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24543
24951
|
|
|
24544
24952
|
> `optional` **onMounted?**: () => `void` \| `Promise`\<`void`\>
|
|
24545
24953
|
|
|
24546
|
-
Defined in: [lib/form.ts:
|
|
24954
|
+
Defined in: [lib/form.ts:4789](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4789)
|
|
24547
24955
|
|
|
24548
24956
|
窗体挂载完成事件
|
|
24549
24957
|
|
|
@@ -24557,7 +24965,7 @@ Defined in: [lib/form.ts:4780](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24557
24965
|
|
|
24558
24966
|
> `optional` **padding?**: `string` \| `boolean`
|
|
24559
24967
|
|
|
24560
|
-
Defined in: [lib/form.ts:
|
|
24968
|
+
Defined in: [lib/form.ts:4764](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4764)
|
|
24561
24969
|
|
|
24562
24970
|
dialog 控件内容区是否显示内边距,默认表现与控件自身一致
|
|
24563
24971
|
|
|
@@ -24567,7 +24975,7 @@ dialog 控件内容区是否显示内边距,默认表现与控件自身一致
|
|
|
24567
24975
|
|
|
24568
24976
|
> `optional` **path?**: `string`
|
|
24569
24977
|
|
|
24570
|
-
Defined in: [lib/form.ts:
|
|
24978
|
+
Defined in: [lib/form.ts:4773](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4773)
|
|
24571
24979
|
|
|
24572
24980
|
路径基,以 / 结束或文件路径则以文件的基路径为准,可留空
|
|
24573
24981
|
|
|
@@ -24577,7 +24985,7 @@ Defined in: [lib/form.ts:4764](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24577
24985
|
|
|
24578
24986
|
> `optional` **select?**: (`this`, `e`, `button`) => `void`
|
|
24579
24987
|
|
|
24580
|
-
Defined in: [lib/form.ts:
|
|
24988
|
+
Defined in: [lib/form.ts:4780](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4780)
|
|
24581
24989
|
|
|
24582
24990
|
点击按钮触发事件,不能用 Promise
|
|
24583
24991
|
|
|
@@ -24609,7 +25017,7 @@ Defined in: [lib/form.ts:4771](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24609
25017
|
|
|
24610
25018
|
> `optional` **style?**: `string`
|
|
24611
25019
|
|
|
24612
|
-
Defined in: [lib/form.ts:
|
|
25020
|
+
Defined in: [lib/form.ts:4771](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4771)
|
|
24613
25021
|
|
|
24614
25022
|
样式表
|
|
24615
25023
|
|
|
@@ -24619,7 +25027,7 @@ Defined in: [lib/form.ts:4762](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24619
25027
|
|
|
24620
25028
|
> `optional` **title?**: `string`
|
|
24621
25029
|
|
|
24622
|
-
Defined in: [lib/form.ts:
|
|
25030
|
+
Defined in: [lib/form.ts:4747](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4747)
|
|
24623
25031
|
|
|
24624
25032
|
dialog 窗体标题,不传则使用默认标题 dialog
|
|
24625
25033
|
|
|
@@ -24629,7 +25037,7 @@ dialog 窗体标题,不传则使用默认标题 dialog
|
|
|
24629
25037
|
|
|
24630
25038
|
> `optional` **width?**: `string` \| `number`
|
|
24631
25039
|
|
|
24632
|
-
Defined in: [lib/form.ts:
|
|
25040
|
+
Defined in: [lib/form.ts:4760](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4760)
|
|
24633
25041
|
|
|
24634
25042
|
dialog 控件宽度,传数字时为像素值,传 fill 时代表填充可用宽度
|
|
24635
25043
|
|
|
@@ -24644,7 +25052,7 @@ lib/form/interfaces/IFormDialogSelectEvent.md
|
|
|
24644
25052
|
|
|
24645
25053
|
# Interface: IFormDialogSelectEvent
|
|
24646
25054
|
|
|
24647
|
-
Defined in: [lib/form.ts:
|
|
25055
|
+
Defined in: [lib/form.ts:4792](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4792)
|
|
24648
25056
|
|
|
24649
25057
|
Custom Event
|
|
24650
25058
|
|
|
@@ -24658,7 +25066,7 @@ Custom Event
|
|
|
24658
25066
|
|
|
24659
25067
|
> **detail**: `object`
|
|
24660
25068
|
|
|
24661
|
-
Defined in: [lib/form.ts:
|
|
25069
|
+
Defined in: [lib/form.ts:4793](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4793)
|
|
24662
25070
|
|
|
24663
25071
|
#### button
|
|
24664
25072
|
|
|
@@ -24703,7 +25111,7 @@ lib/form/interfaces/IFormInfo.md
|
|
|
24703
25111
|
|
|
24704
25112
|
# Interface: IFormInfo
|
|
24705
25113
|
|
|
24706
|
-
Defined in: [lib/form.ts:
|
|
25114
|
+
Defined in: [lib/form.ts:4700](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4700)
|
|
24707
25115
|
|
|
24708
25116
|
Form 的简略情况,通常在 list 当中
|
|
24709
25117
|
|
|
@@ -24713,7 +25121,7 @@ Form 的简略情况,通常在 list 当中
|
|
|
24713
25121
|
|
|
24714
25122
|
> **focus**: `boolean`
|
|
24715
25123
|
|
|
24716
|
-
Defined in: [lib/form.ts:
|
|
25124
|
+
Defined in: [lib/form.ts:4707](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4707)
|
|
24717
25125
|
|
|
24718
25126
|
***
|
|
24719
25127
|
|
|
@@ -24721,7 +25129,7 @@ Defined in: [lib/form.ts:4698](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24721
25129
|
|
|
24722
25130
|
> **icon**: `string`
|
|
24723
25131
|
|
|
24724
|
-
Defined in: [lib/form.ts:
|
|
25132
|
+
Defined in: [lib/form.ts:4703](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4703)
|
|
24725
25133
|
|
|
24726
25134
|
***
|
|
24727
25135
|
|
|
@@ -24729,7 +25137,7 @@ Defined in: [lib/form.ts:4694](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24729
25137
|
|
|
24730
25138
|
> **show**: `boolean`
|
|
24731
25139
|
|
|
24732
|
-
Defined in: [lib/form.ts:
|
|
25140
|
+
Defined in: [lib/form.ts:4706](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4706)
|
|
24733
25141
|
|
|
24734
25142
|
***
|
|
24735
25143
|
|
|
@@ -24737,7 +25145,7 @@ Defined in: [lib/form.ts:4697](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24737
25145
|
|
|
24738
25146
|
> **showInSystemTask**: `boolean`
|
|
24739
25147
|
|
|
24740
|
-
Defined in: [lib/form.ts:
|
|
25148
|
+
Defined in: [lib/form.ts:4708](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4708)
|
|
24741
25149
|
|
|
24742
25150
|
***
|
|
24743
25151
|
|
|
@@ -24745,7 +25153,7 @@ Defined in: [lib/form.ts:4699](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24745
25153
|
|
|
24746
25154
|
> **stateMax**: `boolean`
|
|
24747
25155
|
|
|
24748
|
-
Defined in: [lib/form.ts:
|
|
25156
|
+
Defined in: [lib/form.ts:4704](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4704)
|
|
24749
25157
|
|
|
24750
25158
|
***
|
|
24751
25159
|
|
|
@@ -24753,7 +25161,7 @@ Defined in: [lib/form.ts:4695](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24753
25161
|
|
|
24754
25162
|
> **stateMin**: `boolean`
|
|
24755
25163
|
|
|
24756
|
-
Defined in: [lib/form.ts:
|
|
25164
|
+
Defined in: [lib/form.ts:4705](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4705)
|
|
24757
25165
|
|
|
24758
25166
|
***
|
|
24759
25167
|
|
|
@@ -24761,7 +25169,7 @@ Defined in: [lib/form.ts:4696](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24761
25169
|
|
|
24762
25170
|
> **taskId**: `string`
|
|
24763
25171
|
|
|
24764
|
-
Defined in: [lib/form.ts:
|
|
25172
|
+
Defined in: [lib/form.ts:4701](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4701)
|
|
24765
25173
|
|
|
24766
25174
|
***
|
|
24767
25175
|
|
|
@@ -24769,7 +25177,7 @@ Defined in: [lib/form.ts:4692](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24769
25177
|
|
|
24770
25178
|
> **title**: `string`
|
|
24771
25179
|
|
|
24772
|
-
Defined in: [lib/form.ts:
|
|
25180
|
+
Defined in: [lib/form.ts:4702](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4702)
|
|
24773
25181
|
|
|
24774
25182
|
lib/form/interfaces/IForm.md
|
|
24775
25183
|
---
|
|
@@ -24782,7 +25190,7 @@ lib/form/interfaces/IForm.md
|
|
|
24782
25190
|
|
|
24783
25191
|
# Interface: IForm
|
|
24784
25192
|
|
|
24785
|
-
Defined in: [lib/form.ts:
|
|
25193
|
+
Defined in: [lib/form.ts:4691](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4691)
|
|
24786
25194
|
|
|
24787
25195
|
运行时 task 中的 form 对象
|
|
24788
25196
|
|
|
@@ -24792,7 +25200,7 @@ Defined in: [lib/form.ts:4682](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24792
25200
|
|
|
24793
25201
|
> **closed**: `boolean`
|
|
24794
25202
|
|
|
24795
|
-
Defined in: [lib/form.ts:
|
|
25203
|
+
Defined in: [lib/form.ts:4696](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4696)
|
|
24796
25204
|
|
|
24797
25205
|
是否已经执行过了关闭窗体方法,此处加判断为了防止重复执行 close 导致的 bug
|
|
24798
25206
|
|
|
@@ -24802,7 +25210,7 @@ Defined in: [lib/form.ts:4687](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24802
25210
|
|
|
24803
25211
|
> **id**: `string`
|
|
24804
25212
|
|
|
24805
|
-
Defined in: [lib/form.ts:
|
|
25213
|
+
Defined in: [lib/form.ts:4692](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4692)
|
|
24806
25214
|
|
|
24807
25215
|
***
|
|
24808
25216
|
|
|
@@ -24810,7 +25218,7 @@ Defined in: [lib/form.ts:4683](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24810
25218
|
|
|
24811
25219
|
> **vapp**: [`IVApp`](../../core/interfaces/IVApp.md)
|
|
24812
25220
|
|
|
24813
|
-
Defined in: [lib/form.ts:
|
|
25221
|
+
Defined in: [lib/form.ts:4693](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4693)
|
|
24814
25222
|
|
|
24815
25223
|
***
|
|
24816
25224
|
|
|
@@ -24818,7 +25226,7 @@ Defined in: [lib/form.ts:4684](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24818
25226
|
|
|
24819
25227
|
> **vroot**: [`IVue`](../../core/interfaces/IVue.md)
|
|
24820
25228
|
|
|
24821
|
-
Defined in: [lib/form.ts:
|
|
25229
|
+
Defined in: [lib/form.ts:4694](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4694)
|
|
24822
25230
|
|
|
24823
25231
|
lib/form/interfaces/IFormPromptOptions.md
|
|
24824
25232
|
---
|
|
@@ -24831,7 +25239,7 @@ lib/form/interfaces/IFormPromptOptions.md
|
|
|
24831
25239
|
|
|
24832
25240
|
# Interface: IFormPromptOptions
|
|
24833
25241
|
|
|
24834
|
-
Defined in: [lib/form.ts:
|
|
25242
|
+
Defined in: [lib/form.ts:4814](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4814)
|
|
24835
25243
|
|
|
24836
25244
|
Prompt 选项
|
|
24837
25245
|
|
|
@@ -24841,7 +25249,7 @@ Prompt 选项
|
|
|
24841
25249
|
|
|
24842
25250
|
> `optional` **cancel?**: `boolean`
|
|
24843
25251
|
|
|
24844
|
-
Defined in: [lib/form.ts:
|
|
25252
|
+
Defined in: [lib/form.ts:4822](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4822)
|
|
24845
25253
|
|
|
24846
25254
|
是否显示取消按钮,默认显示
|
|
24847
25255
|
|
|
@@ -24851,7 +25259,7 @@ Defined in: [lib/form.ts:4813](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24851
25259
|
|
|
24852
25260
|
> **content**: `string`
|
|
24853
25261
|
|
|
24854
|
-
Defined in: [lib/form.ts:
|
|
25262
|
+
Defined in: [lib/form.ts:4818](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4818)
|
|
24855
25263
|
|
|
24856
25264
|
内容说明
|
|
24857
25265
|
|
|
@@ -24861,7 +25269,7 @@ Defined in: [lib/form.ts:4809](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24861
25269
|
|
|
24862
25270
|
> `optional` **select?**: (`this`, `e`, `button`) => `void`
|
|
24863
25271
|
|
|
24864
|
-
Defined in: [lib/form.ts:
|
|
25272
|
+
Defined in: [lib/form.ts:4829](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4829)
|
|
24865
25273
|
|
|
24866
25274
|
点击按钮触发事件
|
|
24867
25275
|
|
|
@@ -24893,7 +25301,7 @@ true 代表确定,false 代表取消
|
|
|
24893
25301
|
|
|
24894
25302
|
> `optional` **text?**: `string`
|
|
24895
25303
|
|
|
24896
|
-
Defined in: [lib/form.ts:
|
|
25304
|
+
Defined in: [lib/form.ts:4820](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4820)
|
|
24897
25305
|
|
|
24898
25306
|
文本默认值
|
|
24899
25307
|
|
|
@@ -24903,7 +25311,7 @@ Defined in: [lib/form.ts:4811](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24903
25311
|
|
|
24904
25312
|
> `optional` **title?**: `string`
|
|
24905
25313
|
|
|
24906
|
-
Defined in: [lib/form.ts:
|
|
25314
|
+
Defined in: [lib/form.ts:4816](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4816)
|
|
24907
25315
|
|
|
24908
25316
|
标题
|
|
24909
25317
|
|
|
@@ -24918,7 +25326,7 @@ lib/form/interfaces/IFormPromptSelectEvent.md
|
|
|
24918
25326
|
|
|
24919
25327
|
# Interface: IFormPromptSelectEvent
|
|
24920
25328
|
|
|
24921
|
-
Defined in: [lib/form.ts:
|
|
25329
|
+
Defined in: [lib/form.ts:4836](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4836)
|
|
24922
25330
|
|
|
24923
25331
|
Custom Event
|
|
24924
25332
|
|
|
@@ -24932,7 +25340,7 @@ Custom Event
|
|
|
24932
25340
|
|
|
24933
25341
|
> **detail**: `object`
|
|
24934
25342
|
|
|
24935
|
-
Defined in: [lib/form.ts:
|
|
25343
|
+
Defined in: [lib/form.ts:4837](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4837)
|
|
24936
25344
|
|
|
24937
25345
|
#### button
|
|
24938
25346
|
|
|
@@ -24983,7 +25391,7 @@ lib/form/interfaces/IMoveDragOptions.md
|
|
|
24983
25391
|
|
|
24984
25392
|
# Interface: IMoveDragOptions
|
|
24985
25393
|
|
|
24986
|
-
Defined in: [lib/form.ts:
|
|
25394
|
+
Defined in: [lib/form.ts:4712](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4712)
|
|
24987
25395
|
|
|
24988
25396
|
移动 drag 到新位置函数的选项
|
|
24989
25397
|
|
|
@@ -24993,7 +25401,7 @@ Defined in: [lib/form.ts:4703](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24993
25401
|
|
|
24994
25402
|
> `optional` **height?**: `number`
|
|
24995
25403
|
|
|
24996
|
-
Defined in: [lib/form.ts:
|
|
25404
|
+
Defined in: [lib/form.ts:4716](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4716)
|
|
24997
25405
|
|
|
24998
25406
|
***
|
|
24999
25407
|
|
|
@@ -25001,7 +25409,7 @@ Defined in: [lib/form.ts:4707](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25001
25409
|
|
|
25002
25410
|
> `optional` **icon?**: `boolean`
|
|
25003
25411
|
|
|
25004
|
-
Defined in: [lib/form.ts:
|
|
25412
|
+
Defined in: [lib/form.ts:4717](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4717)
|
|
25005
25413
|
|
|
25006
25414
|
***
|
|
25007
25415
|
|
|
@@ -25009,7 +25417,7 @@ Defined in: [lib/form.ts:4708](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25009
25417
|
|
|
25010
25418
|
> `optional` **left?**: `number`
|
|
25011
25419
|
|
|
25012
|
-
Defined in: [lib/form.ts:
|
|
25420
|
+
Defined in: [lib/form.ts:4714](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4714)
|
|
25013
25421
|
|
|
25014
25422
|
***
|
|
25015
25423
|
|
|
@@ -25017,7 +25425,7 @@ Defined in: [lib/form.ts:4705](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25017
25425
|
|
|
25018
25426
|
> `optional` **top?**: `number`
|
|
25019
25427
|
|
|
25020
|
-
Defined in: [lib/form.ts:
|
|
25428
|
+
Defined in: [lib/form.ts:4713](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4713)
|
|
25021
25429
|
|
|
25022
25430
|
***
|
|
25023
25431
|
|
|
@@ -25025,7 +25433,7 @@ Defined in: [lib/form.ts:4704](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25025
25433
|
|
|
25026
25434
|
> `optional` **width?**: `number`
|
|
25027
25435
|
|
|
25028
|
-
Defined in: [lib/form.ts:
|
|
25436
|
+
Defined in: [lib/form.ts:4715](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4715)
|
|
25029
25437
|
|
|
25030
25438
|
lib/form/interfaces/INotifyContentOptions.md
|
|
25031
25439
|
---
|
|
@@ -25038,7 +25446,7 @@ lib/form/interfaces/INotifyContentOptions.md
|
|
|
25038
25446
|
|
|
25039
25447
|
# Interface: INotifyContentOptions
|
|
25040
25448
|
|
|
25041
|
-
Defined in: [lib/form.ts:
|
|
25449
|
+
Defined in: [lib/form.ts:4734](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4734)
|
|
25042
25450
|
|
|
25043
25451
|
notify 信息框的修改选项
|
|
25044
25452
|
|
|
@@ -25048,7 +25456,7 @@ notify 信息框的修改选项
|
|
|
25048
25456
|
|
|
25049
25457
|
> `optional` **content?**: `string`
|
|
25050
25458
|
|
|
25051
|
-
Defined in: [lib/form.ts:
|
|
25459
|
+
Defined in: [lib/form.ts:4736](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4736)
|
|
25052
25460
|
|
|
25053
25461
|
***
|
|
25054
25462
|
|
|
@@ -25056,7 +25464,7 @@ Defined in: [lib/form.ts:4727](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25056
25464
|
|
|
25057
25465
|
> `optional` **note?**: `string`
|
|
25058
25466
|
|
|
25059
|
-
Defined in: [lib/form.ts:
|
|
25467
|
+
Defined in: [lib/form.ts:4737](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4737)
|
|
25060
25468
|
|
|
25061
25469
|
***
|
|
25062
25470
|
|
|
@@ -25064,7 +25472,7 @@ Defined in: [lib/form.ts:4728](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25064
25472
|
|
|
25065
25473
|
> `optional` **progress?**: `number`
|
|
25066
25474
|
|
|
25067
|
-
Defined in: [lib/form.ts:
|
|
25475
|
+
Defined in: [lib/form.ts:4739](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4739)
|
|
25068
25476
|
|
|
25069
25477
|
可顺便修改进度
|
|
25070
25478
|
|
|
@@ -25074,7 +25482,7 @@ Defined in: [lib/form.ts:4730](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25074
25482
|
|
|
25075
25483
|
> `optional` **timeout?**: `number`
|
|
25076
25484
|
|
|
25077
|
-
Defined in: [lib/form.ts:
|
|
25485
|
+
Defined in: [lib/form.ts:4741](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4741)
|
|
25078
25486
|
|
|
25079
25487
|
设置后将在 x 毫秒后隐藏,这不会大于创建时的设置的总时长
|
|
25080
25488
|
|
|
@@ -25084,7 +25492,7 @@ Defined in: [lib/form.ts:4732](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25084
25492
|
|
|
25085
25493
|
> `optional` **title?**: `string`
|
|
25086
25494
|
|
|
25087
|
-
Defined in: [lib/form.ts:
|
|
25495
|
+
Defined in: [lib/form.ts:4735](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4735)
|
|
25088
25496
|
|
|
25089
25497
|
lib/form/interfaces/INotifyOptions.md
|
|
25090
25498
|
---
|
|
@@ -25097,7 +25505,7 @@ lib/form/interfaces/INotifyOptions.md
|
|
|
25097
25505
|
|
|
25098
25506
|
# Interface: INotifyOptions
|
|
25099
25507
|
|
|
25100
|
-
Defined in: [lib/form.ts:
|
|
25508
|
+
Defined in: [lib/form.ts:4721](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4721)
|
|
25101
25509
|
|
|
25102
25510
|
弹出 notify 信息框的选项
|
|
25103
25511
|
|
|
@@ -25107,7 +25515,7 @@ Defined in: [lib/form.ts:4712](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25107
25515
|
|
|
25108
25516
|
> `optional` **content?**: `string`
|
|
25109
25517
|
|
|
25110
|
-
Defined in: [lib/form.ts:
|
|
25518
|
+
Defined in: [lib/form.ts:4724](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4724)
|
|
25111
25519
|
|
|
25112
25520
|
正文
|
|
25113
25521
|
|
|
@@ -25117,7 +25525,7 @@ Defined in: [lib/form.ts:4715](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25117
25525
|
|
|
25118
25526
|
> `optional` **icon?**: `string` \| `null`
|
|
25119
25527
|
|
|
25120
|
-
Defined in: [lib/form.ts:
|
|
25528
|
+
Defined in: [lib/form.ts:4727](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4727)
|
|
25121
25529
|
|
|
25122
25530
|
***
|
|
25123
25531
|
|
|
@@ -25125,7 +25533,7 @@ Defined in: [lib/form.ts:4718](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25125
25533
|
|
|
25126
25534
|
> `optional` **note?**: `string`
|
|
25127
25535
|
|
|
25128
|
-
Defined in: [lib/form.ts:
|
|
25536
|
+
Defined in: [lib/form.ts:4726](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4726)
|
|
25129
25537
|
|
|
25130
25538
|
浅色描述
|
|
25131
25539
|
|
|
@@ -25135,7 +25543,7 @@ Defined in: [lib/form.ts:4717](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25135
25543
|
|
|
25136
25544
|
> `optional` **progress?**: `boolean`
|
|
25137
25545
|
|
|
25138
|
-
Defined in: [lib/form.ts:
|
|
25546
|
+
Defined in: [lib/form.ts:4730](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4730)
|
|
25139
25547
|
|
|
25140
25548
|
***
|
|
25141
25549
|
|
|
@@ -25143,7 +25551,7 @@ Defined in: [lib/form.ts:4721](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25143
25551
|
|
|
25144
25552
|
> `optional` **timeout?**: `number`
|
|
25145
25553
|
|
|
25146
|
-
Defined in: [lib/form.ts:
|
|
25554
|
+
Defined in: [lib/form.ts:4728](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4728)
|
|
25147
25555
|
|
|
25148
25556
|
***
|
|
25149
25557
|
|
|
@@ -25151,7 +25559,7 @@ Defined in: [lib/form.ts:4719](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25151
25559
|
|
|
25152
25560
|
> `optional` **title?**: `string`
|
|
25153
25561
|
|
|
25154
|
-
Defined in: [lib/form.ts:
|
|
25562
|
+
Defined in: [lib/form.ts:4722](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4722)
|
|
25155
25563
|
|
|
25156
25564
|
***
|
|
25157
25565
|
|
|
@@ -25159,7 +25567,7 @@ Defined in: [lib/form.ts:4713](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25159
25567
|
|
|
25160
25568
|
> `optional` **type?**: `"progress"` \| `"info"` \| `"warning"` \| `"danger"` \| `"primary"`
|
|
25161
25569
|
|
|
25162
|
-
Defined in: [lib/form.ts:
|
|
25570
|
+
Defined in: [lib/form.ts:4729](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4729)
|
|
25163
25571
|
|
|
25164
25572
|
lib/form/variables/activePanels.md
|
|
25165
25573
|
---
|