@hpcc-js/marshaller 2.28.6 → 2.28.7
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/LICENSE +43 -43
- package/dist/index.es6.js +19 -19
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +17 -17
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +16 -16
- package/src/__package__.ts +3 -3
- package/src/dashy.css +239 -239
- package/src/dashy.ts +521 -521
- package/src/ddl1/DDLApi.ts +229 -229
- package/src/ddl1/FlyoutButton.ts +120 -120
- package/src/ddl1/Graph.ts +93 -93
- package/src/ddl1/HTML.ts +77 -77
- package/src/ddl1/HipieDDL.ts +2437 -2437
- package/src/ddl1/HipieDDLMixin.ts +380 -380
- package/src/ddl1/Tabbed.ts +91 -91
- package/src/ddl1/TargetMarshaller.ts +57 -57
- package/src/ddl2/PopupManager.ts +89 -89
- package/src/ddl2/activities/activity.ts +431 -431
- package/src/ddl2/activities/databomb.ts +237 -237
- package/src/ddl2/activities/datasource.ts +52 -52
- package/src/ddl2/activities/dspicker.ts +106 -106
- package/src/ddl2/activities/filter.ts +542 -542
- package/src/ddl2/activities/form.ts +153 -153
- package/src/ddl2/activities/groupby.ts +439 -439
- package/src/ddl2/activities/hipiepipeline.ts +114 -114
- package/src/ddl2/activities/limit.ts +49 -49
- package/src/ddl2/activities/logicalfile.ts +62 -62
- package/src/ddl2/activities/nullview.ts +12 -12
- package/src/ddl2/activities/project.ts +764 -764
- package/src/ddl2/activities/rest.ts +568 -568
- package/src/ddl2/activities/roxie.ts +490 -490
- package/src/ddl2/activities/sampledata.json +16264 -16264
- package/src/ddl2/activities/sort.ts +176 -176
- package/src/ddl2/activities/wuresult.ts +395 -395
- package/src/ddl2/dashboard.css +13 -13
- package/src/ddl2/dashboard.ts +330 -330
- package/src/ddl2/dashboardDockPanel.ts +123 -123
- package/src/ddl2/dashboardGrid.ts +202 -202
- package/src/ddl2/ddl.ts +410 -410
- package/src/ddl2/ddleditor.ts +60 -60
- package/src/ddl2/dsTable.ts +238 -238
- package/src/ddl2/dvTable.ts +31 -31
- package/src/ddl2/graphadapter.ts +297 -297
- package/src/ddl2/javascriptadapter.ts +354 -354
- package/src/ddl2/model/element.ts +398 -398
- package/src/ddl2/model/visualization.ts +351 -351
- package/src/ddl2/model/vizChartPanel.ts +149 -149
- package/src/ddl2/pipelinePanel.css +4 -4
- package/src/ddl2/pipelinePanel.ts +465 -465
- package/src/index.ts +26 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/marshaller",
|
|
3
|
-
"version": "2.28.
|
|
3
|
+
"version": "2.28.7",
|
|
4
4
|
"description": "hpcc-js - Viz Marshaller",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es6",
|
|
@@ -38,20 +38,20 @@
|
|
|
38
38
|
"update": "npx --yes npm-check-updates -u -t minor"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@hpcc-js/chart": "^2.86.
|
|
42
|
-
"@hpcc-js/codemirror": "^2.66.
|
|
43
|
-
"@hpcc-js/common": "^2.73.
|
|
44
|
-
"@hpcc-js/comms": "^2.102.
|
|
45
|
-
"@hpcc-js/composite": "^2.9.
|
|
46
|
-
"@hpcc-js/ddl-shim": "^2.25.
|
|
47
|
-
"@hpcc-js/dgrid": "^2.34.
|
|
48
|
-
"@hpcc-js/form": "^2.12.
|
|
49
|
-
"@hpcc-js/graph": "^2.87.
|
|
50
|
-
"@hpcc-js/layout": "^2.51.
|
|
51
|
-
"@hpcc-js/map": "^2.79.
|
|
52
|
-
"@hpcc-js/other": "^2.17.
|
|
53
|
-
"@hpcc-js/phosphor": "^2.20.
|
|
54
|
-
"@hpcc-js/util": "^2.53.
|
|
41
|
+
"@hpcc-js/chart": "^2.86.3",
|
|
42
|
+
"@hpcc-js/codemirror": "^2.66.2",
|
|
43
|
+
"@hpcc-js/common": "^2.73.3",
|
|
44
|
+
"@hpcc-js/comms": "^2.102.2",
|
|
45
|
+
"@hpcc-js/composite": "^2.9.5",
|
|
46
|
+
"@hpcc-js/ddl-shim": "^2.25.1",
|
|
47
|
+
"@hpcc-js/dgrid": "^2.34.4",
|
|
48
|
+
"@hpcc-js/form": "^2.12.3",
|
|
49
|
+
"@hpcc-js/graph": "^2.87.3",
|
|
50
|
+
"@hpcc-js/layout": "^2.51.3",
|
|
51
|
+
"@hpcc-js/map": "^2.79.3",
|
|
52
|
+
"@hpcc-js/other": "^2.17.3",
|
|
53
|
+
"@hpcc-js/phosphor": "^2.20.4",
|
|
54
|
+
"@hpcc-js/util": "^2.53.3"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@hpcc-js/bundle": "^2.12.0",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
74
74
|
},
|
|
75
75
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "0907b8d15d369c89483954a1d96e2247ba020cb6"
|
|
77
77
|
}
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export const PKG_NAME = "@hpcc-js/marshaller";
|
|
2
|
-
export const PKG_VERSION = "2.28.6";
|
|
3
|
-
export const BUILD_VERSION = "2.108.6";
|
|
1
|
+
export const PKG_NAME = "@hpcc-js/marshaller";
|
|
2
|
+
export const PKG_VERSION = "2.28.6";
|
|
3
|
+
export const BUILD_VERSION = "2.108.6";
|
package/src/dashy.css
CHANGED
|
@@ -1,240 +1,240 @@
|
|
|
1
|
-
.graph_Graph .graphVertex > .subgraph .title rect {
|
|
2
|
-
fill: #dcf1ff;
|
|
3
|
-
border-bottom-width:0px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.graph_Graph .graphVertex > .subgraph .title text {
|
|
7
|
-
fill: black;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.graph_Graph .graphVertex > .subgraph rect {
|
|
11
|
-
fill: none;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.graph_Graph .graphVertex > .subgraph.selected rect {
|
|
15
|
-
stroke:red !important;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.graph_Graph .graphVertex .graph_Vertex.selected .common_Shape {
|
|
19
|
-
stroke:red !important;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.graph_Graph .common_Surface .common_Menu {
|
|
23
|
-
visibility: hidden;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.p-MenuBar {
|
|
27
|
-
padding-left: 5px;
|
|
28
|
-
background: #FAFAFA;
|
|
29
|
-
color: rgba(0, 0, 0, 0.87);
|
|
30
|
-
border-bottom: 1px solid #DDDDDD;
|
|
31
|
-
font: 13px Helvetica, Arial, sans-serif;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.p-MenuBar-menu {
|
|
35
|
-
transform: translateY(-1px);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.p-MenuBar-item {
|
|
39
|
-
padding: 4px 8px;
|
|
40
|
-
border-left: 1px solid transparent;
|
|
41
|
-
border-right: 1px solid transparent;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
.p-MenuBar-item.p-mod-active {
|
|
46
|
-
background: #E5E5E5;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
.p-MenuBar.p-mod-active .p-MenuBar-item.p-mod-active {
|
|
51
|
-
z-index: 10001;
|
|
52
|
-
background: white;
|
|
53
|
-
border-left: 1px solid #C0C0C0;
|
|
54
|
-
border-right: 1px solid #C0C0C0;
|
|
55
|
-
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.p-Menu {
|
|
59
|
-
padding: 3px 0px;
|
|
60
|
-
background: white;
|
|
61
|
-
color: rgba(0, 0, 0, 0.87);
|
|
62
|
-
border: 1px solid #C0C0C0;
|
|
63
|
-
font: 12px Helvetica, Arial, sans-serif;
|
|
64
|
-
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
.p-Menu-item.p-mod-active {
|
|
69
|
-
background: #E5E5E5;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
.p-Menu-item.p-mod-disabled {
|
|
74
|
-
color: rgba(0, 0, 0, 0.25);
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
.p-Menu-itemIcon {
|
|
79
|
-
width: 21px;
|
|
80
|
-
padding: 4px 2px;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
.p-Menu-itemLabel {
|
|
85
|
-
padding: 4px 35px 4px 2px;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
.p-Menu-itemMnemonic {
|
|
90
|
-
text-decoration: underline;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
.p-Menu-itemShortcut {
|
|
95
|
-
padding: 4px 0px;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
.p-Menu-itemSubmenuIcon {
|
|
100
|
-
width: 16px;
|
|
101
|
-
padding: 4px 0px;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
.p-Menu-item[data-type='separator'] > div {
|
|
106
|
-
padding: 0;
|
|
107
|
-
height: 9px;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
.p-Menu-item[data-type='separator'] > div::after {
|
|
112
|
-
content: '';
|
|
113
|
-
display: block;
|
|
114
|
-
position: relative;
|
|
115
|
-
top: 4px;
|
|
116
|
-
border-top: 1px solid #DDDDDD;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
.p-Menu-itemIcon::before,
|
|
121
|
-
.p-Menu-itemSubmenuIcon::before {
|
|
122
|
-
font-family: FontAwesome;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
.p-Menu-item.p-mod-toggled > .p-Menu-itemIcon::before {
|
|
127
|
-
content: '\f00c';
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
.p-Menu-item[data-type='submenu'] > .p-Menu-itemSubmenuIcon::before {
|
|
132
|
-
content: '\f0da';
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
/*-----------------------------------------------------------------------------
|
|
136
|
-
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
|
137
|
-
|
|
|
138
|
-
| Distributed under the terms of the BSD 3-Clause License.
|
|
139
|
-
|
|
|
140
|
-
| The full license is in the file LICENSE, distributed with this software.
|
|
141
|
-
|----------------------------------------------------------------------------*/
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
.p-CommandPalette {
|
|
145
|
-
font-family: sans-serif;
|
|
146
|
-
background: #F5F5F5;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
.p-CommandPalette-search {
|
|
151
|
-
padding: 8px;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
.p-CommandPalette-wrapper {
|
|
156
|
-
padding: 4px 6px;
|
|
157
|
-
background: white;
|
|
158
|
-
border: 1px solid #E0E0E0;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
.p-CommandPalette-input {
|
|
163
|
-
width: 100%;
|
|
164
|
-
border: none;
|
|
165
|
-
outline: none;
|
|
166
|
-
font-size: 16px;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
.p-CommandPalette-header {
|
|
171
|
-
padding: 4px;
|
|
172
|
-
color: #757575;
|
|
173
|
-
font-size: 12px;
|
|
174
|
-
font-weight: 600;
|
|
175
|
-
background: #E1E1E1;
|
|
176
|
-
cursor: pointer;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
.p-CommandPalette-header:hover::before {
|
|
181
|
-
content: '\2026'; /* ellipsis */
|
|
182
|
-
float: right;
|
|
183
|
-
margin-right: 4px;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
.p-CommandPalette-header > mark {
|
|
188
|
-
background-color: transparent;
|
|
189
|
-
font-weight: bold;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
.p-CommandPalette-item {
|
|
194
|
-
padding: 4px 8px;
|
|
195
|
-
color: #757575;
|
|
196
|
-
font-size: 13px;
|
|
197
|
-
font-weight: 500;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
.p-CommandPalette-emptyMessage {
|
|
202
|
-
padding: 4px;
|
|
203
|
-
color: #757575;
|
|
204
|
-
font-size: 12px;
|
|
205
|
-
font-weight: 600;
|
|
206
|
-
text-align: center;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
.p-CommandPalette-item.p-mod-disabled {
|
|
211
|
-
color: rgba(0, 0, 0, 0.25);
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
.p-CommandPalette-item.p-mod-active {
|
|
216
|
-
background: #7FDBFF;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
.p-CommandPalette-item:hover:not(.p-mod-active):not(.p-mod-disabled) {
|
|
221
|
-
background: #E5E5E5;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
.p-CommandPalette-itemLabel > mark {
|
|
226
|
-
background-color: transparent;
|
|
227
|
-
font-weight: bold;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
.p-CommandPalette-item.p-mod-disabled mark {
|
|
232
|
-
color: rgba(0, 0, 0, 0.4);
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
.p-CommandPalette-itemCaption {
|
|
237
|
-
color: #9E9E9E;
|
|
238
|
-
font-size: 11px;
|
|
239
|
-
font-weight: 400;
|
|
1
|
+
.graph_Graph .graphVertex > .subgraph .title rect {
|
|
2
|
+
fill: #dcf1ff;
|
|
3
|
+
border-bottom-width:0px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.graph_Graph .graphVertex > .subgraph .title text {
|
|
7
|
+
fill: black;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.graph_Graph .graphVertex > .subgraph rect {
|
|
11
|
+
fill: none;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.graph_Graph .graphVertex > .subgraph.selected rect {
|
|
15
|
+
stroke:red !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.graph_Graph .graphVertex .graph_Vertex.selected .common_Shape {
|
|
19
|
+
stroke:red !important;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.graph_Graph .common_Surface .common_Menu {
|
|
23
|
+
visibility: hidden;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.p-MenuBar {
|
|
27
|
+
padding-left: 5px;
|
|
28
|
+
background: #FAFAFA;
|
|
29
|
+
color: rgba(0, 0, 0, 0.87);
|
|
30
|
+
border-bottom: 1px solid #DDDDDD;
|
|
31
|
+
font: 13px Helvetica, Arial, sans-serif;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-MenuBar-menu {
|
|
35
|
+
transform: translateY(-1px);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.p-MenuBar-item {
|
|
39
|
+
padding: 4px 8px;
|
|
40
|
+
border-left: 1px solid transparent;
|
|
41
|
+
border-right: 1px solid transparent;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
.p-MenuBar-item.p-mod-active {
|
|
46
|
+
background: #E5E5E5;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
.p-MenuBar.p-mod-active .p-MenuBar-item.p-mod-active {
|
|
51
|
+
z-index: 10001;
|
|
52
|
+
background: white;
|
|
53
|
+
border-left: 1px solid #C0C0C0;
|
|
54
|
+
border-right: 1px solid #C0C0C0;
|
|
55
|
+
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.p-Menu {
|
|
59
|
+
padding: 3px 0px;
|
|
60
|
+
background: white;
|
|
61
|
+
color: rgba(0, 0, 0, 0.87);
|
|
62
|
+
border: 1px solid #C0C0C0;
|
|
63
|
+
font: 12px Helvetica, Arial, sans-serif;
|
|
64
|
+
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
.p-Menu-item.p-mod-active {
|
|
69
|
+
background: #E5E5E5;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
.p-Menu-item.p-mod-disabled {
|
|
74
|
+
color: rgba(0, 0, 0, 0.25);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
.p-Menu-itemIcon {
|
|
79
|
+
width: 21px;
|
|
80
|
+
padding: 4px 2px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
.p-Menu-itemLabel {
|
|
85
|
+
padding: 4px 35px 4px 2px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
.p-Menu-itemMnemonic {
|
|
90
|
+
text-decoration: underline;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
.p-Menu-itemShortcut {
|
|
95
|
+
padding: 4px 0px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
.p-Menu-itemSubmenuIcon {
|
|
100
|
+
width: 16px;
|
|
101
|
+
padding: 4px 0px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
.p-Menu-item[data-type='separator'] > div {
|
|
106
|
+
padding: 0;
|
|
107
|
+
height: 9px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
.p-Menu-item[data-type='separator'] > div::after {
|
|
112
|
+
content: '';
|
|
113
|
+
display: block;
|
|
114
|
+
position: relative;
|
|
115
|
+
top: 4px;
|
|
116
|
+
border-top: 1px solid #DDDDDD;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
.p-Menu-itemIcon::before,
|
|
121
|
+
.p-Menu-itemSubmenuIcon::before {
|
|
122
|
+
font-family: FontAwesome;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
.p-Menu-item.p-mod-toggled > .p-Menu-itemIcon::before {
|
|
127
|
+
content: '\f00c';
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
.p-Menu-item[data-type='submenu'] > .p-Menu-itemSubmenuIcon::before {
|
|
132
|
+
content: '\f0da';
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/*-----------------------------------------------------------------------------
|
|
136
|
+
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
|
137
|
+
|
|
|
138
|
+
| Distributed under the terms of the BSD 3-Clause License.
|
|
139
|
+
|
|
|
140
|
+
| The full license is in the file LICENSE, distributed with this software.
|
|
141
|
+
|----------------------------------------------------------------------------*/
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
.p-CommandPalette {
|
|
145
|
+
font-family: sans-serif;
|
|
146
|
+
background: #F5F5F5;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
.p-CommandPalette-search {
|
|
151
|
+
padding: 8px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
.p-CommandPalette-wrapper {
|
|
156
|
+
padding: 4px 6px;
|
|
157
|
+
background: white;
|
|
158
|
+
border: 1px solid #E0E0E0;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
.p-CommandPalette-input {
|
|
163
|
+
width: 100%;
|
|
164
|
+
border: none;
|
|
165
|
+
outline: none;
|
|
166
|
+
font-size: 16px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
.p-CommandPalette-header {
|
|
171
|
+
padding: 4px;
|
|
172
|
+
color: #757575;
|
|
173
|
+
font-size: 12px;
|
|
174
|
+
font-weight: 600;
|
|
175
|
+
background: #E1E1E1;
|
|
176
|
+
cursor: pointer;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
.p-CommandPalette-header:hover::before {
|
|
181
|
+
content: '\2026'; /* ellipsis */
|
|
182
|
+
float: right;
|
|
183
|
+
margin-right: 4px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
.p-CommandPalette-header > mark {
|
|
188
|
+
background-color: transparent;
|
|
189
|
+
font-weight: bold;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
.p-CommandPalette-item {
|
|
194
|
+
padding: 4px 8px;
|
|
195
|
+
color: #757575;
|
|
196
|
+
font-size: 13px;
|
|
197
|
+
font-weight: 500;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
.p-CommandPalette-emptyMessage {
|
|
202
|
+
padding: 4px;
|
|
203
|
+
color: #757575;
|
|
204
|
+
font-size: 12px;
|
|
205
|
+
font-weight: 600;
|
|
206
|
+
text-align: center;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
.p-CommandPalette-item.p-mod-disabled {
|
|
211
|
+
color: rgba(0, 0, 0, 0.25);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
.p-CommandPalette-item.p-mod-active {
|
|
216
|
+
background: #7FDBFF;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
.p-CommandPalette-item:hover:not(.p-mod-active):not(.p-mod-disabled) {
|
|
221
|
+
background: #E5E5E5;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
.p-CommandPalette-itemLabel > mark {
|
|
226
|
+
background-color: transparent;
|
|
227
|
+
font-weight: bold;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
.p-CommandPalette-item.p-mod-disabled mark {
|
|
232
|
+
color: rgba(0, 0, 0, 0.4);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
.p-CommandPalette-itemCaption {
|
|
237
|
+
color: #9E9E9E;
|
|
238
|
+
font-size: 11px;
|
|
239
|
+
font-weight: 400;
|
|
240
240
|
}
|