@theia/core 1.23.0-next.47 → 1.23.0-next.48
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/README.md +3 -3
- package/package.json +3 -3
- package/src/browser/style/index.css +19 -1
package/README.md
CHANGED
|
@@ -86,9 +86,9 @@ export class SomeClass {
|
|
|
86
86
|
- `@phosphor/signaling` (from [`@phosphor/signaling@1`](https://www.npmjs.com/package/@phosphor/signaling))
|
|
87
87
|
- `@phosphor/virtualdom` (from [`@phosphor/virtualdom@1`](https://www.npmjs.com/package/@phosphor/virtualdom))
|
|
88
88
|
- `@phosphor/widgets` (from [`@phosphor/widgets@1`](https://www.npmjs.com/package/@phosphor/widgets))
|
|
89
|
-
- `@theia/application-package` (from [`@theia/application-package@1.23.0-next.
|
|
90
|
-
- `@theia/application-package/lib/api` (from [`@theia/application-package@1.23.0-next.
|
|
91
|
-
- `@theia/application-package/lib/environment` (from [`@theia/application-package@1.23.0-next.
|
|
89
|
+
- `@theia/application-package` (from [`@theia/application-package@1.23.0-next.48+55bd2c52684`](https://www.npmjs.com/package/@theia/application-package/v/1.23.0-next.48))
|
|
90
|
+
- `@theia/application-package/lib/api` (from [`@theia/application-package@1.23.0-next.48+55bd2c52684`](https://www.npmjs.com/package/@theia/application-package/v/1.23.0-next.48))
|
|
91
|
+
- `@theia/application-package/lib/environment` (from [`@theia/application-package@1.23.0-next.48+55bd2c52684`](https://www.npmjs.com/package/@theia/application-package/v/1.23.0-next.48))
|
|
92
92
|
- `fs-extra` (from [`fs-extra@^4.0.2`](https://www.npmjs.com/package/fs-extra))
|
|
93
93
|
- `fuzzy` (from [`fuzzy@^0.1.3`](https://www.npmjs.com/package/fuzzy))
|
|
94
94
|
- `inversify` (from [`inversify@^5.1.1`](https://www.npmjs.com/package/inversify))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/core",
|
|
3
|
-
"version": "1.23.0-next.
|
|
3
|
+
"version": "1.23.0-next.48+55bd2c52684",
|
|
4
4
|
"description": "Theia is a cloud & desktop IDE framework implemented in TypeScript.",
|
|
5
5
|
"main": "lib/common/index.js",
|
|
6
6
|
"typings": "lib/common/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@phosphor/virtualdom": "1",
|
|
18
18
|
"@phosphor/widgets": "1",
|
|
19
19
|
"@primer/octicons-react": "^9.0.0",
|
|
20
|
-
"@theia/application-package": "1.23.0-next.
|
|
20
|
+
"@theia/application-package": "1.23.0-next.48+55bd2c52684",
|
|
21
21
|
"@types/body-parser": "^1.16.4",
|
|
22
22
|
"@types/cookie": "^0.3.3",
|
|
23
23
|
"@types/dompurify": "^2.2.2",
|
|
@@ -189,5 +189,5 @@
|
|
|
189
189
|
"nyc": {
|
|
190
190
|
"extends": "../../configs/nyc.json"
|
|
191
191
|
},
|
|
192
|
-
"gitHead": "
|
|
192
|
+
"gitHead": "55bd2c5268429cb0a0af909986110e0e1879e276"
|
|
193
193
|
}
|
|
@@ -99,12 +99,30 @@ blockquote {
|
|
|
99
99
|
bottom: 0;
|
|
100
100
|
z-index: 50000;
|
|
101
101
|
background: var(--theia-editor-background);
|
|
102
|
-
background-image: var(--theia-preloader);
|
|
103
102
|
background-size: 60px 60px;
|
|
104
103
|
background-repeat: no-repeat;
|
|
105
104
|
background-attachment: fixed;
|
|
106
105
|
background-position: center;
|
|
107
106
|
transition: opacity 0.8s;
|
|
107
|
+
display: flex;
|
|
108
|
+
justify-content: center;
|
|
109
|
+
align-items: center;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.theia-preload::after {
|
|
113
|
+
animation: 1s theia-preload-rotate infinite;
|
|
114
|
+
color: #777; /* color works on both light and dark themes */
|
|
115
|
+
content: "\eb19"; /* codicon-load */
|
|
116
|
+
font: normal normal normal 72px/1 codicon;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
@keyframes theia-preload-rotate {
|
|
120
|
+
0% {
|
|
121
|
+
transform: rotate(0deg);
|
|
122
|
+
}
|
|
123
|
+
100% {
|
|
124
|
+
transform: rotate(360deg);
|
|
125
|
+
}
|
|
108
126
|
}
|
|
109
127
|
|
|
110
128
|
.theia-preload.theia-hidden {
|