clickgo 5.16.2 → 5.17.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/control/common.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/control.d.ts +5 -0
- package/doc/clickgo-rag.md +134 -37
- package/package.json +1 -1
package/dist/lib/control.d.ts
CHANGED
|
@@ -626,6 +626,11 @@ export interface ISelectItemclickedEvent {
|
|
|
626
626
|
'arrow': boolean;
|
|
627
627
|
};
|
|
628
628
|
}
|
|
629
|
+
export interface IStabChangeEvent extends ICustomEvent {
|
|
630
|
+
'detail': {
|
|
631
|
+
'value': number;
|
|
632
|
+
};
|
|
633
|
+
}
|
|
629
634
|
export interface ISwitchChangeEvent extends ICustomEvent {
|
|
630
635
|
'detail': {
|
|
631
636
|
'value': boolean;
|
package/doc/clickgo-rag.md
CHANGED
|
@@ -1842,6 +1842,20 @@ ECharts 配置选项。
|
|
|
1842
1842
|
|
|
1843
1843
|
滚动方向限制。`v` 仅允许垂直滚动,内容宽度被约束在容器内不产生横向溢出;`h` 仅允许水平滚动,子元素以行方向排列,高度被约束在容器内不产生纵向溢出;默认空值时两个方向均可滚动。
|
|
1844
1844
|
|
|
1845
|
+
#### state
|
|
1846
|
+
|
|
1847
|
+
`'idle'` | `'loading'` | `'complete'`
|
|
1848
|
+
|
|
1849
|
+
加载状态。`idle` 表示空闲可加载,`loading` 表示加载中会展示旋转动画,此时不触发 `load` 事件;`complete` 表示已加载完毕,显示完成图形(圆点加线条),也不再触发 `load` 事件。默认 `idle`。
|
|
1850
|
+
|
|
1851
|
+
### 事件
|
|
1852
|
+
|
|
1853
|
+
#### load
|
|
1854
|
+
|
|
1855
|
+
`(): void`
|
|
1856
|
+
|
|
1857
|
+
触底加载事件。当内容滚动至距底部 50px 以内时触发,仅在 `state` 为 `idle` 时生效。内容未填满容器时挂载后也会自动触发。
|
|
1858
|
+
|
|
1845
1859
|
### 方法
|
|
1846
1860
|
|
|
1847
1861
|
#### toBottom
|
|
@@ -1850,23 +1864,37 @@ ECharts 配置选项。
|
|
|
1850
1864
|
|
|
1851
1865
|
滚动到底部。
|
|
1852
1866
|
|
|
1867
|
+
#### checkLoad
|
|
1868
|
+
|
|
1869
|
+
`(): void`
|
|
1870
|
+
|
|
1871
|
+
手动检查是否满足触底条件并触发 `load` 事件,一般无需直接调用。
|
|
1872
|
+
|
|
1853
1873
|
### 样式
|
|
1854
1874
|
|
|
1855
1875
|
该控件采用 flex 布局,由顶部的画布区域和底部的横向滚动条区域组成。画布区域内部包含一个可平移的显示容器。
|
|
1856
1876
|
|
|
1857
1877
|
支持通过鼠标或触摸在非节点区域进行点击拖拽操作,从而实现画布的平移。当内容超出显示范围时,组件会自动显示自定义的 `cg-scroll` 滚动条,以保证在不同平台上具有一致的交互体验。
|
|
1858
1878
|
|
|
1859
|
-
|
|
1879
|
+
底部加载区域(`.load-footer`)在 `state` 为 `loading` 或 `complete` 时显示,居中展示加载或完成图形。图形颜色跟随主题变量 `--g-color`,以保证多主题的一致性和框架的跨语言通用性。
|
|
1860
1880
|
|
|
1861
1881
|
### 示例
|
|
1862
1882
|
|
|
1863
1883
|
```xml
|
|
1864
|
-
<eflow :gutter="10">
|
|
1865
|
-
<div>
|
|
1866
|
-
<div>Node 2</div>
|
|
1884
|
+
<eflow direction="v" :gutter="10" :state="state" @load="onLoad">
|
|
1885
|
+
<div v-for="item in list" :key="item.id">{{ item.name }}</div>
|
|
1867
1886
|
</eflow>
|
|
1868
1887
|
```
|
|
1869
1888
|
|
|
1889
|
+
```typescript
|
|
1890
|
+
public async onLoad(): Promise<void> {
|
|
1891
|
+
this.state = 'loading';
|
|
1892
|
+
const res = await fetchPage(++this.page);
|
|
1893
|
+
this.list.push(...res.items);
|
|
1894
|
+
this.state = res.hasMore ? 'idle' : 'complete';
|
|
1895
|
+
}
|
|
1896
|
+
```
|
|
1897
|
+
|
|
1870
1898
|
## empty
|
|
1871
1899
|
---
|
|
1872
1900
|
|
|
@@ -6445,7 +6473,15 @@ QR 码组件,用于生成二维码。
|
|
|
6445
6473
|
|
|
6446
6474
|
### 事件
|
|
6447
6475
|
|
|
6448
|
-
|
|
6476
|
+
#### change
|
|
6477
|
+
|
|
6478
|
+
切换选项卡时触发。
|
|
6479
|
+
|
|
6480
|
+
参数:
|
|
6481
|
+
|
|
6482
|
+
`event: { go: boolean, preventDefault: Function, detail: { value: number } }`
|
|
6483
|
+
|
|
6484
|
+
其中 `detail.value` 为即将切换到的索引,`preventDefault()` 可阻止切换。
|
|
6449
6485
|
|
|
6450
6486
|
### 样式
|
|
6451
6487
|
|
|
@@ -10393,6 +10429,7 @@ lib/control/index.md
|
|
|
10393
10429
|
- [ISelectRemovedEvent](interfaces/ISelectRemovedEvent.md)
|
|
10394
10430
|
- [ISelectRemoveEvent](interfaces/ISelectRemoveEvent.md)
|
|
10395
10431
|
- [ISelectTagclickEvent](interfaces/ISelectTagclickEvent.md)
|
|
10432
|
+
- [IStabChangeEvent](interfaces/IStabChangeEvent.md)
|
|
10396
10433
|
- [IStepClickedEvent](interfaces/IStepClickedEvent.md)
|
|
10397
10434
|
- [ISwitchChangeEvent](interfaces/ISwitchChangeEvent.md)
|
|
10398
10435
|
- [ITabChangedEvent](interfaces/ITabChangedEvent.md)
|
|
@@ -10987,6 +11024,7 @@ Custom Event
|
|
|
10987
11024
|
- [`ISelectAddEvent`](ISelectAddEvent.md)
|
|
10988
11025
|
- [`ISelectRemoveEvent`](ISelectRemoveEvent.md)
|
|
10989
11026
|
- [`ISelectChangeEvent`](ISelectChangeEvent.md)
|
|
11027
|
+
- [`IStabChangeEvent`](IStabChangeEvent.md)
|
|
10990
11028
|
- [`ISwitchChangeEvent`](ISwitchChangeEvent.md)
|
|
10991
11029
|
- [`ITabChangeEvent`](ITabChangeEvent.md)
|
|
10992
11030
|
- [`ITabCloseEvent`](ITabCloseEvent.md)
|
|
@@ -11191,7 +11229,7 @@ lib/control/interfaces/IFabricLayerchangeEvent.md
|
|
|
11191
11229
|
|
|
11192
11230
|
# Interface: IFabricLayerchangeEvent
|
|
11193
11231
|
|
|
11194
|
-
Defined in: [lib/control.ts:
|
|
11232
|
+
Defined in: [lib/control.ts:1495](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1495)
|
|
11195
11233
|
|
|
11196
11234
|
## Properties
|
|
11197
11235
|
|
|
@@ -11199,7 +11237,7 @@ Defined in: [lib/control.ts:1487](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11199
11237
|
|
|
11200
11238
|
> **detail**: `object`
|
|
11201
11239
|
|
|
11202
|
-
Defined in: [lib/control.ts:
|
|
11240
|
+
Defined in: [lib/control.ts:1496](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1496)
|
|
11203
11241
|
|
|
11204
11242
|
#### next
|
|
11205
11243
|
|
|
@@ -11224,7 +11262,7 @@ lib/control/interfaces/IFabricLayerlistchangeEvent.md
|
|
|
11224
11262
|
|
|
11225
11263
|
# Interface: IFabricLayerlistchangeEvent
|
|
11226
11264
|
|
|
11227
|
-
Defined in: [lib/control.ts:
|
|
11265
|
+
Defined in: [lib/control.ts:1504](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1504)
|
|
11228
11266
|
|
|
11229
11267
|
## Properties
|
|
11230
11268
|
|
|
@@ -11232,7 +11270,7 @@ Defined in: [lib/control.ts:1496](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11232
11270
|
|
|
11233
11271
|
> **detail**: `object`
|
|
11234
11272
|
|
|
11235
|
-
Defined in: [lib/control.ts:
|
|
11273
|
+
Defined in: [lib/control.ts:1505](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1505)
|
|
11236
11274
|
|
|
11237
11275
|
#### names
|
|
11238
11276
|
|
|
@@ -11263,7 +11301,7 @@ lib/control/interfaces/IFabricObjectchangeEvent.md
|
|
|
11263
11301
|
|
|
11264
11302
|
# Interface: IFabricObjectchangeEvent
|
|
11265
11303
|
|
|
11266
|
-
Defined in: [lib/control.ts:
|
|
11304
|
+
Defined in: [lib/control.ts:1515](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1515)
|
|
11267
11305
|
|
|
11268
11306
|
## Properties
|
|
11269
11307
|
|
|
@@ -11271,7 +11309,7 @@ Defined in: [lib/control.ts:1507](https://github.com/maiyun/clickgo/blob/master/
|
|
|
11271
11309
|
|
|
11272
11310
|
> **detail**: `object`
|
|
11273
11311
|
|
|
11274
|
-
Defined in: [lib/control.ts:
|
|
11312
|
+
Defined in: [lib/control.ts:1516](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1516)
|
|
11275
11313
|
|
|
11276
11314
|
#### angle
|
|
11277
11315
|
|
|
@@ -12662,7 +12700,7 @@ lib/control/interfaces/IObjviewerLine.md
|
|
|
12662
12700
|
|
|
12663
12701
|
# Interface: IObjviewerLine
|
|
12664
12702
|
|
|
12665
|
-
Defined in: [lib/control.ts:
|
|
12703
|
+
Defined in: [lib/control.ts:1531](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1531)
|
|
12666
12704
|
|
|
12667
12705
|
## Properties
|
|
12668
12706
|
|
|
@@ -12670,7 +12708,7 @@ Defined in: [lib/control.ts:1523](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12670
12708
|
|
|
12671
12709
|
> **end**: [`IObjviewerLineObj`](IObjviewerLineObj.md)
|
|
12672
12710
|
|
|
12673
|
-
Defined in: [lib/control.ts:
|
|
12711
|
+
Defined in: [lib/control.ts:1535](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1535)
|
|
12674
12712
|
|
|
12675
12713
|
***
|
|
12676
12714
|
|
|
@@ -12678,7 +12716,7 @@ Defined in: [lib/control.ts:1527](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12678
12716
|
|
|
12679
12717
|
> `optional` **hue?**: `string`
|
|
12680
12718
|
|
|
12681
|
-
Defined in: [lib/control.ts:
|
|
12719
|
+
Defined in: [lib/control.ts:1537](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1537)
|
|
12682
12720
|
|
|
12683
12721
|
默认 255
|
|
12684
12722
|
|
|
@@ -12688,7 +12726,7 @@ Defined in: [lib/control.ts:1529](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12688
12726
|
|
|
12689
12727
|
> `optional` **name?**: `string`
|
|
12690
12728
|
|
|
12691
|
-
Defined in: [lib/control.ts:
|
|
12729
|
+
Defined in: [lib/control.ts:1533](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1533)
|
|
12692
12730
|
|
|
12693
12731
|
-- 可自定义线段的名称
|
|
12694
12732
|
|
|
@@ -12698,7 +12736,7 @@ Defined in: [lib/control.ts:1525](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12698
12736
|
|
|
12699
12737
|
> `optional` **path?**: `string`
|
|
12700
12738
|
|
|
12701
|
-
Defined in: [lib/control.ts:
|
|
12739
|
+
Defined in: [lib/control.ts:1538](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1538)
|
|
12702
12740
|
|
|
12703
12741
|
***
|
|
12704
12742
|
|
|
@@ -12706,7 +12744,7 @@ Defined in: [lib/control.ts:1530](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12706
12744
|
|
|
12707
12745
|
> **start**: [`IObjviewerLineObj`](IObjviewerLineObj.md)
|
|
12708
12746
|
|
|
12709
|
-
Defined in: [lib/control.ts:
|
|
12747
|
+
Defined in: [lib/control.ts:1534](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1534)
|
|
12710
12748
|
|
|
12711
12749
|
***
|
|
12712
12750
|
|
|
@@ -12714,7 +12752,7 @@ Defined in: [lib/control.ts:1526](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12714
12752
|
|
|
12715
12753
|
> `optional` **stroke?**: `"down"` \| `"solid"` \| `"dashed"` \| `"up"`
|
|
12716
12754
|
|
|
12717
|
-
Defined in: [lib/control.ts:
|
|
12755
|
+
Defined in: [lib/control.ts:1540](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1540)
|
|
12718
12756
|
|
|
12719
12757
|
默认 solid
|
|
12720
12758
|
|
|
@@ -12729,7 +12767,7 @@ lib/control/interfaces/IObjviewerLineObj.md
|
|
|
12729
12767
|
|
|
12730
12768
|
# Interface: IObjviewerLineObj
|
|
12731
12769
|
|
|
12732
|
-
Defined in: [lib/control.ts:
|
|
12770
|
+
Defined in: [lib/control.ts:1543](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1543)
|
|
12733
12771
|
|
|
12734
12772
|
## Properties
|
|
12735
12773
|
|
|
@@ -12737,7 +12775,7 @@ Defined in: [lib/control.ts:1535](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12737
12775
|
|
|
12738
12776
|
> **obj**: `HTMLElement` \| [`AbstractControl`](../classes/AbstractControl.md)
|
|
12739
12777
|
|
|
12740
|
-
Defined in: [lib/control.ts:
|
|
12778
|
+
Defined in: [lib/control.ts:1544](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1544)
|
|
12741
12779
|
|
|
12742
12780
|
***
|
|
12743
12781
|
|
|
@@ -12745,7 +12783,7 @@ Defined in: [lib/control.ts:1536](https://github.com/maiyun/clickgo/blob/master/
|
|
|
12745
12783
|
|
|
12746
12784
|
> **pos**: `"b"` \| `"tr"` \| `"lt"` \| `"t"` \| `"r"` \| `"rb"` \| `"bl"` \| `"l"`
|
|
12747
12785
|
|
|
12748
|
-
Defined in: [lib/control.ts:
|
|
12786
|
+
Defined in: [lib/control.ts:1545](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1545)
|
|
12749
12787
|
|
|
12750
12788
|
lib/control/interfaces/IPaletteChangedEvent.md
|
|
12751
12789
|
---
|
|
@@ -13417,6 +13455,65 @@ Defined in: [lib/control.ts:1392](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13417
13455
|
|
|
13418
13456
|
> **value**: `string`
|
|
13419
13457
|
|
|
13458
|
+
lib/control/interfaces/IStabChangeEvent.md
|
|
13459
|
+
---
|
|
13460
|
+
|
|
13461
|
+
[**Documents for clickgo**](../../../index.md)
|
|
13462
|
+
|
|
13463
|
+
***
|
|
13464
|
+
|
|
13465
|
+
[Documents for clickgo](../../../index.md) / [lib/control](../index.md) / IStabChangeEvent
|
|
13466
|
+
|
|
13467
|
+
# Interface: IStabChangeEvent
|
|
13468
|
+
|
|
13469
|
+
Defined in: [lib/control.ts:1415](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1415)
|
|
13470
|
+
|
|
13471
|
+
Custom Event
|
|
13472
|
+
|
|
13473
|
+
## Extends
|
|
13474
|
+
|
|
13475
|
+
- [`ICustomEvent`](ICustomEvent.md)
|
|
13476
|
+
|
|
13477
|
+
## Properties
|
|
13478
|
+
|
|
13479
|
+
### detail
|
|
13480
|
+
|
|
13481
|
+
> **detail**: `object`
|
|
13482
|
+
|
|
13483
|
+
Defined in: [lib/control.ts:1416](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1416)
|
|
13484
|
+
|
|
13485
|
+
#### value
|
|
13486
|
+
|
|
13487
|
+
> **value**: `number`
|
|
13488
|
+
|
|
13489
|
+
***
|
|
13490
|
+
|
|
13491
|
+
### go
|
|
13492
|
+
|
|
13493
|
+
> **go**: `boolean`
|
|
13494
|
+
|
|
13495
|
+
Defined in: [lib/control.ts:878](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L878)
|
|
13496
|
+
|
|
13497
|
+
#### Inherited from
|
|
13498
|
+
|
|
13499
|
+
[`ICustomEvent`](ICustomEvent.md).[`go`](ICustomEvent.md#go)
|
|
13500
|
+
|
|
13501
|
+
***
|
|
13502
|
+
|
|
13503
|
+
### preventDefault
|
|
13504
|
+
|
|
13505
|
+
> **preventDefault**: () => `void`
|
|
13506
|
+
|
|
13507
|
+
Defined in: [lib/control.ts:879](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L879)
|
|
13508
|
+
|
|
13509
|
+
#### Returns
|
|
13510
|
+
|
|
13511
|
+
`void`
|
|
13512
|
+
|
|
13513
|
+
#### Inherited from
|
|
13514
|
+
|
|
13515
|
+
[`ICustomEvent`](ICustomEvent.md).[`preventDefault`](ICustomEvent.md#preventdefault)
|
|
13516
|
+
|
|
13420
13517
|
lib/control/interfaces/IStepClickedEvent.md
|
|
13421
13518
|
---
|
|
13422
13519
|
|
|
@@ -13428,7 +13525,7 @@ lib/control/interfaces/IStepClickedEvent.md
|
|
|
13428
13525
|
|
|
13429
13526
|
# Interface: IStepClickedEvent
|
|
13430
13527
|
|
|
13431
|
-
Defined in: [lib/control.ts:
|
|
13528
|
+
Defined in: [lib/control.ts:1485](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1485)
|
|
13432
13529
|
|
|
13433
13530
|
## Properties
|
|
13434
13531
|
|
|
@@ -13436,7 +13533,7 @@ Defined in: [lib/control.ts:1477](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13436
13533
|
|
|
13437
13534
|
> **detail**: `object`
|
|
13438
13535
|
|
|
13439
|
-
Defined in: [lib/control.ts:
|
|
13536
|
+
Defined in: [lib/control.ts:1486](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1486)
|
|
13440
13537
|
|
|
13441
13538
|
#### index
|
|
13442
13539
|
|
|
@@ -13461,7 +13558,7 @@ lib/control/interfaces/ISwitchChangeEvent.md
|
|
|
13461
13558
|
|
|
13462
13559
|
# Interface: ISwitchChangeEvent
|
|
13463
13560
|
|
|
13464
|
-
Defined in: [lib/control.ts:
|
|
13561
|
+
Defined in: [lib/control.ts:1423](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1423)
|
|
13465
13562
|
|
|
13466
13563
|
Custom Event
|
|
13467
13564
|
|
|
@@ -13475,7 +13572,7 @@ Custom Event
|
|
|
13475
13572
|
|
|
13476
13573
|
> **detail**: `object`
|
|
13477
13574
|
|
|
13478
|
-
Defined in: [lib/control.ts:
|
|
13575
|
+
Defined in: [lib/control.ts:1424](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1424)
|
|
13479
13576
|
|
|
13480
13577
|
#### value
|
|
13481
13578
|
|
|
@@ -13520,7 +13617,7 @@ lib/control/interfaces/ITabChangedEvent.md
|
|
|
13520
13617
|
|
|
13521
13618
|
# Interface: ITabChangedEvent
|
|
13522
13619
|
|
|
13523
|
-
Defined in: [lib/control.ts:
|
|
13620
|
+
Defined in: [lib/control.ts:1437](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1437)
|
|
13524
13621
|
|
|
13525
13622
|
## Properties
|
|
13526
13623
|
|
|
@@ -13528,7 +13625,7 @@ Defined in: [lib/control.ts:1429](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13528
13625
|
|
|
13529
13626
|
> **detail**: `object`
|
|
13530
13627
|
|
|
13531
|
-
Defined in: [lib/control.ts:
|
|
13628
|
+
Defined in: [lib/control.ts:1438](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1438)
|
|
13532
13629
|
|
|
13533
13630
|
#### value
|
|
13534
13631
|
|
|
@@ -13545,7 +13642,7 @@ lib/control/interfaces/ITabChangeEvent.md
|
|
|
13545
13642
|
|
|
13546
13643
|
# Interface: ITabChangeEvent
|
|
13547
13644
|
|
|
13548
|
-
Defined in: [lib/control.ts:
|
|
13645
|
+
Defined in: [lib/control.ts:1431](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1431)
|
|
13549
13646
|
|
|
13550
13647
|
Custom Event
|
|
13551
13648
|
|
|
@@ -13559,7 +13656,7 @@ Custom Event
|
|
|
13559
13656
|
|
|
13560
13657
|
> **detail**: `object`
|
|
13561
13658
|
|
|
13562
|
-
Defined in: [lib/control.ts:
|
|
13659
|
+
Defined in: [lib/control.ts:1432](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1432)
|
|
13563
13660
|
|
|
13564
13661
|
#### value
|
|
13565
13662
|
|
|
@@ -13604,7 +13701,7 @@ lib/control/interfaces/ITabCloseEvent.md
|
|
|
13604
13701
|
|
|
13605
13702
|
# Interface: ITabCloseEvent
|
|
13606
13703
|
|
|
13607
|
-
Defined in: [lib/control.ts:
|
|
13704
|
+
Defined in: [lib/control.ts:1443](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1443)
|
|
13608
13705
|
|
|
13609
13706
|
Custom Event
|
|
13610
13707
|
|
|
@@ -13618,7 +13715,7 @@ Custom Event
|
|
|
13618
13715
|
|
|
13619
13716
|
> **detail**: `object`
|
|
13620
13717
|
|
|
13621
|
-
Defined in: [lib/control.ts:
|
|
13718
|
+
Defined in: [lib/control.ts:1444](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1444)
|
|
13622
13719
|
|
|
13623
13720
|
#### index
|
|
13624
13721
|
|
|
@@ -13667,7 +13764,7 @@ lib/control/interfaces/ITableSortEvent.md
|
|
|
13667
13764
|
|
|
13668
13765
|
# Interface: ITableSortEvent
|
|
13669
13766
|
|
|
13670
|
-
Defined in: [lib/control.ts:
|
|
13767
|
+
Defined in: [lib/control.ts:1452](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1452)
|
|
13671
13768
|
|
|
13672
13769
|
Custom Event
|
|
13673
13770
|
|
|
@@ -13681,7 +13778,7 @@ Custom Event
|
|
|
13681
13778
|
|
|
13682
13779
|
> **detail**: `object`
|
|
13683
13780
|
|
|
13684
|
-
Defined in: [lib/control.ts:
|
|
13781
|
+
Defined in: [lib/control.ts:1453](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1453)
|
|
13685
13782
|
|
|
13686
13783
|
#### index
|
|
13687
13784
|
|
|
@@ -13734,7 +13831,7 @@ lib/control/interfaces/ITagDropEvent.md
|
|
|
13734
13831
|
|
|
13735
13832
|
# Interface: ITagDropEvent
|
|
13736
13833
|
|
|
13737
|
-
Defined in: [lib/control.ts:
|
|
13834
|
+
Defined in: [lib/control.ts:1476](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1476)
|
|
13738
13835
|
|
|
13739
13836
|
## Properties
|
|
13740
13837
|
|
|
@@ -13742,7 +13839,7 @@ Defined in: [lib/control.ts:1468](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13742
13839
|
|
|
13743
13840
|
> **detail**: `object`
|
|
13744
13841
|
|
|
13745
|
-
Defined in: [lib/control.ts:
|
|
13842
|
+
Defined in: [lib/control.ts:1477](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1477)
|
|
13746
13843
|
|
|
13747
13844
|
#### after
|
|
13748
13845
|
|
|
@@ -13889,7 +13986,7 @@ lib/control/interfaces/ITuieditorImguploadEvent.md
|
|
|
13889
13986
|
|
|
13890
13987
|
# Interface: ITuieditorImguploadEvent
|
|
13891
13988
|
|
|
13892
|
-
Defined in: [lib/control.ts:
|
|
13989
|
+
Defined in: [lib/control.ts:1462](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1462)
|
|
13893
13990
|
|
|
13894
13991
|
## Properties
|
|
13895
13992
|
|
|
@@ -13897,7 +13994,7 @@ Defined in: [lib/control.ts:1454](https://github.com/maiyun/clickgo/blob/master/
|
|
|
13897
13994
|
|
|
13898
13995
|
> **detail**: `object`
|
|
13899
13996
|
|
|
13900
|
-
Defined in: [lib/control.ts:
|
|
13997
|
+
Defined in: [lib/control.ts:1463](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1463)
|
|
13901
13998
|
|
|
13902
13999
|
#### callback
|
|
13903
14000
|
|