@espri/vue-components 0.0.2 → 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.
Files changed (2) hide show
  1. package/README.md +13 -18
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # @espri/vue-components
2
2
 
3
- Une bibliothèque de composants Vue 3 réutilisables développés par **ESPRI Digital**.
4
-
5
- Cette bibliothèque est conçue pour être **modulaire** : vous pouvez importer chaque composant individuellement ou installer tous les composants globalement.
3
+ ESPRI Digital Vue 3 component library built on top of PrimeVue.
6
4
 
7
5
  ---
8
6
 
@@ -10,18 +8,15 @@ Cette bibliothèque est conçue pour être **modulaire** : vous pouvez importer
10
8
 
11
9
  ```bash
12
10
  npm install @espri/vue-components
13
- # ou
14
- yarn add @espri/vue-components
15
-
16
- vue-components/
17
- ├─ package.json
18
- ├─ vite.config.js
19
- ├─ src/
20
- │ ├─ select/
21
- │ │ ├─ Select.vue
22
- │ │ └─ index.js
23
- │ ├─ inputtext/
24
- │ │ ├─ InputText.vue
25
- │ │ └─ index.js
26
- │ └─ index.js <-- pour import global via app.use()
27
- ├─ README.md
11
+ ```
12
+
13
+ ## Import example
14
+
15
+ ```javascript
16
+ import { EspriInputText } from '@espri/vue-components';
17
+ ```
18
+
19
+ ## Available Components
20
+
21
+ - `EspriInputText`
22
+ - `EspriSelect`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@espri/vue-components",
3
- "version": "0.0.2",
3
+ "version": "1.0.0",
4
4
  "description": "ESPRI Digital - Vue components library",
5
5
  "author": "ESPRI Digital",
6
6
  "homepage": "https://github.com/ESPRI-Digital/vue-select#readme",
@@ -9,16 +9,16 @@
9
9
  },
10
10
  "exports": {
11
11
  ".": {
12
- "import": "./dist/index.es.js",
13
- "types": "./dist/types/index.d.ts"
12
+ "types": "./dist/types/index.d.ts",
13
+ "import": "./dist/index.es.js"
14
14
  },
15
15
  "./input-text": {
16
- "import": "./dist/input-text.es.js",
17
- "types": "./dist/types/input-text/index.d.ts"
16
+ "types": "./dist/types/input-text/index.d.ts",
17
+ "import": "./dist/input-text.es.js"
18
18
  },
19
19
  "./select": {
20
- "import": "./dist/select.es.js",
21
- "types": "./dist/types/select/index.d.ts"
20
+ "types": "./dist/types/select/index.d.ts",
21
+ "import": "./dist/select.es.js"
22
22
  }
23
23
  },
24
24
  "main": "dist/index.es.js",