@espri/vue-components 0.0.1 → 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 +13 -18
- package/dist/index.es.js +1 -1
- package/package.json +13 -4
- /package/dist/{inputtext.es.js → input-text.es.js} +0 -0
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# @espri/vue-components
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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/dist/index.es.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@espri/vue-components",
|
|
3
|
-
"version": "0.0
|
|
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",
|
|
@@ -8,9 +8,18 @@
|
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
10
10
|
"exports": {
|
|
11
|
-
".":
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/types/index.d.ts",
|
|
13
|
+
"import": "./dist/index.es.js"
|
|
14
|
+
},
|
|
15
|
+
"./input-text": {
|
|
16
|
+
"types": "./dist/types/input-text/index.d.ts",
|
|
17
|
+
"import": "./dist/input-text.es.js"
|
|
18
|
+
},
|
|
19
|
+
"./select": {
|
|
20
|
+
"types": "./dist/types/select/index.d.ts",
|
|
21
|
+
"import": "./dist/select.es.js"
|
|
22
|
+
}
|
|
14
23
|
},
|
|
15
24
|
"main": "dist/index.es.js",
|
|
16
25
|
"module": "dist/index.es.js",
|
|
File without changes
|