From 480a1163fed91a5a7c4259fc88b53632d8969f42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Vargas=2C=20Jos=C3=A9=20Pablo?= Date: Tue, 21 May 2024 01:39:02 -0600 Subject: [PATCH] fix: Change scope to an available one --- .npmrc | 2 +- README.md | 10 +++++----- package.json | 2 +- src/routes/+page.svelte | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.npmrc b/.npmrc index ab8b8ec..9844771 100644 --- a/.npmrc +++ b/.npmrc @@ -1,2 +1,2 @@ engine-strict=true -@wj:registry=https://www.npmjs.com +@wjfe:registry=https://www.npmjs.com diff --git a/README.md b/README.md index 40ad90b..e4430db 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# @wj/dataview +# @wjfe/dataview > Svelte v5 table component suitable for examination of extensive tabular data. @@ -23,13 +23,13 @@ Tailwind CSS, Bulma, etc.), you may style it in accordance to what is shown in t Install the package: ```powershell -npm i @wj/dataview +npm i @wjfe/dataview ``` Now import the data view component and use it: ```typescript -import { WjDataView } from '@wj/dataview'; +import { WjDataView } from '@wjfe/dataview'; ``` The only two required properties are `columns` and `data`. The former defines the columns in the data view; the @@ -42,7 +42,7 @@ property. ```html