5htp-core 0.6.1-2 → 0.6.1-3
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.
|
@@ -151,8 +151,8 @@ export default ({ service: clientRouter, loaderComponent }: TProps) => {
|
|
|
151
151
|
// But when we call setLayout, the style of the previous layout are still oaded and applied
|
|
152
152
|
// Find a way to unload the previous layout / page resources before to load the new one
|
|
153
153
|
console.log(LogPrefix, `Changing layout. Before:`, curLayout, 'New layout:', newLayout);
|
|
154
|
-
window.location.replace( request ? request.url : window.location.href );
|
|
155
|
-
return page; // Don't spread since it's an instance
|
|
154
|
+
/*window.location.replace( request ? request.url : window.location.href );
|
|
155
|
+
return page; // Don't spread since it's an instance*/
|
|
156
156
|
|
|
157
157
|
context.app.setLayout(newLayout);
|
|
158
158
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "5htp-core",
|
|
3
3
|
"description": "Convenient TypeScript framework designed for Performance and Productivity.",
|
|
4
|
-
"version": "0.6.1-
|
|
4
|
+
"version": "0.6.1-3",
|
|
5
5
|
"author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
|
|
6
6
|
"repository": "git://github.com/gaetanlegac/5htp-core.git",
|
|
7
7
|
"license": "MIT",
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"object-sizeof": "^1.6.3",
|
|
68
68
|
"path-to-regexp": "^6.2.0",
|
|
69
69
|
"picomatch": "^2.3.1",
|
|
70
|
-
"preact": "^10.
|
|
71
|
-
"preact-render-to-string": "^6.
|
|
70
|
+
"preact": "^10.27.1",
|
|
71
|
+
"preact-render-to-string": "^6.6.1",
|
|
72
72
|
"prettier": "^3.3.3",
|
|
73
73
|
"react-scrollbars-custom": "^4.0.27",
|
|
74
74
|
"react-slider": "^2.0.1",
|
|
@@ -266,11 +266,11 @@ export default class ServerRouter
|
|
|
266
266
|
|
|
267
267
|
console.log('[router] refreshStaticPages');
|
|
268
268
|
|
|
269
|
-
for (const
|
|
270
|
-
const page = this.cache[
|
|
271
|
-
if (page.
|
|
269
|
+
for (const pageUrl in this.cache) {
|
|
270
|
+
const page = this.cache[pageUrl];
|
|
271
|
+
if (page.expire && page.expire < Date.now()) {
|
|
272
272
|
|
|
273
|
-
this.renderStatic(
|
|
273
|
+
this.renderStatic(pageUrl, page.options);
|
|
274
274
|
|
|
275
275
|
}
|
|
276
276
|
}
|
package/types/icons.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export type TIcones = "solid/spinner-third"|"long-arrow-right"|"
|
|
1
|
+
export type TIcones = "solid/spinner-third"|"long-arrow-right"|"search"|"user"|"rocket"|"globe"|"bullhorn"|"briefcase"|"chart-line"|"handshake"|"ellipsis-h"|"brands/google"|"brands/reddit-alien"|"brands/linkedin-in"|"brands/github"|"robot"|"comments"|"user-friends"|"times"|"angle-down"|"mouse-pointer"|"thumbs-up"|"dollar-sign"|"times-circle"|"brands/whatsapp"|"info-circle"|"check-circle"|"exclamation-circle"|"bars"|"font"|"tag"|"compress"|"bolt"|"puzzle-piece"|"planet-ringed"|"heart"|"lock"|"eye"|"credit-card"|"at"|"brands/linkedin"|"key"|"exclamation"|"solid/download"|"chart-bar"|"power-off"|"seedling"|"palette"|"car"|"plane"|"university"|"hard-hat"|"graduation-cap"|"cogs"|"film"|"leaf"|"tshirt"|"utensils"|"map-marked-alt"|"dumbbell"|"stethoscope"|"concierge-bell"|"book"|"shield-alt"|"gavel"|"industry"|"square-root-alt"|"newspaper"|"pills"|"medal"|"capsules"|"balance-scale"|"home"|"praying-hands"|"shopping-cart"|"flask"|"futbol"|"microchip"|"satellite-dish"|"shipping-fast"|"passport"|"tools"|"database"|"solid/fire"|"usd-circle"|"lightbulb"|"solid/dollar-sign"|"download"|"code"|"solid/clock"|"user-circle"|"plus-circle"|"brands/twitter"|"brands/facebook"|"comment-alt"|"angle-left"|"angle-right"|"paper-plane"|"check"|"long-arrow-left"|"trash"|"arrow-left"|"arrow-right"|"meh-rolling-eyes"|"unlink"|"pen"|"link"|"file"|"bold"|"italic"|"underline"|"strikethrough"|"subscript"|"superscript"|"plus"|"empty-set"|"horizontal-rule"|"page-break"|"image"|"table"|"poll"|"columns"|"sticky-note"|"caret-right"|"align-left"|"align-center"|"align-right"|"align-justify"|"indent"|"outdent"|"list-ul"|"check-square"|"h1"|"h2"|"h3"|"h4"|"list-ol"|"paragraph"|"quote-left"
|