Skip to content

Commit c4a0a2b

Browse files
Merge pull request #33 from zeixcom/feature/docs
chore: update project name and location
2 parents 550d604 + 1ec99e7 commit c4a0a2b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Most importantly, it **does not render components**. We suggest, you render comp
5151
Installation:
5252

5353
```sh
54-
npm install @efflore/ui-element
54+
npm install @zeix/ui-element
5555
```
5656

5757
In JavaScript:

docs/installation-setup.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ <h2>Using a CDN</h2>
113113
<p class="meta">
114114
<span class="language">html</span>
115115
</p>
116-
<pre class="language-html"><code>&lt;script src="https://cdn.jsdelivr.net/npm/@efflore/ui-element@latest/index.min.js"&gt;&lt;/script&gt;</code></pre>
116+
<pre class="language-html"><code>&lt;script src="https://cdn.jsdelivr.net/npm/@zeix/ui-element@latest/index.min.js"&gt;&lt;/script&gt;</code></pre>
117117
<input-button class="copy">
118118
<button type="button" class="secondary small">Copy</button>
119119
</input-button>
@@ -124,7 +124,7 @@ <h2>Using a CDN</h2>
124124
<span class="language">html</span>
125125
</p>
126126
<pre class="language-html"><code>&lt;script type="module"&gt;
127-
import { UIElement } from 'https://cdn.jsdelivr.net/npm/@efflore/ui-element@latest/index.min.js'
127+
import { UIElement } from 'https://cdn.jsdelivr.net/npm/@zeix/ui-element@latest/index.js'
128128

129129
// Your code here
130130
&lt;/script&gt;</code></pre>
@@ -136,7 +136,7 @@ <h2>Using a CDN</h2>
136136

137137
<section>
138138
<h2>Using a Self-Hosted Copy</h2>
139-
<p>You can include the built UIElement script from a local or hosted path if you prefer to self-host the script. The latest version is available in the Github Repo under <a href="https://github.com/efflore/ui-element/blob/main/index.min.js" target="_blank">https://github.com/efflore/ui-element/blob/main/index.min.js</a></p>
139+
<p>You can include the built UIElement script from a local or hosted path if you prefer to self-host the script. The latest version is available in the Github Repo under <a href="https://github.com/zeixcom/ui-element/blob/main/index.js" target="_blank">https://github.com/zeixcom/ui-element/blob/main/index.js</a></p>
140140
<p>Remember to keep the hosted file updated to use the latest features and bug fixes.</p>
141141
</section>
142142

@@ -147,7 +147,7 @@ <h2>Installing with NPM</h2>
147147
<p class="meta">
148148
<span class="language">bash</span>
149149
</p>
150-
<pre class="language-bash"><code>npm install @efflore/ui-element</code></pre>
150+
<pre class="language-bash"><code>npm install @zeix/ui-element</code></pre>
151151
<input-button class="copy">
152152
<button type="button" class="secondary small">Copy</button>
153153
</input-button>
@@ -173,7 +173,7 @@ <h2>Creating Your First Component</h2>
173173
<span class="language">js</span>
174174
</p>
175175
<pre class="language-js"><code>&lt;script type="module"&gt;
176-
import { UIElement, setText } from 'https://cdn.jsdelivr.net/npm/@efflore/ui-element@latest/index.min.js'
176+
import { UIElement, setText } from 'https://cdn.jsdelivr.net/npm/@zeix/ui-element@latest/index.js'
177177

178178
class HelloWorld extends UIElement {
179179
connectedCallback() {
@@ -226,7 +226,7 @@ <h2>Verifying Installation</h2>
226226
<p>To verify your setup:</p>
227227
<ul>
228228
<li><strong>CDN & Self-Hosted Users</strong>: Check the browser console for any script loading errors and ensure typing in the input field updates the greeting.</li>
229-
<li><strong>NPM Users</strong>: Ensure <code>node_modules</code> contains <code>@efflore/ui-element</code> and your bundler correctly bundles the library.</li>
229+
<li><strong>NPM Users</strong>: Ensure <code>node_modules</code> contains <code>@zeix/ui-element</code> and your bundler correctly bundles the library.</li>
230230
</ul>
231231
</section>
232232

0 commit comments

Comments
 (0)