@opens/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 +62 -0
- package/dist/buttons/button-primary.vue.d.ts +4 -0
- package/dist/buttons/button-primary.vue.d.ts.map +1 -0
- package/dist/buttons/button-secondary.vue.d.ts +4 -0
- package/dist/buttons/button-secondary.vue.d.ts.map +1 -0
- package/dist/cards/list-card.vue.d.ts +3 -0
- package/dist/cards/list-card.vue.d.ts.map +1 -0
- package/dist/cards/stat-card.vue.d.ts +4 -0
- package/dist/cards/stat-card.vue.d.ts.map +1 -0
- package/dist/dropdowns/select-dropdown.vue.d.ts +4 -0
- package/dist/dropdowns/select-dropdown.vue.d.ts.map +1 -0
- package/dist/dropdowns/simple-dropdown.vue.d.ts +4 -0
- package/dist/dropdowns/simple-dropdown.vue.d.ts.map +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/inputs/icon-text-input.vue.d.ts +4 -0
- package/dist/inputs/icon-text-input.vue.d.ts.map +1 -0
- package/dist/inputs/switch-checkbox.vue.d.ts +4 -0
- package/dist/inputs/switch-checkbox.vue.d.ts.map +1 -0
- package/dist/inputs/text-input.vue.d.ts +4 -0
- package/dist/inputs/text-input.vue.d.ts.map +1 -0
- package/dist/main.d.ts +3 -0
- package/dist/simple-dropdown-item.vue.d.ts +3 -0
- package/dist/simple-dropdown-item.vue.d.ts.map +1 -0
- package/dist/src/components/buttons/button-primary.vue.d.ts +50 -0
- package/dist/src/components/buttons/button-secondary.vue.d.ts +50 -0
- package/dist/src/components/cards/list-card.vue.d.ts +2 -0
- package/dist/src/components/cards/stat-card.vue.d.ts +50 -0
- package/dist/src/components/dropdowns/select-dropdown.vue.d.ts +26 -0
- package/dist/src/components/dropdowns/simple-dropdown-item.vue.d.ts +2 -0
- package/dist/src/components/dropdowns/simple-dropdown.vue.d.ts +23 -0
- package/dist/src/components/inputs/icon-text-input.vue.d.ts +85 -0
- package/dist/src/components/inputs/switch-checkbox.vue.d.ts +33 -0
- package/dist/src/components/inputs/text-input.vue.d.ts +41 -0
- package/dist/src/main.d.ts +16 -0
- package/dist/yunique-ui.cjs.js +1 -0
- package/dist/yunique-ui.css +1 -0
- package/dist/yunique-ui.es.js +373 -0
- package/dist/yunique-ui.umd.js +2 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@opens/ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"main": "./dist/yunique-ui.umd.js",
|
|
10
|
+
"module": "./dist/yunique-ui.es.js",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/yunique-ui.es.js",
|
|
14
|
+
"require": "./dist/yunique-ui.umd.js"
|
|
15
|
+
},
|
|
16
|
+
"./dist/yunique-ui.css": {
|
|
17
|
+
"import": "./dist/yunique-ui.css",
|
|
18
|
+
"require": "./dist/yunique-ui.css"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"types": "./dist/main.d.ts",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"build": "run-p type-check build-only",
|
|
25
|
+
"preview": "vite preview",
|
|
26
|
+
"test:unit": "vitest",
|
|
27
|
+
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
|
|
28
|
+
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
|
|
29
|
+
"build-only": "vite build",
|
|
30
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
31
|
+
"story:dev": "histoire dev",
|
|
32
|
+
"story:build": "histoire build",
|
|
33
|
+
"story:preview": "histoire preview"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"vue": "^3.2.47",
|
|
37
|
+
"vue3trend": "^1.0.0"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@histoire/plugin-vue": "^0.15.8",
|
|
41
|
+
"@types/jsdom": "^21.1.0",
|
|
42
|
+
"@types/node": "^18.14.2",
|
|
43
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
44
|
+
"@vue/test-utils": "^2.3.0",
|
|
45
|
+
"@vue/tsconfig": "^0.1.3",
|
|
46
|
+
"autoprefixer": "^10.4.14",
|
|
47
|
+
"cypress": "^12.7.0",
|
|
48
|
+
"histoire": "^0.15.9",
|
|
49
|
+
"jsdom": "^21.1.0",
|
|
50
|
+
"npm-run-all": "^4.1.5",
|
|
51
|
+
"path": "^0.12.7",
|
|
52
|
+
"postcss": "^8.4.21",
|
|
53
|
+
"pug": "^3.0.2",
|
|
54
|
+
"rollup-plugin-typescript2": "^0.34.1",
|
|
55
|
+
"start-server-and-test": "^2.0.0",
|
|
56
|
+
"tailwindcss": "^3.2.7",
|
|
57
|
+
"typescript": "~4.8.4",
|
|
58
|
+
"vite": "^4.1.4",
|
|
59
|
+
"vite-plugin-dts": "^2.1.0",
|
|
60
|
+
"vitest": "^0.29.1",
|
|
61
|
+
"vue-tsc": "^1.2.0"
|
|
62
|
+
},
|
|
63
|
+
"description": "This template should help get you started developing with Vue 3 in Vite.",
|
|
64
|
+
"author": "joao.clementino@opens.com.br",
|
|
65
|
+
"license": "ISC",
|
|
66
|
+
"publishConfig": {
|
|
67
|
+
"access": "public"
|
|
68
|
+
}
|
|
69
|
+
}
|