@nxtedition/types 23.0.37 → 23.0.39
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/common/settings.d.ts +13 -8
- package/dist/common/settings.js +916 -796
- package/dist/domains/monitor.d.ts +1 -1
- package/dist/domains/settings.js +882 -767
- package/dist/nxtpression.d.ts +10 -5
- package/dist/schema.json +519 -12
- package/package.json +1 -1
package/dist/nxtpression.d.ts
CHANGED
|
@@ -807,7 +807,7 @@ declare interface ModuleTabsSettingsValue {
|
|
|
807
807
|
}
|
|
808
808
|
|
|
809
809
|
declare interface MonitorDomainRecords {
|
|
810
|
-
":monitor.stats?":
|
|
810
|
+
":monitor.stats?": MonitorStatsRecord;
|
|
811
811
|
}
|
|
812
812
|
|
|
813
813
|
declare interface MonitorRecords {
|
|
@@ -1991,11 +1991,16 @@ declare interface Settings {
|
|
|
1991
1991
|
subtitles: {
|
|
1992
1992
|
spacing: number;
|
|
1993
1993
|
maxCharactersPerLine: number;
|
|
1994
|
-
|
|
1994
|
+
suggestions?: Array<{
|
|
1995
1995
|
/** aspect ratio in the form of "width:height" */
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1996
|
+
ifAspectRatio?: string;
|
|
1997
|
+
ifLang?: string;
|
|
1998
|
+
thenStyle?: string;
|
|
1999
|
+
thenMaxCharactersPerLine?: number;
|
|
2000
|
+
}>;
|
|
2001
|
+
colors?: Array<{
|
|
2002
|
+
label?: string | null;
|
|
2003
|
+
color?: string | null;
|
|
1999
2004
|
}>;
|
|
2000
2005
|
};
|
|
2001
2006
|
subtitleTemplateId?: string;
|
package/dist/schema.json
CHANGED
|
@@ -1278,7 +1278,7 @@
|
|
|
1278
1278
|
"$ref": "#/definitions/Record<string,unknown>"
|
|
1279
1279
|
},
|
|
1280
1280
|
":monitor.stats?": {
|
|
1281
|
-
"$ref": "#/definitions/
|
|
1281
|
+
"$ref": "#/definitions/MonitorStatsRecord"
|
|
1282
1282
|
},
|
|
1283
1283
|
":panel": {
|
|
1284
1284
|
"$ref": "#/definitions/PanelDomainPanelRecord"
|
|
@@ -3775,6 +3775,499 @@
|
|
|
3775
3775
|
],
|
|
3776
3776
|
"type": "object"
|
|
3777
3777
|
},
|
|
3778
|
+
"MonitorStatsBuddyInfo": {
|
|
3779
|
+
"additionalProperties": false,
|
|
3780
|
+
"properties": {
|
|
3781
|
+
"high": {
|
|
3782
|
+
"items": {
|
|
3783
|
+
"type": "number"
|
|
3784
|
+
},
|
|
3785
|
+
"type": "array"
|
|
3786
|
+
},
|
|
3787
|
+
"normal": {
|
|
3788
|
+
"items": {
|
|
3789
|
+
"type": "number"
|
|
3790
|
+
},
|
|
3791
|
+
"type": "array"
|
|
3792
|
+
},
|
|
3793
|
+
"timestamp": {
|
|
3794
|
+
"type": "number"
|
|
3795
|
+
}
|
|
3796
|
+
},
|
|
3797
|
+
"required": [
|
|
3798
|
+
"timestamp"
|
|
3799
|
+
],
|
|
3800
|
+
"type": "object"
|
|
3801
|
+
},
|
|
3802
|
+
"MonitorStatsMemInfo": {
|
|
3803
|
+
"additionalProperties": {
|
|
3804
|
+
"type": [
|
|
3805
|
+
"string",
|
|
3806
|
+
"number",
|
|
3807
|
+
"boolean"
|
|
3808
|
+
]
|
|
3809
|
+
},
|
|
3810
|
+
"type": "object"
|
|
3811
|
+
},
|
|
3812
|
+
"MonitorStatsNetworkInfo": {
|
|
3813
|
+
"additionalProperties": false,
|
|
3814
|
+
"properties": {
|
|
3815
|
+
"bonding": {
|
|
3816
|
+
"items": {
|
|
3817
|
+
"additionalProperties": false,
|
|
3818
|
+
"properties": {
|
|
3819
|
+
"name": {
|
|
3820
|
+
"type": "string"
|
|
3821
|
+
},
|
|
3822
|
+
"rxBytes": {
|
|
3823
|
+
"type": "number"
|
|
3824
|
+
},
|
|
3825
|
+
"rxBytesOrigin": {
|
|
3826
|
+
"type": "number"
|
|
3827
|
+
},
|
|
3828
|
+
"rxBytesSec": {
|
|
3829
|
+
"type": "number"
|
|
3830
|
+
},
|
|
3831
|
+
"rxBytesValue": {
|
|
3832
|
+
"type": "number"
|
|
3833
|
+
},
|
|
3834
|
+
"rxDropped": {
|
|
3835
|
+
"type": "number"
|
|
3836
|
+
},
|
|
3837
|
+
"rxDroppedOrigin": {
|
|
3838
|
+
"type": "number"
|
|
3839
|
+
},
|
|
3840
|
+
"rxDroppedSec": {
|
|
3841
|
+
"type": "number"
|
|
3842
|
+
},
|
|
3843
|
+
"rxDroppedValue": {
|
|
3844
|
+
"type": "number"
|
|
3845
|
+
},
|
|
3846
|
+
"rxErrors": {
|
|
3847
|
+
"type": "number"
|
|
3848
|
+
},
|
|
3849
|
+
"rxErrorsOrigin": {
|
|
3850
|
+
"type": "number"
|
|
3851
|
+
},
|
|
3852
|
+
"rxErrorsSec": {
|
|
3853
|
+
"type": "number"
|
|
3854
|
+
},
|
|
3855
|
+
"rxErrorsValue": {
|
|
3856
|
+
"type": "number"
|
|
3857
|
+
},
|
|
3858
|
+
"rxPackets": {
|
|
3859
|
+
"type": "number"
|
|
3860
|
+
},
|
|
3861
|
+
"rxPacketsOrigin": {
|
|
3862
|
+
"type": "number"
|
|
3863
|
+
},
|
|
3864
|
+
"rxPacketsSec": {
|
|
3865
|
+
"type": "number"
|
|
3866
|
+
},
|
|
3867
|
+
"rxPacketsValue": {
|
|
3868
|
+
"type": "number"
|
|
3869
|
+
},
|
|
3870
|
+
"slaves": {
|
|
3871
|
+
"items": {
|
|
3872
|
+
"type": "string"
|
|
3873
|
+
},
|
|
3874
|
+
"type": "array"
|
|
3875
|
+
},
|
|
3876
|
+
"timestamp": {
|
|
3877
|
+
"type": "number"
|
|
3878
|
+
},
|
|
3879
|
+
"txBytes": {
|
|
3880
|
+
"type": "number"
|
|
3881
|
+
},
|
|
3882
|
+
"txBytesOrigin": {
|
|
3883
|
+
"type": "number"
|
|
3884
|
+
},
|
|
3885
|
+
"txBytesSec": {
|
|
3886
|
+
"type": "number"
|
|
3887
|
+
},
|
|
3888
|
+
"txBytesValue": {
|
|
3889
|
+
"type": "number"
|
|
3890
|
+
},
|
|
3891
|
+
"txDropped": {
|
|
3892
|
+
"type": "number"
|
|
3893
|
+
},
|
|
3894
|
+
"txDroppedOrigin": {
|
|
3895
|
+
"type": "number"
|
|
3896
|
+
},
|
|
3897
|
+
"txDroppedSec": {
|
|
3898
|
+
"type": "number"
|
|
3899
|
+
},
|
|
3900
|
+
"txDroppedValue": {
|
|
3901
|
+
"type": "number"
|
|
3902
|
+
},
|
|
3903
|
+
"txErrors": {
|
|
3904
|
+
"type": "number"
|
|
3905
|
+
},
|
|
3906
|
+
"txErrorsOrigin": {
|
|
3907
|
+
"type": "number"
|
|
3908
|
+
},
|
|
3909
|
+
"txErrorsSec": {
|
|
3910
|
+
"type": "number"
|
|
3911
|
+
},
|
|
3912
|
+
"txErrorsValue": {
|
|
3913
|
+
"type": "number"
|
|
3914
|
+
}
|
|
3915
|
+
},
|
|
3916
|
+
"required": [
|
|
3917
|
+
"name",
|
|
3918
|
+
"slaves"
|
|
3919
|
+
],
|
|
3920
|
+
"type": "object"
|
|
3921
|
+
},
|
|
3922
|
+
"type": "array"
|
|
3923
|
+
},
|
|
3924
|
+
"eth": {
|
|
3925
|
+
"items": {
|
|
3926
|
+
"additionalProperties": false,
|
|
3927
|
+
"properties": {
|
|
3928
|
+
"name": {
|
|
3929
|
+
"type": "string"
|
|
3930
|
+
},
|
|
3931
|
+
"rxBroadcastBytes": {
|
|
3932
|
+
"type": "number"
|
|
3933
|
+
},
|
|
3934
|
+
"rxBytes": {
|
|
3935
|
+
"type": "number"
|
|
3936
|
+
},
|
|
3937
|
+
"rxBytesOrigin": {
|
|
3938
|
+
"type": "number"
|
|
3939
|
+
},
|
|
3940
|
+
"rxBytesSec": {
|
|
3941
|
+
"type": "number"
|
|
3942
|
+
},
|
|
3943
|
+
"rxBytesValue": {
|
|
3944
|
+
"type": "number"
|
|
3945
|
+
},
|
|
3946
|
+
"rxDropped": {
|
|
3947
|
+
"type": "number"
|
|
3948
|
+
},
|
|
3949
|
+
"rxDroppedOrigin": {
|
|
3950
|
+
"type": "number"
|
|
3951
|
+
},
|
|
3952
|
+
"rxDroppedSec": {
|
|
3953
|
+
"type": "number"
|
|
3954
|
+
},
|
|
3955
|
+
"rxDroppedValue": {
|
|
3956
|
+
"type": "number"
|
|
3957
|
+
},
|
|
3958
|
+
"rxErrors": {
|
|
3959
|
+
"type": "number"
|
|
3960
|
+
},
|
|
3961
|
+
"rxErrorsOrigin": {
|
|
3962
|
+
"type": "number"
|
|
3963
|
+
},
|
|
3964
|
+
"rxErrorsSec": {
|
|
3965
|
+
"type": "number"
|
|
3966
|
+
},
|
|
3967
|
+
"rxErrorsValue": {
|
|
3968
|
+
"type": "number"
|
|
3969
|
+
},
|
|
3970
|
+
"rxMulticastBytes": {
|
|
3971
|
+
"type": "number"
|
|
3972
|
+
},
|
|
3973
|
+
"rxPackets": {
|
|
3974
|
+
"type": "number"
|
|
3975
|
+
},
|
|
3976
|
+
"rxPacketsOrigin": {
|
|
3977
|
+
"type": "number"
|
|
3978
|
+
},
|
|
3979
|
+
"rxPacketsSec": {
|
|
3980
|
+
"type": "number"
|
|
3981
|
+
},
|
|
3982
|
+
"rxPacketsValue": {
|
|
3983
|
+
"type": "number"
|
|
3984
|
+
},
|
|
3985
|
+
"rxUnicastBytes": {
|
|
3986
|
+
"type": "number"
|
|
3987
|
+
},
|
|
3988
|
+
"speed": {
|
|
3989
|
+
"type": "number"
|
|
3990
|
+
},
|
|
3991
|
+
"timestamp": {
|
|
3992
|
+
"type": "number"
|
|
3993
|
+
},
|
|
3994
|
+
"txBytes": {
|
|
3995
|
+
"type": "number"
|
|
3996
|
+
},
|
|
3997
|
+
"txBytesOrigin": {
|
|
3998
|
+
"type": "number"
|
|
3999
|
+
},
|
|
4000
|
+
"txBytesSec": {
|
|
4001
|
+
"type": "number"
|
|
4002
|
+
},
|
|
4003
|
+
"txBytesValue": {
|
|
4004
|
+
"type": "number"
|
|
4005
|
+
},
|
|
4006
|
+
"txDropped": {
|
|
4007
|
+
"type": "number"
|
|
4008
|
+
},
|
|
4009
|
+
"txDroppedOrigin": {
|
|
4010
|
+
"type": "number"
|
|
4011
|
+
},
|
|
4012
|
+
"txDroppedSec": {
|
|
4013
|
+
"type": "number"
|
|
4014
|
+
},
|
|
4015
|
+
"txDroppedValue": {
|
|
4016
|
+
"type": "number"
|
|
4017
|
+
},
|
|
4018
|
+
"txErrors": {
|
|
4019
|
+
"type": "number"
|
|
4020
|
+
},
|
|
4021
|
+
"txErrorsOrigin": {
|
|
4022
|
+
"type": "number"
|
|
4023
|
+
},
|
|
4024
|
+
"txErrorsSec": {
|
|
4025
|
+
"type": "number"
|
|
4026
|
+
},
|
|
4027
|
+
"txErrorsValue": {
|
|
4028
|
+
"type": "number"
|
|
4029
|
+
}
|
|
4030
|
+
},
|
|
4031
|
+
"required": [
|
|
4032
|
+
"name"
|
|
4033
|
+
],
|
|
4034
|
+
"type": "object"
|
|
4035
|
+
},
|
|
4036
|
+
"type": "array"
|
|
4037
|
+
},
|
|
4038
|
+
"sockstat": {
|
|
4039
|
+
"additionalProperties": false,
|
|
4040
|
+
"properties": {
|
|
4041
|
+
"frag": {
|
|
4042
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
4043
|
+
},
|
|
4044
|
+
"raw": {
|
|
4045
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
4046
|
+
},
|
|
4047
|
+
"sockets": {
|
|
4048
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
4049
|
+
},
|
|
4050
|
+
"tcp": {
|
|
4051
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
4052
|
+
},
|
|
4053
|
+
"timestamp": {
|
|
4054
|
+
"type": "number"
|
|
4055
|
+
},
|
|
4056
|
+
"udp": {
|
|
4057
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
4058
|
+
},
|
|
4059
|
+
"udplite": {
|
|
4060
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
4061
|
+
}
|
|
4062
|
+
},
|
|
4063
|
+
"required": [
|
|
4064
|
+
"timestamp"
|
|
4065
|
+
],
|
|
4066
|
+
"type": "object"
|
|
4067
|
+
},
|
|
4068
|
+
"softnet": {
|
|
4069
|
+
"additionalProperties": false,
|
|
4070
|
+
"properties": {
|
|
4071
|
+
"cpus": {
|
|
4072
|
+
"items": {
|
|
4073
|
+
"additionalProperties": false,
|
|
4074
|
+
"properties": {
|
|
4075
|
+
"cpu": {
|
|
4076
|
+
"type": "number"
|
|
4077
|
+
},
|
|
4078
|
+
"dropped": {
|
|
4079
|
+
"type": "number"
|
|
4080
|
+
},
|
|
4081
|
+
"processed": {
|
|
4082
|
+
"type": "number"
|
|
4083
|
+
},
|
|
4084
|
+
"squeezed": {
|
|
4085
|
+
"type": "number"
|
|
4086
|
+
}
|
|
4087
|
+
},
|
|
4088
|
+
"required": [
|
|
4089
|
+
"cpu"
|
|
4090
|
+
],
|
|
4091
|
+
"type": "object"
|
|
4092
|
+
},
|
|
4093
|
+
"type": "array"
|
|
4094
|
+
},
|
|
4095
|
+
"processed": {
|
|
4096
|
+
"type": "number"
|
|
4097
|
+
},
|
|
4098
|
+
"processedDay": {
|
|
4099
|
+
"type": "number"
|
|
4100
|
+
},
|
|
4101
|
+
"processedHour": {
|
|
4102
|
+
"type": "number"
|
|
4103
|
+
},
|
|
4104
|
+
"processedMinute": {
|
|
4105
|
+
"type": "number"
|
|
4106
|
+
},
|
|
4107
|
+
"squeezed": {
|
|
4108
|
+
"type": "number"
|
|
4109
|
+
},
|
|
4110
|
+
"squeezedDay": {
|
|
4111
|
+
"type": "number"
|
|
4112
|
+
},
|
|
4113
|
+
"squeezedHour": {
|
|
4114
|
+
"type": "number"
|
|
4115
|
+
},
|
|
4116
|
+
"timestamp": {
|
|
4117
|
+
"type": "number"
|
|
4118
|
+
}
|
|
4119
|
+
},
|
|
4120
|
+
"required": [
|
|
4121
|
+
"cpus",
|
|
4122
|
+
"timestamp"
|
|
4123
|
+
],
|
|
4124
|
+
"type": "object"
|
|
4125
|
+
}
|
|
4126
|
+
},
|
|
4127
|
+
"required": [
|
|
4128
|
+
"bonding",
|
|
4129
|
+
"eth",
|
|
4130
|
+
"sockstat",
|
|
4131
|
+
"softnet"
|
|
4132
|
+
],
|
|
4133
|
+
"type": "object"
|
|
4134
|
+
},
|
|
4135
|
+
"MonitorStatsProcInfo": {
|
|
4136
|
+
"additionalProperties": false,
|
|
4137
|
+
"properties": {
|
|
4138
|
+
"active": {
|
|
4139
|
+
"type": "number"
|
|
4140
|
+
},
|
|
4141
|
+
"blocked": {
|
|
4142
|
+
"type": "number"
|
|
4143
|
+
},
|
|
4144
|
+
"bootTime": {
|
|
4145
|
+
"type": "number"
|
|
4146
|
+
},
|
|
4147
|
+
"cmdline": {},
|
|
4148
|
+
"contextSwitches": {
|
|
4149
|
+
"type": "number"
|
|
4150
|
+
},
|
|
4151
|
+
"cpu": {
|
|
4152
|
+
"$ref": "#/definitions/MonitorStatsProcInfoCpu"
|
|
4153
|
+
},
|
|
4154
|
+
"cpus": {
|
|
4155
|
+
"items": {
|
|
4156
|
+
"$ref": "#/definitions/MonitorStatsProcInfoCpu"
|
|
4157
|
+
},
|
|
4158
|
+
"type": "array"
|
|
4159
|
+
},
|
|
4160
|
+
"idle": {
|
|
4161
|
+
"type": "number"
|
|
4162
|
+
},
|
|
4163
|
+
"interrupts": {
|
|
4164
|
+
"items": {
|
|
4165
|
+
"type": "number"
|
|
4166
|
+
},
|
|
4167
|
+
"type": "array"
|
|
4168
|
+
},
|
|
4169
|
+
"load": {
|
|
4170
|
+
"items": {
|
|
4171
|
+
"type": "number"
|
|
4172
|
+
},
|
|
4173
|
+
"type": "array"
|
|
4174
|
+
},
|
|
4175
|
+
"processes": {
|
|
4176
|
+
"type": "number"
|
|
4177
|
+
},
|
|
4178
|
+
"running": {
|
|
4179
|
+
"type": "number"
|
|
4180
|
+
},
|
|
4181
|
+
"softirqs": {},
|
|
4182
|
+
"threads": {
|
|
4183
|
+
"type": "number"
|
|
4184
|
+
},
|
|
4185
|
+
"timestamp": {
|
|
4186
|
+
"type": "number"
|
|
4187
|
+
},
|
|
4188
|
+
"total": {
|
|
4189
|
+
"type": "number"
|
|
4190
|
+
},
|
|
4191
|
+
"utilization": {
|
|
4192
|
+
"type": "number"
|
|
4193
|
+
}
|
|
4194
|
+
},
|
|
4195
|
+
"required": [
|
|
4196
|
+
"active",
|
|
4197
|
+
"blocked",
|
|
4198
|
+
"bootTime",
|
|
4199
|
+
"cmdline",
|
|
4200
|
+
"contextSwitches",
|
|
4201
|
+
"cpu",
|
|
4202
|
+
"idle",
|
|
4203
|
+
"load",
|
|
4204
|
+
"processes",
|
|
4205
|
+
"running",
|
|
4206
|
+
"softirqs",
|
|
4207
|
+
"threads",
|
|
4208
|
+
"timestamp",
|
|
4209
|
+
"total",
|
|
4210
|
+
"utilization"
|
|
4211
|
+
],
|
|
4212
|
+
"type": "object"
|
|
4213
|
+
},
|
|
4214
|
+
"MonitorStatsProcInfoCpu": {
|
|
4215
|
+
"additionalProperties": {
|
|
4216
|
+
"type": [
|
|
4217
|
+
"string",
|
|
4218
|
+
"number",
|
|
4219
|
+
"boolean"
|
|
4220
|
+
]
|
|
4221
|
+
},
|
|
4222
|
+
"type": "object"
|
|
4223
|
+
},
|
|
4224
|
+
"MonitorStatsRecord": {
|
|
4225
|
+
"additionalProperties": false,
|
|
4226
|
+
"properties": {
|
|
4227
|
+
"buddyinfo": {
|
|
4228
|
+
"$ref": "#/definitions/MonitorStatsBuddyInfo"
|
|
4229
|
+
},
|
|
4230
|
+
"gpu": {},
|
|
4231
|
+
"meminfo": {
|
|
4232
|
+
"$ref": "#/definitions/MonitorStatsMemInfo"
|
|
4233
|
+
},
|
|
4234
|
+
"net": {
|
|
4235
|
+
"$ref": "#/definitions/MonitorStatsNetworkInfo"
|
|
4236
|
+
},
|
|
4237
|
+
"proc": {
|
|
4238
|
+
"$ref": "#/definitions/MonitorStatsProcInfo"
|
|
4239
|
+
},
|
|
4240
|
+
"var": {
|
|
4241
|
+
"additionalProperties": false,
|
|
4242
|
+
"properties": {
|
|
4243
|
+
"available": {
|
|
4244
|
+
"type": "number"
|
|
4245
|
+
},
|
|
4246
|
+
"timestamp": {
|
|
4247
|
+
"type": "number"
|
|
4248
|
+
},
|
|
4249
|
+
"used": {
|
|
4250
|
+
"type": "number"
|
|
4251
|
+
}
|
|
4252
|
+
},
|
|
4253
|
+
"required": [
|
|
4254
|
+
"available",
|
|
4255
|
+
"timestamp",
|
|
4256
|
+
"used"
|
|
4257
|
+
],
|
|
4258
|
+
"type": "object"
|
|
4259
|
+
}
|
|
4260
|
+
},
|
|
4261
|
+
"required": [
|
|
4262
|
+
"buddyinfo",
|
|
4263
|
+
"gpu",
|
|
4264
|
+
"meminfo",
|
|
4265
|
+
"net",
|
|
4266
|
+
"proc",
|
|
4267
|
+
"var"
|
|
4268
|
+
],
|
|
4269
|
+
"type": "object"
|
|
4270
|
+
},
|
|
3778
4271
|
"MoveOperation": {
|
|
3779
4272
|
"additionalProperties": false,
|
|
3780
4273
|
"properties": {
|
|
@@ -5082,10 +5575,6 @@
|
|
|
5082
5575
|
"additionalProperties": false,
|
|
5083
5576
|
"type": "object"
|
|
5084
5577
|
},
|
|
5085
|
-
"Record<string,MonitorStatsRecord>": {
|
|
5086
|
-
"additionalProperties": false,
|
|
5087
|
-
"type": "object"
|
|
5088
|
-
},
|
|
5089
5578
|
"Record<string,TemplateProperty>": {
|
|
5090
5579
|
"additionalProperties": false,
|
|
5091
5580
|
"type": "object"
|
|
@@ -7166,18 +7655,14 @@
|
|
|
7166
7655
|
"subtitles": {
|
|
7167
7656
|
"additionalProperties": false,
|
|
7168
7657
|
"properties": {
|
|
7169
|
-
"
|
|
7658
|
+
"colors": {
|
|
7170
7659
|
"items": {
|
|
7171
7660
|
"additionalProperties": false,
|
|
7172
7661
|
"properties": {
|
|
7173
|
-
"
|
|
7174
|
-
"description": "aspect ratio in the form of \"width:height\"",
|
|
7662
|
+
"color": {
|
|
7175
7663
|
"type": "string"
|
|
7176
7664
|
},
|
|
7177
|
-
"
|
|
7178
|
-
"type": "number"
|
|
7179
|
-
},
|
|
7180
|
-
"style": {
|
|
7665
|
+
"label": {
|
|
7181
7666
|
"type": "string"
|
|
7182
7667
|
}
|
|
7183
7668
|
},
|
|
@@ -7190,6 +7675,28 @@
|
|
|
7190
7675
|
},
|
|
7191
7676
|
"spacing": {
|
|
7192
7677
|
"type": "number"
|
|
7678
|
+
},
|
|
7679
|
+
"suggestions": {
|
|
7680
|
+
"items": {
|
|
7681
|
+
"additionalProperties": false,
|
|
7682
|
+
"properties": {
|
|
7683
|
+
"ifAspectRatio": {
|
|
7684
|
+
"description": "aspect ratio in the form of \"width:height\"",
|
|
7685
|
+
"type": "string"
|
|
7686
|
+
},
|
|
7687
|
+
"ifLang": {
|
|
7688
|
+
"type": "string"
|
|
7689
|
+
},
|
|
7690
|
+
"thenMaxCharactersPerLine": {
|
|
7691
|
+
"type": "number"
|
|
7692
|
+
},
|
|
7693
|
+
"thenStyle": {
|
|
7694
|
+
"type": "string"
|
|
7695
|
+
}
|
|
7696
|
+
},
|
|
7697
|
+
"type": "object"
|
|
7698
|
+
},
|
|
7699
|
+
"type": "array"
|
|
7193
7700
|
}
|
|
7194
7701
|
},
|
|
7195
7702
|
"required": [
|