@pie-element/graphing 4.2.1 → 4.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.
@@ -2043,10 +2043,392 @@
2043
2043
  }
2044
2044
  }
2045
2045
  },
2046
- "ConfigurePropWithEnabled": {
2047
- "title": "ConfigurePropWithEnabled",
2046
+ "GridConfigurationsProp": {
2047
+ "title": "GridConfigurationsProp",
2048
2048
  "type": "object",
2049
2049
  "properties": {
2050
+ "label": {
2051
+ "description": "Indicates the label for the configuration",
2052
+ "type": "string",
2053
+ "title": "label"
2054
+ },
2055
+ "arrows": {
2056
+ "title": "Arrows",
2057
+ "type": "object",
2058
+ "properties": {
2059
+ "left": {
2060
+ "description": "Indicates if left arrow is enabled",
2061
+ "type": "boolean",
2062
+ "title": "left"
2063
+ },
2064
+ "right": {
2065
+ "description": "Indicates if right arrow is enabled",
2066
+ "type": "boolean",
2067
+ "title": "right"
2068
+ },
2069
+ "up": {
2070
+ "description": "Indicates if up arrow is enabled",
2071
+ "type": "boolean",
2072
+ "title": "up"
2073
+ },
2074
+ "down": {
2075
+ "description": "Indicates if down arrow is enabled",
2076
+ "type": "boolean",
2077
+ "title": "down"
2078
+ }
2079
+ },
2080
+ "required": [
2081
+ "down",
2082
+ "left",
2083
+ "right",
2084
+ "up"
2085
+ ]
2086
+ },
2087
+ "domain": {
2088
+ "title": "GraphSettings",
2089
+ "type": "object",
2090
+ "properties": {
2091
+ "min": {
2092
+ "description": "Min value",
2093
+ "type": "number",
2094
+ "title": "min"
2095
+ },
2096
+ "max": {
2097
+ "description": "Max value",
2098
+ "type": "number",
2099
+ "title": "max"
2100
+ },
2101
+ "padding": {
2102
+ "description": "Padding value",
2103
+ "type": "number",
2104
+ "title": "padding"
2105
+ },
2106
+ "step": {
2107
+ "description": "Step value",
2108
+ "type": "number",
2109
+ "title": "step"
2110
+ },
2111
+ "labelStep": {
2112
+ "description": "Label step value",
2113
+ "type": "number",
2114
+ "title": "labelStep"
2115
+ },
2116
+ "axisLabel": {
2117
+ "description": "Axis Label",
2118
+ "type": "string",
2119
+ "title": "axisLabel"
2120
+ }
2121
+ },
2122
+ "required": [
2123
+ "axisLabel",
2124
+ "labelStep",
2125
+ "max",
2126
+ "min",
2127
+ "padding",
2128
+ "step"
2129
+ ]
2130
+ },
2131
+ "graph": {
2132
+ "title": "Graph",
2133
+ "type": "object",
2134
+ "properties": {
2135
+ "width": {
2136
+ "description": "Width for graph representation",
2137
+ "type": "number",
2138
+ "title": "width"
2139
+ },
2140
+ "height": {
2141
+ "description": "Height for graph representation",
2142
+ "type": "number",
2143
+ "title": "height"
2144
+ }
2145
+ },
2146
+ "required": [
2147
+ "height",
2148
+ "width"
2149
+ ]
2150
+ },
2151
+ "includeAxes": {
2152
+ "description": "Indicates if the graph axes and labels are enabled",
2153
+ "type": "boolean",
2154
+ "title": "includeAxes"
2155
+ },
2156
+ "labels": {
2157
+ "title": "Labels",
2158
+ "type": "object",
2159
+ "properties": {
2160
+ "top": {
2161
+ "description": "Label for top side of the graph",
2162
+ "type": "string",
2163
+ "title": "top"
2164
+ },
2165
+ "bottom": {
2166
+ "description": "Label for bottom side of the graph",
2167
+ "type": "string",
2168
+ "title": "bottom"
2169
+ },
2170
+ "left": {
2171
+ "description": "Label for left side of the graph",
2172
+ "type": "string",
2173
+ "title": "left"
2174
+ },
2175
+ "right": {
2176
+ "description": "Label for right side of the graph",
2177
+ "type": "string",
2178
+ "title": "right"
2179
+ }
2180
+ },
2181
+ "required": [
2182
+ "bottom",
2183
+ "left",
2184
+ "right",
2185
+ "top"
2186
+ ]
2187
+ },
2188
+ "padding": {
2189
+ "description": "Indicates if padding is enabled",
2190
+ "type": "boolean",
2191
+ "title": "padding"
2192
+ },
2193
+ "range": {
2194
+ "title": "GraphSettings",
2195
+ "type": "object",
2196
+ "properties": {
2197
+ "min": {
2198
+ "description": "Min value",
2199
+ "type": "number",
2200
+ "title": "min"
2201
+ },
2202
+ "max": {
2203
+ "description": "Max value",
2204
+ "type": "number",
2205
+ "title": "max"
2206
+ },
2207
+ "padding": {
2208
+ "description": "Padding value",
2209
+ "type": "number",
2210
+ "title": "padding"
2211
+ },
2212
+ "step": {
2213
+ "description": "Step value",
2214
+ "type": "number",
2215
+ "title": "step"
2216
+ },
2217
+ "labelStep": {
2218
+ "description": "Label step value",
2219
+ "type": "number",
2220
+ "title": "labelStep"
2221
+ },
2222
+ "axisLabel": {
2223
+ "description": "Axis Label",
2224
+ "type": "string",
2225
+ "title": "axisLabel"
2226
+ }
2227
+ },
2228
+ "required": [
2229
+ "axisLabel",
2230
+ "labelStep",
2231
+ "max",
2232
+ "min",
2233
+ "padding",
2234
+ "step"
2235
+ ]
2236
+ },
2237
+ "standardGrid": {
2238
+ "description": "Indicates if some domain values will be synched to the range values",
2239
+ "type": "boolean",
2240
+ "title": "standardGrid"
2241
+ },
2242
+ "title": {
2243
+ "description": "Indicates graph title",
2244
+ "type": "string",
2245
+ "title": "title"
2246
+ }
2247
+ },
2248
+ "required": [
2249
+ "domain",
2250
+ "graph",
2251
+ "range"
2252
+ ]
2253
+ },
2254
+ "Arrows": {
2255
+ "title": "Arrows",
2256
+ "type": "object",
2257
+ "properties": {
2258
+ "left": {
2259
+ "description": "Indicates if left arrow is enabled",
2260
+ "type": "boolean",
2261
+ "title": "left"
2262
+ },
2263
+ "right": {
2264
+ "description": "Indicates if right arrow is enabled",
2265
+ "type": "boolean",
2266
+ "title": "right"
2267
+ },
2268
+ "up": {
2269
+ "description": "Indicates if up arrow is enabled",
2270
+ "type": "boolean",
2271
+ "title": "up"
2272
+ },
2273
+ "down": {
2274
+ "description": "Indicates if down arrow is enabled",
2275
+ "type": "boolean",
2276
+ "title": "down"
2277
+ }
2278
+ },
2279
+ "required": [
2280
+ "down",
2281
+ "left",
2282
+ "right",
2283
+ "up"
2284
+ ]
2285
+ },
2286
+ "GraphSettings": {
2287
+ "title": "GraphSettings",
2288
+ "type": "object",
2289
+ "properties": {
2290
+ "min": {
2291
+ "description": "Min value",
2292
+ "type": "number",
2293
+ "title": "min"
2294
+ },
2295
+ "max": {
2296
+ "description": "Max value",
2297
+ "type": "number",
2298
+ "title": "max"
2299
+ },
2300
+ "padding": {
2301
+ "description": "Padding value",
2302
+ "type": "number",
2303
+ "title": "padding"
2304
+ },
2305
+ "step": {
2306
+ "description": "Step value",
2307
+ "type": "number",
2308
+ "title": "step"
2309
+ },
2310
+ "labelStep": {
2311
+ "description": "Label step value",
2312
+ "type": "number",
2313
+ "title": "labelStep"
2314
+ },
2315
+ "axisLabel": {
2316
+ "description": "Axis Label",
2317
+ "type": "string",
2318
+ "title": "axisLabel"
2319
+ }
2320
+ },
2321
+ "required": [
2322
+ "axisLabel",
2323
+ "labelStep",
2324
+ "max",
2325
+ "min",
2326
+ "padding",
2327
+ "step"
2328
+ ]
2329
+ },
2330
+ "Graph": {
2331
+ "title": "Graph",
2332
+ "type": "object",
2333
+ "properties": {
2334
+ "width": {
2335
+ "description": "Width for graph representation",
2336
+ "type": "number",
2337
+ "title": "width"
2338
+ },
2339
+ "height": {
2340
+ "description": "Height for graph representation",
2341
+ "type": "number",
2342
+ "title": "height"
2343
+ }
2344
+ },
2345
+ "required": [
2346
+ "height",
2347
+ "width"
2348
+ ]
2349
+ },
2350
+ "Labels": {
2351
+ "title": "Labels",
2352
+ "type": "object",
2353
+ "properties": {
2354
+ "top": {
2355
+ "description": "Label for top side of the graph",
2356
+ "type": "string",
2357
+ "title": "top"
2358
+ },
2359
+ "bottom": {
2360
+ "description": "Label for bottom side of the graph",
2361
+ "type": "string",
2362
+ "title": "bottom"
2363
+ },
2364
+ "left": {
2365
+ "description": "Label for left side of the graph",
2366
+ "type": "string",
2367
+ "title": "left"
2368
+ },
2369
+ "right": {
2370
+ "description": "Label for right side of the graph",
2371
+ "type": "string",
2372
+ "title": "right"
2373
+ }
2374
+ },
2375
+ "required": [
2376
+ "bottom",
2377
+ "left",
2378
+ "right",
2379
+ "top"
2380
+ ]
2381
+ },
2382
+ "LabelsConfigProp": {
2383
+ "title": "LabelsConfigProp",
2384
+ "type": "object",
2385
+ "properties": {
2386
+ "top": {
2387
+ "description": "Indicates the placeholder for the top label",
2388
+ "type": "string",
2389
+ "title": "top"
2390
+ },
2391
+ "right": {
2392
+ "description": "Indicates the placeholder for the right label",
2393
+ "type": "string",
2394
+ "title": "right"
2395
+ },
2396
+ "bottom": {
2397
+ "description": "Indicates the placeholder for the bottom label",
2398
+ "type": "string",
2399
+ "title": "bottom"
2400
+ },
2401
+ "left": {
2402
+ "description": "Indicates the placeholder for the left label",
2403
+ "type": "string",
2404
+ "title": "left"
2405
+ },
2406
+ "settings": {
2407
+ "description": "Indicates if the item has to be displayed in the Settings Panel",
2408
+ "type": "boolean",
2409
+ "title": "settings"
2410
+ },
2411
+ "label": {
2412
+ "description": "Indicates the label for the item that has to be displayed in the Settings Panel",
2413
+ "type": "string",
2414
+ "title": "label"
2415
+ },
2416
+ "enabled": {
2417
+ "description": "Indicates the value of the item if it affects config-ui\n(eg.: if item is a switch and displaying an input on the config-ui depends on the switch value: on/off)",
2418
+ "type": "boolean",
2419
+ "title": "enabled"
2420
+ }
2421
+ }
2422
+ },
2423
+ "TitleConfigProp": {
2424
+ "title": "TitleConfigProp",
2425
+ "type": "object",
2426
+ "properties": {
2427
+ "placeholder": {
2428
+ "description": "Indicates the placeholder for the title label",
2429
+ "type": "string",
2430
+ "title": "placeholder"
2431
+ },
2050
2432
  "settings": {
2051
2433
  "description": "Indicates if the item has to be displayed in the Settings Panel",
2052
2434
  "type": "boolean",
@@ -2815,135 +3197,7 @@
2815
3197
  "x",
2816
3198
  "y"
2817
3199
  ]
2818
- },
2819
- "Arrows": {
2820
- "title": "Arrows",
2821
- "type": "object",
2822
- "properties": {
2823
- "left": {
2824
- "description": "Indicates if left arrow is enabled",
2825
- "type": "boolean",
2826
- "title": "left"
2827
- },
2828
- "right": {
2829
- "description": "Indicates if right arrow is enabled",
2830
- "type": "boolean",
2831
- "title": "right"
2832
- },
2833
- "up": {
2834
- "description": "Indicates if up arrow is enabled",
2835
- "type": "boolean",
2836
- "title": "up"
2837
- },
2838
- "down": {
2839
- "description": "Indicates if down arrow is enabled",
2840
- "type": "boolean",
2841
- "title": "down"
2842
- }
2843
- },
2844
- "required": [
2845
- "down",
2846
- "left",
2847
- "right",
2848
- "up"
2849
- ]
2850
- },
2851
- "GraphSettings": {
2852
- "title": "GraphSettings",
2853
- "type": "object",
2854
- "properties": {
2855
- "min": {
2856
- "description": "Min value",
2857
- "type": "number",
2858
- "title": "min"
2859
- },
2860
- "max": {
2861
- "description": "Max value",
2862
- "type": "number",
2863
- "title": "max"
2864
- },
2865
- "padding": {
2866
- "description": "Padding value",
2867
- "type": "number",
2868
- "title": "padding"
2869
- },
2870
- "step": {
2871
- "description": "Step value",
2872
- "type": "number",
2873
- "title": "step"
2874
- },
2875
- "labelStep": {
2876
- "description": "Label step value",
2877
- "type": "number",
2878
- "title": "labelStep"
2879
- },
2880
- "axisLabel": {
2881
- "description": "Axis Label",
2882
- "type": "string",
2883
- "title": "axisLabel"
2884
- }
2885
- },
2886
- "required": [
2887
- "axisLabel",
2888
- "labelStep",
2889
- "max",
2890
- "min",
2891
- "padding",
2892
- "step"
2893
- ]
2894
- },
2895
- "Graph": {
2896
- "title": "Graph",
2897
- "type": "object",
2898
- "properties": {
2899
- "width": {
2900
- "description": "Width for graph representation",
2901
- "type": "number",
2902
- "title": "width"
2903
- },
2904
- "height": {
2905
- "description": "Height for graph representation",
2906
- "type": "number",
2907
- "title": "height"
2908
- }
2909
- },
2910
- "required": [
2911
- "height",
2912
- "width"
2913
- ]
2914
- },
2915
- "Labels": {
2916
- "title": "Labels",
2917
- "type": "object",
2918
- "properties": {
2919
- "top": {
2920
- "description": "Label for top side of the graph",
2921
- "type": "string",
2922
- "title": "top"
2923
- },
2924
- "bottom": {
2925
- "description": "Label for bottom side of the graph",
2926
- "type": "string",
2927
- "title": "bottom"
2928
- },
2929
- "left": {
2930
- "description": "Label for left side of the graph",
2931
- "type": "string",
2932
- "title": "left"
2933
- },
2934
- "right": {
2935
- "description": "Label for right side of the graph",
2936
- "type": "string",
2937
- "title": "right"
2938
- }
2939
- },
2940
- "required": [
2941
- "bottom",
2942
- "left",
2943
- "right",
2944
- "top"
2945
- ]
2946
3200
  }
2947
3201
  },
2948
3202
  "$schema": "http://json-schema.org/draft-07/schema#"
2949
- }
3203
+ }