From 593487168ed723e4421aeff2f80b5ebfb22cfa00 Mon Sep 17 00:00:00 2001 From: Jaskaran Sarkaria Date: Fri, 24 Dec 2021 18:43:44 +0000 Subject: [PATCH] =?UTF-8?q?test:=20=F0=9F=92=8D=20fix=20img?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .routify/config.js | 2 +- .routify/routes.js | 4 +- public/index.html | 4 +- src/components/HexGrid/HexGrid.svelte | 33 +++++++- src/components/Image/Image.svelte | 75 +++++++++++++++++++ src/components/Image/ImageLoader.svelte | 13 ++++ .../Image/IntersectionObserver.svelte | 62 +++++++++++++++ src/components/ProductView/ProductView.svelte | 4 +- .../SingleProduct/SingleProduct.svelte | 47 ++---------- .../SingleProduct/SingleProduct.test.ts | 4 - 10 files changed, 192 insertions(+), 56 deletions(-) create mode 100644 src/components/Image/Image.svelte create mode 100644 src/components/Image/ImageLoader.svelte create mode 100644 src/components/Image/IntersectionObserver.svelte diff --git a/.routify/config.js b/.routify/config.js index 2ff07a13..99c8204b 100644 --- a/.routify/config.js +++ b/.routify/config.js @@ -8,5 +8,5 @@ module.exports = { noHashScroll: false, distDir: 'dist', extensions: ['svelte', 'html', 'svx', 'md'], - started: '2021-12-12T09:10:47.590Z', + started: '2021-12-24T17:33:44.336Z', }; diff --git a/.routify/routes.js b/.routify/routes.js index b3f73ee9..c10e85d8 100644 --- a/.routify/routes.js +++ b/.routify/routes.js @@ -1,10 +1,10 @@ /** * @roxi/routify 2.7.3 - * File generated Sun Dec 12 2021 09:10:50 GMT+0000 (Greenwich Mean Time) + * File generated Fri Dec 24 2021 17:33:48 GMT+0000 (Greenwich Mean Time) */ export const __version = '2.7.3'; -export const __timestamp = '2021-12-12T09:10:50.186Z'; +export const __timestamp = '2021-12-24T17:33:48.463Z'; //buildRoutes import { buildClientTree } from '@roxi/routify/runtime/buildRoutes'; diff --git a/public/index.html b/public/index.html index e4762c4b..cbb152b4 100644 --- a/public/index.html +++ b/public/index.html @@ -11,9 +11,9 @@ - + - + diff --git a/src/components/HexGrid/HexGrid.svelte b/src/components/HexGrid/HexGrid.svelte index 3be676bc..2d3d284a 100644 --- a/src/components/HexGrid/HexGrid.svelte +++ b/src/components/HexGrid/HexGrid.svelte @@ -1,5 +1,5 @@