clickgo 5.1.1 → 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/demo.cga +0 -0
- package/dist/control/common.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/control.d.ts +2 -0
- package/doc/clickgo-rag.md +214 -162
- package/package.json +1 -1
package/doc/clickgo-rag.md
CHANGED
|
@@ -2409,7 +2409,7 @@ ECharts 配置选项。
|
|
|
2409
2409
|
## grid
|
|
2410
2410
|
---
|
|
2411
2411
|
|
|
2412
|
-
|
|
2412
|
+
栅格布局容器,用于实现基于列的网格布局,支持响应式列数切换。
|
|
2413
2413
|
|
|
2414
2414
|
### 参数
|
|
2415
2415
|
|
|
@@ -2417,59 +2417,78 @@ ECharts 配置选项。
|
|
|
2417
2417
|
|
|
2418
2418
|
`'h'` | `'v'`
|
|
2419
2419
|
|
|
2420
|
-
布局方向,`h` 为水平,`v` 为垂直,默认 `h
|
|
2420
|
+
布局方向,`h` 为水平,`v` 为垂直,默认 `'h'`。此属性决定单元格内容的默认轴向及对齐规则。
|
|
2421
2421
|
|
|
2422
2422
|
#### gutter
|
|
2423
2423
|
|
|
2424
2424
|
`number` | `string`
|
|
2425
2425
|
|
|
2426
|
-
|
|
2426
|
+
单元格之间的间距(px),默认 `0`。
|
|
2427
2427
|
|
|
2428
2428
|
#### itemGutter
|
|
2429
2429
|
|
|
2430
2430
|
`number` | `string`
|
|
2431
2431
|
|
|
2432
|
-
|
|
2432
|
+
子单元格内部的默认间距(px),默认 `0`。若子单元格未指定 `gutter` 则使用此值。
|
|
2433
2433
|
|
|
2434
2434
|
#### alignH
|
|
2435
2435
|
|
|
2436
2436
|
`string` | `undefined`
|
|
2437
2437
|
|
|
2438
|
-
|
|
2438
|
+
全部子单元格的全局水平对齐方式,可被子单元格自身的 `alignH` 覆盖。
|
|
2439
2439
|
|
|
2440
2440
|
#### alignV
|
|
2441
2441
|
|
|
2442
2442
|
`string` | `undefined`
|
|
2443
2443
|
|
|
2444
|
-
|
|
2444
|
+
全部子单元格的全局垂直对齐方式,可被子单元格自身的 `alignV` 覆盖。
|
|
2445
2445
|
|
|
2446
|
-
####
|
|
2446
|
+
#### sizeM
|
|
2447
2447
|
|
|
2448
|
-
`
|
|
2448
|
+
`number` | `string`
|
|
2449
|
+
|
|
2450
|
+
中等宽度(>= 600px 且 < 1000px)时的列数,默认 `2`。
|
|
2451
|
+
|
|
2452
|
+
#### sizeL
|
|
2453
|
+
|
|
2454
|
+
`number` | `string`
|
|
2455
|
+
|
|
2456
|
+
大宽度(>= 1000px)时的列数,默认 `4`。
|
|
2457
|
+
|
|
2458
|
+
### 事件
|
|
2459
|
+
|
|
2460
|
+
无
|
|
2461
|
+
|
|
2462
|
+
### 方法
|
|
2463
|
+
|
|
2464
|
+
无
|
|
2465
|
+
|
|
2466
|
+
### 插槽
|
|
2449
2467
|
|
|
2450
|
-
|
|
2468
|
+
无
|
|
2451
2469
|
|
|
2452
2470
|
### 样式
|
|
2453
2471
|
|
|
2454
|
-
|
|
2472
|
+
容器采用 `display: grid` 布局,通过 `grid-template-columns` 属性动态控制网格列数。系统自动监听容器宽度,并在 600px 和 1000px 阈值处进行响应式断点切换。
|
|
2455
2473
|
|
|
2456
|
-
|
|
2474
|
+
单元格间距通过 CSS 的 `gap` 属性实现,其值直接绑定到 `gutter` 参数。无论布局处于何种响应式状态,单元格之间的间距都能保持精确的一致性。
|
|
2457
2475
|
|
|
2458
|
-
|
|
2476
|
+
该组件作为结构性容器,不包含任何装饰性样式。它支持多层嵌套,能够稳定承载复杂的 `grid-cell` 布局,是构建工业级管理面板和响应式门户的核心底座。
|
|
2459
2477
|
|
|
2460
2478
|
### 示例
|
|
2461
2479
|
|
|
2462
2480
|
```xml
|
|
2463
|
-
<grid :gutter="10">
|
|
2464
|
-
<grid-cell
|
|
2465
|
-
<grid-cell :span="
|
|
2481
|
+
<grid :gutter="10" :size-m="3" :size-l="6">
|
|
2482
|
+
<grid-cell>Cell 1</grid-cell>
|
|
2483
|
+
<grid-cell :span="2">Cell 2</grid-cell>
|
|
2466
2484
|
</grid>
|
|
2467
2485
|
```
|
|
2468
2486
|
|
|
2487
|
+
|
|
2469
2488
|
## grid-cell
|
|
2470
2489
|
---
|
|
2471
2490
|
|
|
2472
|
-
|
|
2491
|
+
栅格布局子单元格,必须放在 `grid` 容器中使用,支持灵活的跨列配置。
|
|
2473
2492
|
|
|
2474
2493
|
### 参数
|
|
2475
2494
|
|
|
@@ -2477,46 +2496,71 @@ ECharts 配置选项。
|
|
|
2477
2496
|
|
|
2478
2497
|
`'h'` | `'v'` | `undefined`
|
|
2479
2498
|
|
|
2480
|
-
|
|
2499
|
+
单元格轴向布局方向。默认继承父级 `grid` 的 `direction` 设置。
|
|
2481
2500
|
|
|
2482
2501
|
#### gutter
|
|
2483
2502
|
|
|
2484
2503
|
`number` | `string`
|
|
2485
2504
|
|
|
2486
|
-
|
|
2505
|
+
单元格内部间距(px)。若设置,则覆盖父级 `grid` 的 `itemGutter` 参数。默认 `0`。
|
|
2487
2506
|
|
|
2488
2507
|
#### alignH
|
|
2489
2508
|
|
|
2490
2509
|
`string` | `undefined`
|
|
2491
2510
|
|
|
2492
|
-
|
|
2511
|
+
内容水平对齐方式。若设置,则覆盖父级全局对齐配置。
|
|
2493
2512
|
|
|
2494
2513
|
#### alignV
|
|
2495
2514
|
|
|
2496
2515
|
`string` | `undefined`
|
|
2497
2516
|
|
|
2498
|
-
|
|
2517
|
+
内容垂直对齐方式。若设置,则覆盖父级全局对齐配置。
|
|
2499
2518
|
|
|
2500
2519
|
#### span
|
|
2501
2520
|
|
|
2502
|
-
`number` | `string`
|
|
2521
|
+
`number` | `string`
|
|
2522
|
+
|
|
2523
|
+
基础跨列数。在 `m` 或 `l` 尺寸下,若未单独设置 `sizeM` 或 `sizeL`,则应用此值。默认 `0`。
|
|
2524
|
+
|
|
2525
|
+
#### sizeM
|
|
2526
|
+
|
|
2527
|
+
`number` | `string`
|
|
2528
|
+
|
|
2529
|
+
中等宽度下(600px - 1000px)的跨列数。设置为 `-1` 时强制跨 `1` 列。默认 `0`。
|
|
2530
|
+
|
|
2531
|
+
#### sizeL
|
|
2532
|
+
|
|
2533
|
+
`number` | `string`
|
|
2534
|
+
|
|
2535
|
+
大宽度下(>= 1000px)的跨列数。设置为 `-1` 时强制跨 `1` 列。默认 `0`。
|
|
2536
|
+
|
|
2537
|
+
### 事件
|
|
2538
|
+
|
|
2539
|
+
无
|
|
2540
|
+
|
|
2541
|
+
### 方法
|
|
2542
|
+
|
|
2543
|
+
无
|
|
2544
|
+
|
|
2545
|
+
### 插槽
|
|
2503
2546
|
|
|
2504
|
-
|
|
2547
|
+
无
|
|
2505
2548
|
|
|
2506
2549
|
### 样式
|
|
2507
2550
|
|
|
2508
|
-
|
|
2551
|
+
内部采用 flex 弹性布局,默认继承父容器的方向特性。通过 `align-items` 和 `justify-content` 属性,配合 `direction` 的状态,实现单元格内容的精准对齐与分布。
|
|
2509
2552
|
|
|
2510
|
-
|
|
2553
|
+
通过 CSS 的 `grid-column` 属性实现横跨多列功能。跨列逻辑会自动响应父容器的宽度状态:在小尺寸(s)模式下强制为单列堆叠,而在较高尺寸下则计算跨列偏移。
|
|
2511
2554
|
|
|
2512
|
-
|
|
2555
|
+
样式表现高度抽象,无背景、边框或强制的外边距。这使得单元格能够完美融合于各种设计风格中,开发者可以根据需要为其添加背景色或内阴影等视觉装饰。
|
|
2513
2556
|
|
|
2514
2557
|
### 示例
|
|
2515
2558
|
|
|
2516
2559
|
```xml
|
|
2517
|
-
<grid-cell :span="
|
|
2560
|
+
<grid-cell :span="2">Cell Content</grid-cell>
|
|
2518
2561
|
```
|
|
2519
2562
|
|
|
2563
|
+
|
|
2520
2564
|
## group
|
|
2521
2565
|
---
|
|
2522
2566
|
|
|
@@ -9197,7 +9241,7 @@ lib/control/interfaces/ICalendarSelectedEvent.md
|
|
|
9197
9241
|
|
|
9198
9242
|
# Interface: ICalendarSelectedEvent
|
|
9199
9243
|
|
|
9200
|
-
Defined in: [dist/lib/control.ts:
|
|
9244
|
+
Defined in: [dist/lib/control.ts:951](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L951)
|
|
9201
9245
|
|
|
9202
9246
|
## Properties
|
|
9203
9247
|
|
|
@@ -9205,7 +9249,7 @@ Defined in: [dist/lib/control.ts:949](https://github.com/maiyun/clickgo/blob/mas
|
|
|
9205
9249
|
|
|
9206
9250
|
> **detail**: `object`
|
|
9207
9251
|
|
|
9208
|
-
Defined in: [dist/lib/control.ts:
|
|
9252
|
+
Defined in: [dist/lib/control.ts:952](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L952)
|
|
9209
9253
|
|
|
9210
9254
|
#### date
|
|
9211
9255
|
|
|
@@ -9238,7 +9282,7 @@ lib/control/interfaces/ICaptchaResultEvent.md
|
|
|
9238
9282
|
|
|
9239
9283
|
# Interface: ICaptchaResultEvent
|
|
9240
9284
|
|
|
9241
|
-
Defined in: [dist/lib/control.ts:
|
|
9285
|
+
Defined in: [dist/lib/control.ts:1100](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1100)
|
|
9242
9286
|
|
|
9243
9287
|
## Properties
|
|
9244
9288
|
|
|
@@ -9246,7 +9290,7 @@ Defined in: [dist/lib/control.ts:1098](https://github.com/maiyun/clickgo/blob/ma
|
|
|
9246
9290
|
|
|
9247
9291
|
> **detail**: `object`
|
|
9248
9292
|
|
|
9249
|
-
Defined in: [dist/lib/control.ts:
|
|
9293
|
+
Defined in: [dist/lib/control.ts:1101](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1101)
|
|
9250
9294
|
|
|
9251
9295
|
#### result
|
|
9252
9296
|
|
|
@@ -9267,7 +9311,7 @@ lib/control/interfaces/ICheckChangedEvent.md
|
|
|
9267
9311
|
|
|
9268
9312
|
# Interface: ICheckChangedEvent
|
|
9269
9313
|
|
|
9270
|
-
Defined in: [dist/lib/control.ts:
|
|
9314
|
+
Defined in: [dist/lib/control.ts:889](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L889)
|
|
9271
9315
|
|
|
9272
9316
|
## Properties
|
|
9273
9317
|
|
|
@@ -9275,12 +9319,16 @@ Defined in: [dist/lib/control.ts:888](https://github.com/maiyun/clickgo/blob/mas
|
|
|
9275
9319
|
|
|
9276
9320
|
> **detail**: `object`
|
|
9277
9321
|
|
|
9278
|
-
Defined in: [dist/lib/control.ts:
|
|
9322
|
+
Defined in: [dist/lib/control.ts:890](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L890)
|
|
9279
9323
|
|
|
9280
9324
|
#### indeterminate
|
|
9281
9325
|
|
|
9282
9326
|
> **indeterminate**: `boolean`
|
|
9283
9327
|
|
|
9328
|
+
#### name
|
|
9329
|
+
|
|
9330
|
+
> **name**: `string`
|
|
9331
|
+
|
|
9284
9332
|
#### value
|
|
9285
9333
|
|
|
9286
9334
|
> **value**: `boolean`
|
|
@@ -9316,6 +9364,10 @@ Defined in: [dist/lib/control.ts:882](https://github.com/maiyun/clickgo/blob/mas
|
|
|
9316
9364
|
|
|
9317
9365
|
> **indeterminate**: `boolean`
|
|
9318
9366
|
|
|
9367
|
+
#### name
|
|
9368
|
+
|
|
9369
|
+
> **name**: `string`
|
|
9370
|
+
|
|
9319
9371
|
#### value
|
|
9320
9372
|
|
|
9321
9373
|
> **value**: `boolean`
|
|
@@ -9359,7 +9411,7 @@ lib/control/interfaces/IChecklistAddEvent.md
|
|
|
9359
9411
|
|
|
9360
9412
|
# Interface: IChecklistAddEvent
|
|
9361
9413
|
|
|
9362
|
-
Defined in: [dist/lib/control.ts:
|
|
9414
|
+
Defined in: [dist/lib/control.ts:1203](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1203)
|
|
9363
9415
|
|
|
9364
9416
|
Custom Event
|
|
9365
9417
|
|
|
@@ -9373,7 +9425,7 @@ Custom Event
|
|
|
9373
9425
|
|
|
9374
9426
|
> **detail**: `object`
|
|
9375
9427
|
|
|
9376
|
-
Defined in: [dist/lib/control.ts:
|
|
9428
|
+
Defined in: [dist/lib/control.ts:1204](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1204)
|
|
9377
9429
|
|
|
9378
9430
|
#### index
|
|
9379
9431
|
|
|
@@ -9422,7 +9474,7 @@ lib/control/interfaces/IChecklistItemclickedEvent.md
|
|
|
9422
9474
|
|
|
9423
9475
|
# Interface: IChecklistItemclickedEvent
|
|
9424
9476
|
|
|
9425
|
-
Defined in: [dist/lib/control.ts:
|
|
9477
|
+
Defined in: [dist/lib/control.ts:1210](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1210)
|
|
9426
9478
|
|
|
9427
9479
|
## Properties
|
|
9428
9480
|
|
|
@@ -9430,7 +9482,7 @@ Defined in: [dist/lib/control.ts:1208](https://github.com/maiyun/clickgo/blob/ma
|
|
|
9430
9482
|
|
|
9431
9483
|
> **detail**: `object`
|
|
9432
9484
|
|
|
9433
|
-
Defined in: [dist/lib/control.ts:
|
|
9485
|
+
Defined in: [dist/lib/control.ts:1211](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1211)
|
|
9434
9486
|
|
|
9435
9487
|
#### arrow
|
|
9436
9488
|
|
|
@@ -9455,7 +9507,7 @@ lib/control/interfaces/IChecklistRemoveEvent.md
|
|
|
9455
9507
|
|
|
9456
9508
|
# Interface: IChecklistRemoveEvent
|
|
9457
9509
|
|
|
9458
|
-
Defined in: [dist/lib/control.ts:
|
|
9510
|
+
Defined in: [dist/lib/control.ts:1196](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1196)
|
|
9459
9511
|
|
|
9460
9512
|
Custom Event
|
|
9461
9513
|
|
|
@@ -9469,7 +9521,7 @@ Custom Event
|
|
|
9469
9521
|
|
|
9470
9522
|
> **detail**: `object`
|
|
9471
9523
|
|
|
9472
|
-
Defined in: [dist/lib/control.ts:
|
|
9524
|
+
Defined in: [dist/lib/control.ts:1197](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1197)
|
|
9473
9525
|
|
|
9474
9526
|
#### index
|
|
9475
9527
|
|
|
@@ -9518,7 +9570,7 @@ lib/control/interfaces/IColoristChangedEvent.md
|
|
|
9518
9570
|
|
|
9519
9571
|
# Interface: IColoristChangedEvent
|
|
9520
9572
|
|
|
9521
|
-
Defined in: [dist/lib/control.ts:
|
|
9573
|
+
Defined in: [dist/lib/control.ts:1323](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1323)
|
|
9522
9574
|
|
|
9523
9575
|
## Properties
|
|
9524
9576
|
|
|
@@ -9526,7 +9578,7 @@ Defined in: [dist/lib/control.ts:1321](https://github.com/maiyun/clickgo/blob/ma
|
|
|
9526
9578
|
|
|
9527
9579
|
> **detail**: `object`
|
|
9528
9580
|
|
|
9529
|
-
Defined in: [dist/lib/control.ts:
|
|
9581
|
+
Defined in: [dist/lib/control.ts:1324](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1324)
|
|
9530
9582
|
|
|
9531
9583
|
#### hsl?
|
|
9532
9584
|
|
|
@@ -9787,7 +9839,7 @@ lib/control/interfaces/IDateChangedEvent.md
|
|
|
9787
9839
|
|
|
9788
9840
|
# Interface: IDateChangedEvent
|
|
9789
9841
|
|
|
9790
|
-
Defined in: [dist/lib/control.ts:
|
|
9842
|
+
Defined in: [dist/lib/control.ts:942](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L942)
|
|
9791
9843
|
|
|
9792
9844
|
## Properties
|
|
9793
9845
|
|
|
@@ -9795,7 +9847,7 @@ Defined in: [dist/lib/control.ts:940](https://github.com/maiyun/clickgo/blob/mas
|
|
|
9795
9847
|
|
|
9796
9848
|
> **detail**: `object`
|
|
9797
9849
|
|
|
9798
|
-
Defined in: [dist/lib/control.ts:
|
|
9850
|
+
Defined in: [dist/lib/control.ts:943](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L943)
|
|
9799
9851
|
|
|
9800
9852
|
#### before?
|
|
9801
9853
|
|
|
@@ -9816,7 +9868,7 @@ lib/control/interfaces/IDatepanelChangedEvent.md
|
|
|
9816
9868
|
|
|
9817
9869
|
# Interface: IDatepanelChangedEvent
|
|
9818
9870
|
|
|
9819
|
-
Defined in: [dist/lib/control.ts:
|
|
9871
|
+
Defined in: [dist/lib/control.ts:970](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L970)
|
|
9820
9872
|
|
|
9821
9873
|
## Properties
|
|
9822
9874
|
|
|
@@ -9824,7 +9876,7 @@ Defined in: [dist/lib/control.ts:968](https://github.com/maiyun/clickgo/blob/mas
|
|
|
9824
9876
|
|
|
9825
9877
|
> **detail**: `object`
|
|
9826
9878
|
|
|
9827
|
-
Defined in: [dist/lib/control.ts:
|
|
9879
|
+
Defined in: [dist/lib/control.ts:971](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L971)
|
|
9828
9880
|
|
|
9829
9881
|
#### before?
|
|
9830
9882
|
|
|
@@ -9845,7 +9897,7 @@ lib/control/interfaces/IDatepanelRangeEvent.md
|
|
|
9845
9897
|
|
|
9846
9898
|
# Interface: IDatepanelRangeEvent
|
|
9847
9899
|
|
|
9848
|
-
Defined in: [dist/lib/control.ts:
|
|
9900
|
+
Defined in: [dist/lib/control.ts:963](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L963)
|
|
9849
9901
|
|
|
9850
9902
|
Custom Event
|
|
9851
9903
|
|
|
@@ -9859,7 +9911,7 @@ Custom Event
|
|
|
9859
9911
|
|
|
9860
9912
|
> **detail**: `object`
|
|
9861
9913
|
|
|
9862
|
-
Defined in: [dist/lib/control.ts:
|
|
9914
|
+
Defined in: [dist/lib/control.ts:964](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L964)
|
|
9863
9915
|
|
|
9864
9916
|
#### end
|
|
9865
9917
|
|
|
@@ -9908,7 +9960,7 @@ lib/control/interfaces/IDatepanelSelectedEvent.md
|
|
|
9908
9960
|
|
|
9909
9961
|
# Interface: IDatepanelSelectedEvent
|
|
9910
9962
|
|
|
9911
|
-
Defined in: [dist/lib/control.ts:
|
|
9963
|
+
Defined in: [dist/lib/control.ts:977](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L977)
|
|
9912
9964
|
|
|
9913
9965
|
## Properties
|
|
9914
9966
|
|
|
@@ -9916,7 +9968,7 @@ Defined in: [dist/lib/control.ts:975](https://github.com/maiyun/clickgo/blob/mas
|
|
|
9916
9968
|
|
|
9917
9969
|
> **detail**: `object`
|
|
9918
9970
|
|
|
9919
|
-
Defined in: [dist/lib/control.ts:
|
|
9971
|
+
Defined in: [dist/lib/control.ts:978](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L978)
|
|
9920
9972
|
|
|
9921
9973
|
#### date
|
|
9922
9974
|
|
|
@@ -9953,7 +10005,7 @@ lib/control/interfaces/IFormCloseEvent.md
|
|
|
9953
10005
|
|
|
9954
10006
|
# Interface: IFormCloseEvent
|
|
9955
10007
|
|
|
9956
|
-
Defined in: [dist/lib/control.ts:
|
|
10008
|
+
Defined in: [dist/lib/control.ts:990](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L990)
|
|
9957
10009
|
|
|
9958
10010
|
Custom Event
|
|
9959
10011
|
|
|
@@ -9967,7 +10019,7 @@ Custom Event
|
|
|
9967
10019
|
|
|
9968
10020
|
> **detail**: `object`
|
|
9969
10021
|
|
|
9970
|
-
Defined in: [dist/lib/control.ts:
|
|
10022
|
+
Defined in: [dist/lib/control.ts:991](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L991)
|
|
9971
10023
|
|
|
9972
10024
|
#### event
|
|
9973
10025
|
|
|
@@ -10012,7 +10064,7 @@ lib/control/interfaces/IFormMaxEvent.md
|
|
|
10012
10064
|
|
|
10013
10065
|
# Interface: IFormMaxEvent
|
|
10014
10066
|
|
|
10015
|
-
Defined in: [dist/lib/control.ts:
|
|
10067
|
+
Defined in: [dist/lib/control.ts:996](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L996)
|
|
10016
10068
|
|
|
10017
10069
|
## Properties
|
|
10018
10070
|
|
|
@@ -10020,7 +10072,7 @@ Defined in: [dist/lib/control.ts:994](https://github.com/maiyun/clickgo/blob/mas
|
|
|
10020
10072
|
|
|
10021
10073
|
> **detail**: `object`
|
|
10022
10074
|
|
|
10023
|
-
Defined in: [dist/lib/control.ts:
|
|
10075
|
+
Defined in: [dist/lib/control.ts:997](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L997)
|
|
10024
10076
|
|
|
10025
10077
|
#### action
|
|
10026
10078
|
|
|
@@ -10053,7 +10105,7 @@ lib/control/interfaces/IFormMinEvent.md
|
|
|
10053
10105
|
|
|
10054
10106
|
# Interface: IFormMinEvent
|
|
10055
10107
|
|
|
10056
|
-
Defined in: [dist/lib/control.ts:
|
|
10108
|
+
Defined in: [dist/lib/control.ts:1012](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1012)
|
|
10057
10109
|
|
|
10058
10110
|
## Properties
|
|
10059
10111
|
|
|
@@ -10061,7 +10113,7 @@ Defined in: [dist/lib/control.ts:1010](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10061
10113
|
|
|
10062
10114
|
> **detail**: `object`
|
|
10063
10115
|
|
|
10064
|
-
Defined in: [dist/lib/control.ts:
|
|
10116
|
+
Defined in: [dist/lib/control.ts:1013](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1013)
|
|
10065
10117
|
|
|
10066
10118
|
#### action
|
|
10067
10119
|
|
|
@@ -10094,7 +10146,7 @@ lib/control/interfaces/IGreatlistAddEvent.md
|
|
|
10094
10146
|
|
|
10095
10147
|
# Interface: IGreatlistAddEvent
|
|
10096
10148
|
|
|
10097
|
-
Defined in: [dist/lib/control.ts:
|
|
10149
|
+
Defined in: [dist/lib/control.ts:1049](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1049)
|
|
10098
10150
|
|
|
10099
10151
|
Custom Event
|
|
10100
10152
|
|
|
@@ -10108,7 +10160,7 @@ Custom Event
|
|
|
10108
10160
|
|
|
10109
10161
|
> **detail**: `object`
|
|
10110
10162
|
|
|
10111
|
-
Defined in: [dist/lib/control.ts:
|
|
10163
|
+
Defined in: [dist/lib/control.ts:1050](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1050)
|
|
10112
10164
|
|
|
10113
10165
|
#### index
|
|
10114
10166
|
|
|
@@ -10157,7 +10209,7 @@ lib/control/interfaces/IGreatlistChangedEvent.md
|
|
|
10157
10209
|
|
|
10158
10210
|
# Interface: IGreatlistChangedEvent
|
|
10159
10211
|
|
|
10160
|
-
Defined in: [dist/lib/control.ts:
|
|
10212
|
+
Defined in: [dist/lib/control.ts:1036](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1036)
|
|
10161
10213
|
|
|
10162
10214
|
## Properties
|
|
10163
10215
|
|
|
@@ -10165,7 +10217,7 @@ Defined in: [dist/lib/control.ts:1034](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10165
10217
|
|
|
10166
10218
|
> **detail**: `object`
|
|
10167
10219
|
|
|
10168
|
-
Defined in: [dist/lib/control.ts:
|
|
10220
|
+
Defined in: [dist/lib/control.ts:1037](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1037)
|
|
10169
10221
|
|
|
10170
10222
|
#### value
|
|
10171
10223
|
|
|
@@ -10182,7 +10234,7 @@ lib/control/interfaces/IGreatlistChangeEvent.md
|
|
|
10182
10234
|
|
|
10183
10235
|
# Interface: IGreatlistChangeEvent
|
|
10184
10236
|
|
|
10185
|
-
Defined in: [dist/lib/control.ts:
|
|
10237
|
+
Defined in: [dist/lib/control.ts:1030](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1030)
|
|
10186
10238
|
|
|
10187
10239
|
Custom Event
|
|
10188
10240
|
|
|
@@ -10196,7 +10248,7 @@ Custom Event
|
|
|
10196
10248
|
|
|
10197
10249
|
> **detail**: `object`
|
|
10198
10250
|
|
|
10199
|
-
Defined in: [dist/lib/control.ts:
|
|
10251
|
+
Defined in: [dist/lib/control.ts:1031](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1031)
|
|
10200
10252
|
|
|
10201
10253
|
#### value
|
|
10202
10254
|
|
|
@@ -10241,7 +10293,7 @@ lib/control/interfaces/IGreatlistItemclickedEvent.md
|
|
|
10241
10293
|
|
|
10242
10294
|
# Interface: IGreatlistItemclickedEvent
|
|
10243
10295
|
|
|
10244
|
-
Defined in: [dist/lib/control.ts:
|
|
10296
|
+
Defined in: [dist/lib/control.ts:1056](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1056)
|
|
10245
10297
|
|
|
10246
10298
|
## Properties
|
|
10247
10299
|
|
|
@@ -10249,7 +10301,7 @@ Defined in: [dist/lib/control.ts:1054](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10249
10301
|
|
|
10250
10302
|
> **detail**: `object`
|
|
10251
10303
|
|
|
10252
|
-
Defined in: [dist/lib/control.ts:
|
|
10304
|
+
Defined in: [dist/lib/control.ts:1057](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1057)
|
|
10253
10305
|
|
|
10254
10306
|
#### arrow
|
|
10255
10307
|
|
|
@@ -10274,7 +10326,7 @@ lib/control/interfaces/IGreatlistItemdblclickedEvent.md
|
|
|
10274
10326
|
|
|
10275
10327
|
# Interface: IGreatlistItemdblclickedEvent
|
|
10276
10328
|
|
|
10277
|
-
Defined in: [dist/lib/control.ts:
|
|
10329
|
+
Defined in: [dist/lib/control.ts:1064](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1064)
|
|
10278
10330
|
|
|
10279
10331
|
## Properties
|
|
10280
10332
|
|
|
@@ -10282,7 +10334,7 @@ Defined in: [dist/lib/control.ts:1062](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10282
10334
|
|
|
10283
10335
|
> **detail**: `object`
|
|
10284
10336
|
|
|
10285
|
-
Defined in: [dist/lib/control.ts:
|
|
10337
|
+
Defined in: [dist/lib/control.ts:1065](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1065)
|
|
10286
10338
|
|
|
10287
10339
|
#### arrow
|
|
10288
10340
|
|
|
@@ -10307,7 +10359,7 @@ lib/control/interfaces/IGreatlistRemoveEvent.md
|
|
|
10307
10359
|
|
|
10308
10360
|
# Interface: IGreatlistRemoveEvent
|
|
10309
10361
|
|
|
10310
|
-
Defined in: [dist/lib/control.ts:
|
|
10362
|
+
Defined in: [dist/lib/control.ts:1042](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1042)
|
|
10311
10363
|
|
|
10312
10364
|
Custom Event
|
|
10313
10365
|
|
|
@@ -10321,7 +10373,7 @@ Custom Event
|
|
|
10321
10373
|
|
|
10322
10374
|
> **detail**: `object`
|
|
10323
10375
|
|
|
10324
|
-
Defined in: [dist/lib/control.ts:
|
|
10376
|
+
Defined in: [dist/lib/control.ts:1043](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1043)
|
|
10325
10377
|
|
|
10326
10378
|
#### index
|
|
10327
10379
|
|
|
@@ -10370,7 +10422,7 @@ lib/control/interfaces/IGreatselectAddEvent.md
|
|
|
10370
10422
|
|
|
10371
10423
|
# Interface: IGreatselectAddEvent
|
|
10372
10424
|
|
|
10373
|
-
Defined in: [dist/lib/control.ts:
|
|
10425
|
+
Defined in: [dist/lib/control.ts:1092](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1092)
|
|
10374
10426
|
|
|
10375
10427
|
Custom Event
|
|
10376
10428
|
|
|
@@ -10384,7 +10436,7 @@ Custom Event
|
|
|
10384
10436
|
|
|
10385
10437
|
> **detail**: `object`
|
|
10386
10438
|
|
|
10387
|
-
Defined in: [dist/lib/control.ts:
|
|
10439
|
+
Defined in: [dist/lib/control.ts:1093](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1093)
|
|
10388
10440
|
|
|
10389
10441
|
#### value
|
|
10390
10442
|
|
|
@@ -10429,7 +10481,7 @@ lib/control/interfaces/IGreatselectChangedEvent.md
|
|
|
10429
10481
|
|
|
10430
10482
|
# Interface: IGreatselectChangedEvent
|
|
10431
10483
|
|
|
10432
|
-
Defined in: [dist/lib/control.ts:
|
|
10484
|
+
Defined in: [dist/lib/control.ts:1080](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1080)
|
|
10433
10485
|
|
|
10434
10486
|
## Properties
|
|
10435
10487
|
|
|
@@ -10437,7 +10489,7 @@ Defined in: [dist/lib/control.ts:1078](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10437
10489
|
|
|
10438
10490
|
> **detail**: `object`
|
|
10439
10491
|
|
|
10440
|
-
Defined in: [dist/lib/control.ts:
|
|
10492
|
+
Defined in: [dist/lib/control.ts:1081](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1081)
|
|
10441
10493
|
|
|
10442
10494
|
#### value
|
|
10443
10495
|
|
|
@@ -10454,7 +10506,7 @@ lib/control/interfaces/IGreatselectChangeEvent.md
|
|
|
10454
10506
|
|
|
10455
10507
|
# Interface: IGreatselectChangeEvent
|
|
10456
10508
|
|
|
10457
|
-
Defined in: [dist/lib/control.ts:
|
|
10509
|
+
Defined in: [dist/lib/control.ts:1074](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1074)
|
|
10458
10510
|
|
|
10459
10511
|
Custom Event
|
|
10460
10512
|
|
|
@@ -10468,7 +10520,7 @@ Custom Event
|
|
|
10468
10520
|
|
|
10469
10521
|
> **detail**: `object`
|
|
10470
10522
|
|
|
10471
|
-
Defined in: [dist/lib/control.ts:
|
|
10523
|
+
Defined in: [dist/lib/control.ts:1075](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1075)
|
|
10472
10524
|
|
|
10473
10525
|
#### value
|
|
10474
10526
|
|
|
@@ -10513,7 +10565,7 @@ lib/control/interfaces/IGreatselectRemoveEvent.md
|
|
|
10513
10565
|
|
|
10514
10566
|
# Interface: IGreatselectRemoveEvent
|
|
10515
10567
|
|
|
10516
|
-
Defined in: [dist/lib/control.ts:
|
|
10568
|
+
Defined in: [dist/lib/control.ts:1086](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1086)
|
|
10517
10569
|
|
|
10518
10570
|
Custom Event
|
|
10519
10571
|
|
|
@@ -10527,7 +10579,7 @@ Custom Event
|
|
|
10527
10579
|
|
|
10528
10580
|
> **detail**: `object`
|
|
10529
10581
|
|
|
10530
|
-
Defined in: [dist/lib/control.ts:
|
|
10582
|
+
Defined in: [dist/lib/control.ts:1087](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1087)
|
|
10531
10583
|
|
|
10532
10584
|
#### value
|
|
10533
10585
|
|
|
@@ -10572,7 +10624,7 @@ lib/control/interfaces/IIconviewDropEvent.md
|
|
|
10572
10624
|
|
|
10573
10625
|
# Interface: IIconviewDropEvent
|
|
10574
10626
|
|
|
10575
|
-
Defined in: [dist/lib/control.ts:
|
|
10627
|
+
Defined in: [dist/lib/control.ts:1149](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1149)
|
|
10576
10628
|
|
|
10577
10629
|
## Properties
|
|
10578
10630
|
|
|
@@ -10580,7 +10632,7 @@ Defined in: [dist/lib/control.ts:1147](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10580
10632
|
|
|
10581
10633
|
> **detail**: `object`
|
|
10582
10634
|
|
|
10583
|
-
Defined in: [dist/lib/control.ts:
|
|
10635
|
+
Defined in: [dist/lib/control.ts:1150](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1150)
|
|
10584
10636
|
|
|
10585
10637
|
#### from
|
|
10586
10638
|
|
|
@@ -10617,7 +10669,7 @@ lib/control/interfaces/IIconviewItemclickedEvent.md
|
|
|
10617
10669
|
|
|
10618
10670
|
# Interface: IIconviewItemclickedEvent
|
|
10619
10671
|
|
|
10620
|
-
Defined in: [dist/lib/control.ts:
|
|
10672
|
+
Defined in: [dist/lib/control.ts:1136](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1136)
|
|
10621
10673
|
|
|
10622
10674
|
## Properties
|
|
10623
10675
|
|
|
@@ -10625,7 +10677,7 @@ Defined in: [dist/lib/control.ts:1134](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10625
10677
|
|
|
10626
10678
|
> **detail**: `object`
|
|
10627
10679
|
|
|
10628
|
-
Defined in: [dist/lib/control.ts:
|
|
10680
|
+
Defined in: [dist/lib/control.ts:1137](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1137)
|
|
10629
10681
|
|
|
10630
10682
|
#### event
|
|
10631
10683
|
|
|
@@ -10646,7 +10698,7 @@ lib/control/interfaces/IIconviewOpenEvent.md
|
|
|
10646
10698
|
|
|
10647
10699
|
# Interface: IIconviewOpenEvent
|
|
10648
10700
|
|
|
10649
|
-
Defined in: [dist/lib/control.ts:
|
|
10701
|
+
Defined in: [dist/lib/control.ts:1143](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1143)
|
|
10650
10702
|
|
|
10651
10703
|
## Properties
|
|
10652
10704
|
|
|
@@ -10654,7 +10706,7 @@ Defined in: [dist/lib/control.ts:1141](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10654
10706
|
|
|
10655
10707
|
> **detail**: `object`
|
|
10656
10708
|
|
|
10657
|
-
Defined in: [dist/lib/control.ts:
|
|
10709
|
+
Defined in: [dist/lib/control.ts:1144](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1144)
|
|
10658
10710
|
|
|
10659
10711
|
#### value
|
|
10660
10712
|
|
|
@@ -10671,7 +10723,7 @@ lib/control/interfaces/IIconviewSelectEvent.md
|
|
|
10671
10723
|
|
|
10672
10724
|
# Interface: IIconviewSelectEvent
|
|
10673
10725
|
|
|
10674
|
-
Defined in: [dist/lib/control.ts:
|
|
10726
|
+
Defined in: [dist/lib/control.ts:1165](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1165)
|
|
10675
10727
|
|
|
10676
10728
|
## Properties
|
|
10677
10729
|
|
|
@@ -10679,7 +10731,7 @@ Defined in: [dist/lib/control.ts:1163](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10679
10731
|
|
|
10680
10732
|
> **detail**: `object`
|
|
10681
10733
|
|
|
10682
|
-
Defined in: [dist/lib/control.ts:
|
|
10734
|
+
Defined in: [dist/lib/control.ts:1166](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1166)
|
|
10683
10735
|
|
|
10684
10736
|
#### area
|
|
10685
10737
|
|
|
@@ -10732,7 +10784,7 @@ lib/control/interfaces/ILevelselectLevelEvent.md
|
|
|
10732
10784
|
|
|
10733
10785
|
# Interface: ILevelselectLevelEvent
|
|
10734
10786
|
|
|
10735
|
-
Defined in: [dist/lib/control.ts:
|
|
10787
|
+
Defined in: [dist/lib/control.ts:1183](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1183)
|
|
10736
10788
|
|
|
10737
10789
|
## Properties
|
|
10738
10790
|
|
|
@@ -10740,7 +10792,7 @@ Defined in: [dist/lib/control.ts:1181](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10740
10792
|
|
|
10741
10793
|
> **detail**: `object`
|
|
10742
10794
|
|
|
10743
|
-
Defined in: [dist/lib/control.ts:
|
|
10795
|
+
Defined in: [dist/lib/control.ts:1184](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1184)
|
|
10744
10796
|
|
|
10745
10797
|
#### labels
|
|
10746
10798
|
|
|
@@ -10765,7 +10817,7 @@ lib/control/interfaces/IListAddEvent.md
|
|
|
10765
10817
|
|
|
10766
10818
|
# Interface: IListAddEvent
|
|
10767
10819
|
|
|
10768
|
-
Defined in: [dist/lib/control.ts:
|
|
10820
|
+
Defined in: [dist/lib/control.ts:1239](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1239)
|
|
10769
10821
|
|
|
10770
10822
|
Custom Event
|
|
10771
10823
|
|
|
@@ -10779,7 +10831,7 @@ Custom Event
|
|
|
10779
10831
|
|
|
10780
10832
|
> **detail**: `object`
|
|
10781
10833
|
|
|
10782
|
-
Defined in: [dist/lib/control.ts:
|
|
10834
|
+
Defined in: [dist/lib/control.ts:1240](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1240)
|
|
10783
10835
|
|
|
10784
10836
|
#### index
|
|
10785
10837
|
|
|
@@ -10828,7 +10880,7 @@ lib/control/interfaces/IListChangedEvent.md
|
|
|
10828
10880
|
|
|
10829
10881
|
# Interface: IListChangedEvent
|
|
10830
10882
|
|
|
10831
|
-
Defined in: [dist/lib/control.ts:
|
|
10883
|
+
Defined in: [dist/lib/control.ts:1226](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1226)
|
|
10832
10884
|
|
|
10833
10885
|
## Properties
|
|
10834
10886
|
|
|
@@ -10836,7 +10888,7 @@ Defined in: [dist/lib/control.ts:1224](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10836
10888
|
|
|
10837
10889
|
> **detail**: `object`
|
|
10838
10890
|
|
|
10839
|
-
Defined in: [dist/lib/control.ts:
|
|
10891
|
+
Defined in: [dist/lib/control.ts:1227](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1227)
|
|
10840
10892
|
|
|
10841
10893
|
#### value
|
|
10842
10894
|
|
|
@@ -10853,7 +10905,7 @@ lib/control/interfaces/IListChangeEvent.md
|
|
|
10853
10905
|
|
|
10854
10906
|
# Interface: IListChangeEvent
|
|
10855
10907
|
|
|
10856
|
-
Defined in: [dist/lib/control.ts:
|
|
10908
|
+
Defined in: [dist/lib/control.ts:1220](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1220)
|
|
10857
10909
|
|
|
10858
10910
|
Custom Event
|
|
10859
10911
|
|
|
@@ -10867,7 +10919,7 @@ Custom Event
|
|
|
10867
10919
|
|
|
10868
10920
|
> **detail**: `object`
|
|
10869
10921
|
|
|
10870
|
-
Defined in: [dist/lib/control.ts:
|
|
10922
|
+
Defined in: [dist/lib/control.ts:1221](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1221)
|
|
10871
10923
|
|
|
10872
10924
|
#### value
|
|
10873
10925
|
|
|
@@ -10912,7 +10964,7 @@ lib/control/interfaces/IListItemclickedEvent.md
|
|
|
10912
10964
|
|
|
10913
10965
|
# Interface: IListItemclickedEvent
|
|
10914
10966
|
|
|
10915
|
-
Defined in: [dist/lib/control.ts:
|
|
10967
|
+
Defined in: [dist/lib/control.ts:1246](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1246)
|
|
10916
10968
|
|
|
10917
10969
|
## Properties
|
|
10918
10970
|
|
|
@@ -10920,7 +10972,7 @@ Defined in: [dist/lib/control.ts:1244](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10920
10972
|
|
|
10921
10973
|
> **detail**: `object`
|
|
10922
10974
|
|
|
10923
|
-
Defined in: [dist/lib/control.ts:
|
|
10975
|
+
Defined in: [dist/lib/control.ts:1247](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1247)
|
|
10924
10976
|
|
|
10925
10977
|
#### arrow
|
|
10926
10978
|
|
|
@@ -10945,7 +10997,7 @@ lib/control/interfaces/IListItemdblclickedEvent.md
|
|
|
10945
10997
|
|
|
10946
10998
|
# Interface: IListItemdblclickedEvent
|
|
10947
10999
|
|
|
10948
|
-
Defined in: [dist/lib/control.ts:
|
|
11000
|
+
Defined in: [dist/lib/control.ts:1254](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1254)
|
|
10949
11001
|
|
|
10950
11002
|
## Properties
|
|
10951
11003
|
|
|
@@ -10953,7 +11005,7 @@ Defined in: [dist/lib/control.ts:1252](https://github.com/maiyun/clickgo/blob/ma
|
|
|
10953
11005
|
|
|
10954
11006
|
> **detail**: `object`
|
|
10955
11007
|
|
|
10956
|
-
Defined in: [dist/lib/control.ts:
|
|
11008
|
+
Defined in: [dist/lib/control.ts:1255](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1255)
|
|
10957
11009
|
|
|
10958
11010
|
#### arrow
|
|
10959
11011
|
|
|
@@ -10978,7 +11030,7 @@ lib/control/interfaces/IListRemoveEvent.md
|
|
|
10978
11030
|
|
|
10979
11031
|
# Interface: IListRemoveEvent
|
|
10980
11032
|
|
|
10981
|
-
Defined in: [dist/lib/control.ts:
|
|
11033
|
+
Defined in: [dist/lib/control.ts:1232](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1232)
|
|
10982
11034
|
|
|
10983
11035
|
Custom Event
|
|
10984
11036
|
|
|
@@ -10992,7 +11044,7 @@ Custom Event
|
|
|
10992
11044
|
|
|
10993
11045
|
> **detail**: `object`
|
|
10994
11046
|
|
|
10995
|
-
Defined in: [dist/lib/control.ts:
|
|
11047
|
+
Defined in: [dist/lib/control.ts:1233](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1233)
|
|
10996
11048
|
|
|
10997
11049
|
#### index
|
|
10998
11050
|
|
|
@@ -11041,7 +11093,7 @@ lib/control/interfaces/IMenulistItemCheckEvent.md
|
|
|
11041
11093
|
|
|
11042
11094
|
# Interface: IMenulistItemCheckEvent
|
|
11043
11095
|
|
|
11044
|
-
Defined in: [dist/lib/control.ts:
|
|
11096
|
+
Defined in: [dist/lib/control.ts:931](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L931)
|
|
11045
11097
|
|
|
11046
11098
|
Custom Event
|
|
11047
11099
|
|
|
@@ -11055,7 +11107,7 @@ Custom Event
|
|
|
11055
11107
|
|
|
11056
11108
|
> **detail**: `object`
|
|
11057
11109
|
|
|
11058
|
-
Defined in: [dist/lib/control.ts:
|
|
11110
|
+
Defined in: [dist/lib/control.ts:932](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L932)
|
|
11059
11111
|
|
|
11060
11112
|
#### label?
|
|
11061
11113
|
|
|
@@ -11108,7 +11160,7 @@ lib/control/interfaces/INavItemSelectEvent.md
|
|
|
11108
11160
|
|
|
11109
11161
|
# Interface: INavItemSelectEvent
|
|
11110
11162
|
|
|
11111
|
-
Defined in: [dist/lib/control.ts:
|
|
11163
|
+
Defined in: [dist/lib/control.ts:1264](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1264)
|
|
11112
11164
|
|
|
11113
11165
|
Custom Event
|
|
11114
11166
|
|
|
@@ -11122,7 +11174,7 @@ Custom Event
|
|
|
11122
11174
|
|
|
11123
11175
|
> **detail**: `object`
|
|
11124
11176
|
|
|
11125
|
-
Defined in: [dist/lib/control.ts:
|
|
11177
|
+
Defined in: [dist/lib/control.ts:1265](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1265)
|
|
11126
11178
|
|
|
11127
11179
|
#### name
|
|
11128
11180
|
|
|
@@ -11171,7 +11223,7 @@ lib/control/interfaces/INumberBeforeChangeEvent.md
|
|
|
11171
11223
|
|
|
11172
11224
|
# Interface: INumberBeforeChangeEvent
|
|
11173
11225
|
|
|
11174
|
-
Defined in: [dist/lib/control.ts:
|
|
11226
|
+
Defined in: [dist/lib/control.ts:899](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L899)
|
|
11175
11227
|
|
|
11176
11228
|
Custom Event
|
|
11177
11229
|
|
|
@@ -11185,7 +11237,7 @@ Custom Event
|
|
|
11185
11237
|
|
|
11186
11238
|
> **detail**: `object`
|
|
11187
11239
|
|
|
11188
|
-
Defined in: [dist/lib/control.ts:
|
|
11240
|
+
Defined in: [dist/lib/control.ts:900](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L900)
|
|
11189
11241
|
|
|
11190
11242
|
#### change?
|
|
11191
11243
|
|
|
@@ -11234,7 +11286,7 @@ lib/control/interfaces/INumberMinMaxChangeEvent.md
|
|
|
11234
11286
|
|
|
11235
11287
|
# Interface: INumberMinMaxChangeEvent
|
|
11236
11288
|
|
|
11237
|
-
Defined in: [dist/lib/control.ts:
|
|
11289
|
+
Defined in: [dist/lib/control.ts:906](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L906)
|
|
11238
11290
|
|
|
11239
11291
|
Custom Event
|
|
11240
11292
|
|
|
@@ -11248,7 +11300,7 @@ Custom Event
|
|
|
11248
11300
|
|
|
11249
11301
|
> **detail**: `object`
|
|
11250
11302
|
|
|
11251
|
-
Defined in: [dist/lib/control.ts:
|
|
11303
|
+
Defined in: [dist/lib/control.ts:907](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L907)
|
|
11252
11304
|
|
|
11253
11305
|
#### before
|
|
11254
11306
|
|
|
@@ -11297,7 +11349,7 @@ lib/control/interfaces/IObjviewerLine.md
|
|
|
11297
11349
|
|
|
11298
11350
|
# Interface: IObjviewerLine
|
|
11299
11351
|
|
|
11300
|
-
Defined in: [dist/lib/control.ts:
|
|
11352
|
+
Defined in: [dist/lib/control.ts:1474](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1474)
|
|
11301
11353
|
|
|
11302
11354
|
## Properties
|
|
11303
11355
|
|
|
@@ -11305,7 +11357,7 @@ Defined in: [dist/lib/control.ts:1472](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11305
11357
|
|
|
11306
11358
|
> **end**: [`IObjviewerLineObj`](IObjviewerLineObj.md)
|
|
11307
11359
|
|
|
11308
|
-
Defined in: [dist/lib/control.ts:
|
|
11360
|
+
Defined in: [dist/lib/control.ts:1478](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1478)
|
|
11309
11361
|
|
|
11310
11362
|
***
|
|
11311
11363
|
|
|
@@ -11313,7 +11365,7 @@ Defined in: [dist/lib/control.ts:1476](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11313
11365
|
|
|
11314
11366
|
> `optional` **hue**: `string`
|
|
11315
11367
|
|
|
11316
|
-
Defined in: [dist/lib/control.ts:
|
|
11368
|
+
Defined in: [dist/lib/control.ts:1480](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1480)
|
|
11317
11369
|
|
|
11318
11370
|
默认 255
|
|
11319
11371
|
|
|
@@ -11323,7 +11375,7 @@ Defined in: [dist/lib/control.ts:1478](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11323
11375
|
|
|
11324
11376
|
> `optional` **name**: `string`
|
|
11325
11377
|
|
|
11326
|
-
Defined in: [dist/lib/control.ts:
|
|
11378
|
+
Defined in: [dist/lib/control.ts:1476](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1476)
|
|
11327
11379
|
|
|
11328
11380
|
-- 可自定义线段的名称
|
|
11329
11381
|
|
|
@@ -11333,7 +11385,7 @@ Defined in: [dist/lib/control.ts:1474](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11333
11385
|
|
|
11334
11386
|
> `optional` **path**: `string`
|
|
11335
11387
|
|
|
11336
|
-
Defined in: [dist/lib/control.ts:
|
|
11388
|
+
Defined in: [dist/lib/control.ts:1481](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1481)
|
|
11337
11389
|
|
|
11338
11390
|
***
|
|
11339
11391
|
|
|
@@ -11341,7 +11393,7 @@ Defined in: [dist/lib/control.ts:1479](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11341
11393
|
|
|
11342
11394
|
> **start**: [`IObjviewerLineObj`](IObjviewerLineObj.md)
|
|
11343
11395
|
|
|
11344
|
-
Defined in: [dist/lib/control.ts:
|
|
11396
|
+
Defined in: [dist/lib/control.ts:1477](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1477)
|
|
11345
11397
|
|
|
11346
11398
|
***
|
|
11347
11399
|
|
|
@@ -11349,7 +11401,7 @@ Defined in: [dist/lib/control.ts:1475](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11349
11401
|
|
|
11350
11402
|
> `optional` **stroke**: `"down"` \| `"solid"` \| `"dashed"` \| `"up"`
|
|
11351
11403
|
|
|
11352
|
-
Defined in: [dist/lib/control.ts:
|
|
11404
|
+
Defined in: [dist/lib/control.ts:1483](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1483)
|
|
11353
11405
|
|
|
11354
11406
|
默认 solid
|
|
11355
11407
|
|
|
@@ -11364,7 +11416,7 @@ lib/control/interfaces/IObjviewerLineObj.md
|
|
|
11364
11416
|
|
|
11365
11417
|
# Interface: IObjviewerLineObj
|
|
11366
11418
|
|
|
11367
|
-
Defined in: [dist/lib/control.ts:
|
|
11419
|
+
Defined in: [dist/lib/control.ts:1486](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1486)
|
|
11368
11420
|
|
|
11369
11421
|
## Properties
|
|
11370
11422
|
|
|
@@ -11372,7 +11424,7 @@ Defined in: [dist/lib/control.ts:1484](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11372
11424
|
|
|
11373
11425
|
> **obj**: `HTMLElement` \| [`AbstractControl`](../classes/AbstractControl.md)
|
|
11374
11426
|
|
|
11375
|
-
Defined in: [dist/lib/control.ts:
|
|
11427
|
+
Defined in: [dist/lib/control.ts:1487](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1487)
|
|
11376
11428
|
|
|
11377
11429
|
***
|
|
11378
11430
|
|
|
@@ -11380,7 +11432,7 @@ Defined in: [dist/lib/control.ts:1485](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11380
11432
|
|
|
11381
11433
|
> **pos**: `"b"` \| `"tr"` \| `"lt"` \| `"t"` \| `"r"` \| `"rb"` \| `"bl"` \| `"l"`
|
|
11382
11434
|
|
|
11383
|
-
Defined in: [dist/lib/control.ts:
|
|
11435
|
+
Defined in: [dist/lib/control.ts:1488](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1488)
|
|
11384
11436
|
|
|
11385
11437
|
lib/control/interfaces/IPaletteChangedEvent.md
|
|
11386
11438
|
---
|
|
@@ -11393,7 +11445,7 @@ lib/control/interfaces/IPaletteChangedEvent.md
|
|
|
11393
11445
|
|
|
11394
11446
|
# Interface: IPaletteChangedEvent
|
|
11395
11447
|
|
|
11396
|
-
Defined in: [dist/lib/control.ts:
|
|
11448
|
+
Defined in: [dist/lib/control.ts:1301](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1301)
|
|
11397
11449
|
|
|
11398
11450
|
## Properties
|
|
11399
11451
|
|
|
@@ -11401,7 +11453,7 @@ Defined in: [dist/lib/control.ts:1299](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11401
11453
|
|
|
11402
11454
|
> **detail**: `object`
|
|
11403
11455
|
|
|
11404
|
-
Defined in: [dist/lib/control.ts:
|
|
11456
|
+
Defined in: [dist/lib/control.ts:1302](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1302)
|
|
11405
11457
|
|
|
11406
11458
|
#### hsl?
|
|
11407
11459
|
|
|
@@ -11462,7 +11514,7 @@ lib/control/interfaces/IPanelGoEvent.md
|
|
|
11462
11514
|
|
|
11463
11515
|
# Interface: IPanelGoEvent
|
|
11464
11516
|
|
|
11465
|
-
Defined in: [dist/lib/control.ts:
|
|
11517
|
+
Defined in: [dist/lib/control.ts:1273](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1273)
|
|
11466
11518
|
|
|
11467
11519
|
Custom Event
|
|
11468
11520
|
|
|
@@ -11476,7 +11528,7 @@ Custom Event
|
|
|
11476
11528
|
|
|
11477
11529
|
> **detail**: `object`
|
|
11478
11530
|
|
|
11479
|
-
Defined in: [dist/lib/control.ts:
|
|
11531
|
+
Defined in: [dist/lib/control.ts:1274](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1274)
|
|
11480
11532
|
|
|
11481
11533
|
#### from
|
|
11482
11534
|
|
|
@@ -11525,7 +11577,7 @@ lib/control/interfaces/IPanelWentEvent.md
|
|
|
11525
11577
|
|
|
11526
11578
|
# Interface: IPanelWentEvent
|
|
11527
11579
|
|
|
11528
|
-
Defined in: [dist/lib/control.ts:
|
|
11580
|
+
Defined in: [dist/lib/control.ts:1280](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1280)
|
|
11529
11581
|
|
|
11530
11582
|
## Properties
|
|
11531
11583
|
|
|
@@ -11533,7 +11585,7 @@ Defined in: [dist/lib/control.ts:1278](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11533
11585
|
|
|
11534
11586
|
> **detail**: `object`
|
|
11535
11587
|
|
|
11536
|
-
Defined in: [dist/lib/control.ts:
|
|
11588
|
+
Defined in: [dist/lib/control.ts:1281](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1281)
|
|
11537
11589
|
|
|
11538
11590
|
#### from
|
|
11539
11591
|
|
|
@@ -11558,7 +11610,7 @@ lib/control/interfaces/IPdfViewEvent.md
|
|
|
11558
11610
|
|
|
11559
11611
|
# Interface: IPdfViewEvent
|
|
11560
11612
|
|
|
11561
|
-
Defined in: [dist/lib/control.ts:
|
|
11613
|
+
Defined in: [dist/lib/control.ts:1109](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1109)
|
|
11562
11614
|
|
|
11563
11615
|
## Properties
|
|
11564
11616
|
|
|
@@ -11566,7 +11618,7 @@ Defined in: [dist/lib/control.ts:1107](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11566
11618
|
|
|
11567
11619
|
> **detail**: `object`
|
|
11568
11620
|
|
|
11569
|
-
Defined in: [dist/lib/control.ts:
|
|
11621
|
+
Defined in: [dist/lib/control.ts:1110](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1110)
|
|
11570
11622
|
|
|
11571
11623
|
#### height
|
|
11572
11624
|
|
|
@@ -11615,7 +11667,7 @@ lib/control/interfaces/IRadioChangeEvent.md
|
|
|
11615
11667
|
|
|
11616
11668
|
# Interface: IRadioChangeEvent
|
|
11617
11669
|
|
|
11618
|
-
Defined in: [dist/lib/control.ts:
|
|
11670
|
+
Defined in: [dist/lib/control.ts:1290](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1290)
|
|
11619
11671
|
|
|
11620
11672
|
Custom Event
|
|
11621
11673
|
|
|
@@ -11629,7 +11681,7 @@ Custom Event
|
|
|
11629
11681
|
|
|
11630
11682
|
> **detail**: `object`
|
|
11631
11683
|
|
|
11632
|
-
Defined in: [dist/lib/control.ts:
|
|
11684
|
+
Defined in: [dist/lib/control.ts:1291](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1291)
|
|
11633
11685
|
|
|
11634
11686
|
#### selected
|
|
11635
11687
|
|
|
@@ -11682,7 +11734,7 @@ lib/control/interfaces/ISelectAddedEvent.md
|
|
|
11682
11734
|
|
|
11683
11735
|
# Interface: ISelectAddedEvent
|
|
11684
11736
|
|
|
11685
|
-
Defined in: [dist/lib/control.ts:
|
|
11737
|
+
Defined in: [dist/lib/control.ts:1360](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1360)
|
|
11686
11738
|
|
|
11687
11739
|
## Properties
|
|
11688
11740
|
|
|
@@ -11690,7 +11742,7 @@ Defined in: [dist/lib/control.ts:1358](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11690
11742
|
|
|
11691
11743
|
> **detail**: `object`
|
|
11692
11744
|
|
|
11693
|
-
Defined in: [dist/lib/control.ts:
|
|
11745
|
+
Defined in: [dist/lib/control.ts:1361](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1361)
|
|
11694
11746
|
|
|
11695
11747
|
#### index
|
|
11696
11748
|
|
|
@@ -11711,7 +11763,7 @@ lib/control/interfaces/ISelectAddEvent.md
|
|
|
11711
11763
|
|
|
11712
11764
|
# Interface: ISelectAddEvent
|
|
11713
11765
|
|
|
11714
|
-
Defined in: [dist/lib/control.ts:
|
|
11766
|
+
Defined in: [dist/lib/control.ts:1345](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1345)
|
|
11715
11767
|
|
|
11716
11768
|
Custom Event
|
|
11717
11769
|
|
|
@@ -11725,7 +11777,7 @@ Custom Event
|
|
|
11725
11777
|
|
|
11726
11778
|
> **detail**: `object`
|
|
11727
11779
|
|
|
11728
|
-
Defined in: [dist/lib/control.ts:
|
|
11780
|
+
Defined in: [dist/lib/control.ts:1346](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1346)
|
|
11729
11781
|
|
|
11730
11782
|
#### index
|
|
11731
11783
|
|
|
@@ -11774,7 +11826,7 @@ lib/control/interfaces/ISelectChangedEvent.md
|
|
|
11774
11826
|
|
|
11775
11827
|
# Interface: ISelectChangedEvent
|
|
11776
11828
|
|
|
11777
|
-
Defined in: [dist/lib/control.ts:
|
|
11829
|
+
Defined in: [dist/lib/control.ts:1381](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1381)
|
|
11778
11830
|
|
|
11779
11831
|
## Properties
|
|
11780
11832
|
|
|
@@ -11782,7 +11834,7 @@ Defined in: [dist/lib/control.ts:1379](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11782
11834
|
|
|
11783
11835
|
> **detail**: `object`
|
|
11784
11836
|
|
|
11785
|
-
Defined in: [dist/lib/control.ts:
|
|
11837
|
+
Defined in: [dist/lib/control.ts:1382](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1382)
|
|
11786
11838
|
|
|
11787
11839
|
#### before
|
|
11788
11840
|
|
|
@@ -11803,7 +11855,7 @@ lib/control/interfaces/ISelectChangeEvent.md
|
|
|
11803
11855
|
|
|
11804
11856
|
# Interface: ISelectChangeEvent
|
|
11805
11857
|
|
|
11806
|
-
Defined in: [dist/lib/control.ts:
|
|
11858
|
+
Defined in: [dist/lib/control.ts:1375](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1375)
|
|
11807
11859
|
|
|
11808
11860
|
Custom Event
|
|
11809
11861
|
|
|
@@ -11817,7 +11869,7 @@ Custom Event
|
|
|
11817
11869
|
|
|
11818
11870
|
> **detail**: `object`
|
|
11819
11871
|
|
|
11820
|
-
Defined in: [dist/lib/control.ts:
|
|
11872
|
+
Defined in: [dist/lib/control.ts:1376](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1376)
|
|
11821
11873
|
|
|
11822
11874
|
#### value
|
|
11823
11875
|
|
|
@@ -11862,7 +11914,7 @@ lib/control/interfaces/ISelectItemclickedEvent.md
|
|
|
11862
11914
|
|
|
11863
11915
|
# Interface: ISelectItemclickedEvent
|
|
11864
11916
|
|
|
11865
|
-
Defined in: [dist/lib/control.ts:
|
|
11917
|
+
Defined in: [dist/lib/control.ts:1402](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1402)
|
|
11866
11918
|
|
|
11867
11919
|
## Properties
|
|
11868
11920
|
|
|
@@ -11870,7 +11922,7 @@ Defined in: [dist/lib/control.ts:1400](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11870
11922
|
|
|
11871
11923
|
> **detail**: `object`
|
|
11872
11924
|
|
|
11873
|
-
Defined in: [dist/lib/control.ts:
|
|
11925
|
+
Defined in: [dist/lib/control.ts:1403](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1403)
|
|
11874
11926
|
|
|
11875
11927
|
#### arrow
|
|
11876
11928
|
|
|
@@ -11895,7 +11947,7 @@ lib/control/interfaces/ISelectRemoteEvent.md
|
|
|
11895
11947
|
|
|
11896
11948
|
# Interface: ISelectRemoteEvent
|
|
11897
11949
|
|
|
11898
|
-
Defined in: [dist/lib/control.ts:
|
|
11950
|
+
Defined in: [dist/lib/control.ts:1395](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1395)
|
|
11899
11951
|
|
|
11900
11952
|
## Properties
|
|
11901
11953
|
|
|
@@ -11903,7 +11955,7 @@ Defined in: [dist/lib/control.ts:1393](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11903
11955
|
|
|
11904
11956
|
> **detail**: `object`
|
|
11905
11957
|
|
|
11906
|
-
Defined in: [dist/lib/control.ts:
|
|
11958
|
+
Defined in: [dist/lib/control.ts:1396](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1396)
|
|
11907
11959
|
|
|
11908
11960
|
#### callback()
|
|
11909
11961
|
|
|
@@ -11934,7 +11986,7 @@ lib/control/interfaces/ISelectRemovedEvent.md
|
|
|
11934
11986
|
|
|
11935
11987
|
# Interface: ISelectRemovedEvent
|
|
11936
11988
|
|
|
11937
|
-
Defined in: [dist/lib/control.ts:
|
|
11989
|
+
Defined in: [dist/lib/control.ts:1367](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1367)
|
|
11938
11990
|
|
|
11939
11991
|
## Properties
|
|
11940
11992
|
|
|
@@ -11942,7 +11994,7 @@ Defined in: [dist/lib/control.ts:1365](https://github.com/maiyun/clickgo/blob/ma
|
|
|
11942
11994
|
|
|
11943
11995
|
> **detail**: `object`
|
|
11944
11996
|
|
|
11945
|
-
Defined in: [dist/lib/control.ts:
|
|
11997
|
+
Defined in: [dist/lib/control.ts:1368](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1368)
|
|
11946
11998
|
|
|
11947
11999
|
#### index
|
|
11948
12000
|
|
|
@@ -11967,7 +12019,7 @@ lib/control/interfaces/ISelectRemoveEvent.md
|
|
|
11967
12019
|
|
|
11968
12020
|
# Interface: ISelectRemoveEvent
|
|
11969
12021
|
|
|
11970
|
-
Defined in: [dist/lib/control.ts:
|
|
12022
|
+
Defined in: [dist/lib/control.ts:1352](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1352)
|
|
11971
12023
|
|
|
11972
12024
|
Custom Event
|
|
11973
12025
|
|
|
@@ -11981,7 +12033,7 @@ Custom Event
|
|
|
11981
12033
|
|
|
11982
12034
|
> **detail**: `object`
|
|
11983
12035
|
|
|
11984
|
-
Defined in: [dist/lib/control.ts:
|
|
12036
|
+
Defined in: [dist/lib/control.ts:1353](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1353)
|
|
11985
12037
|
|
|
11986
12038
|
#### index
|
|
11987
12039
|
|
|
@@ -12034,7 +12086,7 @@ lib/control/interfaces/ISelectTagclickEvent.md
|
|
|
12034
12086
|
|
|
12035
12087
|
# Interface: ISelectTagclickEvent
|
|
12036
12088
|
|
|
12037
|
-
Defined in: [dist/lib/control.ts:
|
|
12089
|
+
Defined in: [dist/lib/control.ts:1388](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1388)
|
|
12038
12090
|
|
|
12039
12091
|
## Properties
|
|
12040
12092
|
|
|
@@ -12042,7 +12094,7 @@ Defined in: [dist/lib/control.ts:1386](https://github.com/maiyun/clickgo/blob/ma
|
|
|
12042
12094
|
|
|
12043
12095
|
> **detail**: `object`
|
|
12044
12096
|
|
|
12045
|
-
Defined in: [dist/lib/control.ts:
|
|
12097
|
+
Defined in: [dist/lib/control.ts:1389](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1389)
|
|
12046
12098
|
|
|
12047
12099
|
#### index
|
|
12048
12100
|
|
|
@@ -12063,7 +12115,7 @@ lib/control/interfaces/ISwitchChangeEvent.md
|
|
|
12063
12115
|
|
|
12064
12116
|
# Interface: ISwitchChangeEvent
|
|
12065
12117
|
|
|
12066
|
-
Defined in: [dist/lib/control.ts:
|
|
12118
|
+
Defined in: [dist/lib/control.ts:1412](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1412)
|
|
12067
12119
|
|
|
12068
12120
|
Custom Event
|
|
12069
12121
|
|
|
@@ -12077,7 +12129,7 @@ Custom Event
|
|
|
12077
12129
|
|
|
12078
12130
|
> **detail**: `object`
|
|
12079
12131
|
|
|
12080
|
-
Defined in: [dist/lib/control.ts:
|
|
12132
|
+
Defined in: [dist/lib/control.ts:1413](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1413)
|
|
12081
12133
|
|
|
12082
12134
|
#### value
|
|
12083
12135
|
|
|
@@ -12122,7 +12174,7 @@ lib/control/interfaces/ITabChangedEvent.md
|
|
|
12122
12174
|
|
|
12123
12175
|
# Interface: ITabChangedEvent
|
|
12124
12176
|
|
|
12125
|
-
Defined in: [dist/lib/control.ts:
|
|
12177
|
+
Defined in: [dist/lib/control.ts:1426](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1426)
|
|
12126
12178
|
|
|
12127
12179
|
## Properties
|
|
12128
12180
|
|
|
@@ -12130,7 +12182,7 @@ Defined in: [dist/lib/control.ts:1424](https://github.com/maiyun/clickgo/blob/ma
|
|
|
12130
12182
|
|
|
12131
12183
|
> **detail**: `object`
|
|
12132
12184
|
|
|
12133
|
-
Defined in: [dist/lib/control.ts:
|
|
12185
|
+
Defined in: [dist/lib/control.ts:1427](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1427)
|
|
12134
12186
|
|
|
12135
12187
|
#### value
|
|
12136
12188
|
|
|
@@ -12147,7 +12199,7 @@ lib/control/interfaces/ITabChangeEvent.md
|
|
|
12147
12199
|
|
|
12148
12200
|
# Interface: ITabChangeEvent
|
|
12149
12201
|
|
|
12150
|
-
Defined in: [dist/lib/control.ts:
|
|
12202
|
+
Defined in: [dist/lib/control.ts:1420](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1420)
|
|
12151
12203
|
|
|
12152
12204
|
Custom Event
|
|
12153
12205
|
|
|
@@ -12161,7 +12213,7 @@ Custom Event
|
|
|
12161
12213
|
|
|
12162
12214
|
> **detail**: `object`
|
|
12163
12215
|
|
|
12164
|
-
Defined in: [dist/lib/control.ts:
|
|
12216
|
+
Defined in: [dist/lib/control.ts:1421](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1421)
|
|
12165
12217
|
|
|
12166
12218
|
#### value
|
|
12167
12219
|
|
|
@@ -12206,7 +12258,7 @@ lib/control/interfaces/ITabCloseEvent.md
|
|
|
12206
12258
|
|
|
12207
12259
|
# Interface: ITabCloseEvent
|
|
12208
12260
|
|
|
12209
|
-
Defined in: [dist/lib/control.ts:
|
|
12261
|
+
Defined in: [dist/lib/control.ts:1432](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1432)
|
|
12210
12262
|
|
|
12211
12263
|
Custom Event
|
|
12212
12264
|
|
|
@@ -12220,7 +12272,7 @@ Custom Event
|
|
|
12220
12272
|
|
|
12221
12273
|
> **detail**: `object`
|
|
12222
12274
|
|
|
12223
|
-
Defined in: [dist/lib/control.ts:
|
|
12275
|
+
Defined in: [dist/lib/control.ts:1433](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1433)
|
|
12224
12276
|
|
|
12225
12277
|
#### index
|
|
12226
12278
|
|
|
@@ -12269,7 +12321,7 @@ lib/control/interfaces/ITableSortEvent.md
|
|
|
12269
12321
|
|
|
12270
12322
|
# Interface: ITableSortEvent
|
|
12271
12323
|
|
|
12272
|
-
Defined in: [dist/lib/control.ts:
|
|
12324
|
+
Defined in: [dist/lib/control.ts:1441](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1441)
|
|
12273
12325
|
|
|
12274
12326
|
Custom Event
|
|
12275
12327
|
|
|
@@ -12283,7 +12335,7 @@ Custom Event
|
|
|
12283
12335
|
|
|
12284
12336
|
> **detail**: `object`
|
|
12285
12337
|
|
|
12286
|
-
Defined in: [dist/lib/control.ts:
|
|
12338
|
+
Defined in: [dist/lib/control.ts:1442](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1442)
|
|
12287
12339
|
|
|
12288
12340
|
#### index
|
|
12289
12341
|
|
|
@@ -12336,7 +12388,7 @@ lib/control/interfaces/ITagDropEvent.md
|
|
|
12336
12388
|
|
|
12337
12389
|
# Interface: ITagDropEvent
|
|
12338
12390
|
|
|
12339
|
-
Defined in: [dist/lib/control.ts:
|
|
12391
|
+
Defined in: [dist/lib/control.ts:1465](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1465)
|
|
12340
12392
|
|
|
12341
12393
|
## Properties
|
|
12342
12394
|
|
|
@@ -12344,7 +12396,7 @@ Defined in: [dist/lib/control.ts:1463](https://github.com/maiyun/clickgo/blob/ma
|
|
|
12344
12396
|
|
|
12345
12397
|
> **detail**: `object`
|
|
12346
12398
|
|
|
12347
|
-
Defined in: [dist/lib/control.ts:
|
|
12399
|
+
Defined in: [dist/lib/control.ts:1466](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1466)
|
|
12348
12400
|
|
|
12349
12401
|
#### after
|
|
12350
12402
|
|
|
@@ -12365,7 +12417,7 @@ lib/control/interfaces/ITextBeforeChangeEvent.md
|
|
|
12365
12417
|
|
|
12366
12418
|
# Interface: ITextBeforeChangeEvent
|
|
12367
12419
|
|
|
12368
|
-
Defined in: [dist/lib/control.ts:
|
|
12420
|
+
Defined in: [dist/lib/control.ts:915](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L915)
|
|
12369
12421
|
|
|
12370
12422
|
Custom Event
|
|
12371
12423
|
|
|
@@ -12379,7 +12431,7 @@ Custom Event
|
|
|
12379
12431
|
|
|
12380
12432
|
> **detail**: `object`
|
|
12381
12433
|
|
|
12382
|
-
Defined in: [dist/lib/control.ts:
|
|
12434
|
+
Defined in: [dist/lib/control.ts:916](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L916)
|
|
12383
12435
|
|
|
12384
12436
|
#### change?
|
|
12385
12437
|
|
|
@@ -12428,7 +12480,7 @@ lib/control/interfaces/ITextMinMaxChangeEvent.md
|
|
|
12428
12480
|
|
|
12429
12481
|
# Interface: ITextMinMaxChangeEvent
|
|
12430
12482
|
|
|
12431
|
-
Defined in: [dist/lib/control.ts:
|
|
12483
|
+
Defined in: [dist/lib/control.ts:922](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L922)
|
|
12432
12484
|
|
|
12433
12485
|
Custom Event
|
|
12434
12486
|
|
|
@@ -12442,7 +12494,7 @@ Custom Event
|
|
|
12442
12494
|
|
|
12443
12495
|
> **detail**: `object`
|
|
12444
12496
|
|
|
12445
|
-
Defined in: [dist/lib/control.ts:
|
|
12497
|
+
Defined in: [dist/lib/control.ts:923](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L923)
|
|
12446
12498
|
|
|
12447
12499
|
#### before
|
|
12448
12500
|
|
|
@@ -12491,7 +12543,7 @@ lib/control/interfaces/ITuieditorImguploadEvent.md
|
|
|
12491
12543
|
|
|
12492
12544
|
# Interface: ITuieditorImguploadEvent
|
|
12493
12545
|
|
|
12494
|
-
Defined in: [dist/lib/control.ts:
|
|
12546
|
+
Defined in: [dist/lib/control.ts:1451](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1451)
|
|
12495
12547
|
|
|
12496
12548
|
## Properties
|
|
12497
12549
|
|
|
@@ -12499,7 +12551,7 @@ Defined in: [dist/lib/control.ts:1449](https://github.com/maiyun/clickgo/blob/ma
|
|
|
12499
12551
|
|
|
12500
12552
|
> **detail**: `object`
|
|
12501
12553
|
|
|
12502
|
-
Defined in: [dist/lib/control.ts:
|
|
12554
|
+
Defined in: [dist/lib/control.ts:1452](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1452)
|
|
12503
12555
|
|
|
12504
12556
|
#### callback()
|
|
12505
12557
|
|
|
@@ -12548,7 +12600,7 @@ lib/control/interfaces/IUploaderRemoveEvent.md
|
|
|
12548
12600
|
|
|
12549
12601
|
# Interface: IUploaderRemoveEvent
|
|
12550
12602
|
|
|
12551
|
-
Defined in: [dist/lib/control.ts:
|
|
12603
|
+
Defined in: [dist/lib/control.ts:1128](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1128)
|
|
12552
12604
|
|
|
12553
12605
|
Custom Event
|
|
12554
12606
|
|
|
@@ -12562,7 +12614,7 @@ Custom Event
|
|
|
12562
12614
|
|
|
12563
12615
|
> **detail**: `object`
|
|
12564
12616
|
|
|
12565
|
-
Defined in: [dist/lib/control.ts:
|
|
12617
|
+
Defined in: [dist/lib/control.ts:1129](https://github.com/maiyun/clickgo/blob/master/dist/lib/control.ts#L1129)
|
|
12566
12618
|
|
|
12567
12619
|
#### index
|
|
12568
12620
|
|