@nasl/types 0.1.8-beta → 0.1.8-beta.2
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/nasl.ui.ast.d.ts +120 -8
- package/nasl.ui.ast.schema.json +114 -6
- package/nasl.ui.options.d.ts +4 -4
- package/package.json +1 -1
package/nasl.ui.ast.d.ts
CHANGED
|
@@ -13,6 +13,10 @@ export type BaseSetter = InputSetter | SwitchSetter | EnumSelectSetter | Capsule
|
|
|
13
13
|
*/
|
|
14
14
|
export interface InputSetter {
|
|
15
15
|
concept: 'InputSetter';
|
|
16
|
+
/**
|
|
17
|
+
* 节点变更时间
|
|
18
|
+
*/
|
|
19
|
+
changedTime?: number;
|
|
16
20
|
/**
|
|
17
21
|
* 占位文本
|
|
18
22
|
*/
|
|
@@ -24,7 +28,10 @@ export interface InputSetter {
|
|
|
24
28
|
*/
|
|
25
29
|
export interface SwitchSetter {
|
|
26
30
|
concept: 'SwitchSetter';
|
|
27
|
-
|
|
31
|
+
/**
|
|
32
|
+
* 节点变更时间
|
|
33
|
+
*/
|
|
34
|
+
changedTime?: number;
|
|
28
35
|
}
|
|
29
36
|
|
|
30
37
|
/**
|
|
@@ -32,6 +39,10 @@ export interface SwitchSetter {
|
|
|
32
39
|
*/
|
|
33
40
|
export interface EnumSelectSetter {
|
|
34
41
|
concept: 'EnumSelectSetter';
|
|
42
|
+
/**
|
|
43
|
+
* 节点变更时间
|
|
44
|
+
*/
|
|
45
|
+
changedTime?: number;
|
|
35
46
|
/**
|
|
36
47
|
* 枚举选项列表
|
|
37
48
|
*/
|
|
@@ -39,7 +50,7 @@ export interface EnumSelectSetter {
|
|
|
39
50
|
/**
|
|
40
51
|
* 是否多选
|
|
41
52
|
*/
|
|
42
|
-
multiple
|
|
53
|
+
multiple?: boolean;
|
|
43
54
|
}
|
|
44
55
|
|
|
45
56
|
/**
|
|
@@ -47,6 +58,10 @@ export interface EnumSelectSetter {
|
|
|
47
58
|
*/
|
|
48
59
|
export interface SetterOption {
|
|
49
60
|
concept: 'SetterOption';
|
|
61
|
+
/**
|
|
62
|
+
* 节点变更时间
|
|
63
|
+
*/
|
|
64
|
+
changedTime?: number;
|
|
50
65
|
/**
|
|
51
66
|
* 选项值
|
|
52
67
|
*/
|
|
@@ -82,6 +97,10 @@ export interface SetterOption {
|
|
|
82
97
|
*/
|
|
83
98
|
export interface CapsulesSetter {
|
|
84
99
|
concept: 'CapsulesSetter';
|
|
100
|
+
/**
|
|
101
|
+
* 节点变更时间
|
|
102
|
+
*/
|
|
103
|
+
changedTime?: number;
|
|
85
104
|
/**
|
|
86
105
|
* 枚举选项列表
|
|
87
106
|
*/
|
|
@@ -89,7 +108,7 @@ export interface CapsulesSetter {
|
|
|
89
108
|
/**
|
|
90
109
|
* 是否多选
|
|
91
110
|
*/
|
|
92
|
-
multiple
|
|
111
|
+
multiple?: boolean;
|
|
93
112
|
}
|
|
94
113
|
|
|
95
114
|
/**
|
|
@@ -97,6 +116,10 @@ export interface CapsulesSetter {
|
|
|
97
116
|
*/
|
|
98
117
|
export interface NumberInputSetter {
|
|
99
118
|
concept: 'NumberInputSetter';
|
|
119
|
+
/**
|
|
120
|
+
* 节点变更时间
|
|
121
|
+
*/
|
|
122
|
+
changedTime?: number;
|
|
100
123
|
/**
|
|
101
124
|
* 按钮位置
|
|
102
125
|
*/
|
|
@@ -124,6 +147,10 @@ export interface NumberInputSetter {
|
|
|
124
147
|
*/
|
|
125
148
|
export interface IconSetter {
|
|
126
149
|
concept: 'IconSetter';
|
|
150
|
+
/**
|
|
151
|
+
* 节点变更时间
|
|
152
|
+
*/
|
|
153
|
+
changedTime?: number;
|
|
127
154
|
/**
|
|
128
155
|
* 图标标题
|
|
129
156
|
*/
|
|
@@ -143,7 +170,10 @@ export interface IconSetter {
|
|
|
143
170
|
*/
|
|
144
171
|
export interface ImageSetter {
|
|
145
172
|
concept: 'ImageSetter';
|
|
146
|
-
|
|
173
|
+
/**
|
|
174
|
+
* 节点变更时间
|
|
175
|
+
*/
|
|
176
|
+
changedTime?: number;
|
|
147
177
|
}
|
|
148
178
|
|
|
149
179
|
/**
|
|
@@ -151,7 +181,10 @@ export interface ImageSetter {
|
|
|
151
181
|
*/
|
|
152
182
|
export interface PropertySelectSetter {
|
|
153
183
|
concept: 'PropertySelectSetter';
|
|
154
|
-
|
|
184
|
+
/**
|
|
185
|
+
* 节点变更时间
|
|
186
|
+
*/
|
|
187
|
+
changedTime?: number;
|
|
155
188
|
}
|
|
156
189
|
|
|
157
190
|
/**
|
|
@@ -159,7 +192,10 @@ export interface PropertySelectSetter {
|
|
|
159
192
|
*/
|
|
160
193
|
export interface PropertyTransformSetter {
|
|
161
194
|
concept: 'PropertyTransformSetter';
|
|
162
|
-
|
|
195
|
+
/**
|
|
196
|
+
* 节点变更时间
|
|
197
|
+
*/
|
|
198
|
+
changedTime?: number;
|
|
163
199
|
}
|
|
164
200
|
|
|
165
201
|
/**
|
|
@@ -167,6 +203,10 @@ export interface PropertyTransformSetter {
|
|
|
167
203
|
*/
|
|
168
204
|
export interface ViewComponentDeclaration {
|
|
169
205
|
concept: 'ViewComponentDeclaration';
|
|
206
|
+
/**
|
|
207
|
+
* 节点变更时间
|
|
208
|
+
*/
|
|
209
|
+
changedTime?: number;
|
|
170
210
|
/**
|
|
171
211
|
* 页面组件名称
|
|
172
212
|
*/
|
|
@@ -238,6 +278,10 @@ export interface ViewComponentDeclaration {
|
|
|
238
278
|
*/
|
|
239
279
|
export interface PropDeclaration {
|
|
240
280
|
concept: 'PropDeclaration';
|
|
281
|
+
/**
|
|
282
|
+
* 节点变更时间
|
|
283
|
+
*/
|
|
284
|
+
changedTime?: number;
|
|
241
285
|
/**
|
|
242
286
|
* 组件属性名称
|
|
243
287
|
*/
|
|
@@ -277,11 +321,11 @@ export interface PropDeclaration {
|
|
|
277
321
|
/**
|
|
278
322
|
* 不允许该组件在逻辑中设置
|
|
279
323
|
*/
|
|
280
|
-
unsettable
|
|
324
|
+
unsettable?: boolean;
|
|
281
325
|
/**
|
|
282
326
|
* 该属性是否为数据源
|
|
283
327
|
*/
|
|
284
|
-
isDataSource
|
|
328
|
+
isDataSource?: boolean;
|
|
285
329
|
/**
|
|
286
330
|
* 工具提示链接
|
|
287
331
|
*/
|
|
@@ -345,6 +389,10 @@ export interface PropDeclaration {
|
|
|
345
389
|
*/
|
|
346
390
|
export interface DefaultValue {
|
|
347
391
|
concept: 'DefaultValue';
|
|
392
|
+
/**
|
|
393
|
+
* 节点变更时间
|
|
394
|
+
*/
|
|
395
|
+
changedTime?: number;
|
|
348
396
|
/**
|
|
349
397
|
* 根表达式
|
|
350
398
|
*/
|
|
@@ -365,6 +413,10 @@ export type LogicItem = NullLiteral | BooleanLiteral | StringLiteral | NumericLi
|
|
|
365
413
|
*/
|
|
366
414
|
export interface TypeAnnotation {
|
|
367
415
|
concept: 'TypeAnnotation';
|
|
416
|
+
/**
|
|
417
|
+
* 节点变更时间
|
|
418
|
+
*/
|
|
419
|
+
changedTime?: number;
|
|
368
420
|
/**
|
|
369
421
|
* 类型种类
|
|
370
422
|
*/
|
|
@@ -404,6 +456,10 @@ export interface TypeAnnotation {
|
|
|
404
456
|
*/
|
|
405
457
|
export interface StructureProperty {
|
|
406
458
|
concept: 'StructureProperty';
|
|
459
|
+
/**
|
|
460
|
+
* 节点变更时间
|
|
461
|
+
*/
|
|
462
|
+
changedTime?: number;
|
|
407
463
|
/**
|
|
408
464
|
* 数据结构属性名称
|
|
409
465
|
*/
|
|
@@ -439,6 +495,10 @@ export interface StructureProperty {
|
|
|
439
495
|
*/
|
|
440
496
|
export interface EventDeclaration {
|
|
441
497
|
concept: 'EventDeclaration';
|
|
498
|
+
/**
|
|
499
|
+
* 节点变更时间
|
|
500
|
+
*/
|
|
501
|
+
changedTime?: number;
|
|
442
502
|
/**
|
|
443
503
|
* 组件事件名称
|
|
444
504
|
*/
|
|
@@ -464,6 +524,10 @@ export interface EventDeclaration {
|
|
|
464
524
|
*/
|
|
465
525
|
export interface SlotDeclaration {
|
|
466
526
|
concept: 'SlotDeclaration';
|
|
527
|
+
/**
|
|
528
|
+
* 节点变更时间
|
|
529
|
+
*/
|
|
530
|
+
changedTime?: number;
|
|
467
531
|
/**
|
|
468
532
|
* 插槽名称
|
|
469
533
|
*/
|
|
@@ -501,6 +565,10 @@ export interface SlotDeclaration {
|
|
|
501
565
|
*/
|
|
502
566
|
export interface Param {
|
|
503
567
|
concept: 'Param';
|
|
568
|
+
/**
|
|
569
|
+
* 节点变更时间
|
|
570
|
+
*/
|
|
571
|
+
changedTime?: number;
|
|
504
572
|
/**
|
|
505
573
|
* 输入参数名称
|
|
506
574
|
*/
|
|
@@ -528,6 +596,10 @@ export interface Param {
|
|
|
528
596
|
*/
|
|
529
597
|
export interface ViewBlock {
|
|
530
598
|
concept: 'ViewBlock';
|
|
599
|
+
/**
|
|
600
|
+
* 节点变更时间
|
|
601
|
+
*/
|
|
602
|
+
changedTime?: number;
|
|
531
603
|
/**
|
|
532
604
|
* 标题
|
|
533
605
|
*/
|
|
@@ -547,6 +619,10 @@ export interface ViewBlock {
|
|
|
547
619
|
*/
|
|
548
620
|
export interface ViewBlockWithImage {
|
|
549
621
|
concept: 'ViewBlockWithImage';
|
|
622
|
+
/**
|
|
623
|
+
* 节点变更时间
|
|
624
|
+
*/
|
|
625
|
+
changedTime?: number;
|
|
550
626
|
/**
|
|
551
627
|
* 标题
|
|
552
628
|
*/
|
|
@@ -574,6 +650,10 @@ export interface ViewBlockWithImage {
|
|
|
574
650
|
*/
|
|
575
651
|
export interface LogicDeclaration {
|
|
576
652
|
concept: 'LogicDeclaration';
|
|
653
|
+
/**
|
|
654
|
+
* 节点变更时间
|
|
655
|
+
*/
|
|
656
|
+
changedTime?: number;
|
|
577
657
|
/**
|
|
578
658
|
* 逻辑名称
|
|
579
659
|
*/
|
|
@@ -605,6 +685,10 @@ export interface LogicDeclaration {
|
|
|
605
685
|
*/
|
|
606
686
|
export interface TypeParam {
|
|
607
687
|
concept: 'TypeParam';
|
|
688
|
+
/**
|
|
689
|
+
* 节点变更时间
|
|
690
|
+
*/
|
|
691
|
+
changedTime?: number;
|
|
608
692
|
/**
|
|
609
693
|
* 类型名称
|
|
610
694
|
*/
|
|
@@ -620,6 +704,10 @@ export interface TypeParam {
|
|
|
620
704
|
*/
|
|
621
705
|
export interface Return {
|
|
622
706
|
concept: 'Return';
|
|
707
|
+
/**
|
|
708
|
+
* 节点变更时间
|
|
709
|
+
*/
|
|
710
|
+
changedTime?: number;
|
|
623
711
|
/**
|
|
624
712
|
* 输出参数名称
|
|
625
713
|
*/
|
|
@@ -643,6 +731,10 @@ export interface Return {
|
|
|
643
731
|
*/
|
|
644
732
|
export interface ThemeVariable {
|
|
645
733
|
concept: 'ThemeVariable';
|
|
734
|
+
/**
|
|
735
|
+
* 节点变更时间
|
|
736
|
+
*/
|
|
737
|
+
changedTime?: number;
|
|
646
738
|
/**
|
|
647
739
|
* 主题变量名称
|
|
648
740
|
*/
|
|
@@ -654,6 +746,10 @@ export interface ThemeVariable {
|
|
|
654
746
|
*/
|
|
655
747
|
export interface NullLiteral {
|
|
656
748
|
concept: 'NullLiteral';
|
|
749
|
+
/**
|
|
750
|
+
* 节点变更时间
|
|
751
|
+
*/
|
|
752
|
+
changedTime?: number;
|
|
657
753
|
/**
|
|
658
754
|
* 逻辑项标题
|
|
659
755
|
*/
|
|
@@ -685,6 +781,10 @@ export interface NullLiteral {
|
|
|
685
781
|
*/
|
|
686
782
|
export interface BooleanLiteral {
|
|
687
783
|
concept: 'BooleanLiteral';
|
|
784
|
+
/**
|
|
785
|
+
* 节点变更时间
|
|
786
|
+
*/
|
|
787
|
+
changedTime?: number;
|
|
688
788
|
/**
|
|
689
789
|
* 逻辑项标题
|
|
690
790
|
*/
|
|
@@ -720,6 +820,10 @@ export interface BooleanLiteral {
|
|
|
720
820
|
*/
|
|
721
821
|
export interface StringLiteral {
|
|
722
822
|
concept: 'StringLiteral';
|
|
823
|
+
/**
|
|
824
|
+
* 节点变更时间
|
|
825
|
+
*/
|
|
826
|
+
changedTime?: number;
|
|
723
827
|
/**
|
|
724
828
|
* 逻辑项标题
|
|
725
829
|
*/
|
|
@@ -759,6 +863,10 @@ export interface StringLiteral {
|
|
|
759
863
|
*/
|
|
760
864
|
export interface NumericLiteral {
|
|
761
865
|
concept: 'NumericLiteral';
|
|
866
|
+
/**
|
|
867
|
+
* 节点变更时间
|
|
868
|
+
*/
|
|
869
|
+
changedTime?: number;
|
|
762
870
|
/**
|
|
763
871
|
* 逻辑项标题
|
|
764
872
|
*/
|
|
@@ -794,6 +902,10 @@ export interface NumericLiteral {
|
|
|
794
902
|
*/
|
|
795
903
|
export interface NewList {
|
|
796
904
|
concept: 'NewList';
|
|
905
|
+
/**
|
|
906
|
+
* 节点变更时间
|
|
907
|
+
*/
|
|
908
|
+
changedTime?: number;
|
|
797
909
|
/**
|
|
798
910
|
* 逻辑项标题
|
|
799
911
|
*/
|
package/nasl.ui.ast.schema.json
CHANGED
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"type": "string",
|
|
16
16
|
"const": "ViewComponentDeclaration"
|
|
17
17
|
},
|
|
18
|
+
"changedTime": {
|
|
19
|
+
"type": "number",
|
|
20
|
+
"description": "节点变更时间"
|
|
21
|
+
},
|
|
18
22
|
"name": {
|
|
19
23
|
"type": "string",
|
|
20
24
|
"description": "页面组件名称"
|
|
@@ -142,6 +146,10 @@
|
|
|
142
146
|
"type": "string",
|
|
143
147
|
"const": "PropDeclaration"
|
|
144
148
|
},
|
|
149
|
+
"changedTime": {
|
|
150
|
+
"type": "number",
|
|
151
|
+
"description": "节点变更时间"
|
|
152
|
+
},
|
|
145
153
|
"name": {
|
|
146
154
|
"type": "string",
|
|
147
155
|
"description": "组件属性名称"
|
|
@@ -255,8 +263,6 @@
|
|
|
255
263
|
"group",
|
|
256
264
|
"tsType",
|
|
257
265
|
"sync",
|
|
258
|
-
"unsettable",
|
|
259
|
-
"isDataSource",
|
|
260
266
|
"bindHide",
|
|
261
267
|
"bindOpen",
|
|
262
268
|
"tabKind",
|
|
@@ -305,6 +311,10 @@
|
|
|
305
311
|
"type": "string",
|
|
306
312
|
"const": "InputSetter"
|
|
307
313
|
},
|
|
314
|
+
"changedTime": {
|
|
315
|
+
"type": "number",
|
|
316
|
+
"description": "节点变更时间"
|
|
317
|
+
},
|
|
308
318
|
"placeholder": {
|
|
309
319
|
"type": "string",
|
|
310
320
|
"description": "占位文本"
|
|
@@ -322,6 +332,10 @@
|
|
|
322
332
|
"concept": {
|
|
323
333
|
"type": "string",
|
|
324
334
|
"const": "SwitchSetter"
|
|
335
|
+
},
|
|
336
|
+
"changedTime": {
|
|
337
|
+
"type": "number",
|
|
338
|
+
"description": "节点变更时间"
|
|
325
339
|
}
|
|
326
340
|
},
|
|
327
341
|
"required": [
|
|
@@ -337,6 +351,10 @@
|
|
|
337
351
|
"type": "string",
|
|
338
352
|
"const": "EnumSelectSetter"
|
|
339
353
|
},
|
|
354
|
+
"changedTime": {
|
|
355
|
+
"type": "number",
|
|
356
|
+
"description": "节点变更时间"
|
|
357
|
+
},
|
|
340
358
|
"options": {
|
|
341
359
|
"type": "array",
|
|
342
360
|
"items": {
|
|
@@ -351,8 +369,7 @@
|
|
|
351
369
|
},
|
|
352
370
|
"required": [
|
|
353
371
|
"concept",
|
|
354
|
-
"options"
|
|
355
|
-
"multiple"
|
|
372
|
+
"options"
|
|
356
373
|
],
|
|
357
374
|
"additionalProperties": false,
|
|
358
375
|
"description": "枚举选择设置器"
|
|
@@ -364,6 +381,10 @@
|
|
|
364
381
|
"type": "string",
|
|
365
382
|
"const": "SetterOption"
|
|
366
383
|
},
|
|
384
|
+
"changedTime": {
|
|
385
|
+
"type": "number",
|
|
386
|
+
"description": "节点变更时间"
|
|
387
|
+
},
|
|
367
388
|
"value": {
|
|
368
389
|
"type": "string",
|
|
369
390
|
"description": "选项值"
|
|
@@ -404,6 +425,10 @@
|
|
|
404
425
|
"type": "string",
|
|
405
426
|
"const": "CapsulesSetter"
|
|
406
427
|
},
|
|
428
|
+
"changedTime": {
|
|
429
|
+
"type": "number",
|
|
430
|
+
"description": "节点变更时间"
|
|
431
|
+
},
|
|
407
432
|
"options": {
|
|
408
433
|
"type": "array",
|
|
409
434
|
"items": {
|
|
@@ -418,8 +443,7 @@
|
|
|
418
443
|
},
|
|
419
444
|
"required": [
|
|
420
445
|
"concept",
|
|
421
|
-
"options"
|
|
422
|
-
"multiple"
|
|
446
|
+
"options"
|
|
423
447
|
],
|
|
424
448
|
"additionalProperties": false,
|
|
425
449
|
"description": "胶囊设置器"
|
|
@@ -431,6 +455,10 @@
|
|
|
431
455
|
"type": "string",
|
|
432
456
|
"const": "NumberInputSetter"
|
|
433
457
|
},
|
|
458
|
+
"changedTime": {
|
|
459
|
+
"type": "number",
|
|
460
|
+
"description": "节点变更时间"
|
|
461
|
+
},
|
|
434
462
|
"placement": {
|
|
435
463
|
"type": "string",
|
|
436
464
|
"description": "按钮位置"
|
|
@@ -465,6 +493,10 @@
|
|
|
465
493
|
"type": "string",
|
|
466
494
|
"const": "IconSetter"
|
|
467
495
|
},
|
|
496
|
+
"changedTime": {
|
|
497
|
+
"type": "number",
|
|
498
|
+
"description": "节点变更时间"
|
|
499
|
+
},
|
|
468
500
|
"title": {
|
|
469
501
|
"type": "string",
|
|
470
502
|
"description": "图标标题"
|
|
@@ -490,6 +522,10 @@
|
|
|
490
522
|
"concept": {
|
|
491
523
|
"type": "string",
|
|
492
524
|
"const": "ImageSetter"
|
|
525
|
+
},
|
|
526
|
+
"changedTime": {
|
|
527
|
+
"type": "number",
|
|
528
|
+
"description": "节点变更时间"
|
|
493
529
|
}
|
|
494
530
|
},
|
|
495
531
|
"required": [
|
|
@@ -504,6 +540,10 @@
|
|
|
504
540
|
"concept": {
|
|
505
541
|
"type": "string",
|
|
506
542
|
"const": "PropertySelectSetter"
|
|
543
|
+
},
|
|
544
|
+
"changedTime": {
|
|
545
|
+
"type": "number",
|
|
546
|
+
"description": "节点变更时间"
|
|
507
547
|
}
|
|
508
548
|
},
|
|
509
549
|
"required": [
|
|
@@ -518,6 +558,10 @@
|
|
|
518
558
|
"concept": {
|
|
519
559
|
"type": "string",
|
|
520
560
|
"const": "PropertyTransformSetter"
|
|
561
|
+
},
|
|
562
|
+
"changedTime": {
|
|
563
|
+
"type": "number",
|
|
564
|
+
"description": "节点变更时间"
|
|
521
565
|
}
|
|
522
566
|
},
|
|
523
567
|
"required": [
|
|
@@ -533,6 +577,10 @@
|
|
|
533
577
|
"type": "string",
|
|
534
578
|
"const": "DefaultValue"
|
|
535
579
|
},
|
|
580
|
+
"changedTime": {
|
|
581
|
+
"type": "number",
|
|
582
|
+
"description": "节点变更时间"
|
|
583
|
+
},
|
|
536
584
|
"expression": {
|
|
537
585
|
"$ref": "#/definitions/LogicItem",
|
|
538
586
|
"description": "根表达式"
|
|
@@ -579,6 +627,10 @@
|
|
|
579
627
|
"type": "string",
|
|
580
628
|
"const": "NullLiteral"
|
|
581
629
|
},
|
|
630
|
+
"changedTime": {
|
|
631
|
+
"type": "number",
|
|
632
|
+
"description": "节点变更时间"
|
|
633
|
+
},
|
|
582
634
|
"label": {
|
|
583
635
|
"type": "string",
|
|
584
636
|
"description": "逻辑项标题"
|
|
@@ -617,6 +669,10 @@
|
|
|
617
669
|
"type": "string",
|
|
618
670
|
"const": "TypeAnnotation"
|
|
619
671
|
},
|
|
672
|
+
"changedTime": {
|
|
673
|
+
"type": "number",
|
|
674
|
+
"description": "节点变更时间"
|
|
675
|
+
},
|
|
620
676
|
"typeKind": {
|
|
621
677
|
"type": "string",
|
|
622
678
|
"enum": [
|
|
@@ -685,6 +741,10 @@
|
|
|
685
741
|
"type": "string",
|
|
686
742
|
"const": "StructureProperty"
|
|
687
743
|
},
|
|
744
|
+
"changedTime": {
|
|
745
|
+
"type": "number",
|
|
746
|
+
"description": "节点变更时间"
|
|
747
|
+
},
|
|
688
748
|
"name": {
|
|
689
749
|
"type": "string",
|
|
690
750
|
"description": "数据结构属性名称"
|
|
@@ -724,6 +784,10 @@
|
|
|
724
784
|
"type": "string",
|
|
725
785
|
"const": "BooleanLiteral"
|
|
726
786
|
},
|
|
787
|
+
"changedTime": {
|
|
788
|
+
"type": "number",
|
|
789
|
+
"description": "节点变更时间"
|
|
790
|
+
},
|
|
727
791
|
"label": {
|
|
728
792
|
"type": "string",
|
|
729
793
|
"description": "逻辑项标题"
|
|
@@ -767,6 +831,10 @@
|
|
|
767
831
|
"type": "string",
|
|
768
832
|
"const": "StringLiteral"
|
|
769
833
|
},
|
|
834
|
+
"changedTime": {
|
|
835
|
+
"type": "number",
|
|
836
|
+
"description": "节点变更时间"
|
|
837
|
+
},
|
|
770
838
|
"label": {
|
|
771
839
|
"type": "string",
|
|
772
840
|
"description": "逻辑项标题"
|
|
@@ -814,6 +882,10 @@
|
|
|
814
882
|
"type": "string",
|
|
815
883
|
"const": "NumericLiteral"
|
|
816
884
|
},
|
|
885
|
+
"changedTime": {
|
|
886
|
+
"type": "number",
|
|
887
|
+
"description": "节点变更时间"
|
|
888
|
+
},
|
|
817
889
|
"label": {
|
|
818
890
|
"type": "string",
|
|
819
891
|
"description": "逻辑项标题"
|
|
@@ -857,6 +929,10 @@
|
|
|
857
929
|
"type": "string",
|
|
858
930
|
"const": "NewList"
|
|
859
931
|
},
|
|
932
|
+
"changedTime": {
|
|
933
|
+
"type": "number",
|
|
934
|
+
"description": "节点变更时间"
|
|
935
|
+
},
|
|
860
936
|
"label": {
|
|
861
937
|
"type": "string",
|
|
862
938
|
"description": "逻辑项标题"
|
|
@@ -903,6 +979,10 @@
|
|
|
903
979
|
"type": "string",
|
|
904
980
|
"const": "EventDeclaration"
|
|
905
981
|
},
|
|
982
|
+
"changedTime": {
|
|
983
|
+
"type": "number",
|
|
984
|
+
"description": "节点变更时间"
|
|
985
|
+
},
|
|
906
986
|
"name": {
|
|
907
987
|
"type": "string",
|
|
908
988
|
"description": "组件事件名称"
|
|
@@ -936,6 +1016,10 @@
|
|
|
936
1016
|
"type": "string",
|
|
937
1017
|
"const": "SlotDeclaration"
|
|
938
1018
|
},
|
|
1019
|
+
"changedTime": {
|
|
1020
|
+
"type": "number",
|
|
1021
|
+
"description": "节点变更时间"
|
|
1022
|
+
},
|
|
939
1023
|
"name": {
|
|
940
1024
|
"type": "string",
|
|
941
1025
|
"description": "插槽名称"
|
|
@@ -989,6 +1073,10 @@
|
|
|
989
1073
|
"type": "string",
|
|
990
1074
|
"const": "Param"
|
|
991
1075
|
},
|
|
1076
|
+
"changedTime": {
|
|
1077
|
+
"type": "number",
|
|
1078
|
+
"description": "节点变更时间"
|
|
1079
|
+
},
|
|
992
1080
|
"name": {
|
|
993
1081
|
"type": "string",
|
|
994
1082
|
"description": "输入参数名称"
|
|
@@ -1024,6 +1112,10 @@
|
|
|
1024
1112
|
"type": "string",
|
|
1025
1113
|
"const": "ViewBlockWithImage"
|
|
1026
1114
|
},
|
|
1115
|
+
"changedTime": {
|
|
1116
|
+
"type": "number",
|
|
1117
|
+
"description": "节点变更时间"
|
|
1118
|
+
},
|
|
1027
1119
|
"title": {
|
|
1028
1120
|
"type": "string",
|
|
1029
1121
|
"description": "标题"
|
|
@@ -1062,6 +1154,10 @@
|
|
|
1062
1154
|
"type": "string",
|
|
1063
1155
|
"const": "LogicDeclaration"
|
|
1064
1156
|
},
|
|
1157
|
+
"changedTime": {
|
|
1158
|
+
"type": "number",
|
|
1159
|
+
"description": "节点变更时间"
|
|
1160
|
+
},
|
|
1065
1161
|
"name": {
|
|
1066
1162
|
"type": "string",
|
|
1067
1163
|
"description": "逻辑名称"
|
|
@@ -1114,6 +1210,10 @@
|
|
|
1114
1210
|
"type": "string",
|
|
1115
1211
|
"const": "TypeParam"
|
|
1116
1212
|
},
|
|
1213
|
+
"changedTime": {
|
|
1214
|
+
"type": "number",
|
|
1215
|
+
"description": "节点变更时间"
|
|
1216
|
+
},
|
|
1117
1217
|
"name": {
|
|
1118
1218
|
"type": "string",
|
|
1119
1219
|
"description": "类型名称"
|
|
@@ -1137,6 +1237,10 @@
|
|
|
1137
1237
|
"type": "string",
|
|
1138
1238
|
"const": "Return"
|
|
1139
1239
|
},
|
|
1240
|
+
"changedTime": {
|
|
1241
|
+
"type": "number",
|
|
1242
|
+
"description": "节点变更时间"
|
|
1243
|
+
},
|
|
1140
1244
|
"name": {
|
|
1141
1245
|
"type": "string",
|
|
1142
1246
|
"description": "输出参数名称"
|
|
@@ -1168,6 +1272,10 @@
|
|
|
1168
1272
|
"type": "string",
|
|
1169
1273
|
"const": "ThemeVariable"
|
|
1170
1274
|
},
|
|
1275
|
+
"changedTime": {
|
|
1276
|
+
"type": "number",
|
|
1277
|
+
"description": "节点变更时间"
|
|
1278
|
+
},
|
|
1171
1279
|
"name": {
|
|
1172
1280
|
"type": "string",
|
|
1173
1281
|
"description": "主题变量名称"
|
package/nasl.ui.options.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ declare namespace nasl.ui {
|
|
|
37
37
|
/**
|
|
38
38
|
* 是否多选
|
|
39
39
|
*/
|
|
40
|
-
multiple
|
|
40
|
+
multiple?: boolean;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
/**
|
|
@@ -52,7 +52,7 @@ declare namespace nasl.ui {
|
|
|
52
52
|
/**
|
|
53
53
|
* 是否多选
|
|
54
54
|
*/
|
|
55
|
-
multiple
|
|
55
|
+
multiple?: boolean;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
/**
|
|
@@ -182,11 +182,11 @@ declare namespace nasl.ui {
|
|
|
182
182
|
/**
|
|
183
183
|
* 不允许该组件在逻辑中设置
|
|
184
184
|
*/
|
|
185
|
-
unsettable
|
|
185
|
+
unsettable?: boolean;
|
|
186
186
|
/**
|
|
187
187
|
* 该属性是否为数据源
|
|
188
188
|
*/
|
|
189
|
-
isDataSource
|
|
189
|
+
isDataSource?: boolean;
|
|
190
190
|
/**
|
|
191
191
|
* 工具提示链接
|
|
192
192
|
*/
|