PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / AutoLaunch / templates / pages / progress.json

progress.json in Extendify 3.2.1, at src/AutoLaunch/templates/pages/progress.json

88 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://json-schema.org/draft/2020-12/schema",
3 "$id": "extendify/launch-page/progress",
4 "title": "Progress page",
5 "type": "object",
6 "additionalProperties": false,
7 "properties": {
8 "--ext-ui-loader-image": {
9 "type": "string",
10 "default": "",
11 "x-card": "Graphic",
12 "x-label": "Graphic",
13 "x-control": "text",
14 "x-placeholder": "https://\u2026/building.gif"
15 },
16 "--ext-ui-loader-color": {
17 "type": "string",
18 "default": "#2271b1",
19 "x-card": "Graphic",
20 "x-label": "Graphic color",
21 "x-control": "color",
22 "x-inherits": "--ext-ui-action"
23 },
24 "--ext-ui-loader-height": {
25 "type": "number",
26 "minimum": 48,
27 "maximum": 320,
28 "default": 118,
29 "x-card": "Graphic",
30 "x-label": "Graphic height",
31 "x-control": "length"
32 },
33 "--ext-ui-loader-radius": {
34 "type": "number",
35 "minimum": 0,
36 "maximum": 48,
37 "default": 0,
38 "x-card": "Graphic",
39 "x-label": "Graphic radius",
40 "x-control": "length"
41 },
42 "--ext-ui-status-size": {
43 "type": "number",
44 "minimum": 11,
45 "maximum": 28,
46 "default": 14,
47 "x-card": "Status text",
48 "x-label": "Text size",
49 "x-control": "length"
50 },
51 "--ext-ui-status-weight": {
52 "type": "number",
53 "minimum": 300,
54 "maximum": 900,
55 "multipleOf": 100,
56 "default": 500,
57 "x-card": "Status text",
58 "x-label": "Text weight",
59 "x-control": "number"
60 },
61 "--ext-ui-status-color": {
62 "type": "string",
63 "default": "#1e1e1e",
64 "x-card": "Status text",
65 "x-label": "Text color",
66 "x-control": "color"
67 },
68 "--ext-tpl-progress-height": {
69 "type": "number",
70 "minimum": 200,
71 "maximum": 720,
72 "default": 400,
73 "x-card": "Box",
74 "x-label": "Box height",
75 "x-control": "length"
76 },
77 "--ext-tpl-progress-gap": {
78 "type": "number",
79 "minimum": 0,
80 "maximum": 64,
81 "default": 12,
82 "x-card": "Box",
83 "x-label": "Gap",
84 "x-control": "length"
85 }
86 }
87 }
88