iconograph-ui 1.0.0

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.
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # sveltekit-iconograph-ui
2
+ A Svelte Kit components library
3
+
4
+ https://svelte.dev/playground/98a473d8e5ec46bca9db12b22b591902?version=5.36.1#H4sIAAAAAAAACnVUa2vbMBT9K3cqpQ3EecFYcNOy0RU2WL6MfZsHla2bWESWjKS8Zvzfe-XYea3DYKSje8859-pRMc0LZDGbc7sSZqvhRUhvLOuzhVToWPy7Yn5fhpAAEN4mfCnLgdug8gFLucP38Mxoj9oTDZu5zMrSPyU68cMhfC9KYz0UnSxFbtA6aTQomVpu94kGkIeoqolDATUsrCng7jC9CyEt31fMFLcIHDbcSp4qBG_AUSk0yPEkJLjnIU_hmfojJIw-PRueXOpZPn66astsSFiz9iGKzjQ97jyNOGxzbAXXDi1kXAPVT6NOqg9cC0gl_aQPFkPs0fJrF_YKUURCsyNxyIg3XK3xseqCaigVzzA3SqB9TNjLhRIEKwkbnvw-Nz32l_0gC99-zX80toR0xLgPzg7yQm6AanSO2EuLG4nbhD1Vn3NfqHZP7jumXj0bUvxJbs5XGKiUMSu4d0ouc6_2PdAyI5sPvVbD-b3C5lh0xfZh0IpBFfDEp2YXOflX6mUMqbFUbkTQw2GxdU0rymSrFtxK4fMYxqPRbYPUDXwm0lEv6IhGC15IRQyF0caV1NM-_DSp8aZlyzGYj2Hy8fahcxRcxKCNxhaiRiyljmHUzksuRON4bLG4NHFdX8f_6ch_TJ50yZ1m5E0ZgzNKCpiUO7iZTqeX7Pn42DeerZbWrOnswA2Ow3dtttxdK44G05Nm0x5qPVIZg8k_hcRLZVKu7lMjaGera6YumO5Vs8v0JIT-s9jbNdb9_zwtz4auvaZ78-4D887q2TNzqfCHZlyqLV0eFi-4cli_AdRRtyfyBAAA
5
+ https://github.com/BearToCode/carta
6
+
7
+
8
+ 1. Déverrouiller ta clé SSH
9
+
10
+ Si ta clé est protégée par mot de passe, tu dois l’ajouter à ton agent SSH pour que les commandes Git/NPM puissent l’utiliser sans retaper le mot de passe à chaque fois.
11
+
12
+ 2. Installer la lib depuis GitHub via SSH
13
+
14
+ Dans ton package.json
15
+ "dependencies": {
16
+ "svelte-components-lib": "git+ssh://git@github.com/TON_USER/svelte-components-lib.git#v1.0.0"
17
+ }
18
+ puis
19
+ npm install
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ import Button from "./lib/Button.svelte";
2
+
3
+ export { Button };
@@ -0,0 +1,15 @@
1
+ <script>
2
+ export let label = "Click me";
3
+ </script>
4
+
5
+ <button>{label}</button>
6
+
7
+ <style>
8
+ button {
9
+ padding: 0.5rem 1rem;
10
+ border-radius: 0.5rem;
11
+ background: #4cafef;
12
+ color: white;
13
+ border: none;
14
+ }
15
+ </style>
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "iconograph-ui",
3
+ "version": "1.0.0",
4
+ "description": "A Svelte Kit components library",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/asso-parabole/iconograph-ui.git"
12
+ },
13
+ "keywords": [],
14
+ "author": "",
15
+ "license": "ISC",
16
+ "type": "commonjs",
17
+ "bugs": {
18
+ "url": "https://github.com/asso-parabole/iconograph-ui/issues"
19
+ },
20
+ "homepage": "https://github.com/asso-parabole/iconograph-ui#readme",
21
+ "dependencies": {
22
+ "svelte": "^5.38.1"
23
+ }
24
+ }