Skip to content

Commit cbc7225

Browse files
committed
update client deps
1 parent caece12 commit cbc7225

File tree

13 files changed

+70
-37
lines changed

13 files changed

+70
-37
lines changed

src/ServiceStack.Client/ServiceClientBase.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1091,10 +1091,11 @@ protected WebRequest PrepareWebRequest(string httpMethod, string requestUri, obj
10911091

10921092
private void ApplyWebResponseFilters(WebResponse webResponse)
10931093
{
1094-
if (webResponse is not HttpWebResponse) return;
1094+
if (webResponse is not HttpWebResponse response)
1095+
return;
10951096

1096-
ResponseFilter?.Invoke((HttpWebResponse)webResponse);
1097-
GlobalResponseFilter?.Invoke((HttpWebResponse)webResponse);
1097+
ResponseFilter?.Invoke(response);
1098+
GlobalResponseFilter?.Invoke(response);
10981099
}
10991100

11001101
private void ApplyWebRequestFilters(HttpWebRequest client)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
x run import.sc

src/ServiceStack.Desktop/import.sc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
'vue/vue.min.js': 'https://unpkg.com/vue/dist/vue.min.js',
1010
'vue-class-component/vue-class-component.min.js': 'https://unpkg.com/vue-class-component/dist/vue-class-component.min.js',
1111
'vue-property-decorator/vue-property-decorator.min.js': 'https://unpkg.com/vue-property-decorator',
12-
'vue-router/vue-router.min.js': 'https://unpkg.com/vue-router/dist/vue-router.min.js',
12+
'vue-router/vue-router.min.js': 'https://unpkg.com/react-router/react-router.production.min.js',
1313
'vuex/vuex.min.js': 'https://unpkg.com/vuex/dist/vuex.min.js',
1414
'portal-vue/portal-vue.min.js': 'https://unpkg.com/portal-vue/dist/portal-vue.umd.min.js',
1515
'bootstrap-vue/bootstrap-vue.min.js': 'https://unpkg.com/bootstrap-vue/dist/bootstrap-vue.min.js',
1616

1717
'react/react.production.min.js':'https://unpkg.com/react/umd/react.production.min.js',
1818
'react-dom/react-dom.production.min.js':'https://unpkg.com/react-dom/umd/react-dom.production.min.js',
19-
'react-router/react-router.min.js':'https://unpkg.com/react-router/umd/react-router.min.js',
20-
'react-router-dom/react-router-dom.min.js':'https://unpkg.com/react-router-dom/umd/react-router-dom.min.js',
19+
'react-router/react-router.min.js':'https://unpkg.com/react-router/umd/react-router.production.min.js',
20+
'react-router-dom/react-router-dom.min.js':'https://unpkg.com/react-router-dom/umd/react-router-dom.production.min.js',
2121
'mobx/mobx.min.js': 'https://unpkg.com/mobx/dist/mobx.umd.production.min.js',
2222
'redux/redux.min.js': 'https://unpkg.com/redux/dist/redux.min.js',
2323
'react-redux/react-redux.min.js': 'https://unpkg.com/react-redux/dist/react-redux.min.js',

src/ServiceStack.Desktop/lib/css/bootstrap/bootstrap.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ServiceStack.Desktop/lib/css/litewind/litewind.css

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ FORM [type=checkbox]+label, FORM label+[type=checkbox] {
211211
.-top-4{top: -1.0rem;}
212212
.-top-6{top: -1.5rem;}
213213

214-
.flex{display:flex} .block{display:block} .inline-block{display:inline-block} .inline{display:inline} .grid{display:grid} .hidden{display:none}.table-cell{display:table-cell}
214+
.flex{display:flex} .block{display:block} .inline-block{display:inline-block} .inline{display:inline} .inline-flex{display: inline-flex} .grid{display:grid} .hidden{display:none}.table-cell{display:table-cell}
215215
.visible{visibility:visible} .invisible{visibility:hidden}
216216
.flex-1{flex: 1 1 0} .flex-auto{flex: 1 1 auto} .flex-initial{flex: 0 1 auto} .flex-none{flex: none} .flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}
217217
.flex-row{flex-direction:row} .flex-row-reverse{ flex-direction:row-reverse}
@@ -293,6 +293,7 @@ FORM [type=checkbox]+label, FORM label+[type=checkbox] {
293293
.bg-red-600{--tw-bg-opacity:1;background-color:rgba(220, 38, 38,var(--tw-bg-opacity))}
294294
.bg-red-700{--tw-bg-opacity:1;background-color: rgba(185, 28, 28, var(--tw-bg-opacity))}
295295
.bg-yellow-50{--tw-bg-opacity:1;background-color:rgba(255, 251, 235,var(--tw-bg-opacity))}
296+
.bg-yellow-100{--tw-bg-opacity:1;background-color:rgba(254,243,199,var(--tw-bg-opacity))}
296297
.bg-green-50{--tw-bg-opacity:1;background-color:rgba(236, 253, 245,var(--tw-bg-opacity))}
297298
.bg-blue-50{--tw-bg-opacity:1;background-color:rgba(239, 246, 255,var(--tw-bg-opacity))}
298299
.bg-blue-100{--tw-bg-opacity:1;background-color:rgba(219, 234, 254,var(--tw-bg-opacity))}
@@ -305,6 +306,10 @@ FORM [type=checkbox]+label, FORM label+[type=checkbox] {
305306
.bg-indigo-500{--tw-bg-opacity:1;background-color:rgba(99, 102, 241,var(--tw-bg-opacity))}
306307
.bg-indigo-600{--tw-bg-opacity:1;background-color:rgba(79, 70, 229,var(--tw-bg-opacity))}
307308
.bg-indigo-700{--tw-bg-opacity:1;background-color:rgba(67, 56, 202,var(--tw-bg-opacity))}
309+
.bg-purple-50{--tw-bg-opacity:1;background-color:rgba(245, 243, 255,var(--tw-bg-opacity))}
310+
.bg-purple-500{--tw-bg-opacity:1;background-color:rgba(139, 92, 246,var(--tw-bg-opacity))}
311+
.bg-purple-600{--tw-bg-opacity:1;background-color:rgba(124, 58, 237,var(--tw-bg-opacity))}
312+
.bg-purple-700{--tw-bg-opacity:1;background-color:rgba(109, 40, 217,var(--tw-bg-opacity))}
308313

309314
.from-transparent{--tw-gradient-from: transparent;--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0))}
310315
.from-current{--tw-gradient-from: currentColor;--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))}
@@ -377,16 +382,19 @@ FORM [type=checkbox]+label, FORM label+[type=checkbox] {
377382
.text-gray-900{--tw-text-opacity:1;color:rgba(17, 24, 39,var(--tw-text-opacity))}
378383
.text-red-600{--tw-text-opacity:1;color:rgba(220, 38, 38,var(--tw-text-opacity))}
379384
.text-red-700{--tw-text-opacity:1;color:rgba(185, 28, 28,var(--tw-text-opacity))}
385+
.text-red-800{--tw-text-opacity:1;color:rgba(153,27,27,var(--tw-text-opacity))}
380386
.text-red-darkest{color:#420806}.text-red-darker{color:#6a1b19}.text-red-dark{color:#cc1f1a}.text-red{color:#e3342f}.text-red-light{color:#ef5753}.text-red-lighter{color:#f9acaa}.text-red-lightest{color:#fcebea}
381387
.text-yellow-50{--tw-text-opacity:1;color:rgba(245, 158, 11,var(--tw-text-opacity))}
382388
.text-yellow-700{--tw-text-opacity:1;color:rgba(180, 83, 9,var(--tw-text-opacity))}
389+
.text-yellow-800{--tw-text-opacity:1;color: rgba(146,64,14,var(--tw-text-opacity))}
383390
.text-blue-300{--tw-text-opacity:1;color:rgba(147, 197, 253,var(--tw-text-opacity))}
384391
.text-blue-400{--tw-text-opacity:1;color:rgba(96, 165, 250,var(--tw-text-opacity))}
385392
.text-blue-500{--tw-text-opacity:1;color:rgba(59, 130, 246,var(--tw-text-opacity))}
386393
.text-blue-600{--tw-text-opacity:1;color:rgba(37, 99, 235,var(--tw-text-opacity))}
387394
.text-blue-700{--tw-text-opacity:1;color:rgba(29, 78, 216,var(--tw-text-opacity))}
388395
.text-blue-800{--tw-text-opacity:1;color: rgba(30, 64, 175, var(--tw-text-opacity))}
389-
.text-indigo-600{--tw-text-opacity:1;color: rgba(79, 70, 229,, var(--tw-text-opacity))}
396+
.text-indigo-600{--tw-text-opacity:1;color: rgba(79, 70, 229, var(--tw-text-opacity))}
397+
.text-purple-500{--tw-text-opacity:1;color: rgba(139, 92, 246, var(--tw-text-opacity))}
390398
.text-green-50{--tw-text-opacity:1;color: rgba(236, 253, 245, var(--tw-text-opacity))}
391399
.text-green-500{--tw-text-opacity:1;color: rgba(16, 185, 129, var(--tw-text-opacity))}
392400
.text-green-600{--tw-text-opacity:1;color: rgba(5, 150, 105, var(--tw-text-opacity))}
@@ -404,6 +412,7 @@ FORM [type=checkbox]+label, FORM label+[type=checkbox] {
404412
.text-opacity-70{--tw-text-opacity:0.7}.text-opacity-75{--tw-text-opacity:0.75}.text-opacity-80{--tw-text-opacity:0.8}
405413
.text-opacity-90{--tw-text-opacity:0.9}.text-opacity-95{--tw-text-opacity:0.95}.text-opacity-100{--tw-text-opacity:1}
406414

415+
.italic{font-style: italic}
407416
.underline{text-decoration:underline}
408417
.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}
409418

@@ -511,7 +520,8 @@ FORM [type=checkbox]+label, FORM label+[type=checkbox] {
511520
.mr-0{margin-right:0}.mr-1{margin-right:0.25rem}.mr-2{margin-right:0.75rem}.mr-3{margin-right:0.75rem}.mr-4{margin-right:1rem}.mr-6{margin-right:1.5rem}.mr-8{margin-right:2rem}
512521
.ml-0{margin-left:0}.ml-1{margin-left:0.25rem}.ml-2{margin-left:0.75rem}.ml-3{margin-left:0.75rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-8{margin-left:2rem}
513522

514-
.py-0{padding-top:0;padding-bottom:0}.py-1{padding-top:0.25rem;padding-bottom:0.25rem}.py-2{padding-top:0.5rem;padding-bottom:0.5rem}
523+
.py-0{padding-top:0;padding-bottom:0}.py-0\.5 {padding-top: 0.125rem;padding-bottom: 0.125rem}.py-1\.5 {padding-top: 0.375rem;padding-bottom: 0.375rem}
524+
.py-1{padding-top:0.25rem;padding-bottom:0.25rem}.py-2{padding-top:0.5rem;padding-bottom:0.5rem}
515525
.py-3{padding-top:0.75rem;padding-bottom:0.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}
516526
.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-7{padding-top:1.75rem;padding-bottom:1.75rem}.py-8{padding-top:2rem;padding-bottom:2rem}
517527
.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-20{padding-top:5rem;padding-bottom:5rem}
@@ -660,10 +670,13 @@ FORM [type=checkbox]+label, FORM label+[type=checkbox] {
660670
.lg\:w-1\/2{width:50%}.lg\:w-1\/3{width:33.333333%}.lg\:w-2\/3{width:66.666667%}.lg\:w-1\/4{width:25%}.lg\:w-3\/4{width:75%}
661671
.lg\:w-1\/5{width:20%}.lg\:w-2\/5{width:40%}.lg\:w-1\/6{width:16.666667%}.lg\:w-1\/8{width:12.5%}.lg\:w-1\/10{width:10%}.lg\:w-full{width:100%}
662672
.lg\:col-span-2 {grid-column: span 2 / span 2}
673+
.lg\:col-start-1{grid-column-start: 1}.lg\:col-start-11{grid-column-start:11}
674+
.lg\:col-end-11{grid-column-end:11}.lg\:col-end-13{grid-column-end: 13}
663675
.lg\:flex-wrap { flex-wrap: wrap }
664676
.lg\:mt-16 {margin-top: 4rem}.lg\:mt-24{margin-top:6rem}.lg\:mt-32{margin-top: 8rem}
665677
.lg\:justify-between{justify-content:space-between}.lg\:justify-evenly{justify-content:space-evenly}
666678
.lg\:text-left{text-align:left}.lg\:text-center{text-align:center}.lg\:text-right{text-align:right}
679+
.lg\:visible{visibility: visible}
667680
}
668681

669682
@media (min-width: 1280px) {

src/ServiceStack.Desktop/lib/js/@servicestack/client/servicestack-client.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ServiceStack.Desktop/lib/js/bootstrap/bootstrap.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ServiceStack.Desktop/lib/js/mobx/mobx.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)