clickgo 5.9.0 → 5.10.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/clickgo.d.ts +4 -0
- package/dist/control/box.cgc +0 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/fabric.cgc +0 -0
- package/dist/control/waterfall.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/core.d.ts +2 -0
- package/doc/clickgo-rag.md +277 -179
- package/package.json +2 -1
package/doc/clickgo-rag.md
CHANGED
|
@@ -7233,6 +7233,76 @@ TUMS 监控组件。
|
|
|
7233
7233
|
<video :src="videoUrl" v-model:play="isPlaying" v-model:current="currentTime"></video>
|
|
7234
7234
|
```
|
|
7235
7235
|
|
|
7236
|
+
## waterfall
|
|
7237
|
+
---
|
|
7238
|
+
|
|
7239
|
+
这是一个用于实现虚拟滚动瀑布流布局的控件,支持高度不一的元素在多列显示中按照贪心算法填入最短列,从而形成典型的瀑布流体验。底层利用虚拟化机制(Virtualization),仅渲染在视口(及其上下缓冲区域)内可见的 `DOM` 节点,能够支持超大数据量的平滑滚动和渲染。
|
|
7240
|
+
|
|
7241
|
+
### 参数
|
|
7242
|
+
|
|
7243
|
+
#### data
|
|
7244
|
+
|
|
7245
|
+
`any[]`
|
|
7246
|
+
|
|
7247
|
+
瀑布流的数据源,默认 `[]`。
|
|
7248
|
+
|
|
7249
|
+
#### columns
|
|
7250
|
+
|
|
7251
|
+
`number` | `string`
|
|
7252
|
+
|
|
7253
|
+
瀑布流的列数,默认 2。
|
|
7254
|
+
|
|
7255
|
+
#### gap
|
|
7256
|
+
|
|
7257
|
+
`number` | `string`
|
|
7258
|
+
|
|
7259
|
+
列与列、行与行的间距(以像素为单位),默认 10。
|
|
7260
|
+
|
|
7261
|
+
#### sizes
|
|
7262
|
+
|
|
7263
|
+
`Record<string, number | undefined>`
|
|
7264
|
+
|
|
7265
|
+
高度映射对象,用于告诉组件每个数据项需要渲染的高度。键为数据项索引或唯一 `id`,值为该项对应的像素高度。当前虚拟化强依赖于预知高度。默认的键值为 `{}`。
|
|
7266
|
+
|
|
7267
|
+
### 事件
|
|
7268
|
+
|
|
7269
|
+
#### scroll
|
|
7270
|
+
|
|
7271
|
+
瀑布流内容发生滚动时触发。
|
|
7272
|
+
|
|
7273
|
+
- `e`: `Event`
|
|
7274
|
+
|
|
7275
|
+
### 方法
|
|
7276
|
+
|
|
7277
|
+
暂无供外部调用的公开方法。
|
|
7278
|
+
|
|
7279
|
+
### 插槽
|
|
7280
|
+
|
|
7281
|
+
#### default
|
|
7282
|
+
|
|
7283
|
+
每一项的具体展现内容,可访问当前遍历的当前行。
|
|
7284
|
+
|
|
7285
|
+
- `row`: 当前行数据对象
|
|
7286
|
+
- `index`: 当前行对应的下标。
|
|
7287
|
+
|
|
7288
|
+
### 样式
|
|
7289
|
+
|
|
7290
|
+
该控件包裹在一个带有 `overflow-y` 设置为 `auto` 的滚动区域内。内部有一层相对于外层采取相对定位(`position: relative`)用来支撑所有列表项总高度的 `inner` 容器。
|
|
7291
|
+
|
|
7292
|
+
每一个子项则通过绝对定位并通过 `transform: translate(X, Y)` 去改变它们在 `inner` 中停留的具体坐标系。子项切换位置时默认带有轻微的位移过渡动画(`transition: transform 0.2s`),以防数据或尺寸重计算导致页面内容瞬间闪烁。
|
|
7293
|
+
|
|
7294
|
+
同时内部所有距离包括列宽、坐标计算等都会自动减去容器组件设置的 `padding` 大小。
|
|
7295
|
+
|
|
7296
|
+
### 示例
|
|
7297
|
+
|
|
7298
|
+
```xml
|
|
7299
|
+
<waterfall :data="[{'id': 1}, {'id': 2}]" :columns="2" :gap="15" :sizes="{'1': 100, '2': 250}">
|
|
7300
|
+
<template v-slot="scope">
|
|
7301
|
+
<div style="background: red;">内容: {{ scope.row.id }} - 下标: {{ scope.index }}</div>
|
|
7302
|
+
</template>
|
|
7303
|
+
</waterfall>
|
|
7304
|
+
```
|
|
7305
|
+
|
|
7236
7306
|
## web
|
|
7237
7307
|
---
|
|
7238
7308
|
|
|
@@ -7317,7 +7387,7 @@ clickgo/classes/AbstractBoot.md
|
|
|
7317
7387
|
|
|
7318
7388
|
# Abstract Class: AbstractBoot
|
|
7319
7389
|
|
|
7320
|
-
Defined in: [clickgo.ts:
|
|
7390
|
+
Defined in: [clickgo.ts:165](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L165)
|
|
7321
7391
|
|
|
7322
7392
|
全局类
|
|
7323
7393
|
|
|
@@ -7327,7 +7397,7 @@ Defined in: [clickgo.ts:161](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7327
7397
|
|
|
7328
7398
|
> **new AbstractBoot**(`opt?`): `AbstractBoot`
|
|
7329
7399
|
|
|
7330
|
-
Defined in: [clickgo.ts:
|
|
7400
|
+
Defined in: [clickgo.ts:185](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L185)
|
|
7331
7401
|
|
|
7332
7402
|
#### Parameters
|
|
7333
7403
|
|
|
@@ -7347,7 +7417,7 @@ Defined in: [clickgo.ts:181](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7347
7417
|
|
|
7348
7418
|
> `protected` **\_sysId**: `string` = `''`
|
|
7349
7419
|
|
|
7350
|
-
Defined in: [clickgo.ts:
|
|
7420
|
+
Defined in: [clickgo.ts:171](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L171)
|
|
7351
7421
|
|
|
7352
7422
|
切勿传给 App
|
|
7353
7423
|
|
|
@@ -7357,7 +7427,7 @@ Defined in: [clickgo.ts:167](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7357
7427
|
|
|
7358
7428
|
> **isDebug**(): `boolean`
|
|
7359
7429
|
|
|
7360
|
-
Defined in: [clickgo.ts:
|
|
7430
|
+
Defined in: [clickgo.ts:181](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L181)
|
|
7361
7431
|
|
|
7362
7432
|
判断当前是否是 debug 模式
|
|
7363
7433
|
|
|
@@ -7371,7 +7441,7 @@ Defined in: [clickgo.ts:177](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7371
7441
|
|
|
7372
7442
|
> `abstract` **main**(): `void` \| `Promise`\<`void`\>
|
|
7373
7443
|
|
|
7374
|
-
Defined in: [clickgo.ts:
|
|
7444
|
+
Defined in: [clickgo.ts:194](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L194)
|
|
7375
7445
|
|
|
7376
7446
|
入口方法
|
|
7377
7447
|
|
|
@@ -7385,7 +7455,7 @@ Defined in: [clickgo.ts:190](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7385
7455
|
|
|
7386
7456
|
> **onConfigChanged**\<`T`, `TK`\>(`n`, `v`): `void` \| `Promise`\<`void`\>
|
|
7387
7457
|
|
|
7388
|
-
Defined in: [clickgo.ts:
|
|
7458
|
+
Defined in: [clickgo.ts:209](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L209)
|
|
7389
7459
|
|
|
7390
7460
|
系统配置变更事件
|
|
7391
7461
|
|
|
@@ -7419,7 +7489,7 @@ Defined in: [clickgo.ts:205](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7419
7489
|
|
|
7420
7490
|
> **onError**(`taskId`, `formId`, `error`, `info`): `void` \| `Promise`\<`void`\>
|
|
7421
7491
|
|
|
7422
|
-
Defined in: [clickgo.ts:
|
|
7492
|
+
Defined in: [clickgo.ts:197](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L197)
|
|
7423
7493
|
|
|
7424
7494
|
全局错误事件
|
|
7425
7495
|
|
|
@@ -7451,7 +7521,7 @@ Defined in: [clickgo.ts:193](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7451
7521
|
|
|
7452
7522
|
> **onFormBlurred**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
7453
7523
|
|
|
7454
|
-
Defined in: [clickgo.ts:
|
|
7524
|
+
Defined in: [clickgo.ts:265](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L265)
|
|
7455
7525
|
|
|
7456
7526
|
窗体丢失焦点事件
|
|
7457
7527
|
|
|
@@ -7475,7 +7545,7 @@ Defined in: [clickgo.ts:261](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7475
7545
|
|
|
7476
7546
|
> **onFormCreated**(`taskId`, `formId`, `title`, `icon`, `showInSystemTask`): `void` \| `Promise`\<`void`\>
|
|
7477
7547
|
|
|
7478
|
-
Defined in: [clickgo.ts:
|
|
7548
|
+
Defined in: [clickgo.ts:215](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L215)
|
|
7479
7549
|
|
|
7480
7550
|
窗体创建事件
|
|
7481
7551
|
|
|
@@ -7511,7 +7581,7 @@ Defined in: [clickgo.ts:211](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7511
7581
|
|
|
7512
7582
|
> **onFormFlash**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
7513
7583
|
|
|
7514
|
-
Defined in: [clickgo.ts:
|
|
7584
|
+
Defined in: [clickgo.ts:271](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L271)
|
|
7515
7585
|
|
|
7516
7586
|
窗体闪烁事件
|
|
7517
7587
|
|
|
@@ -7535,7 +7605,7 @@ Defined in: [clickgo.ts:267](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7535
7605
|
|
|
7536
7606
|
> **onFormFocused**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
7537
7607
|
|
|
7538
|
-
Defined in: [clickgo.ts:
|
|
7608
|
+
Defined in: [clickgo.ts:259](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L259)
|
|
7539
7609
|
|
|
7540
7610
|
窗体获得焦点事件
|
|
7541
7611
|
|
|
@@ -7559,7 +7629,7 @@ Defined in: [clickgo.ts:255](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7559
7629
|
|
|
7560
7630
|
> **onFormHashChange**(`taskId`, `formId`, `value`, `data`): `void` \| `Promise`\<`void`\>
|
|
7561
7631
|
|
|
7562
|
-
Defined in: [clickgo.ts:
|
|
7632
|
+
Defined in: [clickgo.ts:283](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L283)
|
|
7563
7633
|
|
|
7564
7634
|
窗体的 formHash 改变事件
|
|
7565
7635
|
|
|
@@ -7591,7 +7661,7 @@ Defined in: [clickgo.ts:279](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7591
7661
|
|
|
7592
7662
|
> **onFormIconChanged**(`taskId`, `formId`, `icon`): `void` \| `Promise`\<`void`\>
|
|
7593
7663
|
|
|
7594
|
-
Defined in: [clickgo.ts:
|
|
7664
|
+
Defined in: [clickgo.ts:235](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L235)
|
|
7595
7665
|
|
|
7596
7666
|
窗体图标改变事件
|
|
7597
7667
|
|
|
@@ -7619,7 +7689,7 @@ Defined in: [clickgo.ts:231](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7619
7689
|
|
|
7620
7690
|
> **onFormRemoved**(`taskId`, `formId`, `title`, `icon`): `void` \| `Promise`\<`void`\>
|
|
7621
7691
|
|
|
7622
|
-
Defined in: [clickgo.ts:
|
|
7692
|
+
Defined in: [clickgo.ts:223](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L223)
|
|
7623
7693
|
|
|
7624
7694
|
窗体销毁事件
|
|
7625
7695
|
|
|
@@ -7651,7 +7721,7 @@ Defined in: [clickgo.ts:219](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7651
7721
|
|
|
7652
7722
|
> **onFormShowChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
7653
7723
|
|
|
7654
|
-
Defined in: [clickgo.ts:
|
|
7724
|
+
Defined in: [clickgo.ts:253](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L253)
|
|
7655
7725
|
|
|
7656
7726
|
窗体显示状态改变事件
|
|
7657
7727
|
|
|
@@ -7679,7 +7749,7 @@ Defined in: [clickgo.ts:249](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7679
7749
|
|
|
7680
7750
|
> **onFormShowInSystemTaskChange**(`taskId`, `formId`, `value`): `void` \| `Promise`\<`void`\>
|
|
7681
7751
|
|
|
7682
|
-
Defined in: [clickgo.ts:
|
|
7752
|
+
Defined in: [clickgo.ts:277](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L277)
|
|
7683
7753
|
|
|
7684
7754
|
窗体是否显示在任务栏属性改变事件
|
|
7685
7755
|
|
|
@@ -7707,7 +7777,7 @@ Defined in: [clickgo.ts:273](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7707
7777
|
|
|
7708
7778
|
> **onFormStateMaxChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
7709
7779
|
|
|
7710
|
-
Defined in: [clickgo.ts:
|
|
7780
|
+
Defined in: [clickgo.ts:247](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L247)
|
|
7711
7781
|
|
|
7712
7782
|
窗体最大化状态改变事件
|
|
7713
7783
|
|
|
@@ -7735,7 +7805,7 @@ Defined in: [clickgo.ts:243](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7735
7805
|
|
|
7736
7806
|
> **onFormStateMinChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
7737
7807
|
|
|
7738
|
-
Defined in: [clickgo.ts:
|
|
7808
|
+
Defined in: [clickgo.ts:241](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L241)
|
|
7739
7809
|
|
|
7740
7810
|
窗体最小化状态改变事件
|
|
7741
7811
|
|
|
@@ -7763,7 +7833,7 @@ Defined in: [clickgo.ts:237](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7763
7833
|
|
|
7764
7834
|
> **onFormTitleChanged**(`taskId`, `formId`, `title`): `void` \| `Promise`\<`void`\>
|
|
7765
7835
|
|
|
7766
|
-
Defined in: [clickgo.ts:
|
|
7836
|
+
Defined in: [clickgo.ts:229](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L229)
|
|
7767
7837
|
|
|
7768
7838
|
窗体标题改变事件
|
|
7769
7839
|
|
|
@@ -7791,7 +7861,7 @@ Defined in: [clickgo.ts:225](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7791
7861
|
|
|
7792
7862
|
> **onHashChanged**(`hash`): `void` \| `Promise`\<`void`\>
|
|
7793
7863
|
|
|
7794
|
-
Defined in: [clickgo.ts:
|
|
7864
|
+
Defined in: [clickgo.ts:309](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L309)
|
|
7795
7865
|
|
|
7796
7866
|
location hash 改变事件
|
|
7797
7867
|
|
|
@@ -7811,7 +7881,7 @@ location hash 改变事件
|
|
|
7811
7881
|
|
|
7812
7882
|
> **onKeydown**(`e`): `void` \| `Promise`\<`void`\>
|
|
7813
7883
|
|
|
7814
|
-
Defined in: [clickgo.ts:
|
|
7884
|
+
Defined in: [clickgo.ts:315](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L315)
|
|
7815
7885
|
|
|
7816
7886
|
键盘按下事件
|
|
7817
7887
|
|
|
@@ -7831,7 +7901,7 @@ Defined in: [clickgo.ts:311](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7831
7901
|
|
|
7832
7902
|
> **onKeyup**(`e`): `void` \| `Promise`\<`void`\>
|
|
7833
7903
|
|
|
7834
|
-
Defined in: [clickgo.ts:
|
|
7904
|
+
Defined in: [clickgo.ts:321](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L321)
|
|
7835
7905
|
|
|
7836
7906
|
键盘弹起事件
|
|
7837
7907
|
|
|
@@ -7851,7 +7921,7 @@ Defined in: [clickgo.ts:317](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7851
7921
|
|
|
7852
7922
|
> **onLauncherFolderNameChanged**(`id`, `name`): `void` \| `Promise`\<`void`\>
|
|
7853
7923
|
|
|
7854
|
-
Defined in: [clickgo.ts:
|
|
7924
|
+
Defined in: [clickgo.ts:303](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L303)
|
|
7855
7925
|
|
|
7856
7926
|
launcher 文件夹名称修改事件
|
|
7857
7927
|
|
|
@@ -7875,7 +7945,7 @@ launcher 文件夹名称修改事件
|
|
|
7875
7945
|
|
|
7876
7946
|
> **onRuntimeFileLoad**(`url`): `void` \| `Promise`\<`void`\>
|
|
7877
7947
|
|
|
7878
|
-
Defined in: [clickgo.ts:
|
|
7948
|
+
Defined in: [clickgo.ts:327](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L327)
|
|
7879
7949
|
|
|
7880
7950
|
环境文件准备加载时的事件
|
|
7881
7951
|
|
|
@@ -7895,7 +7965,7 @@ Defined in: [clickgo.ts:323](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7895
7965
|
|
|
7896
7966
|
> **onRuntimeFileLoaded**(`url`, `state`): `void` \| `Promise`\<`void`\>
|
|
7897
7967
|
|
|
7898
|
-
Defined in: [clickgo.ts:
|
|
7968
|
+
Defined in: [clickgo.ts:333](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L333)
|
|
7899
7969
|
|
|
7900
7970
|
环境文件加载完成的事件
|
|
7901
7971
|
|
|
@@ -7919,7 +7989,7 @@ Defined in: [clickgo.ts:329](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7919
7989
|
|
|
7920
7990
|
> **onScreenResize**(): `void` \| `Promise`\<`void`\>
|
|
7921
7991
|
|
|
7922
|
-
Defined in: [clickgo.ts:
|
|
7992
|
+
Defined in: [clickgo.ts:203](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L203)
|
|
7923
7993
|
|
|
7924
7994
|
屏幕大小改变事件
|
|
7925
7995
|
|
|
@@ -7933,7 +8003,7 @@ Defined in: [clickgo.ts:199](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7933
8003
|
|
|
7934
8004
|
> **onTaskEnded**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
7935
8005
|
|
|
7936
|
-
Defined in: [clickgo.ts:
|
|
8006
|
+
Defined in: [clickgo.ts:297](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L297)
|
|
7937
8007
|
|
|
7938
8008
|
任务结束事件
|
|
7939
8009
|
|
|
@@ -7953,7 +8023,7 @@ Defined in: [clickgo.ts:293](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7953
8023
|
|
|
7954
8024
|
> **onTaskStarted**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
7955
8025
|
|
|
7956
|
-
Defined in: [clickgo.ts:
|
|
8026
|
+
Defined in: [clickgo.ts:291](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L291)
|
|
7957
8027
|
|
|
7958
8028
|
任务开始事件
|
|
7959
8029
|
|
|
@@ -7973,7 +8043,7 @@ Defined in: [clickgo.ts:287](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
7973
8043
|
|
|
7974
8044
|
> **setSysId**(`sysId`): `void`
|
|
7975
8045
|
|
|
7976
|
-
Defined in: [clickgo.ts:
|
|
8046
|
+
Defined in: [clickgo.ts:173](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L173)
|
|
7977
8047
|
|
|
7978
8048
|
#### Parameters
|
|
7979
8049
|
|
|
@@ -7998,7 +8068,7 @@ clickgo/functions/getCdn.md
|
|
|
7998
8068
|
|
|
7999
8069
|
> **getCdn**(): `string`
|
|
8000
8070
|
|
|
8001
|
-
Defined in: [clickgo.ts:
|
|
8071
|
+
Defined in: [clickgo.ts:103](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L103)
|
|
8002
8072
|
|
|
8003
8073
|
获取当前 cdn 前缀
|
|
8004
8074
|
|
|
@@ -8019,7 +8089,7 @@ clickgo/functions/getDevice.md
|
|
|
8019
8089
|
|
|
8020
8090
|
> **getDevice**(): `object`
|
|
8021
8091
|
|
|
8022
|
-
Defined in: [clickgo.ts:
|
|
8092
|
+
Defined in: [clickgo.ts:129](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L129)
|
|
8023
8093
|
|
|
8024
8094
|
获取当前设备信息(支持 native 和 web)
|
|
8025
8095
|
|
|
@@ -8048,7 +8118,7 @@ clickgo/functions/getDirname.md
|
|
|
8048
8118
|
|
|
8049
8119
|
> **getDirname**(): `string`
|
|
8050
8120
|
|
|
8051
|
-
Defined in: [clickgo.ts:
|
|
8121
|
+
Defined in: [clickgo.ts:81](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L81)
|
|
8052
8122
|
|
|
8053
8123
|
获取当前 ClickGo 所在的目录,不以 / 结尾
|
|
8054
8124
|
|
|
@@ -8069,7 +8139,7 @@ clickgo/functions/getPlatform.md
|
|
|
8069
8139
|
|
|
8070
8140
|
> **getPlatform**(): `Platform` \| `"web"`
|
|
8071
8141
|
|
|
8072
|
-
Defined in: [clickgo.ts:
|
|
8142
|
+
Defined in: [clickgo.ts:116](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L116)
|
|
8073
8143
|
|
|
8074
8144
|
获取当前平台(web 则只返回 web)
|
|
8075
8145
|
|
|
@@ -8090,7 +8160,7 @@ clickgo/functions/getVersion.md
|
|
|
8090
8160
|
|
|
8091
8161
|
> **getVersion**(): `string`
|
|
8092
8162
|
|
|
8093
|
-
Defined in: [clickgo.ts:
|
|
8163
|
+
Defined in: [clickgo.ts:69](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L69)
|
|
8094
8164
|
|
|
8095
8165
|
获取当前版本
|
|
8096
8166
|
|
|
@@ -8111,7 +8181,7 @@ clickgo/functions/hasFrame.md
|
|
|
8111
8181
|
|
|
8112
8182
|
> **hasFrame**(): `boolean`
|
|
8113
8183
|
|
|
8114
|
-
Defined in: [clickgo.ts:
|
|
8184
|
+
Defined in: [clickgo.ts:160](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L160)
|
|
8115
8185
|
|
|
8116
8186
|
是否含有窗体外边框
|
|
8117
8187
|
|
|
@@ -8132,7 +8202,7 @@ clickgo/functions/isNative.md
|
|
|
8132
8202
|
|
|
8133
8203
|
> **isNative**(): `boolean`
|
|
8134
8204
|
|
|
8135
|
-
Defined in: [clickgo.ts:
|
|
8205
|
+
Defined in: [clickgo.ts:75](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L75)
|
|
8136
8206
|
|
|
8137
8207
|
是否是 native 环境
|
|
8138
8208
|
|
|
@@ -8153,7 +8223,7 @@ clickgo/functions/launcher.md
|
|
|
8153
8223
|
|
|
8154
8224
|
> **launcher**(`boot`): `Promise`\<`void`\>
|
|
8155
8225
|
|
|
8156
|
-
Defined in: [clickgo.ts:
|
|
8226
|
+
Defined in: [clickgo.ts:344](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L344)
|
|
8157
8227
|
|
|
8158
8228
|
启动 ClickGo
|
|
8159
8229
|
|
|
@@ -8279,7 +8349,7 @@ clickgo/variables/global.md
|
|
|
8279
8349
|
|
|
8280
8350
|
> `const` **global**: `any`
|
|
8281
8351
|
|
|
8282
|
-
Defined in: [clickgo.ts:
|
|
8352
|
+
Defined in: [clickgo.ts:98](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L98)
|
|
8283
8353
|
|
|
8284
8354
|
用户定义的全局对象
|
|
8285
8355
|
|
|
@@ -8312,12 +8382,24 @@ Defined in: [clickgo.ts:43](https://github.com/maiyun/clickgo/blob/master/dist/c
|
|
|
8312
8382
|
|
|
8313
8383
|
> **clickgo**: *typeof* [`clickgo`](../index.md)
|
|
8314
8384
|
|
|
8385
|
+
### fabric
|
|
8386
|
+
|
|
8387
|
+
> **fabric**: `__module`
|
|
8388
|
+
|
|
8389
|
+
原生 fabric
|
|
8390
|
+
|
|
8315
8391
|
### jszip
|
|
8316
8392
|
|
|
8317
8393
|
> **jszip**: `__module`
|
|
8318
8394
|
|
|
8319
8395
|
原生 jszip
|
|
8320
8396
|
|
|
8397
|
+
### mpegts
|
|
8398
|
+
|
|
8399
|
+
> **mpegts**: `__module`
|
|
8400
|
+
|
|
8401
|
+
原生 mpegts 对象
|
|
8402
|
+
|
|
8321
8403
|
### pointer
|
|
8322
8404
|
|
|
8323
8405
|
> **pointer**: `__module`
|
|
@@ -12893,7 +12975,7 @@ lib/core/classes/AbstractApp.md
|
|
|
12893
12975
|
|
|
12894
12976
|
# Abstract Class: AbstractApp
|
|
12895
12977
|
|
|
12896
|
-
Defined in: [lib/core.ts:
|
|
12978
|
+
Defined in: [lib/core.ts:57](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L57)
|
|
12897
12979
|
|
|
12898
12980
|
App 抽象类
|
|
12899
12981
|
|
|
@@ -12913,7 +12995,7 @@ App 抽象类
|
|
|
12913
12995
|
|
|
12914
12996
|
> **filename**: `string` = `''`
|
|
12915
12997
|
|
|
12916
|
-
Defined in: [lib/core.ts:
|
|
12998
|
+
Defined in: [lib/core.ts:60](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L60)
|
|
12917
12999
|
|
|
12918
13000
|
当前 js 文件在包内的完整路径
|
|
12919
13001
|
|
|
@@ -12923,7 +13005,7 @@ Defined in: [lib/core.ts:59](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
12923
13005
|
|
|
12924
13006
|
> **taskId**: `string` = `''`
|
|
12925
13007
|
|
|
12926
|
-
Defined in: [lib/core.ts:
|
|
13008
|
+
Defined in: [lib/core.ts:63](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L63)
|
|
12927
13009
|
|
|
12928
13010
|
系统会自动设置本项
|
|
12929
13011
|
|
|
@@ -12933,7 +13015,7 @@ Defined in: [lib/core.ts:62](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
12933
13015
|
|
|
12934
13016
|
> `abstract` **main**(`data`): `Promise`\<`void`\>
|
|
12935
13017
|
|
|
12936
|
-
Defined in: [lib/core.ts:
|
|
13018
|
+
Defined in: [lib/core.ts:66](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L66)
|
|
12937
13019
|
|
|
12938
13020
|
App 的入口文件
|
|
12939
13021
|
|
|
@@ -12953,7 +13035,7 @@ App 的入口文件
|
|
|
12953
13035
|
|
|
12954
13036
|
> **onConfigChanged**\<`T`, `TK`\>(`n`, `v`): `void` \| `Promise`\<`void`\>
|
|
12955
13037
|
|
|
12956
|
-
Defined in: [lib/core.ts:
|
|
13038
|
+
Defined in: [lib/core.ts:89](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L89)
|
|
12957
13039
|
|
|
12958
13040
|
系统配置变更事件
|
|
12959
13041
|
|
|
@@ -12987,7 +13069,7 @@ Defined in: [lib/core.ts:88](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
12987
13069
|
|
|
12988
13070
|
> **onError**(`taskId`, `formId`, `error`, `info`): `void` \| `Promise`\<`void`\>
|
|
12989
13071
|
|
|
12990
|
-
Defined in: [lib/core.ts:
|
|
13072
|
+
Defined in: [lib/core.ts:77](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L77)
|
|
12991
13073
|
|
|
12992
13074
|
全局错误事件
|
|
12993
13075
|
|
|
@@ -13019,7 +13101,7 @@ Defined in: [lib/core.ts:76](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
13019
13101
|
|
|
13020
13102
|
> **onFormBlurred**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
13021
13103
|
|
|
13022
|
-
Defined in: [lib/core.ts:
|
|
13104
|
+
Defined in: [lib/core.ts:145](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L145)
|
|
13023
13105
|
|
|
13024
13106
|
窗体丢失焦点事件
|
|
13025
13107
|
|
|
@@ -13043,7 +13125,7 @@ Defined in: [lib/core.ts:144](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13043
13125
|
|
|
13044
13126
|
> **onFormCreated**(`taskId`, `formId`, `title`, `icon`, `showInSystemTask`): `void` \| `Promise`\<`void`\>
|
|
13045
13127
|
|
|
13046
|
-
Defined in: [lib/core.ts:
|
|
13128
|
+
Defined in: [lib/core.ts:95](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L95)
|
|
13047
13129
|
|
|
13048
13130
|
窗体创建事件
|
|
13049
13131
|
|
|
@@ -13079,7 +13161,7 @@ Defined in: [lib/core.ts:94](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
13079
13161
|
|
|
13080
13162
|
> **onFormFlash**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
13081
13163
|
|
|
13082
|
-
Defined in: [lib/core.ts:
|
|
13164
|
+
Defined in: [lib/core.ts:151](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L151)
|
|
13083
13165
|
|
|
13084
13166
|
窗体闪烁事件
|
|
13085
13167
|
|
|
@@ -13103,7 +13185,7 @@ Defined in: [lib/core.ts:150](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13103
13185
|
|
|
13104
13186
|
> **onFormFocused**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
|
|
13105
13187
|
|
|
13106
|
-
Defined in: [lib/core.ts:
|
|
13188
|
+
Defined in: [lib/core.ts:139](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L139)
|
|
13107
13189
|
|
|
13108
13190
|
窗体获得焦点事件
|
|
13109
13191
|
|
|
@@ -13127,7 +13209,7 @@ Defined in: [lib/core.ts:138](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13127
13209
|
|
|
13128
13210
|
> **onFormHashChange**(`taskId`, `formId`, `value`, `data`): `void` \| `Promise`\<`void`\>
|
|
13129
13211
|
|
|
13130
|
-
Defined in: [lib/core.ts:
|
|
13212
|
+
Defined in: [lib/core.ts:163](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L163)
|
|
13131
13213
|
|
|
13132
13214
|
窗体的 formHash 改变事件
|
|
13133
13215
|
|
|
@@ -13159,7 +13241,7 @@ Defined in: [lib/core.ts:162](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13159
13241
|
|
|
13160
13242
|
> **onFormIconChanged**(`taskId`, `formId`, `icon`): `void` \| `Promise`\<`void`\>
|
|
13161
13243
|
|
|
13162
|
-
Defined in: [lib/core.ts:
|
|
13244
|
+
Defined in: [lib/core.ts:115](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L115)
|
|
13163
13245
|
|
|
13164
13246
|
窗体图标改变事件
|
|
13165
13247
|
|
|
@@ -13187,7 +13269,7 @@ Defined in: [lib/core.ts:114](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13187
13269
|
|
|
13188
13270
|
> **onFormRemoved**(`taskId`, `formId`, `title`, `icon`): `void` \| `Promise`\<`void`\>
|
|
13189
13271
|
|
|
13190
|
-
Defined in: [lib/core.ts:
|
|
13272
|
+
Defined in: [lib/core.ts:103](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L103)
|
|
13191
13273
|
|
|
13192
13274
|
窗体销毁事件
|
|
13193
13275
|
|
|
@@ -13219,7 +13301,7 @@ Defined in: [lib/core.ts:102](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13219
13301
|
|
|
13220
13302
|
> **onFormShowChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
13221
13303
|
|
|
13222
|
-
Defined in: [lib/core.ts:
|
|
13304
|
+
Defined in: [lib/core.ts:133](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L133)
|
|
13223
13305
|
|
|
13224
13306
|
窗体显示状态改变事件
|
|
13225
13307
|
|
|
@@ -13247,7 +13329,7 @@ Defined in: [lib/core.ts:132](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13247
13329
|
|
|
13248
13330
|
> **onFormShowInSystemTaskChange**(`taskId`, `formId`, `value`): `void` \| `Promise`\<`void`\>
|
|
13249
13331
|
|
|
13250
|
-
Defined in: [lib/core.ts:
|
|
13332
|
+
Defined in: [lib/core.ts:157](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L157)
|
|
13251
13333
|
|
|
13252
13334
|
窗体是否显示在任务栏属性改变事件
|
|
13253
13335
|
|
|
@@ -13275,7 +13357,7 @@ Defined in: [lib/core.ts:156](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13275
13357
|
|
|
13276
13358
|
> **onFormStateMaxChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
13277
13359
|
|
|
13278
|
-
Defined in: [lib/core.ts:
|
|
13360
|
+
Defined in: [lib/core.ts:127](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L127)
|
|
13279
13361
|
|
|
13280
13362
|
窗体最大化状态改变事件
|
|
13281
13363
|
|
|
@@ -13303,7 +13385,7 @@ Defined in: [lib/core.ts:126](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13303
13385
|
|
|
13304
13386
|
> **onFormStateMinChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
|
|
13305
13387
|
|
|
13306
|
-
Defined in: [lib/core.ts:
|
|
13388
|
+
Defined in: [lib/core.ts:121](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L121)
|
|
13307
13389
|
|
|
13308
13390
|
窗体最小化状态改变事件
|
|
13309
13391
|
|
|
@@ -13331,7 +13413,7 @@ Defined in: [lib/core.ts:120](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13331
13413
|
|
|
13332
13414
|
> **onFormTitleChanged**(`taskId`, `formId`, `title`): `void` \| `Promise`\<`void`\>
|
|
13333
13415
|
|
|
13334
|
-
Defined in: [lib/core.ts:
|
|
13416
|
+
Defined in: [lib/core.ts:109](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L109)
|
|
13335
13417
|
|
|
13336
13418
|
窗体标题改变事件
|
|
13337
13419
|
|
|
@@ -13359,7 +13441,7 @@ Defined in: [lib/core.ts:108](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13359
13441
|
|
|
13360
13442
|
> **onHashChanged**(`hash`): `void` \| `Promise`\<`void`\>
|
|
13361
13443
|
|
|
13362
|
-
Defined in: [lib/core.ts:
|
|
13444
|
+
Defined in: [lib/core.ts:189](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L189)
|
|
13363
13445
|
|
|
13364
13446
|
location hash 改变事件
|
|
13365
13447
|
|
|
@@ -13379,7 +13461,7 @@ location hash 改变事件
|
|
|
13379
13461
|
|
|
13380
13462
|
> **onKeydown**(`e`): `void` \| `Promise`\<`void`\>
|
|
13381
13463
|
|
|
13382
|
-
Defined in: [lib/core.ts:
|
|
13464
|
+
Defined in: [lib/core.ts:195](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L195)
|
|
13383
13465
|
|
|
13384
13466
|
键盘按下事件
|
|
13385
13467
|
|
|
@@ -13399,7 +13481,7 @@ Defined in: [lib/core.ts:194](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13399
13481
|
|
|
13400
13482
|
> **onKeyup**(`e`): `void` \| `Promise`\<`void`\>
|
|
13401
13483
|
|
|
13402
|
-
Defined in: [lib/core.ts:
|
|
13484
|
+
Defined in: [lib/core.ts:201](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L201)
|
|
13403
13485
|
|
|
13404
13486
|
键盘弹起事件
|
|
13405
13487
|
|
|
@@ -13419,7 +13501,7 @@ Defined in: [lib/core.ts:200](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13419
13501
|
|
|
13420
13502
|
> **onLauncherFolderNameChanged**(`id`, `name`): `void` \| `Promise`\<`void`\>
|
|
13421
13503
|
|
|
13422
|
-
Defined in: [lib/core.ts:
|
|
13504
|
+
Defined in: [lib/core.ts:183](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L183)
|
|
13423
13505
|
|
|
13424
13506
|
launcher 文件夹名称修改事件
|
|
13425
13507
|
|
|
@@ -13443,7 +13525,7 @@ launcher 文件夹名称修改事件
|
|
|
13443
13525
|
|
|
13444
13526
|
> **onScreenResize**(): `void` \| `Promise`\<`void`\>
|
|
13445
13527
|
|
|
13446
|
-
Defined in: [lib/core.ts:
|
|
13528
|
+
Defined in: [lib/core.ts:83](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L83)
|
|
13447
13529
|
|
|
13448
13530
|
屏幕大小改变事件
|
|
13449
13531
|
|
|
@@ -13457,7 +13539,7 @@ Defined in: [lib/core.ts:82](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
13457
13539
|
|
|
13458
13540
|
> **onTaskEnded**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
13459
13541
|
|
|
13460
|
-
Defined in: [lib/core.ts:
|
|
13542
|
+
Defined in: [lib/core.ts:177](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L177)
|
|
13461
13543
|
|
|
13462
13544
|
任务结束事件
|
|
13463
13545
|
|
|
@@ -13477,7 +13559,7 @@ Defined in: [lib/core.ts:176](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13477
13559
|
|
|
13478
13560
|
> **onTaskStarted**(`taskId`): `void` \| `Promise`\<`void`\>
|
|
13479
13561
|
|
|
13480
|
-
Defined in: [lib/core.ts:
|
|
13562
|
+
Defined in: [lib/core.ts:171](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L171)
|
|
13481
13563
|
|
|
13482
13564
|
任务开始事件
|
|
13483
13565
|
|
|
@@ -13497,7 +13579,7 @@ Defined in: [lib/core.ts:170](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
13497
13579
|
|
|
13498
13580
|
> **run**(`form`): `Promise`\<`void`\>
|
|
13499
13581
|
|
|
13500
|
-
Defined in: [lib/core.ts:
|
|
13582
|
+
Defined in: [lib/core.ts:72](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L72)
|
|
13501
13583
|
|
|
13502
13584
|
以某个窗体进行正式启动这个 app(入口 form),不启动则任务也启动失败
|
|
13503
13585
|
|
|
@@ -13526,7 +13608,7 @@ lib/core/functions/back.md
|
|
|
13526
13608
|
|
|
13527
13609
|
> **back**(`current`): `Promise`\<`boolean`\>
|
|
13528
13610
|
|
|
13529
|
-
Defined in: [lib/core.ts:
|
|
13611
|
+
Defined in: [lib/core.ts:720](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L720)
|
|
13530
13612
|
|
|
13531
13613
|
对浏览器做返回操作
|
|
13532
13614
|
|
|
@@ -13555,7 +13637,7 @@ lib/core/functions/checkModule.md
|
|
|
13555
13637
|
|
|
13556
13638
|
> **checkModule**(`name`): `boolean`
|
|
13557
13639
|
|
|
13558
|
-
Defined in: [lib/core.ts:
|
|
13640
|
+
Defined in: [lib/core.ts:1072](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1072)
|
|
13559
13641
|
|
|
13560
13642
|
检查特殊模块是否注册
|
|
13561
13643
|
|
|
@@ -13584,7 +13666,7 @@ lib/core/functions/fetchApp.md
|
|
|
13584
13666
|
|
|
13585
13667
|
> **fetchApp**(`taskId`, `url`, `opt?`): `Promise`\<[`IApp`](../interfaces/IApp.md) \| `null`\>
|
|
13586
13668
|
|
|
13587
|
-
Defined in: [lib/core.ts:
|
|
13669
|
+
Defined in: [lib/core.ts:530](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L530)
|
|
13588
13670
|
|
|
13589
13671
|
从网址下载应用
|
|
13590
13672
|
|
|
@@ -13625,7 +13707,7 @@ lib/core/functions/getAvailArea.md
|
|
|
13625
13707
|
|
|
13626
13708
|
> **getAvailArea**(): [`IAvailArea`](../interfaces/IAvailArea.md)
|
|
13627
13709
|
|
|
13628
|
-
Defined in: [lib/core.ts:
|
|
13710
|
+
Defined in: [lib/core.ts:601](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L601)
|
|
13629
13711
|
|
|
13630
13712
|
获取屏幕可用区域
|
|
13631
13713
|
|
|
@@ -13646,7 +13728,7 @@ lib/core/functions/getHash.md
|
|
|
13646
13728
|
|
|
13647
13729
|
> **getHash**(): `string`
|
|
13648
13730
|
|
|
13649
|
-
Defined in: [lib/core.ts:
|
|
13731
|
+
Defined in: [lib/core.ts:677](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L677)
|
|
13650
13732
|
|
|
13651
13733
|
获取当前浏览器的 hash
|
|
13652
13734
|
|
|
@@ -13667,7 +13749,7 @@ lib/core/functions/getHost.md
|
|
|
13667
13749
|
|
|
13668
13750
|
> **getHost**(): `string`
|
|
13669
13751
|
|
|
13670
|
-
Defined in: [lib/core.ts:
|
|
13752
|
+
Defined in: [lib/core.ts:684](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L684)
|
|
13671
13753
|
|
|
13672
13754
|
获取当前浏览器的 host
|
|
13673
13755
|
|
|
@@ -13688,7 +13770,7 @@ lib/core/functions/getLocation.md
|
|
|
13688
13770
|
|
|
13689
13771
|
> **getLocation**(): `string`
|
|
13690
13772
|
|
|
13691
|
-
Defined in: [lib/core.ts:
|
|
13773
|
+
Defined in: [lib/core.ts:712](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L712)
|
|
13692
13774
|
|
|
13693
13775
|
获取当前的浏览器的 url
|
|
13694
13776
|
|
|
@@ -13717,7 +13799,7 @@ lib/core/functions/getModule.md
|
|
|
13717
13799
|
|
|
13718
13800
|
> **getModule**(`name`): `Promise`\<[`ITumsPlayer`](../interfaces/ITumsPlayer.md) \| `null`\>
|
|
13719
13801
|
|
|
13720
|
-
Defined in: [lib/core.ts:
|
|
13802
|
+
Defined in: [lib/core.ts:1076](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1076)
|
|
13721
13803
|
|
|
13722
13804
|
### Parameters
|
|
13723
13805
|
|
|
@@ -13733,7 +13815,7 @@ Defined in: [lib/core.ts:1075](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
13733
13815
|
|
|
13734
13816
|
> **getModule**(`name`): `Promise`\<\{ \} \| `null`\>
|
|
13735
13817
|
|
|
13736
|
-
Defined in: [lib/core.ts:
|
|
13818
|
+
Defined in: [lib/core.ts:1077](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1077)
|
|
13737
13819
|
|
|
13738
13820
|
### Parameters
|
|
13739
13821
|
|
|
@@ -13747,9 +13829,25 @@ Defined in: [lib/core.ts:1076](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
13747
13829
|
|
|
13748
13830
|
## Call Signature
|
|
13749
13831
|
|
|
13832
|
+
> **getModule**(`name`): `Promise`\<`__module` \| `null`\>
|
|
13833
|
+
|
|
13834
|
+
Defined in: [lib/core.ts:1078](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1078)
|
|
13835
|
+
|
|
13836
|
+
### Parameters
|
|
13837
|
+
|
|
13838
|
+
#### name
|
|
13839
|
+
|
|
13840
|
+
`"fabric"`
|
|
13841
|
+
|
|
13842
|
+
### Returns
|
|
13843
|
+
|
|
13844
|
+
`Promise`\<`__module` \| `null`\>
|
|
13845
|
+
|
|
13846
|
+
## Call Signature
|
|
13847
|
+
|
|
13750
13848
|
> **getModule**(`name`): `Promise`\<`any`\>
|
|
13751
13849
|
|
|
13752
|
-
Defined in: [lib/core.ts:
|
|
13850
|
+
Defined in: [lib/core.ts:1079](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1079)
|
|
13753
13851
|
|
|
13754
13852
|
### Parameters
|
|
13755
13853
|
|
|
@@ -13774,7 +13872,7 @@ lib/core/functions/hash.md
|
|
|
13774
13872
|
|
|
13775
13873
|
> **hash**(`current`, `hash`): `Promise`\<`boolean`\>
|
|
13776
13874
|
|
|
13777
|
-
Defined in: [lib/core.ts:
|
|
13875
|
+
Defined in: [lib/core.ts:662](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L662)
|
|
13778
13876
|
|
|
13779
13877
|
修改浏览器 hash
|
|
13780
13878
|
|
|
@@ -13809,7 +13907,7 @@ lib/core/functions/init.md
|
|
|
13809
13907
|
|
|
13810
13908
|
> **init**(): `void`
|
|
13811
13909
|
|
|
13812
|
-
Defined in: [lib/core.ts:
|
|
13910
|
+
Defined in: [lib/core.ts:1141](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1141)
|
|
13813
13911
|
|
|
13814
13912
|
## Returns
|
|
13815
13913
|
|
|
@@ -13828,7 +13926,7 @@ lib/core/functions/initSysId.md
|
|
|
13828
13926
|
|
|
13829
13927
|
> **initSysId**(`id`): `void`
|
|
13830
13928
|
|
|
13831
|
-
Defined in: [lib/core.ts:
|
|
13929
|
+
Defined in: [lib/core.ts:34](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L34)
|
|
13832
13930
|
|
|
13833
13931
|
初始化系统级 ID,仅能设置一次
|
|
13834
13932
|
|
|
@@ -13857,7 +13955,7 @@ lib/core/functions/loadModule.md
|
|
|
13857
13955
|
|
|
13858
13956
|
> **loadModule**(`name`): `Promise`\<`boolean`\>
|
|
13859
13957
|
|
|
13860
|
-
Defined in: [lib/core.ts:
|
|
13958
|
+
Defined in: [lib/core.ts:1096](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1096)
|
|
13861
13959
|
|
|
13862
13960
|
加载模块,返回 true / false
|
|
13863
13961
|
|
|
@@ -13886,7 +13984,7 @@ lib/core/functions/location.md
|
|
|
13886
13984
|
|
|
13887
13985
|
> **location**(`current`, `url`): `Promise`\<`boolean`\>
|
|
13888
13986
|
|
|
13889
|
-
Defined in: [lib/core.ts:
|
|
13987
|
+
Defined in: [lib/core.ts:697](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L697)
|
|
13890
13988
|
|
|
13891
13989
|
对浏览器做跳转操作
|
|
13892
13990
|
|
|
@@ -13921,7 +14019,7 @@ lib/core/functions/open.md
|
|
|
13921
14019
|
|
|
13922
14020
|
> **open**(`url`): `void`
|
|
13923
14021
|
|
|
13924
|
-
Defined in: [lib/core.ts:
|
|
14022
|
+
Defined in: [lib/core.ts:736](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L736)
|
|
13925
14023
|
|
|
13926
14024
|
打开新的标签页
|
|
13927
14025
|
|
|
@@ -13950,7 +14048,7 @@ lib/core/functions/readApp.md
|
|
|
13950
14048
|
|
|
13951
14049
|
> **readApp**(`blob`): `Promise`\<`false` \| [`IApp`](../interfaces/IApp.md)\>
|
|
13952
14050
|
|
|
13953
|
-
Defined in: [lib/core.ts:
|
|
14051
|
+
Defined in: [lib/core.ts:468](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L468)
|
|
13954
14052
|
|
|
13955
14053
|
cga blob 文件解包
|
|
13956
14054
|
|
|
@@ -13979,7 +14077,7 @@ lib/core/functions/regModule.md
|
|
|
13979
14077
|
|
|
13980
14078
|
> **regModule**(`current`, `name`, `opt`): `Promise`\<`boolean`\>
|
|
13981
14079
|
|
|
13982
|
-
Defined in: [lib/core.ts:
|
|
14080
|
+
Defined in: [lib/core.ts:1043](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1043)
|
|
13983
14081
|
|
|
13984
14082
|
注册模块
|
|
13985
14083
|
|
|
@@ -14030,7 +14128,7 @@ lib/core/functions/setBoot.md
|
|
|
14030
14128
|
|
|
14031
14129
|
> **setBoot**(`b`): `void`
|
|
14032
14130
|
|
|
14033
|
-
Defined in: [lib/core.ts:
|
|
14131
|
+
Defined in: [lib/core.ts:210](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L210)
|
|
14034
14132
|
|
|
14035
14133
|
## Parameters
|
|
14036
14134
|
|
|
@@ -14055,7 +14153,7 @@ lib/core/functions/trigger.md
|
|
|
14055
14153
|
|
|
14056
14154
|
> **trigger**(`name`, `taskId?`, `formId?`, `param1?`, `param2?`, `param3?`): `Promise`\<`void`\>
|
|
14057
14155
|
|
|
14058
|
-
Defined in: [lib/core.ts:
|
|
14156
|
+
Defined in: [lib/core.ts:267](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L267)
|
|
14059
14157
|
|
|
14060
14158
|
主动触发系统级事件,用 this.trigger 替代
|
|
14061
14159
|
|
|
@@ -14161,7 +14259,7 @@ lib/core/interfaces/IApp.md
|
|
|
14161
14259
|
|
|
14162
14260
|
# Interface: IApp
|
|
14163
14261
|
|
|
14164
|
-
Defined in: [lib/core.ts:
|
|
14262
|
+
Defined in: [lib/core.ts:1273](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1273)
|
|
14165
14263
|
|
|
14166
14264
|
应用包解包后对象
|
|
14167
14265
|
|
|
@@ -14171,7 +14269,7 @@ Defined in: [lib/core.ts:1271](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14171
14269
|
|
|
14172
14270
|
> **config**: [`IAppConfig`](IAppConfig.md)
|
|
14173
14271
|
|
|
14174
|
-
Defined in: [lib/core.ts:
|
|
14272
|
+
Defined in: [lib/core.ts:1276](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1276)
|
|
14175
14273
|
|
|
14176
14274
|
控件对象配置文件
|
|
14177
14275
|
|
|
@@ -14181,7 +14279,7 @@ Defined in: [lib/core.ts:1274](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14181
14279
|
|
|
14182
14280
|
> **files**: `Record`\<`string`, `Blob` \| `string`\>
|
|
14183
14281
|
|
|
14184
|
-
Defined in: [lib/core.ts:
|
|
14282
|
+
Defined in: [lib/core.ts:1278](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1278)
|
|
14185
14283
|
|
|
14186
14284
|
所有已加载的文件内容
|
|
14187
14285
|
|
|
@@ -14191,7 +14289,7 @@ Defined in: [lib/core.ts:1276](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14191
14289
|
|
|
14192
14290
|
> **icon**: `string`
|
|
14193
14291
|
|
|
14194
|
-
Defined in: [lib/core.ts:
|
|
14292
|
+
Defined in: [lib/core.ts:1280](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1280)
|
|
14195
14293
|
|
|
14196
14294
|
应用图标
|
|
14197
14295
|
|
|
@@ -14201,7 +14299,7 @@ Defined in: [lib/core.ts:1278](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14201
14299
|
|
|
14202
14300
|
> **type**: `"app"`
|
|
14203
14301
|
|
|
14204
|
-
Defined in: [lib/core.ts:
|
|
14302
|
+
Defined in: [lib/core.ts:1274](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1274)
|
|
14205
14303
|
|
|
14206
14304
|
lib/core/interfaces/IAppConfig.md
|
|
14207
14305
|
---
|
|
@@ -14214,7 +14312,7 @@ lib/core/interfaces/IAppConfig.md
|
|
|
14214
14312
|
|
|
14215
14313
|
# Interface: IAppConfig
|
|
14216
14314
|
|
|
14217
|
-
Defined in: [lib/core.ts:
|
|
14315
|
+
Defined in: [lib/core.ts:1284](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1284)
|
|
14218
14316
|
|
|
14219
14317
|
应用文件包 config
|
|
14220
14318
|
|
|
@@ -14224,7 +14322,7 @@ Defined in: [lib/core.ts:1282](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14224
14322
|
|
|
14225
14323
|
> **author**: `string`
|
|
14226
14324
|
|
|
14227
|
-
Defined in: [lib/core.ts:
|
|
14325
|
+
Defined in: [lib/core.ts:1292](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1292)
|
|
14228
14326
|
|
|
14229
14327
|
作者
|
|
14230
14328
|
|
|
@@ -14234,7 +14332,7 @@ Defined in: [lib/core.ts:1290](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14234
14332
|
|
|
14235
14333
|
> **controls**: `string`[]
|
|
14236
14334
|
|
|
14237
|
-
Defined in: [lib/core.ts:
|
|
14335
|
+
Defined in: [lib/core.ts:1295](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1295)
|
|
14238
14336
|
|
|
14239
14337
|
将要加载的控件
|
|
14240
14338
|
|
|
@@ -14244,7 +14342,7 @@ Defined in: [lib/core.ts:1293](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14244
14342
|
|
|
14245
14343
|
> `optional` **files**: `string`[]
|
|
14246
14344
|
|
|
14247
|
-
Defined in: [lib/core.ts:
|
|
14345
|
+
Defined in: [lib/core.ts:1308](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1308)
|
|
14248
14346
|
|
|
14249
14347
|
将要加载的非 js 文件列表,打包为 cga 模式下此配置可省略
|
|
14250
14348
|
|
|
@@ -14254,7 +14352,7 @@ Defined in: [lib/core.ts:1306](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14254
14352
|
|
|
14255
14353
|
> `optional` **icon**: `string`
|
|
14256
14354
|
|
|
14257
|
-
Defined in: [lib/core.ts:
|
|
14355
|
+
Defined in: [lib/core.ts:1305](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1305)
|
|
14258
14356
|
|
|
14259
14357
|
图标路径,需包含扩展名
|
|
14260
14358
|
|
|
@@ -14264,7 +14362,7 @@ Defined in: [lib/core.ts:1303](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14264
14362
|
|
|
14265
14363
|
> `optional` **locales**: `Record`\<`string`, `string`\>
|
|
14266
14364
|
|
|
14267
|
-
Defined in: [lib/core.ts:
|
|
14365
|
+
Defined in: [lib/core.ts:1301](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1301)
|
|
14268
14366
|
|
|
14269
14367
|
将自动加载的语言包,path: lang
|
|
14270
14368
|
|
|
@@ -14274,7 +14372,7 @@ Defined in: [lib/core.ts:1299](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14274
14372
|
|
|
14275
14373
|
> `optional` **modules**: `string`[]
|
|
14276
14374
|
|
|
14277
|
-
Defined in: [lib/core.ts:
|
|
14375
|
+
Defined in: [lib/core.ts:1310](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1310)
|
|
14278
14376
|
|
|
14279
14377
|
要提前加载的库名
|
|
14280
14378
|
|
|
@@ -14284,7 +14382,7 @@ Defined in: [lib/core.ts:1308](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14284
14382
|
|
|
14285
14383
|
> **name**: `string`
|
|
14286
14384
|
|
|
14287
|
-
Defined in: [lib/core.ts:
|
|
14385
|
+
Defined in: [lib/core.ts:1286](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1286)
|
|
14288
14386
|
|
|
14289
14387
|
应用名
|
|
14290
14388
|
|
|
@@ -14294,7 +14392,7 @@ Defined in: [lib/core.ts:1284](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14294
14392
|
|
|
14295
14393
|
> `optional` **permissions**: `string`[]
|
|
14296
14394
|
|
|
14297
|
-
Defined in: [lib/core.ts:
|
|
14395
|
+
Defined in: [lib/core.ts:1299](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1299)
|
|
14298
14396
|
|
|
14299
14397
|
将自动申请的权限
|
|
14300
14398
|
|
|
@@ -14304,7 +14402,7 @@ Defined in: [lib/core.ts:1297](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14304
14402
|
|
|
14305
14403
|
> `optional` **style**: `string`
|
|
14306
14404
|
|
|
14307
|
-
Defined in: [lib/core.ts:
|
|
14405
|
+
Defined in: [lib/core.ts:1303](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1303)
|
|
14308
14406
|
|
|
14309
14407
|
全局样式,不带扩展名,系统会在末尾添加 .css
|
|
14310
14408
|
|
|
@@ -14314,7 +14412,7 @@ Defined in: [lib/core.ts:1301](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14314
14412
|
|
|
14315
14413
|
> `optional` **themes**: `string`[]
|
|
14316
14414
|
|
|
14317
|
-
Defined in: [lib/core.ts:
|
|
14415
|
+
Defined in: [lib/core.ts:1297](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1297)
|
|
14318
14416
|
|
|
14319
14417
|
将自动加载的主题
|
|
14320
14418
|
|
|
@@ -14324,7 +14422,7 @@ Defined in: [lib/core.ts:1295](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14324
14422
|
|
|
14325
14423
|
> **ver**: `number`
|
|
14326
14424
|
|
|
14327
|
-
Defined in: [lib/core.ts:
|
|
14425
|
+
Defined in: [lib/core.ts:1288](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1288)
|
|
14328
14426
|
|
|
14329
14427
|
发行版本
|
|
14330
14428
|
|
|
@@ -14334,7 +14432,7 @@ Defined in: [lib/core.ts:1286](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14334
14432
|
|
|
14335
14433
|
> **version**: `string`
|
|
14336
14434
|
|
|
14337
|
-
Defined in: [lib/core.ts:
|
|
14435
|
+
Defined in: [lib/core.ts:1290](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1290)
|
|
14338
14436
|
|
|
14339
14437
|
发行版本字符串
|
|
14340
14438
|
|
|
@@ -14349,7 +14447,7 @@ lib/core/interfaces/IAvailArea.md
|
|
|
14349
14447
|
|
|
14350
14448
|
# Interface: IAvailArea
|
|
14351
14449
|
|
|
14352
|
-
Defined in: [lib/core.ts:
|
|
14450
|
+
Defined in: [lib/core.ts:1239](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1239)
|
|
14353
14451
|
|
|
14354
14452
|
屏幕可用区域
|
|
14355
14453
|
|
|
@@ -14359,7 +14457,7 @@ Defined in: [lib/core.ts:1237](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14359
14457
|
|
|
14360
14458
|
> **height**: `number`
|
|
14361
14459
|
|
|
14362
|
-
Defined in: [lib/core.ts:
|
|
14460
|
+
Defined in: [lib/core.ts:1243](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1243)
|
|
14363
14461
|
|
|
14364
14462
|
***
|
|
14365
14463
|
|
|
@@ -14367,7 +14465,7 @@ Defined in: [lib/core.ts:1241](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14367
14465
|
|
|
14368
14466
|
> **left**: `number`
|
|
14369
14467
|
|
|
14370
|
-
Defined in: [lib/core.ts:
|
|
14468
|
+
Defined in: [lib/core.ts:1240](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1240)
|
|
14371
14469
|
|
|
14372
14470
|
***
|
|
14373
14471
|
|
|
@@ -14375,7 +14473,7 @@ Defined in: [lib/core.ts:1238](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14375
14473
|
|
|
14376
14474
|
> **oheight**: `number`
|
|
14377
14475
|
|
|
14378
|
-
Defined in: [lib/core.ts:
|
|
14476
|
+
Defined in: [lib/core.ts:1245](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1245)
|
|
14379
14477
|
|
|
14380
14478
|
***
|
|
14381
14479
|
|
|
@@ -14383,7 +14481,7 @@ Defined in: [lib/core.ts:1243](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14383
14481
|
|
|
14384
14482
|
> **owidth**: `number`
|
|
14385
14483
|
|
|
14386
|
-
Defined in: [lib/core.ts:
|
|
14484
|
+
Defined in: [lib/core.ts:1244](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1244)
|
|
14387
14485
|
|
|
14388
14486
|
***
|
|
14389
14487
|
|
|
@@ -14391,7 +14489,7 @@ Defined in: [lib/core.ts:1242](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14391
14489
|
|
|
14392
14490
|
> **top**: `number`
|
|
14393
14491
|
|
|
14394
|
-
Defined in: [lib/core.ts:
|
|
14492
|
+
Defined in: [lib/core.ts:1241](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1241)
|
|
14395
14493
|
|
|
14396
14494
|
***
|
|
14397
14495
|
|
|
@@ -14399,7 +14497,7 @@ Defined in: [lib/core.ts:1239](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14399
14497
|
|
|
14400
14498
|
> **width**: `number`
|
|
14401
14499
|
|
|
14402
|
-
Defined in: [lib/core.ts:
|
|
14500
|
+
Defined in: [lib/core.ts:1242](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1242)
|
|
14403
14501
|
|
|
14404
14502
|
lib/core/interfaces/IConfig.md
|
|
14405
14503
|
---
|
|
@@ -14412,7 +14510,7 @@ lib/core/interfaces/IConfig.md
|
|
|
14412
14510
|
|
|
14413
14511
|
# Interface: IConfig
|
|
14414
14512
|
|
|
14415
|
-
Defined in: [lib/core.ts:
|
|
14513
|
+
Defined in: [lib/core.ts:1218](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1218)
|
|
14416
14514
|
|
|
14417
14515
|
Config 对象
|
|
14418
14516
|
|
|
@@ -14422,7 +14520,7 @@ Config 对象
|
|
|
14422
14520
|
|
|
14423
14521
|
> **desktop.icon.recycler**: `boolean`
|
|
14424
14522
|
|
|
14425
|
-
Defined in: [lib/core.ts:
|
|
14523
|
+
Defined in: [lib/core.ts:1223](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1223)
|
|
14426
14524
|
|
|
14427
14525
|
***
|
|
14428
14526
|
|
|
@@ -14430,7 +14528,7 @@ Defined in: [lib/core.ts:1221](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14430
14528
|
|
|
14431
14529
|
> **desktop.icon.storage**: `boolean`
|
|
14432
14530
|
|
|
14433
|
-
Defined in: [lib/core.ts:
|
|
14531
|
+
Defined in: [lib/core.ts:1222](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1222)
|
|
14434
14532
|
|
|
14435
14533
|
***
|
|
14436
14534
|
|
|
@@ -14438,7 +14536,7 @@ Defined in: [lib/core.ts:1220](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14438
14536
|
|
|
14439
14537
|
> **desktop.path**: `string` \| `null`
|
|
14440
14538
|
|
|
14441
|
-
Defined in: [lib/core.ts:
|
|
14539
|
+
Defined in: [lib/core.ts:1225](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1225)
|
|
14442
14540
|
|
|
14443
14541
|
***
|
|
14444
14542
|
|
|
@@ -14446,7 +14544,7 @@ Defined in: [lib/core.ts:1223](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14446
14544
|
|
|
14447
14545
|
> **desktop.wallpaper**: `string` \| `null`
|
|
14448
14546
|
|
|
14449
|
-
Defined in: [lib/core.ts:
|
|
14547
|
+
Defined in: [lib/core.ts:1224](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1224)
|
|
14450
14548
|
|
|
14451
14549
|
***
|
|
14452
14550
|
|
|
@@ -14454,7 +14552,7 @@ Defined in: [lib/core.ts:1222](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14454
14552
|
|
|
14455
14553
|
> **launcher.list**: [`IConfigLauncherItem`](IConfigLauncherItem.md)[]
|
|
14456
14554
|
|
|
14457
|
-
Defined in: [lib/core.ts:
|
|
14555
|
+
Defined in: [lib/core.ts:1226](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1226)
|
|
14458
14556
|
|
|
14459
14557
|
***
|
|
14460
14558
|
|
|
@@ -14462,7 +14560,7 @@ Defined in: [lib/core.ts:1224](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14462
14560
|
|
|
14463
14561
|
> **locale**: `string`
|
|
14464
14562
|
|
|
14465
|
-
Defined in: [lib/core.ts:
|
|
14563
|
+
Defined in: [lib/core.ts:1219](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1219)
|
|
14466
14564
|
|
|
14467
14565
|
***
|
|
14468
14566
|
|
|
@@ -14470,7 +14568,7 @@ Defined in: [lib/core.ts:1217](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14470
14568
|
|
|
14471
14569
|
> **task.pin**: `Record`\<`string`, \{ `icon`: `string`; `name`: `string`; \}\>
|
|
14472
14570
|
|
|
14473
|
-
Defined in: [lib/core.ts:
|
|
14571
|
+
Defined in: [lib/core.ts:1221](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1221)
|
|
14474
14572
|
|
|
14475
14573
|
***
|
|
14476
14574
|
|
|
@@ -14478,7 +14576,7 @@ Defined in: [lib/core.ts:1219](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14478
14576
|
|
|
14479
14577
|
> **task.position**: `"left"` \| `"top"` \| `"right"` \| `"bottom"`
|
|
14480
14578
|
|
|
14481
|
-
Defined in: [lib/core.ts:
|
|
14579
|
+
Defined in: [lib/core.ts:1220](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1220)
|
|
14482
14580
|
|
|
14483
14581
|
lib/core/interfaces/IConfigLauncherItem.md
|
|
14484
14582
|
---
|
|
@@ -14491,7 +14589,7 @@ lib/core/interfaces/IConfigLauncherItem.md
|
|
|
14491
14589
|
|
|
14492
14590
|
# Interface: IConfigLauncherItem
|
|
14493
14591
|
|
|
14494
|
-
Defined in: [lib/core.ts:
|
|
14592
|
+
Defined in: [lib/core.ts:1230](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1230)
|
|
14495
14593
|
|
|
14496
14594
|
Launcher 的 item 对象
|
|
14497
14595
|
|
|
@@ -14501,7 +14599,7 @@ Launcher 的 item 对象
|
|
|
14501
14599
|
|
|
14502
14600
|
> `optional` **icon**: `string`
|
|
14503
14601
|
|
|
14504
|
-
Defined in: [lib/core.ts:
|
|
14602
|
+
Defined in: [lib/core.ts:1234](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1234)
|
|
14505
14603
|
|
|
14506
14604
|
***
|
|
14507
14605
|
|
|
@@ -14509,7 +14607,7 @@ Defined in: [lib/core.ts:1232](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14509
14607
|
|
|
14510
14608
|
> `optional` **id**: `string`
|
|
14511
14609
|
|
|
14512
|
-
Defined in: [lib/core.ts:
|
|
14610
|
+
Defined in: [lib/core.ts:1231](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1231)
|
|
14513
14611
|
|
|
14514
14612
|
***
|
|
14515
14613
|
|
|
@@ -14517,7 +14615,7 @@ Defined in: [lib/core.ts:1229](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14517
14615
|
|
|
14518
14616
|
> `optional` **list**: `object`[]
|
|
14519
14617
|
|
|
14520
|
-
Defined in: [lib/core.ts:
|
|
14618
|
+
Defined in: [lib/core.ts:1235](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1235)
|
|
14521
14619
|
|
|
14522
14620
|
#### icon
|
|
14523
14621
|
|
|
@@ -14541,7 +14639,7 @@ Defined in: [lib/core.ts:1233](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14541
14639
|
|
|
14542
14640
|
> **name**: `string`
|
|
14543
14641
|
|
|
14544
|
-
Defined in: [lib/core.ts:
|
|
14642
|
+
Defined in: [lib/core.ts:1232](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1232)
|
|
14545
14643
|
|
|
14546
14644
|
***
|
|
14547
14645
|
|
|
@@ -14549,7 +14647,7 @@ Defined in: [lib/core.ts:1230](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14549
14647
|
|
|
14550
14648
|
> `optional` **path**: `string`
|
|
14551
14649
|
|
|
14552
|
-
Defined in: [lib/core.ts:
|
|
14650
|
+
Defined in: [lib/core.ts:1233](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1233)
|
|
14553
14651
|
|
|
14554
14652
|
lib/core/interfaces/ICoreFetchAppOptions.md
|
|
14555
14653
|
---
|
|
@@ -14562,7 +14660,7 @@ lib/core/interfaces/ICoreFetchAppOptions.md
|
|
|
14562
14660
|
|
|
14563
14661
|
# Interface: ICoreFetchAppOptions
|
|
14564
14662
|
|
|
14565
|
-
Defined in: [lib/core.ts:
|
|
14663
|
+
Defined in: [lib/core.ts:1252](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1252)
|
|
14566
14664
|
|
|
14567
14665
|
现场下载 app 的参数
|
|
14568
14666
|
|
|
@@ -14572,7 +14670,7 @@ Defined in: [lib/core.ts:1250](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14572
14670
|
|
|
14573
14671
|
> `optional` **after**: `string`
|
|
14574
14672
|
|
|
14575
|
-
Defined in: [lib/core.ts:
|
|
14673
|
+
Defined in: [lib/core.ts:1262](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1262)
|
|
14576
14674
|
|
|
14577
14675
|
网址后面附带的前缀,如 ?123
|
|
14578
14676
|
|
|
@@ -14582,7 +14680,7 @@ Defined in: [lib/core.ts:1260](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14582
14680
|
|
|
14583
14681
|
> `optional` **notify**: `number` \| \{ `id?`: `number`; `loaded?`: `number`; `total?`: `number`; \}
|
|
14584
14682
|
|
|
14585
|
-
Defined in: [lib/core.ts:
|
|
14683
|
+
Defined in: [lib/core.ts:1253](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1253)
|
|
14586
14684
|
|
|
14587
14685
|
#### Type Declaration
|
|
14588
14686
|
|
|
@@ -14614,7 +14712,7 @@ notify id
|
|
|
14614
14712
|
|
|
14615
14713
|
> `optional` **progress**: (`loaded`, `total`, `per`) => `void` \| `Promise`\<`void`\>
|
|
14616
14714
|
|
|
14617
|
-
Defined in: [lib/core.ts:
|
|
14715
|
+
Defined in: [lib/core.ts:1269](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1269)
|
|
14618
14716
|
|
|
14619
14717
|
下载进度
|
|
14620
14718
|
|
|
@@ -14653,7 +14751,7 @@ lib/core/interfaces/ITumsPlayer.md
|
|
|
14653
14751
|
|
|
14654
14752
|
# Interface: ITumsPlayer
|
|
14655
14753
|
|
|
14656
|
-
Defined in: [lib/core.ts:
|
|
14754
|
+
Defined in: [lib/core.ts:1396](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1396)
|
|
14657
14755
|
|
|
14658
14756
|
tums-player 模块对象
|
|
14659
14757
|
|
|
@@ -14663,7 +14761,7 @@ tums-player 模块对象
|
|
|
14663
14761
|
|
|
14664
14762
|
> **default**: `any`
|
|
14665
14763
|
|
|
14666
|
-
Defined in: [lib/core.ts:
|
|
14764
|
+
Defined in: [lib/core.ts:1397](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1397)
|
|
14667
14765
|
|
|
14668
14766
|
***
|
|
14669
14767
|
|
|
@@ -14671,7 +14769,7 @@ Defined in: [lib/core.ts:1395](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14671
14769
|
|
|
14672
14770
|
> **startTalk**: (`opt`) => `Promise`\<`void`\>
|
|
14673
14771
|
|
|
14674
|
-
Defined in: [lib/core.ts:
|
|
14772
|
+
Defined in: [lib/core.ts:1399](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1399)
|
|
14675
14773
|
|
|
14676
14774
|
开始对讲
|
|
14677
14775
|
|
|
@@ -14707,7 +14805,7 @@ half_duplex-半双工模式,vad-VAD 人声检测模式,aec-AEC 全双工模式
|
|
|
14707
14805
|
|
|
14708
14806
|
> **stopTalk**: () => `void`
|
|
14709
14807
|
|
|
14710
|
-
Defined in: [lib/core.ts:
|
|
14808
|
+
Defined in: [lib/core.ts:1407](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1407)
|
|
14711
14809
|
|
|
14712
14810
|
停止对讲
|
|
14713
14811
|
|
|
@@ -14726,7 +14824,7 @@ lib/core/interfaces/IVApp.md
|
|
|
14726
14824
|
|
|
14727
14825
|
# Interface: IVApp
|
|
14728
14826
|
|
|
14729
|
-
Defined in: [lib/core.ts:
|
|
14827
|
+
Defined in: [lib/core.ts:1376](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1376)
|
|
14730
14828
|
|
|
14731
14829
|
Vue 应用
|
|
14732
14830
|
|
|
@@ -14736,7 +14834,7 @@ Vue 应用
|
|
|
14736
14834
|
|
|
14737
14835
|
> **\_container**: `HTMLElement`
|
|
14738
14836
|
|
|
14739
|
-
Defined in: [lib/core.ts:
|
|
14837
|
+
Defined in: [lib/core.ts:1388](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1388)
|
|
14740
14838
|
|
|
14741
14839
|
***
|
|
14742
14840
|
|
|
@@ -14744,7 +14842,7 @@ Defined in: [lib/core.ts:1386](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14744
14842
|
|
|
14745
14843
|
> **config**: [`IVueConfig`](IVueConfig.md)
|
|
14746
14844
|
|
|
14747
|
-
Defined in: [lib/core.ts:
|
|
14845
|
+
Defined in: [lib/core.ts:1379](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1379)
|
|
14748
14846
|
|
|
14749
14847
|
***
|
|
14750
14848
|
|
|
@@ -14752,7 +14850,7 @@ Defined in: [lib/core.ts:1377](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14752
14850
|
|
|
14753
14851
|
> **version**: `string`
|
|
14754
14852
|
|
|
14755
|
-
Defined in: [lib/core.ts:
|
|
14853
|
+
Defined in: [lib/core.ts:1386](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1386)
|
|
14756
14854
|
|
|
14757
14855
|
## Methods
|
|
14758
14856
|
|
|
@@ -14762,7 +14860,7 @@ Defined in: [lib/core.ts:1384](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14762
14860
|
|
|
14763
14861
|
> **component**(`name`): `any`
|
|
14764
14862
|
|
|
14765
|
-
Defined in: [lib/core.ts:
|
|
14863
|
+
Defined in: [lib/core.ts:1377](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1377)
|
|
14766
14864
|
|
|
14767
14865
|
##### Parameters
|
|
14768
14866
|
|
|
@@ -14778,7 +14876,7 @@ Defined in: [lib/core.ts:1375](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14778
14876
|
|
|
14779
14877
|
> **component**(`name`, `config`): `this`
|
|
14780
14878
|
|
|
14781
|
-
Defined in: [lib/core.ts:
|
|
14879
|
+
Defined in: [lib/core.ts:1378](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1378)
|
|
14782
14880
|
|
|
14783
14881
|
##### Parameters
|
|
14784
14882
|
|
|
@@ -14802,7 +14900,7 @@ Defined in: [lib/core.ts:1376](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14802
14900
|
|
|
14803
14901
|
> **directive**(`name`): `any`
|
|
14804
14902
|
|
|
14805
|
-
Defined in: [lib/core.ts:
|
|
14903
|
+
Defined in: [lib/core.ts:1380](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1380)
|
|
14806
14904
|
|
|
14807
14905
|
##### Parameters
|
|
14808
14906
|
|
|
@@ -14818,7 +14916,7 @@ Defined in: [lib/core.ts:1378](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14818
14916
|
|
|
14819
14917
|
> **directive**(`name`, `config`): `this`
|
|
14820
14918
|
|
|
14821
|
-
Defined in: [lib/core.ts:
|
|
14919
|
+
Defined in: [lib/core.ts:1381](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1381)
|
|
14822
14920
|
|
|
14823
14921
|
##### Parameters
|
|
14824
14922
|
|
|
@@ -14840,7 +14938,7 @@ Defined in: [lib/core.ts:1379](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14840
14938
|
|
|
14841
14939
|
> **mixin**(`mixin`): `this`
|
|
14842
14940
|
|
|
14843
|
-
Defined in: [lib/core.ts:
|
|
14941
|
+
Defined in: [lib/core.ts:1382](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1382)
|
|
14844
14942
|
|
|
14845
14943
|
#### Parameters
|
|
14846
14944
|
|
|
@@ -14858,7 +14956,7 @@ Defined in: [lib/core.ts:1380](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14858
14956
|
|
|
14859
14957
|
> **mount**(`rootContainer`): [`IVue`](IVue.md)
|
|
14860
14958
|
|
|
14861
|
-
Defined in: [lib/core.ts:
|
|
14959
|
+
Defined in: [lib/core.ts:1383](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1383)
|
|
14862
14960
|
|
|
14863
14961
|
#### Parameters
|
|
14864
14962
|
|
|
@@ -14876,7 +14974,7 @@ Defined in: [lib/core.ts:1381](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14876
14974
|
|
|
14877
14975
|
> **provide**\<`T`\>(`key`, `value`): `this`
|
|
14878
14976
|
|
|
14879
|
-
Defined in: [lib/core.ts:
|
|
14977
|
+
Defined in: [lib/core.ts:1384](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1384)
|
|
14880
14978
|
|
|
14881
14979
|
#### Type Parameters
|
|
14882
14980
|
|
|
@@ -14904,7 +15002,7 @@ Defined in: [lib/core.ts:1382](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14904
15002
|
|
|
14905
15003
|
> **unmount**(): `void`
|
|
14906
15004
|
|
|
14907
|
-
Defined in: [lib/core.ts:
|
|
15005
|
+
Defined in: [lib/core.ts:1385](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1385)
|
|
14908
15006
|
|
|
14909
15007
|
#### Returns
|
|
14910
15008
|
|
|
@@ -14921,7 +15019,7 @@ lib/core/interfaces/IVNode.md
|
|
|
14921
15019
|
|
|
14922
15020
|
# Interface: IVNode
|
|
14923
15021
|
|
|
14924
|
-
Defined in: [lib/core.ts:
|
|
15022
|
+
Defined in: [lib/core.ts:1339](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1339)
|
|
14925
15023
|
|
|
14926
15024
|
Vue 节点
|
|
14927
15025
|
|
|
@@ -14935,7 +15033,7 @@ Vue 节点
|
|
|
14935
15033
|
|
|
14936
15034
|
> **children**: `object` & `IVNode`[]
|
|
14937
15035
|
|
|
14938
|
-
Defined in: [lib/core.ts:
|
|
15036
|
+
Defined in: [lib/core.ts:1340](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1340)
|
|
14939
15037
|
|
|
14940
15038
|
#### Type Declaration
|
|
14941
15039
|
|
|
@@ -14949,7 +15047,7 @@ Defined in: [lib/core.ts:1338](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14949
15047
|
|
|
14950
15048
|
> **props**: `Record`\<`string`, `any`\>
|
|
14951
15049
|
|
|
14952
|
-
Defined in: [lib/core.ts:
|
|
15050
|
+
Defined in: [lib/core.ts:1344](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1344)
|
|
14953
15051
|
|
|
14954
15052
|
***
|
|
14955
15053
|
|
|
@@ -14957,7 +15055,7 @@ Defined in: [lib/core.ts:1342](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14957
15055
|
|
|
14958
15056
|
> **type**: `symbol` \| `Record`\<`string`, `any`\>
|
|
14959
15057
|
|
|
14960
|
-
Defined in: [lib/core.ts:
|
|
15058
|
+
Defined in: [lib/core.ts:1345](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1345)
|
|
14961
15059
|
|
|
14962
15060
|
lib/core/interfaces/IVue.md
|
|
14963
15061
|
---
|
|
@@ -14970,7 +15068,7 @@ lib/core/interfaces/IVue.md
|
|
|
14970
15068
|
|
|
14971
15069
|
# Interface: IVue
|
|
14972
15070
|
|
|
14973
|
-
Defined in: [lib/core.ts:
|
|
15071
|
+
Defined in: [lib/core.ts:1314](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1314)
|
|
14974
15072
|
|
|
14975
15073
|
Vue 实例
|
|
14976
15074
|
|
|
@@ -14984,7 +15082,7 @@ Vue 实例
|
|
|
14984
15082
|
|
|
14985
15083
|
> **$attrs**: `Record`\<`string`, `string`\>
|
|
14986
15084
|
|
|
14987
|
-
Defined in: [lib/core.ts:
|
|
15085
|
+
Defined in: [lib/core.ts:1315](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1315)
|
|
14988
15086
|
|
|
14989
15087
|
***
|
|
14990
15088
|
|
|
@@ -14992,7 +15090,7 @@ Defined in: [lib/core.ts:1313](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
14992
15090
|
|
|
14993
15091
|
> **$data**: `Record`\<`string`, `any`\>
|
|
14994
15092
|
|
|
14995
|
-
Defined in: [lib/core.ts:
|
|
15093
|
+
Defined in: [lib/core.ts:1316](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1316)
|
|
14996
15094
|
|
|
14997
15095
|
***
|
|
14998
15096
|
|
|
@@ -15000,7 +15098,7 @@ Defined in: [lib/core.ts:1314](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15000
15098
|
|
|
15001
15099
|
> **$el**: `HTMLElement`
|
|
15002
15100
|
|
|
15003
|
-
Defined in: [lib/core.ts:
|
|
15101
|
+
Defined in: [lib/core.ts:1317](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1317)
|
|
15004
15102
|
|
|
15005
15103
|
***
|
|
15006
15104
|
|
|
@@ -15008,7 +15106,7 @@ Defined in: [lib/core.ts:1315](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15008
15106
|
|
|
15009
15107
|
> **$options**: `Record`\<`string`, `any`\>
|
|
15010
15108
|
|
|
15011
|
-
Defined in: [lib/core.ts:
|
|
15109
|
+
Defined in: [lib/core.ts:1321](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1321)
|
|
15012
15110
|
|
|
15013
15111
|
***
|
|
15014
15112
|
|
|
@@ -15016,7 +15114,7 @@ Defined in: [lib/core.ts:1319](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15016
15114
|
|
|
15017
15115
|
> **$parent**: `IVue` \| `null`
|
|
15018
15116
|
|
|
15019
|
-
Defined in: [lib/core.ts:
|
|
15117
|
+
Defined in: [lib/core.ts:1322](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1322)
|
|
15020
15118
|
|
|
15021
15119
|
***
|
|
15022
15120
|
|
|
@@ -15024,7 +15122,7 @@ Defined in: [lib/core.ts:1320](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15024
15122
|
|
|
15025
15123
|
> **$props**: `Record`\<`string`, `any`\>
|
|
15026
15124
|
|
|
15027
|
-
Defined in: [lib/core.ts:
|
|
15125
|
+
Defined in: [lib/core.ts:1323](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1323)
|
|
15028
15126
|
|
|
15029
15127
|
***
|
|
15030
15128
|
|
|
@@ -15032,7 +15130,7 @@ Defined in: [lib/core.ts:1321](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15032
15130
|
|
|
15033
15131
|
> **$refs**: `Record`\<`string`, `HTMLElement` & `IVue`\>
|
|
15034
15132
|
|
|
15035
|
-
Defined in: [lib/core.ts:
|
|
15133
|
+
Defined in: [lib/core.ts:1324](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1324)
|
|
15036
15134
|
|
|
15037
15135
|
***
|
|
15038
15136
|
|
|
@@ -15040,7 +15138,7 @@ Defined in: [lib/core.ts:1322](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15040
15138
|
|
|
15041
15139
|
> **$root**: `IVue`
|
|
15042
15140
|
|
|
15043
|
-
Defined in: [lib/core.ts:
|
|
15141
|
+
Defined in: [lib/core.ts:1325](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1325)
|
|
15044
15142
|
|
|
15045
15143
|
***
|
|
15046
15144
|
|
|
@@ -15048,7 +15146,7 @@ Defined in: [lib/core.ts:1323](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15048
15146
|
|
|
15049
15147
|
> **$slots**: `object`
|
|
15050
15148
|
|
|
15051
|
-
Defined in: [lib/core.ts:
|
|
15149
|
+
Defined in: [lib/core.ts:1326](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1326)
|
|
15052
15150
|
|
|
15053
15151
|
#### Index Signature
|
|
15054
15152
|
|
|
@@ -15064,7 +15162,7 @@ Defined in: [lib/core.ts:1324](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15064
15162
|
|
|
15065
15163
|
> **$watch**: (`o`, `cb`, `opt?`) => `void`
|
|
15066
15164
|
|
|
15067
|
-
Defined in: [lib/core.ts:
|
|
15165
|
+
Defined in: [lib/core.ts:1330](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1330)
|
|
15068
15166
|
|
|
15069
15167
|
#### Parameters
|
|
15070
15168
|
|
|
@@ -15096,7 +15194,7 @@ Defined in: [lib/core.ts:1328](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15096
15194
|
|
|
15097
15195
|
> **$emit**(`name`, ...`arg`): `void`
|
|
15098
15196
|
|
|
15099
|
-
Defined in: [lib/core.ts:
|
|
15197
|
+
Defined in: [lib/core.ts:1318](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1318)
|
|
15100
15198
|
|
|
15101
15199
|
#### Parameters
|
|
15102
15200
|
|
|
@@ -15118,7 +15216,7 @@ Defined in: [lib/core.ts:1316](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15118
15216
|
|
|
15119
15217
|
> **$forceUpdate**(): `void`
|
|
15120
15218
|
|
|
15121
|
-
Defined in: [lib/core.ts:
|
|
15219
|
+
Defined in: [lib/core.ts:1319](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1319)
|
|
15122
15220
|
|
|
15123
15221
|
#### Returns
|
|
15124
15222
|
|
|
@@ -15130,7 +15228,7 @@ Defined in: [lib/core.ts:1317](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15130
15228
|
|
|
15131
15229
|
> **$nextTick**(): `Promise`\<`void`\>
|
|
15132
15230
|
|
|
15133
|
-
Defined in: [lib/core.ts:
|
|
15231
|
+
Defined in: [lib/core.ts:1320](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1320)
|
|
15134
15232
|
|
|
15135
15233
|
#### Returns
|
|
15136
15234
|
|
|
@@ -15147,7 +15245,7 @@ lib/core/interfaces/IVueConfig.md
|
|
|
15147
15245
|
|
|
15148
15246
|
# Interface: IVueConfig
|
|
15149
15247
|
|
|
15150
|
-
Defined in: [lib/core.ts:
|
|
15248
|
+
Defined in: [lib/core.ts:1366](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1366)
|
|
15151
15249
|
|
|
15152
15250
|
Vue 配置
|
|
15153
15251
|
|
|
@@ -15157,7 +15255,7 @@ Vue 配置
|
|
|
15157
15255
|
|
|
15158
15256
|
> **globalProperties**: `Record`\<`string`, `any`\>
|
|
15159
15257
|
|
|
15160
|
-
Defined in: [lib/core.ts:
|
|
15258
|
+
Defined in: [lib/core.ts:1368](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1368)
|
|
15161
15259
|
|
|
15162
15260
|
***
|
|
15163
15261
|
|
|
@@ -15165,7 +15263,7 @@ Defined in: [lib/core.ts:1366](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15165
15263
|
|
|
15166
15264
|
> **optionMergeStrategies**: `Record`\<`string`, [`IVueOptionMergeFunction`](../type-aliases/IVueOptionMergeFunction.md)\>
|
|
15167
15265
|
|
|
15168
|
-
Defined in: [lib/core.ts:
|
|
15266
|
+
Defined in: [lib/core.ts:1370](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1370)
|
|
15169
15267
|
|
|
15170
15268
|
***
|
|
15171
15269
|
|
|
@@ -15173,7 +15271,7 @@ Defined in: [lib/core.ts:1368](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15173
15271
|
|
|
15174
15272
|
> **performance**: `boolean`
|
|
15175
15273
|
|
|
15176
|
-
Defined in: [lib/core.ts:
|
|
15274
|
+
Defined in: [lib/core.ts:1371](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1371)
|
|
15177
15275
|
|
|
15178
15276
|
## Methods
|
|
15179
15277
|
|
|
@@ -15181,7 +15279,7 @@ Defined in: [lib/core.ts:1369](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15181
15279
|
|
|
15182
15280
|
> `optional` **errorHandler**(`err`, `instance`, `info`): `void`
|
|
15183
15281
|
|
|
15184
|
-
Defined in: [lib/core.ts:
|
|
15282
|
+
Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1367)
|
|
15185
15283
|
|
|
15186
15284
|
#### Parameters
|
|
15187
15285
|
|
|
@@ -15207,7 +15305,7 @@ Defined in: [lib/core.ts:1365](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15207
15305
|
|
|
15208
15306
|
> **isCustomElement**(`tag`): `boolean`
|
|
15209
15307
|
|
|
15210
|
-
Defined in: [lib/core.ts:
|
|
15308
|
+
Defined in: [lib/core.ts:1369](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1369)
|
|
15211
15309
|
|
|
15212
15310
|
#### Parameters
|
|
15213
15311
|
|
|
@@ -15225,7 +15323,7 @@ Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15225
15323
|
|
|
15226
15324
|
> `optional` **warnHandler**(`msg`, `instance`, `trace`): `void`
|
|
15227
15325
|
|
|
15228
|
-
Defined in: [lib/core.ts:
|
|
15326
|
+
Defined in: [lib/core.ts:1372](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1372)
|
|
15229
15327
|
|
|
15230
15328
|
#### Parameters
|
|
15231
15329
|
|
|
@@ -15256,7 +15354,7 @@ lib/core/interfaces/IVueObject.md
|
|
|
15256
15354
|
|
|
15257
15355
|
# Interface: IVueObject
|
|
15258
15356
|
|
|
15259
|
-
Defined in: [lib/core.ts:
|
|
15357
|
+
Defined in: [lib/core.ts:1350](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1350)
|
|
15260
15358
|
|
|
15261
15359
|
## Methods
|
|
15262
15360
|
|
|
@@ -15264,7 +15362,7 @@ Defined in: [lib/core.ts:1348](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15264
15362
|
|
|
15265
15363
|
> **createApp**(`opt`): [`IVApp`](IVApp.md)
|
|
15266
15364
|
|
|
15267
|
-
Defined in: [lib/core.ts:
|
|
15365
|
+
Defined in: [lib/core.ts:1351](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1351)
|
|
15268
15366
|
|
|
15269
15367
|
#### Parameters
|
|
15270
15368
|
|
|
@@ -15282,7 +15380,7 @@ Defined in: [lib/core.ts:1349](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15282
15380
|
|
|
15283
15381
|
> **h**(`tag`, `props?`, `list?`): `any`
|
|
15284
15382
|
|
|
15285
|
-
Defined in: [lib/core.ts:
|
|
15383
|
+
Defined in: [lib/core.ts:1359](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1359)
|
|
15286
15384
|
|
|
15287
15385
|
#### Parameters
|
|
15288
15386
|
|
|
@@ -15308,7 +15406,7 @@ Defined in: [lib/core.ts:1357](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15308
15406
|
|
|
15309
15407
|
> **reactive**\<`T`\>(`obj`): `T`
|
|
15310
15408
|
|
|
15311
|
-
Defined in: [lib/core.ts:
|
|
15409
|
+
Defined in: [lib/core.ts:1353](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1353)
|
|
15312
15410
|
|
|
15313
15411
|
#### Type Parameters
|
|
15314
15412
|
|
|
@@ -15332,7 +15430,7 @@ Defined in: [lib/core.ts:1351](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15332
15430
|
|
|
15333
15431
|
> **ref**\<`T`\>(`obj`): `object`
|
|
15334
15432
|
|
|
15335
|
-
Defined in: [lib/core.ts:
|
|
15433
|
+
Defined in: [lib/core.ts:1352](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1352)
|
|
15336
15434
|
|
|
15337
15435
|
#### Type Parameters
|
|
15338
15436
|
|
|
@@ -15360,7 +15458,7 @@ Defined in: [lib/core.ts:1350](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15360
15458
|
|
|
15361
15459
|
> **watch**(`v`, `cb`, `opt`): `void`
|
|
15362
15460
|
|
|
15363
|
-
Defined in: [lib/core.ts:
|
|
15461
|
+
Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1354)
|
|
15364
15462
|
|
|
15365
15463
|
#### Parameters
|
|
15366
15464
|
|
|
@@ -15393,7 +15491,7 @@ lib/core/type-aliases/IVueOptionMergeFunction.md
|
|
|
15393
15491
|
|
|
15394
15492
|
> **IVueOptionMergeFunction** = (`to`, `from`, `instance`) => `any`
|
|
15395
15493
|
|
|
15396
|
-
Defined in: [lib/core.ts:
|
|
15494
|
+
Defined in: [lib/core.ts:1363](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1363)
|
|
15397
15495
|
|
|
15398
15496
|
Vue 选项合并函数
|
|
15399
15497
|
|
|
@@ -15428,7 +15526,7 @@ lib/core/type-aliases/TCurrent.md
|
|
|
15428
15526
|
|
|
15429
15527
|
> **TCurrent** = `string` \| [`AbstractForm`](../../form/classes/AbstractForm.md) \| [`AbstractPanel`](../../form/classes/AbstractPanel.md) \| [`AbstractControl`](../../control/classes/AbstractControl.md) \| [`AbstractApp`](../classes/AbstractApp.md)
|
|
15430
15528
|
|
|
15431
|
-
Defined in: [lib/core.ts:
|
|
15529
|
+
Defined in: [lib/core.ts:1391](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1391)
|
|
15432
15530
|
|
|
15433
15531
|
lib/core/type-aliases/TGlobalEvent.md
|
|
15434
15532
|
---
|
|
@@ -15443,7 +15541,7 @@ lib/core/type-aliases/TGlobalEvent.md
|
|
|
15443
15541
|
|
|
15444
15542
|
> **TGlobalEvent** = `"error"` \| `"screenResize"` \| `"configChanged"` \| `"formCreated"` \| `"formRemoved"` \| `"formTitleChanged"` \| `"formIconChanged"` \| `"formStateMinChanged"` \| `"formStateMaxChanged"` \| `"formShowChanged"` \| `"formFocused"` \| `"formBlurred"` \| `"formFlash"` \| `"formShowInSystemTaskChange"` \| `"formHashChange"` \| `"taskStarted"` \| `"taskEnded"` \| `"launcherFolderNameChanged"` \| `"hashChanged"` \| `"keydown"` \| `"keyup"`
|
|
15445
15543
|
|
|
15446
|
-
Defined in: [lib/core.ts:
|
|
15544
|
+
Defined in: [lib/core.ts:1249](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1249)
|
|
15447
15545
|
|
|
15448
15546
|
全局事件类型
|
|
15449
15547
|
|
|
@@ -15460,7 +15558,7 @@ lib/core/variables/config.md
|
|
|
15460
15558
|
|
|
15461
15559
|
> **config**: [`IConfig`](../interfaces/IConfig.md)
|
|
15462
15560
|
|
|
15463
|
-
Defined in: [lib/core.ts:
|
|
15561
|
+
Defined in: [lib/core.ts:54](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L54)
|
|
15464
15562
|
|
|
15465
15563
|
Config 配置对象
|
|
15466
15564
|
|