clickgo 5.8.3 → 5.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/demo.cga +0 -0
- package/dist/clickgo.d.ts +4 -0
- package/dist/control/box.cgc +0 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/echarts.cgc +0 -0
- package/dist/control/fabric.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/core.d.ts +2 -0
- package/doc/clickgo-rag.md +316 -180
- package/package.json +2 -1
package/doc/clickgo-rag.md
CHANGED
|
@@ -1492,6 +1492,28 @@ cell 之间的间距,默认 0。
|
|
|
1492
1492
|
</desc>
|
|
1493
1493
|
```
|
|
1494
1494
|
|
|
1495
|
+
## desc-body
|
|
1496
|
+
---
|
|
1497
|
+
|
|
1498
|
+
描述列表主体渲染组件。
|
|
1499
|
+
|
|
1500
|
+
### 样式
|
|
1501
|
+
|
|
1502
|
+
使用 `tbody` 标签进行渲染,主要用于描述列表的数据行包装。
|
|
1503
|
+
|
|
1504
|
+
### 示例
|
|
1505
|
+
|
|
1506
|
+
```xml
|
|
1507
|
+
<desc>
|
|
1508
|
+
<desc-body>
|
|
1509
|
+
<desc-row>
|
|
1510
|
+
<desc-cell>Data 1</desc-cell>
|
|
1511
|
+
<desc-cell>Data 2</desc-cell>
|
|
1512
|
+
</desc-row>
|
|
1513
|
+
</desc-body>
|
|
1514
|
+
</desc>
|
|
1515
|
+
```
|
|
1516
|
+
|
|
1495
1517
|
## desc-cell
|
|
1496
1518
|
---
|
|
1497
1519
|
|
|
@@ -1552,6 +1574,28 @@ cell 之间的间距,默认 0。
|
|
|
1552
1574
|
<desc-head>Title</desc-head>
|
|
1553
1575
|
```
|
|
1554
1576
|
|
|
1577
|
+
## desc-header
|
|
1578
|
+
---
|
|
1579
|
+
|
|
1580
|
+
描述列表头部渲染组件。
|
|
1581
|
+
|
|
1582
|
+
### 样式
|
|
1583
|
+
|
|
1584
|
+
使用 `thead` 标签进行渲染,主要用于描述列表的标题行包装。
|
|
1585
|
+
|
|
1586
|
+
### 示例
|
|
1587
|
+
|
|
1588
|
+
```xml
|
|
1589
|
+
<desc>
|
|
1590
|
+
<desc-header>
|
|
1591
|
+
<desc-row>
|
|
1592
|
+
<desc-head>Column 1</desc-head>
|
|
1593
|
+
<desc-head>Column 2</desc-head>
|
|
1594
|
+
</desc-row>
|
|
1595
|
+
</desc-header>
|
|
1596
|
+
</desc>
|
|
1597
|
+
```
|
|
1598
|
+
|
|
1555
1599
|
## desc-row
|
|
1556
1600
|
---
|
|
1557
1601
|
|
|
@@ -1844,6 +1888,46 @@ ECharts 配置选项。
|
|
|
1844
1888
|
<empty :tip="true"></empty>
|
|
1845
1889
|
```
|
|
1846
1890
|
|
|
1891
|
+
## fabric
|
|
1892
|
+
---
|
|
1893
|
+
|
|
1894
|
+
封装了 fabric.js 画布,可以对画布上元素进行拖拽、旋转、缩放。
|
|
1895
|
+
|
|
1896
|
+
### 参数
|
|
1897
|
+
|
|
1898
|
+
#### disabled
|
|
1899
|
+
|
|
1900
|
+
`boolean` | `string`
|
|
1901
|
+
|
|
1902
|
+
禁用画布交互
|
|
1903
|
+
|
|
1904
|
+
### 事件
|
|
1905
|
+
|
|
1906
|
+
#### init
|
|
1907
|
+
|
|
1908
|
+
`(canvas: any) => void`
|
|
1909
|
+
|
|
1910
|
+
加载成功并初始化 fabric js 的 canvas 对象后触发,利用此抛出对象可执行原生的所有绘图和操作方法。
|
|
1911
|
+
|
|
1912
|
+
### 方法
|
|
1913
|
+
|
|
1914
|
+
无
|
|
1915
|
+
|
|
1916
|
+
### 插槽
|
|
1917
|
+
|
|
1918
|
+
无
|
|
1919
|
+
|
|
1920
|
+
### 样式
|
|
1921
|
+
|
|
1922
|
+
采用相对定位布局。内部包含 canvas 绘图区域,其宽高会随外部容器自动调整。在引擎加载期间,画布会显示 loading 过渡状态;若引擎模块获取失败,则会显示错误提示信息。
|
|
1923
|
+
|
|
1924
|
+
## 示例
|
|
1925
|
+
|
|
1926
|
+
```xml
|
|
1927
|
+
<fabric @init="init"></fabric>
|
|
1928
|
+
```
|
|
1929
|
+
|
|
1930
|
+
|
|
1847
1931
|
## file
|
|
1848
1932
|
---
|
|
1849
1933
|
|
|
@@ -5694,9 +5778,33 @@ SVG 内容或 URL 地址。
|
|
|
5694
5778
|
|
|
5695
5779
|
是否显示关闭按钮,默认 false。
|
|
5696
5780
|
|
|
5781
|
+
#### before
|
|
5782
|
+
|
|
5783
|
+
`boolean` | `string`
|
|
5784
|
+
|
|
5785
|
+
是否在选项卡内显示 before 插槽,默认 true。
|
|
5786
|
+
|
|
5787
|
+
#### prepend
|
|
5788
|
+
|
|
5789
|
+
`boolean` | `string`
|
|
5790
|
+
|
|
5791
|
+
是否在选项卡内显示 prepend 插槽,默认 true。
|
|
5792
|
+
|
|
5793
|
+
#### append
|
|
5794
|
+
|
|
5795
|
+
`boolean` | `string`
|
|
5796
|
+
|
|
5797
|
+
是否在选项卡内显示 append 插槽,默认 true。
|
|
5798
|
+
|
|
5799
|
+
#### after
|
|
5800
|
+
|
|
5801
|
+
`boolean` | `string`
|
|
5802
|
+
|
|
5803
|
+
是否在选项卡内显示 after 插槽,默认 true。
|
|
5804
|
+
|
|
5697
5805
|
#### tabs
|
|
5698
5806
|
|
|
5699
|
-
`Array<string | { label?: string; value?: string; drag?: boolean; close?: boolean; }>`
|
|
5807
|
+
`Array<string | { label?: string; value?: string; drag?: boolean; close?: boolean; before?: boolean; prepend?: boolean; append?: boolean; after?: boolean; }>`
|
|
5700
5808
|
|
|
5701
5809
|
双向绑定,选项卡列表。
|
|
5702
5810
|
|
|
@@ -7209,7 +7317,7 @@ clickgo/classes/AbstractBoot.md
|
|
|
7209
7317
|
|
|
7210
7318
|
# Abstract Class: AbstractBoot
|
|
7211
7319
|
|
|
7212
|
-
Defined in: [clickgo.ts:
|
|
7320
|
+
Defined in: [clickgo.ts:165](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L165)
|
|
7213
7321
|
|
|
7214
7322
|
全局类
|
|
7215
7323
|
|
|
@@ -7219,7 +7327,7 @@ Defined in: [clickgo.ts:161](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7219
7327
|
|
|
7220
7328
|
> **new AbstractBoot**(`opt?`): `AbstractBoot`
|
|
7221
7329
|
|
|
7222
|
-
Defined in: [clickgo.ts:
|
|
7330
|
+
Defined in: [clickgo.ts:185](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L185)
|
|
7223
7331
|
|
|
7224
7332
|
#### Parameters
|
|
7225
7333
|
|
|
@@ -7239,7 +7347,7 @@ Defined in: [clickgo.ts:181](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7239
7347
|
|
|
7240
7348
|
> `protected` **\_sysId**: `string` = `''`
|
|
7241
7349
|
|
|
7242
|
-
Defined in: [clickgo.ts:
|
|
7350
|
+
Defined in: [clickgo.ts:171](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L171)
|
|
7243
7351
|
|
|
7244
7352
|
切勿传给 App
|
|
7245
7353
|
|
|
@@ -7249,7 +7357,7 @@ Defined in: [clickgo.ts:167](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7249
7357
|
|
|
7250
7358
|
> **isDebug**(): `boolean`
|
|
7251
7359
|
|
|
7252
|
-
Defined in: [clickgo.ts:
|
|
7360
|
+
Defined in: [clickgo.ts:181](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L181)
|
|
7253
7361
|
|
|
7254
7362
|
判断当前是否是 debug 模式
|
|
7255
7363
|
|
|
@@ -7263,7 +7371,7 @@ Defined in: [clickgo.ts:177](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7263
7371
|
|
|
7264
7372
|
> `abstract` **main**(): `void` \| `Promise`\<`void`\>
|
|
7265
7373
|
|
|
7266
|
-
Defined in: [clickgo.ts:
|
|
7374
|
+
Defined in: [clickgo.ts:194](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L194)
|
|
7267
7375
|
|
|
7268
7376
|
入口方法
|
|
7269
7377
|
|
|
@@ -7277,7 +7385,7 @@ Defined in: [clickgo.ts:190](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7277
7385
|
|
|
7278
7386
|
> **onConfigChanged**\<`T`, `TK`\>(`n`, `v`): `void` \| `Promise`\<`void`\>
|
|
7279
7387
|
|
|
7280
|
-
Defined in: [clickgo.ts:
|
|
7388
|
+
Defined in: [clickgo.ts:209](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L209)
|
|
7281
7389
|
|
|
7282
7390
|
系统配置变更事件
|
|
7283
7391
|
|
|
@@ -7311,7 +7419,7 @@ Defined in: [clickgo.ts:205](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7311
7419
|
|
|
7312
7420
|
> **onError**(`taskId`, `formId`, `error`, `info`): `void` \| `Promise`\<`void`\>
|
|
7313
7421
|
|
|
7314
|
-
Defined in: [clickgo.ts:
|
|
7422
|
+
Defined in: [clickgo.ts:197](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L197)
|
|
7315
7423
|
|
|
7316
7424
|
全局错误事件
|
|
7317
7425
|
|
|
@@ -7343,7 +7451,7 @@ Defined in: [clickgo.ts:193](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7343
7451
|
|
|
7344
7452
|
> **onFormBlurred**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
7345
7453
|
|
|
7346
|
-
Defined in: [clickgo.ts:
|
|
7454
|
+
Defined in: [clickgo.ts:265](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L265)
|
|
7347
7455
|
|
|
7348
7456
|
窗体丢失焦点事件
|
|
7349
7457
|
|
|
@@ -7367,7 +7475,7 @@ Defined in: [clickgo.ts:261](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7367
7475
|
|
|
7368
7476
|
> **onFormCreated**(`taskId`, `formId`, `title`, `icon`, `showInSystemTask`): `void` \| `Promise`\<`void`\>
|
|
7369
7477
|
|
|
7370
|
-
Defined in: [clickgo.ts:
|
|
7478
|
+
Defined in: [clickgo.ts:215](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L215)
|
|
7371
7479
|
|
|
7372
7480
|
窗体创建事件
|
|
7373
7481
|
|
|
@@ -7403,7 +7511,7 @@ Defined in: [clickgo.ts:211](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7403
7511
|
|
|
7404
7512
|
> **onFormFlash**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
7405
7513
|
|
|
7406
|
-
Defined in: [clickgo.ts:
|
|
7514
|
+
Defined in: [clickgo.ts:271](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L271)
|
|
7407
7515
|
|
|
7408
7516
|
窗体闪烁事件
|
|
7409
7517
|
|
|
@@ -7427,7 +7535,7 @@ Defined in: [clickgo.ts:267](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7427
7535
|
|
|
7428
7536
|
> **onFormFocused**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
7429
7537
|
|
|
7430
|
-
Defined in: [clickgo.ts:
|
|
7538
|
+
Defined in: [clickgo.ts:259](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L259)
|
|
7431
7539
|
|
|
7432
7540
|
窗体获得焦点事件
|
|
7433
7541
|
|
|
@@ -7451,7 +7559,7 @@ Defined in: [clickgo.ts:255](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7451
7559
|
|
|
7452
7560
|
> **onFormHashChange**(`taskId`, `formId`, `value`, `data`): `void` \| `Promise`\<`void`\>
|
|
7453
7561
|
|
|
7454
|
-
Defined in: [clickgo.ts:
|
|
7562
|
+
Defined in: [clickgo.ts:283](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L283)
|
|
7455
7563
|
|
|
7456
7564
|
窗体的 formHash 改变事件
|
|
7457
7565
|
|
|
@@ -7483,7 +7591,7 @@ Defined in: [clickgo.ts:279](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7483
7591
|
|
|
7484
7592
|
> **onFormIconChanged**(`taskId`, `formId`, `icon`): `void` \| `Promise`\<`void`\>
|
|
7485
7593
|
|
|
7486
|
-
Defined in: [clickgo.ts:
|
|
7594
|
+
Defined in: [clickgo.ts:235](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L235)
|
|
7487
7595
|
|
|
7488
7596
|
窗体图标改变事件
|
|
7489
7597
|
|
|
@@ -7511,7 +7619,7 @@ Defined in: [clickgo.ts:231](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7511
7619
|
|
|
7512
7620
|
> **onFormRemoved**(`taskId`, `formId`, `title`, `icon`): `void` \| `Promise`\<`void`\>
|
|
7513
7621
|
|
|
7514
|
-
Defined in: [clickgo.ts:
|
|
7622
|
+
Defined in: [clickgo.ts:223](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L223)
|
|
7515
7623
|
|
|
7516
7624
|
窗体销毁事件
|
|
7517
7625
|
|
|
@@ -7543,7 +7651,7 @@ Defined in: [clickgo.ts:219](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7543
7651
|
|
|
7544
7652
|
> **onFormShowChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
7545
7653
|
|
|
7546
|
-
Defined in: [clickgo.ts:
|
|
7654
|
+
Defined in: [clickgo.ts:253](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L253)
|
|
7547
7655
|
|
|
7548
7656
|
窗体显示状态改变事件
|
|
7549
7657
|
|
|
@@ -7571,7 +7679,7 @@ Defined in: [clickgo.ts:249](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7571
7679
|
|
|
7572
7680
|
> **onFormShowInSystemTaskChange**(`taskId`, `formId`, `value`): `void` \| `Promise`\<`void`\>
|
|
7573
7681
|
|
|
7574
|
-
Defined in: [clickgo.ts:
|
|
7682
|
+
Defined in: [clickgo.ts:277](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L277)
|
|
7575
7683
|
|
|
7576
7684
|
窗体是否显示在任务栏属性改变事件
|
|
7577
7685
|
|
|
@@ -7599,7 +7707,7 @@ Defined in: [clickgo.ts:273](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7599
7707
|
|
|
7600
7708
|
> **onFormStateMaxChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
7601
7709
|
|
|
7602
|
-
Defined in: [clickgo.ts:
|
|
7710
|
+
Defined in: [clickgo.ts:247](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L247)
|
|
7603
7711
|
|
|
7604
7712
|
窗体最大化状态改变事件
|
|
7605
7713
|
|
|
@@ -7627,7 +7735,7 @@ Defined in: [clickgo.ts:243](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7627
7735
|
|
|
7628
7736
|
> **onFormStateMinChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
7629
7737
|
|
|
7630
|
-
Defined in: [clickgo.ts:
|
|
7738
|
+
Defined in: [clickgo.ts:241](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L241)
|
|
7631
7739
|
|
|
7632
7740
|
窗体最小化状态改变事件
|
|
7633
7741
|
|
|
@@ -7655,7 +7763,7 @@ Defined in: [clickgo.ts:237](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7655
7763
|
|
|
7656
7764
|
> **onFormTitleChanged**(`taskId`, `formId`, `title`): `void` \| `Promise`\<`void`\>
|
|
7657
7765
|
|
|
7658
|
-
Defined in: [clickgo.ts:
|
|
7766
|
+
Defined in: [clickgo.ts:229](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L229)
|
|
7659
7767
|
|
|
7660
7768
|
窗体标题改变事件
|
|
7661
7769
|
|
|
@@ -7683,7 +7791,7 @@ Defined in: [clickgo.ts:225](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7683
7791
|
|
|
7684
7792
|
> **onHashChanged**(`hash`): `void` \| `Promise`\<`void`\>
|
|
7685
7793
|
|
|
7686
|
-
Defined in: [clickgo.ts:
|
|
7794
|
+
Defined in: [clickgo.ts:309](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L309)
|
|
7687
7795
|
|
|
7688
7796
|
location hash 改变事件
|
|
7689
7797
|
|
|
@@ -7703,7 +7811,7 @@ location hash 改变事件
|
|
|
7703
7811
|
|
|
7704
7812
|
> **onKeydown**(`e`): `void` \| `Promise`\<`void`\>
|
|
7705
7813
|
|
|
7706
|
-
Defined in: [clickgo.ts:
|
|
7814
|
+
Defined in: [clickgo.ts:315](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L315)
|
|
7707
7815
|
|
|
7708
7816
|
键盘按下事件
|
|
7709
7817
|
|
|
@@ -7723,7 +7831,7 @@ Defined in: [clickgo.ts:311](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7723
7831
|
|
|
7724
7832
|
> **onKeyup**(`e`): `void` \| `Promise`\<`void`\>
|
|
7725
7833
|
|
|
7726
|
-
Defined in: [clickgo.ts:
|
|
7834
|
+
Defined in: [clickgo.ts:321](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L321)
|
|
7727
7835
|
|
|
7728
7836
|
键盘弹起事件
|
|
7729
7837
|
|
|
@@ -7743,7 +7851,7 @@ Defined in: [clickgo.ts:317](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7743
7851
|
|
|
7744
7852
|
> **onLauncherFolderNameChanged**(`id`, `name`): `void` \| `Promise`\<`void`\>
|
|
7745
7853
|
|
|
7746
|
-
Defined in: [clickgo.ts:
|
|
7854
|
+
Defined in: [clickgo.ts:303](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L303)
|
|
7747
7855
|
|
|
7748
7856
|
launcher 文件夹名称修改事件
|
|
7749
7857
|
|
|
@@ -7767,7 +7875,7 @@ launcher 文件夹名称修改事件
|
|
|
7767
7875
|
|
|
7768
7876
|
> **onRuntimeFileLoad**(`url`): `void` \| `Promise`\<`void`\>
|
|
7769
7877
|
|
|
7770
|
-
Defined in: [clickgo.ts:
|
|
7878
|
+
Defined in: [clickgo.ts:327](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L327)
|
|
7771
7879
|
|
|
7772
7880
|
环境文件准备加载时的事件
|
|
7773
7881
|
|
|
@@ -7787,7 +7895,7 @@ Defined in: [clickgo.ts:323](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7787
7895
|
|
|
7788
7896
|
> **onRuntimeFileLoaded**(`url`, `state`): `void` \| `Promise`\<`void`\>
|
|
7789
7897
|
|
|
7790
|
-
Defined in: [clickgo.ts:
|
|
7898
|
+
Defined in: [clickgo.ts:333](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L333)
|
|
7791
7899
|
|
|
7792
7900
|
环境文件加载完成的事件
|
|
7793
7901
|
|
|
@@ -7811,7 +7919,7 @@ Defined in: [clickgo.ts:329](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7811
7919
|
|
|
7812
7920
|
> **onScreenResize**(): `void` \| `Promise`\<`void`\>
|
|
7813
7921
|
|
|
7814
|
-
Defined in: [clickgo.ts:
|
|
7922
|
+
Defined in: [clickgo.ts:203](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L203)
|
|
7815
7923
|
|
|
7816
7924
|
屏幕大小改变事件
|
|
7817
7925
|
|
|
@@ -7825,7 +7933,7 @@ Defined in: [clickgo.ts:199](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7825
7933
|
|
|
7826
7934
|
> **onTaskEnded**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
7827
7935
|
|
|
7828
|
-
Defined in: [clickgo.ts:
|
|
7936
|
+
Defined in: [clickgo.ts:297](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L297)
|
|
7829
7937
|
|
|
7830
7938
|
任务结束事件
|
|
7831
7939
|
|
|
@@ -7845,7 +7953,7 @@ Defined in: [clickgo.ts:293](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7845
7953
|
|
|
7846
7954
|
> **onTaskStarted**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
7847
7955
|
|
|
7848
|
-
Defined in: [clickgo.ts:
|
|
7956
|
+
Defined in: [clickgo.ts:291](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L291)
|
|
7849
7957
|
|
|
7850
7958
|
任务开始事件
|
|
7851
7959
|
|
|
@@ -7865,7 +7973,7 @@ Defined in: [clickgo.ts:287](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7865
7973
|
|
|
7866
7974
|
> **setSysId**(`sysId`): `void`
|
|
7867
7975
|
|
|
7868
|
-
Defined in: [clickgo.ts:
|
|
7976
|
+
Defined in: [clickgo.ts:173](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L173)
|
|
7869
7977
|
|
|
7870
7978
|
#### Parameters
|
|
7871
7979
|
|
|
@@ -7890,7 +7998,7 @@ clickgo/functions/getCdn.md
|
|
|
7890
7998
|
|
|
7891
7999
|
> **getCdn**(): `string`
|
|
7892
8000
|
|
|
7893
|
-
Defined in: [clickgo.ts:
|
|
8001
|
+
Defined in: [clickgo.ts:103](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L103)
|
|
7894
8002
|
|
|
7895
8003
|
获取当前 cdn 前缀
|
|
7896
8004
|
|
|
@@ -7911,7 +8019,7 @@ clickgo/functions/getDevice.md
|
|
|
7911
8019
|
|
|
7912
8020
|
> **getDevice**(): `object`
|
|
7913
8021
|
|
|
7914
|
-
Defined in: [clickgo.ts:
|
|
8022
|
+
Defined in: [clickgo.ts:129](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L129)
|
|
7915
8023
|
|
|
7916
8024
|
获取当前设备信息(支持 native 和 web)
|
|
7917
8025
|
|
|
@@ -7940,7 +8048,7 @@ clickgo/functions/getDirname.md
|
|
|
7940
8048
|
|
|
7941
8049
|
> **getDirname**(): `string`
|
|
7942
8050
|
|
|
7943
|
-
Defined in: [clickgo.ts:
|
|
8051
|
+
Defined in: [clickgo.ts:81](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L81)
|
|
7944
8052
|
|
|
7945
8053
|
获取当前 ClickGo 所在的目录,不以 / 结尾
|
|
7946
8054
|
|
|
@@ -7961,7 +8069,7 @@ clickgo/functions/getPlatform.md
|
|
|
7961
8069
|
|
|
7962
8070
|
> **getPlatform**(): `Platform` \| `"web"`
|
|
7963
8071
|
|
|
7964
|
-
Defined in: [clickgo.ts:
|
|
8072
|
+
Defined in: [clickgo.ts:116](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L116)
|
|
7965
8073
|
|
|
7966
8074
|
获取当前平台(web 则只返回 web)
|
|
7967
8075
|
|
|
@@ -7982,7 +8090,7 @@ clickgo/functions/getVersion.md
|
|
|
7982
8090
|
|
|
7983
8091
|
> **getVersion**(): `string`
|
|
7984
8092
|
|
|
7985
|
-
Defined in: [clickgo.ts:
|
|
8093
|
+
Defined in: [clickgo.ts:69](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L69)
|
|
7986
8094
|
|
|
7987
8095
|
获取当前版本
|
|
7988
8096
|
|
|
@@ -8003,7 +8111,7 @@ clickgo/functions/hasFrame.md
|
|
|
8003
8111
|
|
|
8004
8112
|
> **hasFrame**(): `boolean`
|
|
8005
8113
|
|
|
8006
|
-
Defined in: [clickgo.ts:
|
|
8114
|
+
Defined in: [clickgo.ts:160](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L160)
|
|
8007
8115
|
|
|
8008
8116
|
是否含有窗体外边框
|
|
8009
8117
|
|
|
@@ -8024,7 +8132,7 @@ clickgo/functions/isNative.md
|
|
|
8024
8132
|
|
|
8025
8133
|
> **isNative**(): `boolean`
|
|
8026
8134
|
|
|
8027
|
-
Defined in: [clickgo.ts:
|
|
8135
|
+
Defined in: [clickgo.ts:75](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L75)
|
|
8028
8136
|
|
|
8029
8137
|
是否是 native 环境
|
|
8030
8138
|
|
|
@@ -8045,7 +8153,7 @@ clickgo/functions/launcher.md
|
|
|
8045
8153
|
|
|
8046
8154
|
> **launcher**(`boot`): `Promise`\<`void`\>
|
|
8047
8155
|
|
|
8048
|
-
Defined in: [clickgo.ts:
|
|
8156
|
+
Defined in: [clickgo.ts:344](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L344)
|
|
8049
8157
|
|
|
8050
8158
|
启动 ClickGo
|
|
8051
8159
|
|
|
@@ -8171,7 +8279,7 @@ clickgo/variables/global.md
|
|
|
8171
8279
|
|
|
8172
8280
|
> `const` **global**: `any`
|
|
8173
8281
|
|
|
8174
|
-
Defined in: [clickgo.ts:
|
|
8282
|
+
Defined in: [clickgo.ts:98](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L98)
|
|
8175
8283
|
|
|
8176
8284
|
用户定义的全局对象
|
|
8177
8285
|
|
|
@@ -8204,12 +8312,24 @@ Defined in: [clickgo.ts:43](https://github.com/maiyun/clickgo/blob/master/dist/c
|
|
|
8204
8312
|
|
|
8205
8313
|
> **clickgo**: *typeof* [`clickgo`](../index.md)
|
|
8206
8314
|
|
|
8315
|
+
### fabric
|
|
8316
|
+
|
|
8317
|
+
> **fabric**: `__module`
|
|
8318
|
+
|
|
8319
|
+
原生 fabric
|
|
8320
|
+
|
|
8207
8321
|
### jszip
|
|
8208
8322
|
|
|
8209
8323
|
> **jszip**: `__module`
|
|
8210
8324
|
|
|
8211
8325
|
原生 jszip
|
|
8212
8326
|
|
|
8327
|
+
### mpegts
|
|
8328
|
+
|
|
8329
|
+
> **mpegts**: `__module`
|
|
8330
|
+
|
|
8331
|
+
原生 mpegts 对象
|
|
8332
|
+
|
|
8213
8333
|
### pointer
|
|
8214
8334
|
|
|
8215
8335
|
> **pointer**: `__module`
|
|
@@ -12785,7 +12905,7 @@ lib/core/classes/AbstractApp.md
|
|
|
12785
12905
|
|
|
12786
12906
|
# Abstract Class: AbstractApp
|
|
12787
12907
|
|
|
12788
|
-
Defined in: [lib/core.ts:
|
|
12908
|
+
Defined in: [lib/core.ts:57](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L57)
|
|
12789
12909
|
|
|
12790
12910
|
App 抽象类
|
|
12791
12911
|
|
|
@@ -12805,7 +12925,7 @@ App 抽象类
|
|
|
12805
12925
|
|
|
12806
12926
|
> **filename**: `string` = `''`
|
|
12807
12927
|
|
|
12808
|
-
Defined in: [lib/core.ts:
|
|
12928
|
+
Defined in: [lib/core.ts:60](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L60)
|
|
12809
12929
|
|
|
12810
12930
|
当前 js 文件在包内的完整路径
|
|
12811
12931
|
|
|
@@ -12815,7 +12935,7 @@ Defined in: [lib/core.ts:59](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
12815
12935
|
|
|
12816
12936
|
> **taskId**: `string` = `''`
|
|
12817
12937
|
|
|
12818
|
-
Defined in: [lib/core.ts:
|
|
12938
|
+
Defined in: [lib/core.ts:63](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L63)
|
|
12819
12939
|
|
|
12820
12940
|
系统会自动设置本项
|
|
12821
12941
|
|
|
@@ -12825,7 +12945,7 @@ Defined in: [lib/core.ts:62](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
12825
12945
|
|
|
12826
12946
|
> `abstract` **main**(`data`): `Promise`\<`void`\>
|
|
12827
12947
|
|
|
12828
|
-
Defined in: [lib/core.ts:
|
|
12948
|
+
Defined in: [lib/core.ts:66](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L66)
|
|
12829
12949
|
|
|
12830
12950
|
App 的入口文件
|
|
12831
12951
|
|
|
@@ -12845,7 +12965,7 @@ App 的入口文件
|
|
|
12845
12965
|
|
|
12846
12966
|
> **onConfigChanged**\<`T`, `TK`\>(`n`, `v`): `void` \| `Promise`\<`void`\>
|
|
12847
12967
|
|
|
12848
|
-
Defined in: [lib/core.ts:
|
|
12968
|
+
Defined in: [lib/core.ts:89](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L89)
|
|
12849
12969
|
|
|
12850
12970
|
系统配置变更事件
|
|
12851
12971
|
|
|
@@ -12879,7 +12999,7 @@ Defined in: [lib/core.ts:88](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
12879
12999
|
|
|
12880
13000
|
> **onError**(`taskId`, `formId`, `error`, `info`): `void` \| `Promise`\<`void`\>
|
|
12881
13001
|
|
|
12882
|
-
Defined in: [lib/core.ts:
|
|
13002
|
+
Defined in: [lib/core.ts:77](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L77)
|
|
12883
13003
|
|
|
12884
13004
|
全局错误事件
|
|
12885
13005
|
|
|
@@ -12911,7 +13031,7 @@ Defined in: [lib/core.ts:76](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
12911
13031
|
|
|
12912
13032
|
> **onFormBlurred**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
12913
13033
|
|
|
12914
|
-
Defined in: [lib/core.ts:
|
|
13034
|
+
Defined in: [lib/core.ts:145](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L145)
|
|
12915
13035
|
|
|
12916
13036
|
窗体丢失焦点事件
|
|
12917
13037
|
|
|
@@ -12935,7 +13055,7 @@ Defined in: [lib/core.ts:144](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
12935
13055
|
|
|
12936
13056
|
> **onFormCreated**(`taskId`, `formId`, `title`, `icon`, `showInSystemTask`): `void` \| `Promise`\<`void`\>
|
|
12937
13057
|
|
|
12938
|
-
Defined in: [lib/core.ts:
|
|
13058
|
+
Defined in: [lib/core.ts:95](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L95)
|
|
12939
13059
|
|
|
12940
13060
|
窗体创建事件
|
|
12941
13061
|
|
|
@@ -12971,7 +13091,7 @@ Defined in: [lib/core.ts:94](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
12971
13091
|
|
|
12972
13092
|
> **onFormFlash**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
12973
13093
|
|
|
12974
|
-
Defined in: [lib/core.ts:
|
|
13094
|
+
Defined in: [lib/core.ts:151](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L151)
|
|
12975
13095
|
|
|
12976
13096
|
窗体闪烁事件
|
|
12977
13097
|
|
|
@@ -12995,7 +13115,7 @@ Defined in: [lib/core.ts:150](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
12995
13115
|
|
|
12996
13116
|
> **onFormFocused**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
12997
13117
|
|
|
12998
|
-
Defined in: [lib/core.ts:
|
|
13118
|
+
Defined in: [lib/core.ts:139](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L139)
|
|
12999
13119
|
|
|
13000
13120
|
窗体获得焦点事件
|
|
13001
13121
|
|
|
@@ -13019,7 +13139,7 @@ Defined in: [lib/core.ts:138](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13019
13139
|
|
|
13020
13140
|
> **onFormHashChange**(`taskId`, `formId`, `value`, `data`): `void` \| `Promise`\<`void`\>
|
|
13021
13141
|
|
|
13022
|
-
Defined in: [lib/core.ts:
|
|
13142
|
+
Defined in: [lib/core.ts:163](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L163)
|
|
13023
13143
|
|
|
13024
13144
|
窗体的 formHash 改变事件
|
|
13025
13145
|
|
|
@@ -13051,7 +13171,7 @@ Defined in: [lib/core.ts:162](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13051
13171
|
|
|
13052
13172
|
> **onFormIconChanged**(`taskId`, `formId`, `icon`): `void` \| `Promise`\<`void`\>
|
|
13053
13173
|
|
|
13054
|
-
Defined in: [lib/core.ts:
|
|
13174
|
+
Defined in: [lib/core.ts:115](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L115)
|
|
13055
13175
|
|
|
13056
13176
|
窗体图标改变事件
|
|
13057
13177
|
|
|
@@ -13079,7 +13199,7 @@ Defined in: [lib/core.ts:114](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13079
13199
|
|
|
13080
13200
|
> **onFormRemoved**(`taskId`, `formId`, `title`, `icon`): `void` \| `Promise`\<`void`\>
|
|
13081
13201
|
|
|
13082
|
-
Defined in: [lib/core.ts:
|
|
13202
|
+
Defined in: [lib/core.ts:103](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L103)
|
|
13083
13203
|
|
|
13084
13204
|
窗体销毁事件
|
|
13085
13205
|
|
|
@@ -13111,7 +13231,7 @@ Defined in: [lib/core.ts:102](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13111
13231
|
|
|
13112
13232
|
> **onFormShowChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
13113
13233
|
|
|
13114
|
-
Defined in: [lib/core.ts:
|
|
13234
|
+
Defined in: [lib/core.ts:133](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L133)
|
|
13115
13235
|
|
|
13116
13236
|
窗体显示状态改变事件
|
|
13117
13237
|
|
|
@@ -13139,7 +13259,7 @@ Defined in: [lib/core.ts:132](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13139
13259
|
|
|
13140
13260
|
> **onFormShowInSystemTaskChange**(`taskId`, `formId`, `value`): `void` \| `Promise`\<`void`\>
|
|
13141
13261
|
|
|
13142
|
-
Defined in: [lib/core.ts:
|
|
13262
|
+
Defined in: [lib/core.ts:157](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L157)
|
|
13143
13263
|
|
|
13144
13264
|
窗体是否显示在任务栏属性改变事件
|
|
13145
13265
|
|
|
@@ -13167,7 +13287,7 @@ Defined in: [lib/core.ts:156](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13167
13287
|
|
|
13168
13288
|
> **onFormStateMaxChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
13169
13289
|
|
|
13170
|
-
Defined in: [lib/core.ts:
|
|
13290
|
+
Defined in: [lib/core.ts:127](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L127)
|
|
13171
13291
|
|
|
13172
13292
|
窗体最大化状态改变事件
|
|
13173
13293
|
|
|
@@ -13195,7 +13315,7 @@ Defined in: [lib/core.ts:126](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13195
13315
|
|
|
13196
13316
|
> **onFormStateMinChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
13197
13317
|
|
|
13198
|
-
Defined in: [lib/core.ts:
|
|
13318
|
+
Defined in: [lib/core.ts:121](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L121)
|
|
13199
13319
|
|
|
13200
13320
|
窗体最小化状态改变事件
|
|
13201
13321
|
|
|
@@ -13223,7 +13343,7 @@ Defined in: [lib/core.ts:120](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13223
13343
|
|
|
13224
13344
|
> **onFormTitleChanged**(`taskId`, `formId`, `title`): `void` \| `Promise`\<`void`\>
|
|
13225
13345
|
|
|
13226
|
-
Defined in: [lib/core.ts:
|
|
13346
|
+
Defined in: [lib/core.ts:109](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L109)
|
|
13227
13347
|
|
|
13228
13348
|
窗体标题改变事件
|
|
13229
13349
|
|
|
@@ -13251,7 +13371,7 @@ Defined in: [lib/core.ts:108](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13251
13371
|
|
|
13252
13372
|
> **onHashChanged**(`hash`): `void` \| `Promise`\<`void`\>
|
|
13253
13373
|
|
|
13254
|
-
Defined in: [lib/core.ts:
|
|
13374
|
+
Defined in: [lib/core.ts:189](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L189)
|
|
13255
13375
|
|
|
13256
13376
|
location hash 改变事件
|
|
13257
13377
|
|
|
@@ -13271,7 +13391,7 @@ location hash 改变事件
|
|
|
13271
13391
|
|
|
13272
13392
|
> **onKeydown**(`e`): `void` \| `Promise`\<`void`\>
|
|
13273
13393
|
|
|
13274
|
-
Defined in: [lib/core.ts:
|
|
13394
|
+
Defined in: [lib/core.ts:195](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L195)
|
|
13275
13395
|
|
|
13276
13396
|
键盘按下事件
|
|
13277
13397
|
|
|
@@ -13291,7 +13411,7 @@ Defined in: [lib/core.ts:194](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13291
13411
|
|
|
13292
13412
|
> **onKeyup**(`e`): `void` \| `Promise`\<`void`\>
|
|
13293
13413
|
|
|
13294
|
-
Defined in: [lib/core.ts:
|
|
13414
|
+
Defined in: [lib/core.ts:201](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L201)
|
|
13295
13415
|
|
|
13296
13416
|
键盘弹起事件
|
|
13297
13417
|
|
|
@@ -13311,7 +13431,7 @@ Defined in: [lib/core.ts:200](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13311
13431
|
|
|
13312
13432
|
> **onLauncherFolderNameChanged**(`id`, `name`): `void` \| `Promise`\<`void`\>
|
|
13313
13433
|
|
|
13314
|
-
Defined in: [lib/core.ts:
|
|
13434
|
+
Defined in: [lib/core.ts:183](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L183)
|
|
13315
13435
|
|
|
13316
13436
|
launcher 文件夹名称修改事件
|
|
13317
13437
|
|
|
@@ -13335,7 +13455,7 @@ launcher 文件夹名称修改事件
|
|
|
13335
13455
|
|
|
13336
13456
|
> **onScreenResize**(): `void` \| `Promise`\<`void`\>
|
|
13337
13457
|
|
|
13338
|
-
Defined in: [lib/core.ts:
|
|
13458
|
+
Defined in: [lib/core.ts:83](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L83)
|
|
13339
13459
|
|
|
13340
13460
|
屏幕大小改变事件
|
|
13341
13461
|
|
|
@@ -13349,7 +13469,7 @@ Defined in: [lib/core.ts:82](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
13349
13469
|
|
|
13350
13470
|
> **onTaskEnded**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
13351
13471
|
|
|
13352
|
-
Defined in: [lib/core.ts:
|
|
13472
|
+
Defined in: [lib/core.ts:177](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L177)
|
|
13353
13473
|
|
|
13354
13474
|
任务结束事件
|
|
13355
13475
|
|
|
@@ -13369,7 +13489,7 @@ Defined in: [lib/core.ts:176](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13369
13489
|
|
|
13370
13490
|
> **onTaskStarted**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
13371
13491
|
|
|
13372
|
-
Defined in: [lib/core.ts:
|
|
13492
|
+
Defined in: [lib/core.ts:171](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L171)
|
|
13373
13493
|
|
|
13374
13494
|
任务开始事件
|
|
13375
13495
|
|
|
@@ -13389,7 +13509,7 @@ Defined in: [lib/core.ts:170](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13389
13509
|
|
|
13390
13510
|
> **run**(`form`): `Promise`\<`void`\>
|
|
13391
13511
|
|
|
13392
|
-
Defined in: [lib/core.ts:
|
|
13512
|
+
Defined in: [lib/core.ts:72](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L72)
|
|
13393
13513
|
|
|
13394
13514
|
以某个窗体进行正式启动这个 app(入口 form),不启动则任务也启动失败
|
|
13395
13515
|
|
|
@@ -13418,7 +13538,7 @@ lib/core/functions/back.md
|
|
|
13418
13538
|
|
|
13419
13539
|
> **back**(`current`): `Promise`\<`boolean`\>
|
|
13420
13540
|
|
|
13421
|
-
Defined in: [lib/core.ts:
|
|
13541
|
+
Defined in: [lib/core.ts:720](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L720)
|
|
13422
13542
|
|
|
13423
13543
|
对浏览器做返回操作
|
|
13424
13544
|
|
|
@@ -13447,7 +13567,7 @@ lib/core/functions/checkModule.md
|
|
|
13447
13567
|
|
|
13448
13568
|
> **checkModule**(`name`): `boolean`
|
|
13449
13569
|
|
|
13450
|
-
Defined in: [lib/core.ts:
|
|
13570
|
+
Defined in: [lib/core.ts:1072](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1072)
|
|
13451
13571
|
|
|
13452
13572
|
检查特殊模块是否注册
|
|
13453
13573
|
|
|
@@ -13476,7 +13596,7 @@ lib/core/functions/fetchApp.md
|
|
|
13476
13596
|
|
|
13477
13597
|
> **fetchApp**(`taskId`, `url`, `opt?`): `Promise`\<[`IApp`](../interfaces/IApp.md) \| `null`\>
|
|
13478
13598
|
|
|
13479
|
-
Defined in: [lib/core.ts:
|
|
13599
|
+
Defined in: [lib/core.ts:530](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L530)
|
|
13480
13600
|
|
|
13481
13601
|
从网址下载应用
|
|
13482
13602
|
|
|
@@ -13517,7 +13637,7 @@ lib/core/functions/getAvailArea.md
|
|
|
13517
13637
|
|
|
13518
13638
|
> **getAvailArea**(): [`IAvailArea`](../interfaces/IAvailArea.md)
|
|
13519
13639
|
|
|
13520
|
-
Defined in: [lib/core.ts:
|
|
13640
|
+
Defined in: [lib/core.ts:601](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L601)
|
|
13521
13641
|
|
|
13522
13642
|
获取屏幕可用区域
|
|
13523
13643
|
|
|
@@ -13538,7 +13658,7 @@ lib/core/functions/getHash.md
|
|
|
13538
13658
|
|
|
13539
13659
|
> **getHash**(): `string`
|
|
13540
13660
|
|
|
13541
|
-
Defined in: [lib/core.ts:
|
|
13661
|
+
Defined in: [lib/core.ts:677](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L677)
|
|
13542
13662
|
|
|
13543
13663
|
获取当前浏览器的 hash
|
|
13544
13664
|
|
|
@@ -13559,7 +13679,7 @@ lib/core/functions/getHost.md
|
|
|
13559
13679
|
|
|
13560
13680
|
> **getHost**(): `string`
|
|
13561
13681
|
|
|
13562
|
-
Defined in: [lib/core.ts:
|
|
13682
|
+
Defined in: [lib/core.ts:684](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L684)
|
|
13563
13683
|
|
|
13564
13684
|
获取当前浏览器的 host
|
|
13565
13685
|
|
|
@@ -13580,7 +13700,7 @@ lib/core/functions/getLocation.md
|
|
|
13580
13700
|
|
|
13581
13701
|
> **getLocation**(): `string`
|
|
13582
13702
|
|
|
13583
|
-
Defined in: [lib/core.ts:
|
|
13703
|
+
Defined in: [lib/core.ts:712](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L712)
|
|
13584
13704
|
|
|
13585
13705
|
获取当前的浏览器的 url
|
|
13586
13706
|
|
|
@@ -13609,7 +13729,7 @@ lib/core/functions/getModule.md
|
|
|
13609
13729
|
|
|
13610
13730
|
> **getModule**(`name`): `Promise`\<[`ITumsPlayer`](../interfaces/ITumsPlayer.md) \| `null`\>
|
|
13611
13731
|
|
|
13612
|
-
Defined in: [lib/core.ts:
|
|
13732
|
+
Defined in: [lib/core.ts:1076](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1076)
|
|
13613
13733
|
|
|
13614
13734
|
### Parameters
|
|
13615
13735
|
|
|
@@ -13625,7 +13745,7 @@ Defined in: [lib/core.ts:1062](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
13625
13745
|
|
|
13626
13746
|
> **getModule**(`name`): `Promise`\<\{ \} \| `null`\>
|
|
13627
13747
|
|
|
13628
|
-
Defined in: [lib/core.ts:
|
|
13748
|
+
Defined in: [lib/core.ts:1077](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1077)
|
|
13629
13749
|
|
|
13630
13750
|
### Parameters
|
|
13631
13751
|
|
|
@@ -13639,9 +13759,25 @@ Defined in: [lib/core.ts:1063](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
13639
13759
|
|
|
13640
13760
|
## Call Signature
|
|
13641
13761
|
|
|
13762
|
+
> **getModule**(`name`): `Promise`\<`__module` \| `null`\>
|
|
13763
|
+
|
|
13764
|
+
Defined in: [lib/core.ts:1078](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1078)
|
|
13765
|
+
|
|
13766
|
+
### Parameters
|
|
13767
|
+
|
|
13768
|
+
#### name
|
|
13769
|
+
|
|
13770
|
+
`"fabric"`
|
|
13771
|
+
|
|
13772
|
+
### Returns
|
|
13773
|
+
|
|
13774
|
+
`Promise`\<`__module` \| `null`\>
|
|
13775
|
+
|
|
13776
|
+
## Call Signature
|
|
13777
|
+
|
|
13642
13778
|
> **getModule**(`name`): `Promise`\<`any`\>
|
|
13643
13779
|
|
|
13644
|
-
Defined in: [lib/core.ts:
|
|
13780
|
+
Defined in: [lib/core.ts:1079](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1079)
|
|
13645
13781
|
|
|
13646
13782
|
### Parameters
|
|
13647
13783
|
|
|
@@ -13666,7 +13802,7 @@ lib/core/functions/hash.md
|
|
|
13666
13802
|
|
|
13667
13803
|
> **hash**(`current`, `hash`): `Promise`\<`boolean`\>
|
|
13668
13804
|
|
|
13669
|
-
Defined in: [lib/core.ts:
|
|
13805
|
+
Defined in: [lib/core.ts:662](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L662)
|
|
13670
13806
|
|
|
13671
13807
|
修改浏览器 hash
|
|
13672
13808
|
|
|
@@ -13701,7 +13837,7 @@ lib/core/functions/init.md
|
|
|
13701
13837
|
|
|
13702
13838
|
> **init**(): `void`
|
|
13703
13839
|
|
|
13704
|
-
Defined in: [lib/core.ts:
|
|
13840
|
+
Defined in: [lib/core.ts:1141](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1141)
|
|
13705
13841
|
|
|
13706
13842
|
## Returns
|
|
13707
13843
|
|
|
@@ -13720,7 +13856,7 @@ lib/core/functions/initSysId.md
|
|
|
13720
13856
|
|
|
13721
13857
|
> **initSysId**(`id`): `void`
|
|
13722
13858
|
|
|
13723
|
-
Defined in: [lib/core.ts:
|
|
13859
|
+
Defined in: [lib/core.ts:34](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L34)
|
|
13724
13860
|
|
|
13725
13861
|
初始化系统级 ID,仅能设置一次
|
|
13726
13862
|
|
|
@@ -13749,7 +13885,7 @@ lib/core/functions/loadModule.md
|
|
|
13749
13885
|
|
|
13750
13886
|
> **loadModule**(`name`): `Promise`\<`boolean`\>
|
|
13751
13887
|
|
|
13752
|
-
Defined in: [lib/core.ts:
|
|
13888
|
+
Defined in: [lib/core.ts:1096](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1096)
|
|
13753
13889
|
|
|
13754
13890
|
加载模块,返回 true / false
|
|
13755
13891
|
|
|
@@ -13778,7 +13914,7 @@ lib/core/functions/location.md
|
|
|
13778
13914
|
|
|
13779
13915
|
> **location**(`current`, `url`): `Promise`\<`boolean`\>
|
|
13780
13916
|
|
|
13781
|
-
Defined in: [lib/core.ts:
|
|
13917
|
+
Defined in: [lib/core.ts:697](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L697)
|
|
13782
13918
|
|
|
13783
13919
|
对浏览器做跳转操作
|
|
13784
13920
|
|
|
@@ -13813,7 +13949,7 @@ lib/core/functions/open.md
|
|
|
13813
13949
|
|
|
13814
13950
|
> **open**(`url`): `void`
|
|
13815
13951
|
|
|
13816
|
-
Defined in: [lib/core.ts:
|
|
13952
|
+
Defined in: [lib/core.ts:736](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L736)
|
|
13817
13953
|
|
|
13818
13954
|
打开新的标签页
|
|
13819
13955
|
|
|
@@ -13842,7 +13978,7 @@ lib/core/functions/readApp.md
|
|
|
13842
13978
|
|
|
13843
13979
|
> **readApp**(`blob`): `Promise`\<`false` \| [`IApp`](../interfaces/IApp.md)\>
|
|
13844
13980
|
|
|
13845
|
-
Defined in: [lib/core.ts:
|
|
13981
|
+
Defined in: [lib/core.ts:468](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L468)
|
|
13846
13982
|
|
|
13847
13983
|
cga blob 文件解包
|
|
13848
13984
|
|
|
@@ -13871,7 +14007,7 @@ lib/core/functions/regModule.md
|
|
|
13871
14007
|
|
|
13872
14008
|
> **regModule**(`current`, `name`, `opt`): `Promise`\<`boolean`\>
|
|
13873
14009
|
|
|
13874
|
-
Defined in: [lib/core.ts:
|
|
14010
|
+
Defined in: [lib/core.ts:1043](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1043)
|
|
13875
14011
|
|
|
13876
14012
|
注册模块
|
|
13877
14013
|
|
|
@@ -13922,7 +14058,7 @@ lib/core/functions/setBoot.md
|
|
|
13922
14058
|
|
|
13923
14059
|
> **setBoot**(`b`): `void`
|
|
13924
14060
|
|
|
13925
|
-
Defined in: [lib/core.ts:
|
|
14061
|
+
Defined in: [lib/core.ts:210](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L210)
|
|
13926
14062
|
|
|
13927
14063
|
## Parameters
|
|
13928
14064
|
|
|
@@ -13947,7 +14083,7 @@ lib/core/functions/trigger.md
|
|
|
13947
14083
|
|
|
13948
14084
|
> **trigger**(`name`, `taskId?`, `formId?`, `param1?`, `param2?`, `param3?`): `Promise`\<`void`\>
|
|
13949
14085
|
|
|
13950
|
-
Defined in: [lib/core.ts:
|
|
14086
|
+
Defined in: [lib/core.ts:267](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L267)
|
|
13951
14087
|
|
|
13952
14088
|
主动触发系统级事件,用 this.trigger 替代
|
|
13953
14089
|
|
|
@@ -14053,7 +14189,7 @@ lib/core/interfaces/IApp.md
|
|
|
14053
14189
|
|
|
14054
14190
|
# Interface: IApp
|
|
14055
14191
|
|
|
14056
|
-
Defined in: [lib/core.ts:
|
|
14192
|
+
Defined in: [lib/core.ts:1273](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1273)
|
|
14057
14193
|
|
|
14058
14194
|
应用包解包后对象
|
|
14059
14195
|
|
|
@@ -14063,7 +14199,7 @@ Defined in: [lib/core.ts:1258](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14063
14199
|
|
|
14064
14200
|
> **config**: [`IAppConfig`](IAppConfig.md)
|
|
14065
14201
|
|
|
14066
|
-
Defined in: [lib/core.ts:
|
|
14202
|
+
Defined in: [lib/core.ts:1276](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1276)
|
|
14067
14203
|
|
|
14068
14204
|
控件对象配置文件
|
|
14069
14205
|
|
|
@@ -14073,7 +14209,7 @@ Defined in: [lib/core.ts:1261](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14073
14209
|
|
|
14074
14210
|
> **files**: `Record`\<`string`, `Blob` \| `string`\>
|
|
14075
14211
|
|
|
14076
|
-
Defined in: [lib/core.ts:
|
|
14212
|
+
Defined in: [lib/core.ts:1278](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1278)
|
|
14077
14213
|
|
|
14078
14214
|
所有已加载的文件内容
|
|
14079
14215
|
|
|
@@ -14083,7 +14219,7 @@ Defined in: [lib/core.ts:1263](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14083
14219
|
|
|
14084
14220
|
> **icon**: `string`
|
|
14085
14221
|
|
|
14086
|
-
Defined in: [lib/core.ts:
|
|
14222
|
+
Defined in: [lib/core.ts:1280](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1280)
|
|
14087
14223
|
|
|
14088
14224
|
应用图标
|
|
14089
14225
|
|
|
@@ -14093,7 +14229,7 @@ Defined in: [lib/core.ts:1265](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14093
14229
|
|
|
14094
14230
|
> **type**: `"app"`
|
|
14095
14231
|
|
|
14096
|
-
Defined in: [lib/core.ts:
|
|
14232
|
+
Defined in: [lib/core.ts:1274](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1274)
|
|
14097
14233
|
|
|
14098
14234
|
lib/core/interfaces/IAppConfig.md
|
|
14099
14235
|
---
|
|
@@ -14106,7 +14242,7 @@ lib/core/interfaces/IAppConfig.md
|
|
|
14106
14242
|
|
|
14107
14243
|
# Interface: IAppConfig
|
|
14108
14244
|
|
|
14109
|
-
Defined in: [lib/core.ts:
|
|
14245
|
+
Defined in: [lib/core.ts:1284](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1284)
|
|
14110
14246
|
|
|
14111
14247
|
应用文件包 config
|
|
14112
14248
|
|
|
@@ -14116,7 +14252,7 @@ Defined in: [lib/core.ts:1269](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14116
14252
|
|
|
14117
14253
|
> **author**: `string`
|
|
14118
14254
|
|
|
14119
|
-
Defined in: [lib/core.ts:
|
|
14255
|
+
Defined in: [lib/core.ts:1292](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1292)
|
|
14120
14256
|
|
|
14121
14257
|
作者
|
|
14122
14258
|
|
|
@@ -14126,7 +14262,7 @@ Defined in: [lib/core.ts:1277](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14126
14262
|
|
|
14127
14263
|
> **controls**: `string`[]
|
|
14128
14264
|
|
|
14129
|
-
Defined in: [lib/core.ts:
|
|
14265
|
+
Defined in: [lib/core.ts:1295](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1295)
|
|
14130
14266
|
|
|
14131
14267
|
将要加载的控件
|
|
14132
14268
|
|
|
@@ -14136,7 +14272,7 @@ Defined in: [lib/core.ts:1280](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14136
14272
|
|
|
14137
14273
|
> `optional` **files**: `string`[]
|
|
14138
14274
|
|
|
14139
|
-
Defined in: [lib/core.ts:
|
|
14275
|
+
Defined in: [lib/core.ts:1308](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1308)
|
|
14140
14276
|
|
|
14141
14277
|
将要加载的非 js 文件列表,打包为 cga 模式下此配置可省略
|
|
14142
14278
|
|
|
@@ -14146,7 +14282,7 @@ Defined in: [lib/core.ts:1293](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14146
14282
|
|
|
14147
14283
|
> `optional` **icon**: `string`
|
|
14148
14284
|
|
|
14149
|
-
Defined in: [lib/core.ts:
|
|
14285
|
+
Defined in: [lib/core.ts:1305](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1305)
|
|
14150
14286
|
|
|
14151
14287
|
图标路径,需包含扩展名
|
|
14152
14288
|
|
|
@@ -14156,7 +14292,7 @@ Defined in: [lib/core.ts:1290](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14156
14292
|
|
|
14157
14293
|
> `optional` **locales**: `Record`\<`string`, `string`\>
|
|
14158
14294
|
|
|
14159
|
-
Defined in: [lib/core.ts:
|
|
14295
|
+
Defined in: [lib/core.ts:1301](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1301)
|
|
14160
14296
|
|
|
14161
14297
|
将自动加载的语言包,path: lang
|
|
14162
14298
|
|
|
@@ -14166,7 +14302,7 @@ Defined in: [lib/core.ts:1286](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14166
14302
|
|
|
14167
14303
|
> `optional` **modules**: `string`[]
|
|
14168
14304
|
|
|
14169
|
-
Defined in: [lib/core.ts:
|
|
14305
|
+
Defined in: [lib/core.ts:1310](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1310)
|
|
14170
14306
|
|
|
14171
14307
|
要提前加载的库名
|
|
14172
14308
|
|
|
@@ -14176,7 +14312,7 @@ Defined in: [lib/core.ts:1295](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14176
14312
|
|
|
14177
14313
|
> **name**: `string`
|
|
14178
14314
|
|
|
14179
|
-
Defined in: [lib/core.ts:
|
|
14315
|
+
Defined in: [lib/core.ts:1286](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1286)
|
|
14180
14316
|
|
|
14181
14317
|
应用名
|
|
14182
14318
|
|
|
@@ -14186,7 +14322,7 @@ Defined in: [lib/core.ts:1271](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14186
14322
|
|
|
14187
14323
|
> `optional` **permissions**: `string`[]
|
|
14188
14324
|
|
|
14189
|
-
Defined in: [lib/core.ts:
|
|
14325
|
+
Defined in: [lib/core.ts:1299](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1299)
|
|
14190
14326
|
|
|
14191
14327
|
将自动申请的权限
|
|
14192
14328
|
|
|
@@ -14196,7 +14332,7 @@ Defined in: [lib/core.ts:1284](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14196
14332
|
|
|
14197
14333
|
> `optional` **style**: `string`
|
|
14198
14334
|
|
|
14199
|
-
Defined in: [lib/core.ts:
|
|
14335
|
+
Defined in: [lib/core.ts:1303](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1303)
|
|
14200
14336
|
|
|
14201
14337
|
全局样式,不带扩展名,系统会在末尾添加 .css
|
|
14202
14338
|
|
|
@@ -14206,7 +14342,7 @@ Defined in: [lib/core.ts:1288](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14206
14342
|
|
|
14207
14343
|
> `optional` **themes**: `string`[]
|
|
14208
14344
|
|
|
14209
|
-
Defined in: [lib/core.ts:
|
|
14345
|
+
Defined in: [lib/core.ts:1297](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1297)
|
|
14210
14346
|
|
|
14211
14347
|
将自动加载的主题
|
|
14212
14348
|
|
|
@@ -14216,7 +14352,7 @@ Defined in: [lib/core.ts:1282](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14216
14352
|
|
|
14217
14353
|
> **ver**: `number`
|
|
14218
14354
|
|
|
14219
|
-
Defined in: [lib/core.ts:
|
|
14355
|
+
Defined in: [lib/core.ts:1288](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1288)
|
|
14220
14356
|
|
|
14221
14357
|
发行版本
|
|
14222
14358
|
|
|
@@ -14226,7 +14362,7 @@ Defined in: [lib/core.ts:1273](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14226
14362
|
|
|
14227
14363
|
> **version**: `string`
|
|
14228
14364
|
|
|
14229
|
-
Defined in: [lib/core.ts:
|
|
14365
|
+
Defined in: [lib/core.ts:1290](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1290)
|
|
14230
14366
|
|
|
14231
14367
|
发行版本字符串
|
|
14232
14368
|
|
|
@@ -14241,7 +14377,7 @@ lib/core/interfaces/IAvailArea.md
|
|
|
14241
14377
|
|
|
14242
14378
|
# Interface: IAvailArea
|
|
14243
14379
|
|
|
14244
|
-
Defined in: [lib/core.ts:
|
|
14380
|
+
Defined in: [lib/core.ts:1239](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1239)
|
|
14245
14381
|
|
|
14246
14382
|
屏幕可用区域
|
|
14247
14383
|
|
|
@@ -14251,7 +14387,7 @@ Defined in: [lib/core.ts:1224](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14251
14387
|
|
|
14252
14388
|
> **height**: `number`
|
|
14253
14389
|
|
|
14254
|
-
Defined in: [lib/core.ts:
|
|
14390
|
+
Defined in: [lib/core.ts:1243](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1243)
|
|
14255
14391
|
|
|
14256
14392
|
***
|
|
14257
14393
|
|
|
@@ -14259,7 +14395,7 @@ Defined in: [lib/core.ts:1228](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14259
14395
|
|
|
14260
14396
|
> **left**: `number`
|
|
14261
14397
|
|
|
14262
|
-
Defined in: [lib/core.ts:
|
|
14398
|
+
Defined in: [lib/core.ts:1240](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1240)
|
|
14263
14399
|
|
|
14264
14400
|
***
|
|
14265
14401
|
|
|
@@ -14267,7 +14403,7 @@ Defined in: [lib/core.ts:1225](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14267
14403
|
|
|
14268
14404
|
> **oheight**: `number`
|
|
14269
14405
|
|
|
14270
|
-
Defined in: [lib/core.ts:
|
|
14406
|
+
Defined in: [lib/core.ts:1245](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1245)
|
|
14271
14407
|
|
|
14272
14408
|
***
|
|
14273
14409
|
|
|
@@ -14275,7 +14411,7 @@ Defined in: [lib/core.ts:1230](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14275
14411
|
|
|
14276
14412
|
> **owidth**: `number`
|
|
14277
14413
|
|
|
14278
|
-
Defined in: [lib/core.ts:
|
|
14414
|
+
Defined in: [lib/core.ts:1244](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1244)
|
|
14279
14415
|
|
|
14280
14416
|
***
|
|
14281
14417
|
|
|
@@ -14283,7 +14419,7 @@ Defined in: [lib/core.ts:1229](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14283
14419
|
|
|
14284
14420
|
> **top**: `number`
|
|
14285
14421
|
|
|
14286
|
-
Defined in: [lib/core.ts:
|
|
14422
|
+
Defined in: [lib/core.ts:1241](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1241)
|
|
14287
14423
|
|
|
14288
14424
|
***
|
|
14289
14425
|
|
|
@@ -14291,7 +14427,7 @@ Defined in: [lib/core.ts:1226](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14291
14427
|
|
|
14292
14428
|
> **width**: `number`
|
|
14293
14429
|
|
|
14294
|
-
Defined in: [lib/core.ts:
|
|
14430
|
+
Defined in: [lib/core.ts:1242](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1242)
|
|
14295
14431
|
|
|
14296
14432
|
lib/core/interfaces/IConfig.md
|
|
14297
14433
|
---
|
|
@@ -14304,7 +14440,7 @@ lib/core/interfaces/IConfig.md
|
|
|
14304
14440
|
|
|
14305
14441
|
# Interface: IConfig
|
|
14306
14442
|
|
|
14307
|
-
Defined in: [lib/core.ts:
|
|
14443
|
+
Defined in: [lib/core.ts:1218](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1218)
|
|
14308
14444
|
|
|
14309
14445
|
Config 对象
|
|
14310
14446
|
|
|
@@ -14314,7 +14450,7 @@ Config 对象
|
|
|
14314
14450
|
|
|
14315
14451
|
> **desktop.icon.recycler**: `boolean`
|
|
14316
14452
|
|
|
14317
|
-
Defined in: [lib/core.ts:
|
|
14453
|
+
Defined in: [lib/core.ts:1223](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1223)
|
|
14318
14454
|
|
|
14319
14455
|
***
|
|
14320
14456
|
|
|
@@ -14322,7 +14458,7 @@ Defined in: [lib/core.ts:1208](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14322
14458
|
|
|
14323
14459
|
> **desktop.icon.storage**: `boolean`
|
|
14324
14460
|
|
|
14325
|
-
Defined in: [lib/core.ts:
|
|
14461
|
+
Defined in: [lib/core.ts:1222](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1222)
|
|
14326
14462
|
|
|
14327
14463
|
***
|
|
14328
14464
|
|
|
@@ -14330,7 +14466,7 @@ Defined in: [lib/core.ts:1207](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14330
14466
|
|
|
14331
14467
|
> **desktop.path**: `string` \| `null`
|
|
14332
14468
|
|
|
14333
|
-
Defined in: [lib/core.ts:
|
|
14469
|
+
Defined in: [lib/core.ts:1225](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1225)
|
|
14334
14470
|
|
|
14335
14471
|
***
|
|
14336
14472
|
|
|
@@ -14338,7 +14474,7 @@ Defined in: [lib/core.ts:1210](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14338
14474
|
|
|
14339
14475
|
> **desktop.wallpaper**: `string` \| `null`
|
|
14340
14476
|
|
|
14341
|
-
Defined in: [lib/core.ts:
|
|
14477
|
+
Defined in: [lib/core.ts:1224](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1224)
|
|
14342
14478
|
|
|
14343
14479
|
***
|
|
14344
14480
|
|
|
@@ -14346,7 +14482,7 @@ Defined in: [lib/core.ts:1209](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14346
14482
|
|
|
14347
14483
|
> **launcher.list**: [`IConfigLauncherItem`](IConfigLauncherItem.md)[]
|
|
14348
14484
|
|
|
14349
|
-
Defined in: [lib/core.ts:
|
|
14485
|
+
Defined in: [lib/core.ts:1226](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1226)
|
|
14350
14486
|
|
|
14351
14487
|
***
|
|
14352
14488
|
|
|
@@ -14354,7 +14490,7 @@ Defined in: [lib/core.ts:1211](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14354
14490
|
|
|
14355
14491
|
> **locale**: `string`
|
|
14356
14492
|
|
|
14357
|
-
Defined in: [lib/core.ts:
|
|
14493
|
+
Defined in: [lib/core.ts:1219](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1219)
|
|
14358
14494
|
|
|
14359
14495
|
***
|
|
14360
14496
|
|
|
@@ -14362,7 +14498,7 @@ Defined in: [lib/core.ts:1204](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14362
14498
|
|
|
14363
14499
|
> **task.pin**: `Record`\<`string`, \{ `icon`: `string`; `name`: `string`; \}\>
|
|
14364
14500
|
|
|
14365
|
-
Defined in: [lib/core.ts:
|
|
14501
|
+
Defined in: [lib/core.ts:1221](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1221)
|
|
14366
14502
|
|
|
14367
14503
|
***
|
|
14368
14504
|
|
|
@@ -14370,7 +14506,7 @@ Defined in: [lib/core.ts:1206](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14370
14506
|
|
|
14371
14507
|
> **task.position**: `"left"` \| `"top"` \| `"right"` \| `"bottom"`
|
|
14372
14508
|
|
|
14373
|
-
Defined in: [lib/core.ts:
|
|
14509
|
+
Defined in: [lib/core.ts:1220](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1220)
|
|
14374
14510
|
|
|
14375
14511
|
lib/core/interfaces/IConfigLauncherItem.md
|
|
14376
14512
|
---
|
|
@@ -14383,7 +14519,7 @@ lib/core/interfaces/IConfigLauncherItem.md
|
|
|
14383
14519
|
|
|
14384
14520
|
# Interface: IConfigLauncherItem
|
|
14385
14521
|
|
|
14386
|
-
Defined in: [lib/core.ts:
|
|
14522
|
+
Defined in: [lib/core.ts:1230](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1230)
|
|
14387
14523
|
|
|
14388
14524
|
Launcher 的 item 对象
|
|
14389
14525
|
|
|
@@ -14393,7 +14529,7 @@ Launcher 的 item 对象
|
|
|
14393
14529
|
|
|
14394
14530
|
> `optional` **icon**: `string`
|
|
14395
14531
|
|
|
14396
|
-
Defined in: [lib/core.ts:
|
|
14532
|
+
Defined in: [lib/core.ts:1234](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1234)
|
|
14397
14533
|
|
|
14398
14534
|
***
|
|
14399
14535
|
|
|
@@ -14401,7 +14537,7 @@ Defined in: [lib/core.ts:1219](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14401
14537
|
|
|
14402
14538
|
> `optional` **id**: `string`
|
|
14403
14539
|
|
|
14404
|
-
Defined in: [lib/core.ts:
|
|
14540
|
+
Defined in: [lib/core.ts:1231](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1231)
|
|
14405
14541
|
|
|
14406
14542
|
***
|
|
14407
14543
|
|
|
@@ -14409,7 +14545,7 @@ Defined in: [lib/core.ts:1216](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14409
14545
|
|
|
14410
14546
|
> `optional` **list**: `object`[]
|
|
14411
14547
|
|
|
14412
|
-
Defined in: [lib/core.ts:
|
|
14548
|
+
Defined in: [lib/core.ts:1235](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1235)
|
|
14413
14549
|
|
|
14414
14550
|
#### icon
|
|
14415
14551
|
|
|
@@ -14433,7 +14569,7 @@ Defined in: [lib/core.ts:1220](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14433
14569
|
|
|
14434
14570
|
> **name**: `string`
|
|
14435
14571
|
|
|
14436
|
-
Defined in: [lib/core.ts:
|
|
14572
|
+
Defined in: [lib/core.ts:1232](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1232)
|
|
14437
14573
|
|
|
14438
14574
|
***
|
|
14439
14575
|
|
|
@@ -14441,7 +14577,7 @@ Defined in: [lib/core.ts:1217](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14441
14577
|
|
|
14442
14578
|
> `optional` **path**: `string`
|
|
14443
14579
|
|
|
14444
|
-
Defined in: [lib/core.ts:
|
|
14580
|
+
Defined in: [lib/core.ts:1233](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1233)
|
|
14445
14581
|
|
|
14446
14582
|
lib/core/interfaces/ICoreFetchAppOptions.md
|
|
14447
14583
|
---
|
|
@@ -14454,7 +14590,7 @@ lib/core/interfaces/ICoreFetchAppOptions.md
|
|
|
14454
14590
|
|
|
14455
14591
|
# Interface: ICoreFetchAppOptions
|
|
14456
14592
|
|
|
14457
|
-
Defined in: [lib/core.ts:
|
|
14593
|
+
Defined in: [lib/core.ts:1252](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1252)
|
|
14458
14594
|
|
|
14459
14595
|
现场下载 app 的参数
|
|
14460
14596
|
|
|
@@ -14464,7 +14600,7 @@ Defined in: [lib/core.ts:1237](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14464
14600
|
|
|
14465
14601
|
> `optional` **after**: `string`
|
|
14466
14602
|
|
|
14467
|
-
Defined in: [lib/core.ts:
|
|
14603
|
+
Defined in: [lib/core.ts:1262](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1262)
|
|
14468
14604
|
|
|
14469
14605
|
网址后面附带的前缀,如 ?123
|
|
14470
14606
|
|
|
@@ -14474,7 +14610,7 @@ Defined in: [lib/core.ts:1247](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14474
14610
|
|
|
14475
14611
|
> `optional` **notify**: `number` \| \{ `id?`: `number`; `loaded?`: `number`; `total?`: `number`; \}
|
|
14476
14612
|
|
|
14477
|
-
Defined in: [lib/core.ts:
|
|
14613
|
+
Defined in: [lib/core.ts:1253](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1253)
|
|
14478
14614
|
|
|
14479
14615
|
#### Type Declaration
|
|
14480
14616
|
|
|
@@ -14506,7 +14642,7 @@ notify id
|
|
|
14506
14642
|
|
|
14507
14643
|
> `optional` **progress**: (`loaded`, `total`, `per`) => `void` \| `Promise`\<`void`\>
|
|
14508
14644
|
|
|
14509
|
-
Defined in: [lib/core.ts:
|
|
14645
|
+
Defined in: [lib/core.ts:1269](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1269)
|
|
14510
14646
|
|
|
14511
14647
|
下载进度
|
|
14512
14648
|
|
|
@@ -14545,7 +14681,7 @@ lib/core/interfaces/ITumsPlayer.md
|
|
|
14545
14681
|
|
|
14546
14682
|
# Interface: ITumsPlayer
|
|
14547
14683
|
|
|
14548
|
-
Defined in: [lib/core.ts:
|
|
14684
|
+
Defined in: [lib/core.ts:1396](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1396)
|
|
14549
14685
|
|
|
14550
14686
|
tums-player 模块对象
|
|
14551
14687
|
|
|
@@ -14555,7 +14691,7 @@ tums-player 模块对象
|
|
|
14555
14691
|
|
|
14556
14692
|
> **default**: `any`
|
|
14557
14693
|
|
|
14558
|
-
Defined in: [lib/core.ts:
|
|
14694
|
+
Defined in: [lib/core.ts:1397](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1397)
|
|
14559
14695
|
|
|
14560
14696
|
***
|
|
14561
14697
|
|
|
@@ -14563,7 +14699,7 @@ Defined in: [lib/core.ts:1382](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14563
14699
|
|
|
14564
14700
|
> **startTalk**: (`opt`) => `Promise`\<`void`\>
|
|
14565
14701
|
|
|
14566
|
-
Defined in: [lib/core.ts:
|
|
14702
|
+
Defined in: [lib/core.ts:1399](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1399)
|
|
14567
14703
|
|
|
14568
14704
|
开始对讲
|
|
14569
14705
|
|
|
@@ -14599,7 +14735,7 @@ half_duplex-半双工模式,vad-VAD 人声检测模式,aec-AEC 全双工模式
|
|
|
14599
14735
|
|
|
14600
14736
|
> **stopTalk**: () => `void`
|
|
14601
14737
|
|
|
14602
|
-
Defined in: [lib/core.ts:
|
|
14738
|
+
Defined in: [lib/core.ts:1407](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1407)
|
|
14603
14739
|
|
|
14604
14740
|
停止对讲
|
|
14605
14741
|
|
|
@@ -14618,7 +14754,7 @@ lib/core/interfaces/IVApp.md
|
|
|
14618
14754
|
|
|
14619
14755
|
# Interface: IVApp
|
|
14620
14756
|
|
|
14621
|
-
Defined in: [lib/core.ts:
|
|
14757
|
+
Defined in: [lib/core.ts:1376](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1376)
|
|
14622
14758
|
|
|
14623
14759
|
Vue 应用
|
|
14624
14760
|
|
|
@@ -14628,7 +14764,7 @@ Vue 应用
|
|
|
14628
14764
|
|
|
14629
14765
|
> **\_container**: `HTMLElement`
|
|
14630
14766
|
|
|
14631
|
-
Defined in: [lib/core.ts:
|
|
14767
|
+
Defined in: [lib/core.ts:1388](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1388)
|
|
14632
14768
|
|
|
14633
14769
|
***
|
|
14634
14770
|
|
|
@@ -14636,7 +14772,7 @@ Defined in: [lib/core.ts:1373](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14636
14772
|
|
|
14637
14773
|
> **config**: [`IVueConfig`](IVueConfig.md)
|
|
14638
14774
|
|
|
14639
|
-
Defined in: [lib/core.ts:
|
|
14775
|
+
Defined in: [lib/core.ts:1379](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1379)
|
|
14640
14776
|
|
|
14641
14777
|
***
|
|
14642
14778
|
|
|
@@ -14644,7 +14780,7 @@ Defined in: [lib/core.ts:1364](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14644
14780
|
|
|
14645
14781
|
> **version**: `string`
|
|
14646
14782
|
|
|
14647
|
-
Defined in: [lib/core.ts:
|
|
14783
|
+
Defined in: [lib/core.ts:1386](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1386)
|
|
14648
14784
|
|
|
14649
14785
|
## Methods
|
|
14650
14786
|
|
|
@@ -14654,7 +14790,7 @@ Defined in: [lib/core.ts:1371](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14654
14790
|
|
|
14655
14791
|
> **component**(`name`): `any`
|
|
14656
14792
|
|
|
14657
|
-
Defined in: [lib/core.ts:
|
|
14793
|
+
Defined in: [lib/core.ts:1377](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1377)
|
|
14658
14794
|
|
|
14659
14795
|
##### Parameters
|
|
14660
14796
|
|
|
@@ -14670,7 +14806,7 @@ Defined in: [lib/core.ts:1362](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14670
14806
|
|
|
14671
14807
|
> **component**(`name`, `config`): `this`
|
|
14672
14808
|
|
|
14673
|
-
Defined in: [lib/core.ts:
|
|
14809
|
+
Defined in: [lib/core.ts:1378](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1378)
|
|
14674
14810
|
|
|
14675
14811
|
##### Parameters
|
|
14676
14812
|
|
|
@@ -14694,7 +14830,7 @@ Defined in: [lib/core.ts:1363](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14694
14830
|
|
|
14695
14831
|
> **directive**(`name`): `any`
|
|
14696
14832
|
|
|
14697
|
-
Defined in: [lib/core.ts:
|
|
14833
|
+
Defined in: [lib/core.ts:1380](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1380)
|
|
14698
14834
|
|
|
14699
14835
|
##### Parameters
|
|
14700
14836
|
|
|
@@ -14710,7 +14846,7 @@ Defined in: [lib/core.ts:1365](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14710
14846
|
|
|
14711
14847
|
> **directive**(`name`, `config`): `this`
|
|
14712
14848
|
|
|
14713
|
-
Defined in: [lib/core.ts:
|
|
14849
|
+
Defined in: [lib/core.ts:1381](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1381)
|
|
14714
14850
|
|
|
14715
14851
|
##### Parameters
|
|
14716
14852
|
|
|
@@ -14732,7 +14868,7 @@ Defined in: [lib/core.ts:1366](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14732
14868
|
|
|
14733
14869
|
> **mixin**(`mixin`): `this`
|
|
14734
14870
|
|
|
14735
|
-
Defined in: [lib/core.ts:
|
|
14871
|
+
Defined in: [lib/core.ts:1382](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1382)
|
|
14736
14872
|
|
|
14737
14873
|
#### Parameters
|
|
14738
14874
|
|
|
@@ -14750,7 +14886,7 @@ Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14750
14886
|
|
|
14751
14887
|
> **mount**(`rootContainer`): [`IVue`](IVue.md)
|
|
14752
14888
|
|
|
14753
|
-
Defined in: [lib/core.ts:
|
|
14889
|
+
Defined in: [lib/core.ts:1383](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1383)
|
|
14754
14890
|
|
|
14755
14891
|
#### Parameters
|
|
14756
14892
|
|
|
@@ -14768,7 +14904,7 @@ Defined in: [lib/core.ts:1368](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14768
14904
|
|
|
14769
14905
|
> **provide**\<`T`\>(`key`, `value`): `this`
|
|
14770
14906
|
|
|
14771
|
-
Defined in: [lib/core.ts:
|
|
14907
|
+
Defined in: [lib/core.ts:1384](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1384)
|
|
14772
14908
|
|
|
14773
14909
|
#### Type Parameters
|
|
14774
14910
|
|
|
@@ -14796,7 +14932,7 @@ Defined in: [lib/core.ts:1369](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14796
14932
|
|
|
14797
14933
|
> **unmount**(): `void`
|
|
14798
14934
|
|
|
14799
|
-
Defined in: [lib/core.ts:
|
|
14935
|
+
Defined in: [lib/core.ts:1385](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1385)
|
|
14800
14936
|
|
|
14801
14937
|
#### Returns
|
|
14802
14938
|
|
|
@@ -14813,7 +14949,7 @@ lib/core/interfaces/IVNode.md
|
|
|
14813
14949
|
|
|
14814
14950
|
# Interface: IVNode
|
|
14815
14951
|
|
|
14816
|
-
Defined in: [lib/core.ts:
|
|
14952
|
+
Defined in: [lib/core.ts:1339](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1339)
|
|
14817
14953
|
|
|
14818
14954
|
Vue 节点
|
|
14819
14955
|
|
|
@@ -14827,7 +14963,7 @@ Vue 节点
|
|
|
14827
14963
|
|
|
14828
14964
|
> **children**: `object` & `IVNode`[]
|
|
14829
14965
|
|
|
14830
|
-
Defined in: [lib/core.ts:
|
|
14966
|
+
Defined in: [lib/core.ts:1340](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1340)
|
|
14831
14967
|
|
|
14832
14968
|
#### Type Declaration
|
|
14833
14969
|
|
|
@@ -14841,7 +14977,7 @@ Defined in: [lib/core.ts:1325](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14841
14977
|
|
|
14842
14978
|
> **props**: `Record`\<`string`, `any`\>
|
|
14843
14979
|
|
|
14844
|
-
Defined in: [lib/core.ts:
|
|
14980
|
+
Defined in: [lib/core.ts:1344](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1344)
|
|
14845
14981
|
|
|
14846
14982
|
***
|
|
14847
14983
|
|
|
@@ -14849,7 +14985,7 @@ Defined in: [lib/core.ts:1329](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14849
14985
|
|
|
14850
14986
|
> **type**: `symbol` \| `Record`\<`string`, `any`\>
|
|
14851
14987
|
|
|
14852
|
-
Defined in: [lib/core.ts:
|
|
14988
|
+
Defined in: [lib/core.ts:1345](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1345)
|
|
14853
14989
|
|
|
14854
14990
|
lib/core/interfaces/IVue.md
|
|
14855
14991
|
---
|
|
@@ -14862,7 +14998,7 @@ lib/core/interfaces/IVue.md
|
|
|
14862
14998
|
|
|
14863
14999
|
# Interface: IVue
|
|
14864
15000
|
|
|
14865
|
-
Defined in: [lib/core.ts:
|
|
15001
|
+
Defined in: [lib/core.ts:1314](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1314)
|
|
14866
15002
|
|
|
14867
15003
|
Vue 实例
|
|
14868
15004
|
|
|
@@ -14876,7 +15012,7 @@ Vue 实例
|
|
|
14876
15012
|
|
|
14877
15013
|
> **$attrs**: `Record`\<`string`, `string`\>
|
|
14878
15014
|
|
|
14879
|
-
Defined in: [lib/core.ts:
|
|
15015
|
+
Defined in: [lib/core.ts:1315](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1315)
|
|
14880
15016
|
|
|
14881
15017
|
***
|
|
14882
15018
|
|
|
@@ -14884,7 +15020,7 @@ Defined in: [lib/core.ts:1300](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14884
15020
|
|
|
14885
15021
|
> **$data**: `Record`\<`string`, `any`\>
|
|
14886
15022
|
|
|
14887
|
-
Defined in: [lib/core.ts:
|
|
15023
|
+
Defined in: [lib/core.ts:1316](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1316)
|
|
14888
15024
|
|
|
14889
15025
|
***
|
|
14890
15026
|
|
|
@@ -14892,7 +15028,7 @@ Defined in: [lib/core.ts:1301](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14892
15028
|
|
|
14893
15029
|
> **$el**: `HTMLElement`
|
|
14894
15030
|
|
|
14895
|
-
Defined in: [lib/core.ts:
|
|
15031
|
+
Defined in: [lib/core.ts:1317](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1317)
|
|
14896
15032
|
|
|
14897
15033
|
***
|
|
14898
15034
|
|
|
@@ -14900,7 +15036,7 @@ Defined in: [lib/core.ts:1302](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14900
15036
|
|
|
14901
15037
|
> **$options**: `Record`\<`string`, `any`\>
|
|
14902
15038
|
|
|
14903
|
-
Defined in: [lib/core.ts:
|
|
15039
|
+
Defined in: [lib/core.ts:1321](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1321)
|
|
14904
15040
|
|
|
14905
15041
|
***
|
|
14906
15042
|
|
|
@@ -14908,7 +15044,7 @@ Defined in: [lib/core.ts:1306](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14908
15044
|
|
|
14909
15045
|
> **$parent**: `IVue` \| `null`
|
|
14910
15046
|
|
|
14911
|
-
Defined in: [lib/core.ts:
|
|
15047
|
+
Defined in: [lib/core.ts:1322](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1322)
|
|
14912
15048
|
|
|
14913
15049
|
***
|
|
14914
15050
|
|
|
@@ -14916,7 +15052,7 @@ Defined in: [lib/core.ts:1307](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14916
15052
|
|
|
14917
15053
|
> **$props**: `Record`\<`string`, `any`\>
|
|
14918
15054
|
|
|
14919
|
-
Defined in: [lib/core.ts:
|
|
15055
|
+
Defined in: [lib/core.ts:1323](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1323)
|
|
14920
15056
|
|
|
14921
15057
|
***
|
|
14922
15058
|
|
|
@@ -14924,7 +15060,7 @@ Defined in: [lib/core.ts:1308](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14924
15060
|
|
|
14925
15061
|
> **$refs**: `Record`\<`string`, `HTMLElement` & `IVue`\>
|
|
14926
15062
|
|
|
14927
|
-
Defined in: [lib/core.ts:
|
|
15063
|
+
Defined in: [lib/core.ts:1324](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1324)
|
|
14928
15064
|
|
|
14929
15065
|
***
|
|
14930
15066
|
|
|
@@ -14932,7 +15068,7 @@ Defined in: [lib/core.ts:1309](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14932
15068
|
|
|
14933
15069
|
> **$root**: `IVue`
|
|
14934
15070
|
|
|
14935
|
-
Defined in: [lib/core.ts:
|
|
15071
|
+
Defined in: [lib/core.ts:1325](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1325)
|
|
14936
15072
|
|
|
14937
15073
|
***
|
|
14938
15074
|
|
|
@@ -14940,7 +15076,7 @@ Defined in: [lib/core.ts:1310](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14940
15076
|
|
|
14941
15077
|
> **$slots**: `object`
|
|
14942
15078
|
|
|
14943
|
-
Defined in: [lib/core.ts:
|
|
15079
|
+
Defined in: [lib/core.ts:1326](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1326)
|
|
14944
15080
|
|
|
14945
15081
|
#### Index Signature
|
|
14946
15082
|
|
|
@@ -14956,7 +15092,7 @@ Defined in: [lib/core.ts:1311](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14956
15092
|
|
|
14957
15093
|
> **$watch**: (`o`, `cb`, `opt?`) => `void`
|
|
14958
15094
|
|
|
14959
|
-
Defined in: [lib/core.ts:
|
|
15095
|
+
Defined in: [lib/core.ts:1330](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1330)
|
|
14960
15096
|
|
|
14961
15097
|
#### Parameters
|
|
14962
15098
|
|
|
@@ -14988,7 +15124,7 @@ Defined in: [lib/core.ts:1315](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14988
15124
|
|
|
14989
15125
|
> **$emit**(`name`, ...`arg`): `void`
|
|
14990
15126
|
|
|
14991
|
-
Defined in: [lib/core.ts:
|
|
15127
|
+
Defined in: [lib/core.ts:1318](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1318)
|
|
14992
15128
|
|
|
14993
15129
|
#### Parameters
|
|
14994
15130
|
|
|
@@ -15010,7 +15146,7 @@ Defined in: [lib/core.ts:1303](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15010
15146
|
|
|
15011
15147
|
> **$forceUpdate**(): `void`
|
|
15012
15148
|
|
|
15013
|
-
Defined in: [lib/core.ts:
|
|
15149
|
+
Defined in: [lib/core.ts:1319](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1319)
|
|
15014
15150
|
|
|
15015
15151
|
#### Returns
|
|
15016
15152
|
|
|
@@ -15022,7 +15158,7 @@ Defined in: [lib/core.ts:1304](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15022
15158
|
|
|
15023
15159
|
> **$nextTick**(): `Promise`\<`void`\>
|
|
15024
15160
|
|
|
15025
|
-
Defined in: [lib/core.ts:
|
|
15161
|
+
Defined in: [lib/core.ts:1320](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1320)
|
|
15026
15162
|
|
|
15027
15163
|
#### Returns
|
|
15028
15164
|
|
|
@@ -15039,7 +15175,7 @@ lib/core/interfaces/IVueConfig.md
|
|
|
15039
15175
|
|
|
15040
15176
|
# Interface: IVueConfig
|
|
15041
15177
|
|
|
15042
|
-
Defined in: [lib/core.ts:
|
|
15178
|
+
Defined in: [lib/core.ts:1366](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1366)
|
|
15043
15179
|
|
|
15044
15180
|
Vue 配置
|
|
15045
15181
|
|
|
@@ -15049,7 +15185,7 @@ Vue 配置
|
|
|
15049
15185
|
|
|
15050
15186
|
> **globalProperties**: `Record`\<`string`, `any`\>
|
|
15051
15187
|
|
|
15052
|
-
Defined in: [lib/core.ts:
|
|
15188
|
+
Defined in: [lib/core.ts:1368](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1368)
|
|
15053
15189
|
|
|
15054
15190
|
***
|
|
15055
15191
|
|
|
@@ -15057,7 +15193,7 @@ Defined in: [lib/core.ts:1353](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15057
15193
|
|
|
15058
15194
|
> **optionMergeStrategies**: `Record`\<`string`, [`IVueOptionMergeFunction`](../type-aliases/IVueOptionMergeFunction.md)\>
|
|
15059
15195
|
|
|
15060
|
-
Defined in: [lib/core.ts:
|
|
15196
|
+
Defined in: [lib/core.ts:1370](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1370)
|
|
15061
15197
|
|
|
15062
15198
|
***
|
|
15063
15199
|
|
|
@@ -15065,7 +15201,7 @@ Defined in: [lib/core.ts:1355](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15065
15201
|
|
|
15066
15202
|
> **performance**: `boolean`
|
|
15067
15203
|
|
|
15068
|
-
Defined in: [lib/core.ts:
|
|
15204
|
+
Defined in: [lib/core.ts:1371](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1371)
|
|
15069
15205
|
|
|
15070
15206
|
## Methods
|
|
15071
15207
|
|
|
@@ -15073,7 +15209,7 @@ Defined in: [lib/core.ts:1356](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15073
15209
|
|
|
15074
15210
|
> `optional` **errorHandler**(`err`, `instance`, `info`): `void`
|
|
15075
15211
|
|
|
15076
|
-
Defined in: [lib/core.ts:
|
|
15212
|
+
Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1367)
|
|
15077
15213
|
|
|
15078
15214
|
#### Parameters
|
|
15079
15215
|
|
|
@@ -15099,7 +15235,7 @@ Defined in: [lib/core.ts:1352](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15099
15235
|
|
|
15100
15236
|
> **isCustomElement**(`tag`): `boolean`
|
|
15101
15237
|
|
|
15102
|
-
Defined in: [lib/core.ts:
|
|
15238
|
+
Defined in: [lib/core.ts:1369](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1369)
|
|
15103
15239
|
|
|
15104
15240
|
#### Parameters
|
|
15105
15241
|
|
|
@@ -15117,7 +15253,7 @@ Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15117
15253
|
|
|
15118
15254
|
> `optional` **warnHandler**(`msg`, `instance`, `trace`): `void`
|
|
15119
15255
|
|
|
15120
|
-
Defined in: [lib/core.ts:
|
|
15256
|
+
Defined in: [lib/core.ts:1372](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1372)
|
|
15121
15257
|
|
|
15122
15258
|
#### Parameters
|
|
15123
15259
|
|
|
@@ -15148,7 +15284,7 @@ lib/core/interfaces/IVueObject.md
|
|
|
15148
15284
|
|
|
15149
15285
|
# Interface: IVueObject
|
|
15150
15286
|
|
|
15151
|
-
Defined in: [lib/core.ts:
|
|
15287
|
+
Defined in: [lib/core.ts:1350](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1350)
|
|
15152
15288
|
|
|
15153
15289
|
## Methods
|
|
15154
15290
|
|
|
@@ -15156,7 +15292,7 @@ Defined in: [lib/core.ts:1335](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15156
15292
|
|
|
15157
15293
|
> **createApp**(`opt`): [`IVApp`](IVApp.md)
|
|
15158
15294
|
|
|
15159
|
-
Defined in: [lib/core.ts:
|
|
15295
|
+
Defined in: [lib/core.ts:1351](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1351)
|
|
15160
15296
|
|
|
15161
15297
|
#### Parameters
|
|
15162
15298
|
|
|
@@ -15174,7 +15310,7 @@ Defined in: [lib/core.ts:1336](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15174
15310
|
|
|
15175
15311
|
> **h**(`tag`, `props?`, `list?`): `any`
|
|
15176
15312
|
|
|
15177
|
-
Defined in: [lib/core.ts:
|
|
15313
|
+
Defined in: [lib/core.ts:1359](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1359)
|
|
15178
15314
|
|
|
15179
15315
|
#### Parameters
|
|
15180
15316
|
|
|
@@ -15200,7 +15336,7 @@ Defined in: [lib/core.ts:1344](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15200
15336
|
|
|
15201
15337
|
> **reactive**\<`T`\>(`obj`): `T`
|
|
15202
15338
|
|
|
15203
|
-
Defined in: [lib/core.ts:
|
|
15339
|
+
Defined in: [lib/core.ts:1353](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1353)
|
|
15204
15340
|
|
|
15205
15341
|
#### Type Parameters
|
|
15206
15342
|
|
|
@@ -15224,7 +15360,7 @@ Defined in: [lib/core.ts:1338](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15224
15360
|
|
|
15225
15361
|
> **ref**\<`T`\>(`obj`): `object`
|
|
15226
15362
|
|
|
15227
|
-
Defined in: [lib/core.ts:
|
|
15363
|
+
Defined in: [lib/core.ts:1352](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1352)
|
|
15228
15364
|
|
|
15229
15365
|
#### Type Parameters
|
|
15230
15366
|
|
|
@@ -15252,7 +15388,7 @@ Defined in: [lib/core.ts:1337](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15252
15388
|
|
|
15253
15389
|
> **watch**(`v`, `cb`, `opt`): `void`
|
|
15254
15390
|
|
|
15255
|
-
Defined in: [lib/core.ts:
|
|
15391
|
+
Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1354)
|
|
15256
15392
|
|
|
15257
15393
|
#### Parameters
|
|
15258
15394
|
|
|
@@ -15285,7 +15421,7 @@ lib/core/type-aliases/IVueOptionMergeFunction.md
|
|
|
15285
15421
|
|
|
15286
15422
|
> **IVueOptionMergeFunction** = (`to`, `from`, `instance`) => `any`
|
|
15287
15423
|
|
|
15288
|
-
Defined in: [lib/core.ts:
|
|
15424
|
+
Defined in: [lib/core.ts:1363](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1363)
|
|
15289
15425
|
|
|
15290
15426
|
Vue 选项合并函数
|
|
15291
15427
|
|
|
@@ -15320,7 +15456,7 @@ lib/core/type-aliases/TCurrent.md
|
|
|
15320
15456
|
|
|
15321
15457
|
> **TCurrent** = `string` \| [`AbstractForm`](../../form/classes/AbstractForm.md) \| [`AbstractPanel`](../../form/classes/AbstractPanel.md) \| [`AbstractControl`](../../control/classes/AbstractControl.md) \| [`AbstractApp`](../classes/AbstractApp.md)
|
|
15322
15458
|
|
|
15323
|
-
Defined in: [lib/core.ts:
|
|
15459
|
+
Defined in: [lib/core.ts:1391](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1391)
|
|
15324
15460
|
|
|
15325
15461
|
lib/core/type-aliases/TGlobalEvent.md
|
|
15326
15462
|
---
|
|
@@ -15335,7 +15471,7 @@ lib/core/type-aliases/TGlobalEvent.md
|
|
|
15335
15471
|
|
|
15336
15472
|
> **TGlobalEvent** = `"error"` \| `"screenResize"` \| `"configChanged"` \| `"formCreated"` \| `"formRemoved"` \| `"formTitleChanged"` \| `"formIconChanged"` \| `"formStateMinChanged"` \| `"formStateMaxChanged"` \| `"formShowChanged"` \| `"formFocused"` \| `"formBlurred"` \| `"formFlash"` \| `"formShowInSystemTaskChange"` \| `"formHashChange"` \| `"taskStarted"` \| `"taskEnded"` \| `"launcherFolderNameChanged"` \| `"hashChanged"` \| `"keydown"` \| `"keyup"`
|
|
15337
15473
|
|
|
15338
|
-
Defined in: [lib/core.ts:
|
|
15474
|
+
Defined in: [lib/core.ts:1249](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1249)
|
|
15339
15475
|
|
|
15340
15476
|
全局事件类型
|
|
15341
15477
|
|
|
@@ -15352,7 +15488,7 @@ lib/core/variables/config.md
|
|
|
15352
15488
|
|
|
15353
15489
|
> **config**: [`IConfig`](../interfaces/IConfig.md)
|
|
15354
15490
|
|
|
15355
|
-
Defined in: [lib/core.ts:
|
|
15491
|
+
Defined in: [lib/core.ts:54](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L54)
|
|
15356
15492
|
|
|
15357
15493
|
Config 配置对象
|
|
15358
15494
|
|