# Panel (sudo_self_resolver)
Pick itself as a step resolver (available for any reader)
# Screenshots
# Config
sudo_self_resolver:
config:
# Optional | Type: string | Default: null
# Shows confirm box with given text before action is performed
#
### Note
### By default is required no confirmation
confirm: "Really?"
# Optional | Type: bool | Default: false
# After selecting resolver, try go to next step
gonext: false
# Optional | Type: array | Default: []
# Custom callbacks attached to the button
callbacks: []
# Optional | Type: string | Default: null
# Custom script attached on resolved changed
#
### Note
### This option is not lattenized
script: "NULL"
# UI
ui:
# Optional | Type: string | Default: null
# Panel title
title: "Panel title"
# Optional | Type: string | Default: null
# Panel description
description: "Panel description"
# Optional | Type: string | Default: null
# Button text color
color: "text-white"
# Optional | Type: string | Default: null
# Button background color
background: "bg-indigo-800"
# Optional | Type: string | Default: null
# Icon name to display inside button
icon: "fa/s/home"
# Optional | Type: string | Default: null
# Icon color
iconColor: "white"
# Optional | Type: string | Default: before
# Icon position before or after text
iconPosition: "before"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
← sudo_reopener summary →