profoundjs 7.3.0 → 7.5.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.
- package/htdocs/iscroll/iscroll.js +3 -0
- package/htdocs/profoundui/proddata/css/atrium.css +164 -23
- package/htdocs/profoundui/proddata/css/designer.css +49 -1
- package/htdocs/profoundui/proddata/css/logic.css +32 -0
- package/htdocs/profoundui/proddata/css/profoundai.css +303 -0
- package/htdocs/profoundui/proddata/images/FlatIcons/16x16/file-aiagent-json.svg +2 -0
- package/htdocs/profoundui/proddata/js/designer.js +4116 -3969
- package/htdocs/profoundui/proddata/js/runtime.js +1551 -1525
- package/package.json +6 -1
- package/profound.jse +1 -1
- package/setup/install_info.json +4 -1
- package/setup/pjsdist.savf +0 -0
|
@@ -1,44 +1,38 @@
|
|
|
1
1
|
/* Prevents collapsing of empty combo box items in FireFox */
|
|
2
2
|
.ext-gecko .x-combo-list-item {
|
|
3
|
-
|
|
4
3
|
height: 15px;
|
|
5
|
-
|
|
6
4
|
}
|
|
7
5
|
|
|
8
6
|
fieldset.column {
|
|
9
|
-
|
|
10
7
|
float: left;
|
|
11
8
|
margin-right: 15px;
|
|
12
|
-
|
|
13
|
-
}
|
|
9
|
+
}
|
|
14
10
|
|
|
15
11
|
.search-item {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
12
|
+
font: normal 11px tahoma, arial, helvetica, sans-serif;
|
|
13
|
+
padding: 2px;
|
|
14
|
+
border: 1px solid #fff;
|
|
15
|
+
border-bottom: 1px solid #eeeeee;
|
|
16
|
+
color: #555;
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
white-space: nowrap;
|
|
23
19
|
}
|
|
24
20
|
|
|
25
21
|
.search-column1 {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
float: left;
|
|
23
|
+
white-space: nowrap;
|
|
24
|
+
overflow: hidden;
|
|
30
25
|
}
|
|
31
26
|
|
|
32
27
|
.search-column2 {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
28
|
+
float: left;
|
|
29
|
+
text-align: right;
|
|
30
|
+
white-space: nowrap;
|
|
31
|
+
overflow: hidden;
|
|
37
32
|
}
|
|
38
33
|
|
|
39
|
-
|
|
40
34
|
.Atrium-ie8Compat .x-form-text {
|
|
41
|
-
|
|
35
|
+
margin: 0px 0px;
|
|
42
36
|
}
|
|
43
37
|
|
|
44
38
|
div.Atrium-macroDetails a:visited {
|
|
@@ -57,4 +51,151 @@ iframe.selector {
|
|
|
57
51
|
#btnDetectOnceChk button {
|
|
58
52
|
width: 90px;
|
|
59
53
|
text-align: left;
|
|
60
|
-
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
h3 {
|
|
57
|
+
margin-top: 3px;
|
|
58
|
+
font: bold 12px tahoma, arial, helvetica, sans-serif;
|
|
59
|
+
}
|
|
60
|
+
.atrium-ui-container {
|
|
61
|
+
display: flex;
|
|
62
|
+
width: 355px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.atrium-ui-imgbtn {
|
|
66
|
+
height: 25px;
|
|
67
|
+
width: 25px;
|
|
68
|
+
background: transparent;
|
|
69
|
+
border: none;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.atrium-ui-icon {
|
|
73
|
+
height: 20px;
|
|
74
|
+
width: 20px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.help-wdw-hdr {
|
|
78
|
+
padding-top: 10px;
|
|
79
|
+
padding-left: 10px;
|
|
80
|
+
font: normal 14.5px Segoe UI, tahoma, arial, helvetica, sans-serif;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.help-wdw-hdr-sm {
|
|
84
|
+
padding-top: 10px;
|
|
85
|
+
padding-left: 10px;
|
|
86
|
+
font: normal 13.5px Times New Roman, tahoma, arial, helvetica, sans-serif;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.help-wdw-text {
|
|
90
|
+
padding-top: 12px;
|
|
91
|
+
padding-left: 12px;
|
|
92
|
+
font: normal 15px Segoe UI, tahoma, arial, helvetica, sans-serif;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
ol li {
|
|
96
|
+
padding: 5px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.atrium-ui-mfawindow {
|
|
100
|
+
border: 1px solid black;
|
|
101
|
+
width: 380px;
|
|
102
|
+
height: 340px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.atrium-ui-heading {
|
|
106
|
+
font: normal 10.5px Segoe UI, tahoma, arial, helvetica, sans-serif;
|
|
107
|
+
font-size: 14px;
|
|
108
|
+
font-weight: bold;
|
|
109
|
+
width: 100%;
|
|
110
|
+
padding-left: 20px;
|
|
111
|
+
padding-top: 5%;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.atrium-ui-heading-auth {
|
|
115
|
+
font: normal 10.5px Segoe UI, tahoma, arial, helvetica, sans-serif;
|
|
116
|
+
font-size: 14px;
|
|
117
|
+
font-weight: bold;
|
|
118
|
+
width: 100%;
|
|
119
|
+
padding-left: 20px;
|
|
120
|
+
padding-top: 30px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.atrium-ui-qrcode {
|
|
124
|
+
width: 50%;
|
|
125
|
+
padding-left: 34%;
|
|
126
|
+
padding-top: 25px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.atrium-ui-acct {
|
|
130
|
+
font: Segoe UI, tahoma, arial, helvetica, sans-serif;
|
|
131
|
+
font-size: 10.5px;
|
|
132
|
+
width: 100%;
|
|
133
|
+
padding-left: 20%;
|
|
134
|
+
padding-top: 10px;
|
|
135
|
+
padding-bottom: 10px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.atrium-ui-acct-auth {
|
|
139
|
+
padding-left: 1%;
|
|
140
|
+
padding-bottom: 10px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.atrium-ui-error {
|
|
144
|
+
font: bold Segoe UI, tahoma, arial, helvetica, sans-serif;
|
|
145
|
+
font-size: 12px;
|
|
146
|
+
color: red;
|
|
147
|
+
width: 100%;
|
|
148
|
+
padding-left: 25%;
|
|
149
|
+
padding-top: 10px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.atrium-ui-mfa-input {
|
|
153
|
+
width: 100%;
|
|
154
|
+
padding-left: 28%;
|
|
155
|
+
padding-top: 15px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.atrium-ui-mfa-auth {
|
|
159
|
+
width: 100%;
|
|
160
|
+
padding-left: 15%;
|
|
161
|
+
padding-top: 15px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.atrium-ui-mfa-code {
|
|
165
|
+
height: 18px;
|
|
166
|
+
width: 12px;
|
|
167
|
+
padding-left: 5px;
|
|
168
|
+
padding-top: 2px;
|
|
169
|
+
border: 2px solid black;
|
|
170
|
+
border-radius: 20%;
|
|
171
|
+
font-weight: bold;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.atrium-ui-hidden {
|
|
175
|
+
border: none;
|
|
176
|
+
height: 0px;
|
|
177
|
+
width: 0px;
|
|
178
|
+
background-color: transparent;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.atrium-ui-time {
|
|
182
|
+
width: 100%;
|
|
183
|
+
font: normal 10.5px Segoe UI, tahoma, arial, helvetica, sans-serif;
|
|
184
|
+
font-size: 10px;
|
|
185
|
+
padding-left: 36%;
|
|
186
|
+
padding-top: 8px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.atrium-ui-time-auth {
|
|
190
|
+
padding-left: 27%;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.atrium-ui-error {
|
|
194
|
+
width: 100%;
|
|
195
|
+
font: normal 10.5px Segoe UI, tahoma, arial, helvetica, sans-serif;
|
|
196
|
+
font-size: 14px;
|
|
197
|
+
font-weight: bold;
|
|
198
|
+
color: red;
|
|
199
|
+
padding-left: 35px;
|
|
200
|
+
padding-top: 8px;
|
|
201
|
+
}
|
|
@@ -265,6 +265,11 @@
|
|
|
265
265
|
width: 18px;
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
+
.file-aiagent-json.x-menu-item-icon {
|
|
269
|
+
height: 20px;
|
|
270
|
+
width: 18px;
|
|
271
|
+
}
|
|
272
|
+
|
|
268
273
|
#apiFileFilterForm_categories .x-tree-node-icon {
|
|
269
274
|
display: none;
|
|
270
275
|
}
|
|
@@ -363,6 +368,14 @@
|
|
|
363
368
|
margin: 2px -2px -1px 2px;
|
|
364
369
|
}
|
|
365
370
|
|
|
371
|
+
.file-aiagent-json.x-tree-node-leaf .x-tree-node-icon {
|
|
372
|
+
background-image: url(/profoundui/proddata/images/FlatIcons/16x16/file-aiagent-json.svg);
|
|
373
|
+
width: 16px;
|
|
374
|
+
height: 19px;
|
|
375
|
+
margin: 2px -2px -1px 2px;
|
|
376
|
+
background-size: 16px 16px;
|
|
377
|
+
}
|
|
378
|
+
|
|
366
379
|
.clearFilterButton {
|
|
367
380
|
background-size: 75%;
|
|
368
381
|
}
|
|
@@ -998,4 +1011,39 @@ iframe.rundbgapp {
|
|
|
998
1011
|
border:none;
|
|
999
1012
|
height: calc(100% - 5px);
|
|
1000
1013
|
width:100%;
|
|
1001
|
-
}
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.pai-doc-icon {
|
|
1017
|
+
font-size: 14px;
|
|
1018
|
+
cursor: pointer;
|
|
1019
|
+
color: #666;
|
|
1020
|
+
padding: 3px;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
.pai-doc-icon:hover {
|
|
1024
|
+
color: #ef8200;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.pai-doc {
|
|
1028
|
+
font-size: 14px;
|
|
1029
|
+
color: #666;
|
|
1030
|
+
padding: 1px;
|
|
1031
|
+
margin-top: 5px;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.pai-copy-snippet-icon {
|
|
1035
|
+
position: absolute;
|
|
1036
|
+
right: 0px;
|
|
1037
|
+
top: 10px;
|
|
1038
|
+
color: #f9771b;
|
|
1039
|
+
cursor: pointer;
|
|
1040
|
+
border: 1px solid #ccc;
|
|
1041
|
+
border-radius: 5px;
|
|
1042
|
+
padding: 6px;
|
|
1043
|
+
font-size: 10px;
|
|
1044
|
+
background-color: #fff;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.pai-copy-snippet-icon:hover {
|
|
1048
|
+
background-color: #eee;
|
|
1049
|
+
}
|
|
@@ -632,6 +632,13 @@ button.pui-wf-dialog-save:hover {
|
|
|
632
632
|
width: 20px;
|
|
633
633
|
}
|
|
634
634
|
|
|
635
|
+
.button-generate-request {
|
|
636
|
+
width: 100%;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.button-add-element {
|
|
640
|
+
width: calc(35% - 10px);
|
|
641
|
+
}
|
|
635
642
|
|
|
636
643
|
.pui-wf-multi-div {
|
|
637
644
|
padding-top: 0px;
|
|
@@ -646,6 +653,14 @@ button.pui-wf-dialog-save:hover {
|
|
|
646
653
|
color: #666;
|
|
647
654
|
}
|
|
648
655
|
|
|
656
|
+
.pui-wf-multi-box-openapi-default {
|
|
657
|
+
width: calc(45% - 10px);
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.pui-wf-multi-box-openapi-default.pui-wf-multi-box-wide {
|
|
661
|
+
width: calc(45% + 5px);
|
|
662
|
+
}
|
|
663
|
+
|
|
649
664
|
.pui-wf-multi-box::placeholder {
|
|
650
665
|
color: #888;
|
|
651
666
|
}
|
|
@@ -1048,6 +1063,10 @@ textarea.pui-wf-multi-box {
|
|
|
1048
1063
|
border: 0px;
|
|
1049
1064
|
}
|
|
1050
1065
|
|
|
1066
|
+
.pui-wf-column-label.openapi-rows {
|
|
1067
|
+
width: 65%;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1051
1070
|
.pui-wf-column-label::placeholder {
|
|
1052
1071
|
color: #aaa;
|
|
1053
1072
|
}
|
|
@@ -1074,10 +1093,19 @@ input[type=number].pui-wf-column-box {
|
|
|
1074
1093
|
padding-bottom: 2px;
|
|
1075
1094
|
}
|
|
1076
1095
|
|
|
1096
|
+
input[type=text].pui-wf-column-box,
|
|
1097
|
+
input[type=number].pui-wf-column-box,openapi-field {
|
|
1098
|
+
width: 30%;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1077
1101
|
.pui-wf-column-box input.pui-wf-multi-box {
|
|
1078
1102
|
border-bottom: 1px dashed #ccc;
|
|
1079
1103
|
}
|
|
1080
1104
|
|
|
1105
|
+
.pui-wf-dynamic-wrap {
|
|
1106
|
+
display: flex;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1081
1109
|
.pui-wf-insert-dynamic {
|
|
1082
1110
|
display: block;
|
|
1083
1111
|
margin-top: 1px;
|
|
@@ -1635,3 +1663,7 @@ div.pui-wf-mask {
|
|
|
1635
1663
|
display: block;
|
|
1636
1664
|
}
|
|
1637
1665
|
|
|
1666
|
+
.pui-wf-question-label-err-msg {
|
|
1667
|
+
color: red;
|
|
1668
|
+
font-style: italic;
|
|
1669
|
+
}
|
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
.pai-chat {
|
|
2
|
+
position: fixed;
|
|
3
|
+
z-index: 999;
|
|
4
|
+
height: 85%;
|
|
5
|
+
width: 550px;
|
|
6
|
+
bottom: 10px;
|
|
7
|
+
right: 10px;
|
|
8
|
+
border: 2px solid #999;
|
|
9
|
+
border-radius: 6px;
|
|
10
|
+
background-color:#fff;
|
|
11
|
+
animation-name: pai-animate-chat;
|
|
12
|
+
animation-duration: 0.4s;
|
|
13
|
+
animation-fill-mode: forwards;
|
|
14
|
+
transform-origin: bottom right;
|
|
15
|
+
animation-timing-function: cubic-bezier(0, 1.2, 1, 1);
|
|
16
|
+
}
|
|
17
|
+
.x-panel .pai-chat {
|
|
18
|
+
position: absolute;
|
|
19
|
+
width: 70%;
|
|
20
|
+
right: 15%;
|
|
21
|
+
bottom: 5%;
|
|
22
|
+
animation-name: none;
|
|
23
|
+
}
|
|
24
|
+
.pai-chat.pai-dark {
|
|
25
|
+
background-color: #353c49;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@keyframes pai-animate-chat {
|
|
29
|
+
from {
|
|
30
|
+
transform: scale(0) translate(50%, 50%); /* Start scaled down at bottom right */
|
|
31
|
+
opacity: 0;
|
|
32
|
+
}
|
|
33
|
+
to {
|
|
34
|
+
transform: scale(1) translate(0, 0); /* Scale to full size and move to final position */
|
|
35
|
+
opacity: 1;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.pai-hidden {
|
|
40
|
+
display: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.pai-prompt-area {
|
|
44
|
+
margin: 20px auto;
|
|
45
|
+
padding: 7px;
|
|
46
|
+
padding-left: 10px;
|
|
47
|
+
border: 1px solid #999;
|
|
48
|
+
border-radius: 12px;
|
|
49
|
+
display: block;
|
|
50
|
+
width: 90%;
|
|
51
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
52
|
+
font-size: 18px;
|
|
53
|
+
}
|
|
54
|
+
.pai-dark .pai-prompt-area {
|
|
55
|
+
background-color: #47515f;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.pai-prompt-box {
|
|
59
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
60
|
+
font-size: 18px;
|
|
61
|
+
border: none;
|
|
62
|
+
outline: none;
|
|
63
|
+
width: calc(100% - 30px);
|
|
64
|
+
height: 21px;
|
|
65
|
+
margin-top: 5px;
|
|
66
|
+
padding: 0px;
|
|
67
|
+
resize: none;
|
|
68
|
+
}
|
|
69
|
+
.pai-dark .pai-prompt-box {
|
|
70
|
+
background-color: #47515f;
|
|
71
|
+
border-color: #47515f;
|
|
72
|
+
color: #fff;
|
|
73
|
+
}
|
|
74
|
+
.pai-dark .pai-prompt-box::placeholder {
|
|
75
|
+
color: #bdc7d8;
|
|
76
|
+
}
|
|
77
|
+
.pai-prompt-box::-webkit-scrollbar {
|
|
78
|
+
width: 8px;
|
|
79
|
+
background-color: #fff;
|
|
80
|
+
border-radius: 5px;
|
|
81
|
+
}
|
|
82
|
+
.pai-dark .pai-prompt-box::-webkit-scrollbar {
|
|
83
|
+
background-color: #47515f;
|
|
84
|
+
}
|
|
85
|
+
.pai-prompt-box::-webkit-scrollbar-thumb {
|
|
86
|
+
background-color: #ccc;
|
|
87
|
+
border-radius: 5px;
|
|
88
|
+
}
|
|
89
|
+
.pai-prompt-box::-webkit-scrollbar-thumb:hover {
|
|
90
|
+
background-color: #ddd;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.pai-message {
|
|
94
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
95
|
+
font-size: 14px;
|
|
96
|
+
padding: 15px;
|
|
97
|
+
border-bottom: 1px solid #ccc;
|
|
98
|
+
white-space: normal;
|
|
99
|
+
line-height: 23px;
|
|
100
|
+
display: block;
|
|
101
|
+
}
|
|
102
|
+
.pai-message:first-child {
|
|
103
|
+
border-top-right-radius: 4px;
|
|
104
|
+
border-top-left-radius: 4px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.pai-user-message {
|
|
108
|
+
background-color: #eee;
|
|
109
|
+
}
|
|
110
|
+
.pai-dark .pai-user-message {
|
|
111
|
+
background-color: #aaa;
|
|
112
|
+
color: #222;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.pai-greeting, .pai-agent-response {
|
|
116
|
+
background-color: #fff;
|
|
117
|
+
}
|
|
118
|
+
.pai-dark .pai-greeting, .pai-dark .pai-agent-response {
|
|
119
|
+
background-color: #47515f;
|
|
120
|
+
color: #fff;
|
|
121
|
+
}
|
|
122
|
+
.pai-heading {
|
|
123
|
+
font-weight: bold;
|
|
124
|
+
font-size: 20px;
|
|
125
|
+
text-align: center;
|
|
126
|
+
background-color: #fff;
|
|
127
|
+
padding: 25px;
|
|
128
|
+
}
|
|
129
|
+
.pai-dark .pai-heading {
|
|
130
|
+
background-color: #47515f;
|
|
131
|
+
background-image: linear-gradient( to right, #47515f, #353c49 );
|
|
132
|
+
color: #fff;
|
|
133
|
+
}
|
|
134
|
+
.pai-heading.pai-branded {
|
|
135
|
+
color: #fff;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.pai-error {
|
|
139
|
+
background-color: pink;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.pai-messages {
|
|
143
|
+
height: calc(100% - 75px);
|
|
144
|
+
overflow-y: auto;
|
|
145
|
+
}
|
|
146
|
+
.pai-messages::-webkit-scrollbar {
|
|
147
|
+
width: 8px;
|
|
148
|
+
background-color: #fff;
|
|
149
|
+
border-radius: 5px;
|
|
150
|
+
}
|
|
151
|
+
.pai-dark .pai-messages::-webkit-scrollbar {
|
|
152
|
+
background-color: #47515f;
|
|
153
|
+
}
|
|
154
|
+
.pai-messages::-webkit-scrollbar-thumb {
|
|
155
|
+
background-color: #ccc;
|
|
156
|
+
border-radius: 5px;
|
|
157
|
+
}
|
|
158
|
+
.pai-messages::-webkit-scrollbar-thumb:hover {
|
|
159
|
+
background-color: #ddd;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.pai-close-button {
|
|
163
|
+
position: absolute;
|
|
164
|
+
cursor: pointer;
|
|
165
|
+
right: 5px;
|
|
166
|
+
top: 5px;
|
|
167
|
+
border-radius: 15px;
|
|
168
|
+
width: 24px;
|
|
169
|
+
height: 24px;
|
|
170
|
+
border: 1px solid transparent;
|
|
171
|
+
user-select: none;
|
|
172
|
+
}
|
|
173
|
+
.pai-dark .pai-close-button svg {
|
|
174
|
+
fill: #fff;
|
|
175
|
+
}
|
|
176
|
+
.pai-close-button.pai-branded svg {
|
|
177
|
+
fill: #ddd;
|
|
178
|
+
}
|
|
179
|
+
.pai-close-button:hover {
|
|
180
|
+
background-color: #eee !important;
|
|
181
|
+
border: 1px solid #999;
|
|
182
|
+
}
|
|
183
|
+
.pai-close-button:hover svg {
|
|
184
|
+
fill: #000;
|
|
185
|
+
}
|
|
186
|
+
.pai-dark .pai-close-button:hover {
|
|
187
|
+
background-color: #ddd;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.pai-send-button {
|
|
191
|
+
display: inline-block;
|
|
192
|
+
width: 24px;
|
|
193
|
+
height: 24px;
|
|
194
|
+
padding: 3px;
|
|
195
|
+
cursor: pointer;
|
|
196
|
+
color: #ccc;
|
|
197
|
+
border-radius: 6px;
|
|
198
|
+
user-select: none;
|
|
199
|
+
}
|
|
200
|
+
.pai-send-button svg {
|
|
201
|
+
fill: #ccc;
|
|
202
|
+
}
|
|
203
|
+
.pai-send-button-active {
|
|
204
|
+
background-color: #333;
|
|
205
|
+
color: #fff;
|
|
206
|
+
}
|
|
207
|
+
.pai-send-button-active svg {
|
|
208
|
+
fill: #fff;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.pai-loader {
|
|
212
|
+
overflow: hidden;
|
|
213
|
+
display: flex;
|
|
214
|
+
align-items: center;
|
|
215
|
+
align-content: center;
|
|
216
|
+
justify-content: center;
|
|
217
|
+
padding-top: 18px;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.pai-loader-message {
|
|
221
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
222
|
+
font-size: 17px;
|
|
223
|
+
color: #555;
|
|
224
|
+
padding-right: 10px;
|
|
225
|
+
}
|
|
226
|
+
.pai-dark .pai-loader-message {
|
|
227
|
+
color: #ddd;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.pai-loader-dot {
|
|
231
|
+
border-radius: 100%;
|
|
232
|
+
border: 3px solid #555;
|
|
233
|
+
margin: 6px;
|
|
234
|
+
animation: pai-preloader .6s ease-in-out alternate infinite;
|
|
235
|
+
}
|
|
236
|
+
.pai-dark .pai-loader-dot {
|
|
237
|
+
border-color: #ddd;
|
|
238
|
+
}
|
|
239
|
+
.pai-loader-dot:nth-child(2) {
|
|
240
|
+
animation: pai-preloader .6s ease-in-out alternate .2s infinite;
|
|
241
|
+
}
|
|
242
|
+
.pai-loader-dot:nth-child(3) {
|
|
243
|
+
animation: pai-preloader .6s ease-in-out alternate .4s infinite;
|
|
244
|
+
}
|
|
245
|
+
.pai-inline-loader {
|
|
246
|
+
display: inline-block;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
@keyframes pai-preloader {
|
|
250
|
+
100% { transform: scale(2); }
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.pai-embed-icon {
|
|
254
|
+
position: fixed;
|
|
255
|
+
height: 24px;
|
|
256
|
+
width: 24px;
|
|
257
|
+
bottom: 25px;
|
|
258
|
+
right: 25px;
|
|
259
|
+
cursor: pointer;
|
|
260
|
+
border-radius: 25px;
|
|
261
|
+
padding: 12px;
|
|
262
|
+
background-color: #666;
|
|
263
|
+
}
|
|
264
|
+
.pai-embed-icon svg {
|
|
265
|
+
fill: #fff;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.pai-color-box-container {
|
|
269
|
+
display: flex;
|
|
270
|
+
flex-wrap: wrap;
|
|
271
|
+
padding-left: 10px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.pai-color-box {
|
|
275
|
+
display: inline-block;
|
|
276
|
+
width: 18px;
|
|
277
|
+
height: 18px;
|
|
278
|
+
cursor: pointer;
|
|
279
|
+
margin-right: 6px;
|
|
280
|
+
border-radius: 4px;
|
|
281
|
+
margin-bottom: 3px;
|
|
282
|
+
border: 2px solid #bbb;
|
|
283
|
+
user-select: none;
|
|
284
|
+
}
|
|
285
|
+
.pai-color-box:hover {
|
|
286
|
+
border: 2px solid #999;
|
|
287
|
+
}
|
|
288
|
+
.pai-color-box-selected, .pai-color-box-selected:hover {
|
|
289
|
+
border: 2px solid #333;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.pai-chart {
|
|
293
|
+
background-color: #fff;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.pai-function-name {
|
|
297
|
+
color: #333;
|
|
298
|
+
font-weight: bold;
|
|
299
|
+
background-color: #eee;
|
|
300
|
+
border: 1px solid #ccc;
|
|
301
|
+
border-radius: 4px;
|
|
302
|
+
padding: 2px 4px;
|
|
303
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" id="Outline" viewBox="0 0 24 24" width="512" height="512"><path d="M20,0H4A4,4,0,0,0,0,4V16a4,4,0,0,0,4,4H6.9l4.451,3.763a1,1,0,0,0,1.292,0L17.1,20H20a4,4,0,0,0,4-4V4A4,4,0,0,0,20,0Zm2,16a2,2,0,0,1-2,2H17.1a2,2,0,0,0-1.291.473L12,21.69,8.193,18.473h0A2,2,0,0,0,6.9,18H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H20a2,2,0,0,1,2,2Z"/><path d="M7,7h5a1,1,0,0,0,0-2H7A1,1,0,0,0,7,7Z"/><path d="M17,9H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z"/><path d="M17,13H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z"/></svg>
|