Skip to content

Commit 3d3368a

Browse files
chore(): update sponsors
1 parent 07ffd3e commit 3d3368a

File tree

7 files changed

+21
-11
lines changed

7 files changed

+21
-11
lines changed

angular.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"src/_redirects"
2828
],
2929
"styles": [
30-
"src/styles.scss"
30+
"src/styles.scss",
31+
"src/assets/css/perfect-scrollbar.min.css"
3132
]
3233
},
3334
"configurations": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"scripts": {
66
"ng": "ng",
77
"prestart": "npm run docs",
8-
"start": "ng serve --source-map=false",
9-
"start:watch": "ng serve --source-map=false --watch",
8+
"start": "ng serve",
9+
"start:watch": "ng serve --watch",
1010
"prebuild": "npm run docs",
1111
"build": "ng build --deleteOutputPath=false",
1212
"build:watch": "concurrently \"nodemon --config nodemon.json\" \"npm run start:watch\"",

src/app/homepage/homepage.component.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h4 class="title">Principal Sponsors</h4>
2929
<a href="https://trilon.io/" target="_blank" class="logo-sponsor-container">
3030
<img
3131
src="/assets/sponsors/trilon.svg"
32-
alt="Trilon Logo"
32+
alt="Trilon Logo"
3333
class="logo-sponsor"
3434
/>
3535
</a>
@@ -51,6 +51,13 @@ <h4 class="title">Principal Sponsors</h4>
5151
class="logo-sponsor logo-sponsor--slim"
5252
/>
5353
</a>
54+
<a href="https://valor-software.com/" target="_blank" class="logo-sponsor-container">
55+
<img
56+
src="/assets/sponsors/valor-software.png"
57+
alt="Valor Software Logo"
58+
class="logo-sponsor logo-sponsor--high"
59+
/>
60+
</a>
5461
</div>
5562
<div class="inline-column">
5663
<h4 class="title">Sponsors / Partners</h4>

src/app/homepage/homepage.component.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
display: inline-block;
175175
margin-top: 10px;
176176
margin-right: 15px;
177-
margin-bottom: 10px;
177+
margin-bottom: 5px;
178178

179179
&:last-of-type {
180180
margin-right: 0;
@@ -198,6 +198,10 @@
198198
}
199199
}
200200

201+
.logo-sponsor--high {
202+
width: 160px;
203+
}
204+
201205
.logo-sponsor--slim {
202206
width: auto;
203207
max-height: 40px;

src/app/homepage/pages/microservices/custom-transport/custom-transport.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ <h4 appAnchor id="message-serialization"><span>Message serialization</span></h4>
197197
<p>If you need to add some custom logic around the serialization of responses on the client side, you can use a custom class that extends the <code>ClientProxy</code> class or one of its child classes. For modifying successful requests you can override the <code>serializeResponse</code> method, and for modifying any errors that go through this client you can override the <code>serializeError</code> method. To make use of this custom class, you can pass the class itself to the <code>ClientsModule.register()</code> method using the <code>customClass</code> property. Below is an example of a custom <code>ClientProxy</code> that serializes each error into an <code>RpcException</code>.</p>
198198

199199
<span class="filename">
200-
{{ 'error-handling.proxy' | extension: app2263b3d96154c591a9c54ebbdf6146bd75db55d7.isJsActive }}
201-
<app-tabs #app2263b3d96154c591a9c54ebbdf6146bd75db55d7></app-tabs>
200+
{{ 'error-handling.proxy' | extension: appb343ba56a963d2bc961042780358b44371c1ecc0.isJsActive }}
201+
<app-tabs #appb343ba56a963d2bc961042780358b44371c1ecc0></app-tabs>
202202
</span><pre><code class="language-typescript">
203203
import &#123; ClientTcp, RpcException &#125; from &#39;@nestjs/microservices&#39;;
204204

@@ -210,8 +210,8 @@ <h4 appAnchor id="message-serialization"><span>Message serialization</span></h4>
210210
</code></pre><p>and then use it in the <code>ClientsModule</code> like so:</p>
211211

212212
<span class="filename">
213-
{{ 'app.module' | extension: appb7972fa52d3b14a2039a636aee226e523fca8eed.isJsActive }}
214-
<app-tabs #appb7972fa52d3b14a2039a636aee226e523fca8eed></app-tabs>
213+
{{ 'app.module' | extension: appc88071ee33e5634ca2bdf05d50d563b297044a88.isJsActive }}
214+
<app-tabs #appc88071ee33e5634ca2bdf05d50d563b297044a88></app-tabs>
215215
</span><pre><code class="language-typescript">
216216
@Module(&#123;
217217
imports: [

src/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
defer
7171
src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"
7272
></script>
73-
<link href="assets/css/perfect-scrollbar.min.css" rel="stylesheet" />
7473
<link href="https://cdn.carbonads.com" rel="preconnect" crossorigin>
7574
<link href="https://cdn.jsdelivr.net" rel="preconnect" crossorigin>
7675
<link

src/scss/utils.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ $screen-xlarge: 'only screen and (max-width: 1349px)';
135135

136136
/* CLEARFIX */
137137
%clearfix {
138-
*zoom: 1;
139138
&:before,
140139
&:after {
141140
content: ' ';

0 commit comments

Comments
 (0)