@amsom-habitat/amsom-excel-extractor 1.0.0 → 2.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 +6 -3
- package/dist/amsom-excel-extractor.js +1 -1
- package/dist/amsom-excel-extractor.umd.cjs +384 -399
- package/dist/{index-DR0xw6Tj.js → index-CejnEhRa.js} +45925 -51508
- package/dist/{index.es-DMQCGmng.js → index.es-D1y26UDo.js} +1 -1
- package/dist/{index.es-D6CrSRsj-CBdZNKOy-BuJSaTee.js → index.es-D6CrSRsj-CBdZNKOy-EWXKkf8S.js} +1 -1
- package/dist/{index.es-DdIX0nGD-CztbJrMU.js → index.es-DdIX0nGD-6w8OUfTI.js} +1 -1
- package/dist/{web-CP-EpRzP-DoQ8h5tB.js → web-CP-EpRzP-BYIsKpd2.js} +1 -1
- package/dist/{web-D--jkgHc.js → web-ex52pkTG.js} +1 -1
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -54,7 +54,9 @@ Cette commande vérifie la version, le changelog et publie le tout
|
|
|
54
54
|
|
|
55
55
|
#### Props
|
|
56
56
|
|
|
57
|
-
- `
|
|
57
|
+
- `owner` : Propriétaire des modèles d'extraction (par défaut LOGI)
|
|
58
|
+
- `token` : Token d'authentification de l'utilisateur
|
|
59
|
+
- `api-url` : URL de l'API à utiliser pour les requêtes
|
|
58
60
|
- `password-access-to-create-model` : Mot de passe requis pour créer un modèle d'extraction
|
|
59
61
|
|
|
60
62
|
#### Exemple complet
|
|
@@ -62,9 +64,10 @@ Cette commande vérifie la version, le changelog et publie le tout
|
|
|
62
64
|
```vue
|
|
63
65
|
<template>
|
|
64
66
|
<amsom-excel-extractor
|
|
65
|
-
|
|
67
|
+
owner="LOGI"
|
|
68
|
+
token="votre_token"
|
|
66
69
|
password-access-to-create-model="votre_mot_de_passe"
|
|
67
|
-
|
|
70
|
+
api-url="http://votre_api_url"
|
|
68
71
|
/>
|
|
69
72
|
</template>
|
|
70
73
|
|