edvoyui-component-library-test-flight 0.0.18 → 0.0.20
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/dist/EUISelect.vue.d.ts.map +1 -0
- package/dist/button/EUIButton.vue.d.ts.map +1 -0
- package/dist/input/EUIInput.vue.d.ts.map +1 -0
- package/dist/library-vue-ts.cjs.js +13 -13
- package/dist/library-vue-ts.css +1 -1
- package/dist/library-vue-ts.es.js +1682 -1685
- package/dist/library-vue-ts.umd.js +12 -12
- package/dist/modal/EUIModal.vue.d.ts +1 -1
- package/dist/popover/EUIPopover.vue.d.ts +1 -1
- package/package.json +4 -2
- package/src/style.scss +118 -0
- package/dist/EUIButton.vue.d.ts.map +0 -1
- package/dist/EUIInput.vue.d.ts.map +0 -1
- package/dist/select/EUISelect.vue.d.ts.map +0 -1
- /package/dist/{select/EUISelect.vue.d.ts → EUISelect.vue.d.ts} +0 -0
- /package/dist/{EUIButton.vue.d.ts → button/EUIButton.vue.d.ts} +0 -0
- /package/dist/{EUIInput.vue.d.ts → input/EUIInput.vue.d.ts} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/modal/EUIModal.vue?vue&type=script&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/modal/EUIModal.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/modal/EUIModal.vue?vue&type=style&index=0&scoped=588cae97&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUIModal.vue.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/popover/EUIPopover.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Volumes/work/repos/edvoy-ui-v2/src/components/popover/EUIPopover.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Volumes/work/repos/edvoy-ui-v2/src/components/popover/EUIPopover.vue?vue&type=style&index=0&scoped=26e539c5&lang.scss";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=EUIPopover.vue.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edvoyui-component-library-test-flight",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.20",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
|
-
"dist
|
|
7
|
+
"dist/",
|
|
8
|
+
"src/style.scss",
|
|
9
|
+
"index.js"
|
|
8
10
|
],
|
|
9
11
|
"main": "./dist/library-vue-ts.umd.js",
|
|
10
12
|
"module": "./dist/library-vue-ts.es.js",
|
package/src/style.scss
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@import "assets/scss/body.scss";
|
|
4
|
+
@tailwind utilities;
|
|
5
|
+
|
|
6
|
+
@layer base {
|
|
7
|
+
html {
|
|
8
|
+
font-family: "Inter", "Gilroy", -apple-system, system-ui, sans-serif;
|
|
9
|
+
}
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: "Gilroy";
|
|
12
|
+
src: url("./assets/fonts/gilroy/GilroyRegular/font.woff2") format("woff2"),
|
|
13
|
+
url("./assets/fonts/gilroy/GilroyRegular/font.woff") format("woff");
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
font-style: normal;
|
|
16
|
+
font-display: swap;
|
|
17
|
+
}
|
|
18
|
+
@font-face {
|
|
19
|
+
font-family: "Gilroy";
|
|
20
|
+
src: url("./assets/fonts/gilroy/GilroyMedium/font.woff2") format("woff2"),
|
|
21
|
+
url("./assets/fonts/gilroy/GilroyMedium/font.woff") format("woff");
|
|
22
|
+
font-weight: 500;
|
|
23
|
+
font-style: normal;
|
|
24
|
+
font-display: swap;
|
|
25
|
+
}
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: "Gilroy";
|
|
28
|
+
src: url("./assets/fonts/gilroy/GilroySemiBold/font.woff2") format("woff2"),
|
|
29
|
+
url("./assets/fonts/gilroy/GilroySemiBold/font.woff") format("woff");
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
font-style: normal;
|
|
32
|
+
font-display: swap;
|
|
33
|
+
}
|
|
34
|
+
@font-face {
|
|
35
|
+
font-family: "Gilroy";
|
|
36
|
+
src: url("./assets/fonts/gilroy/GilroyBold/font.woff2") format("woff2"),
|
|
37
|
+
url("./assets/fonts/gilroy/GilroyBold/font.woff") format("woff");
|
|
38
|
+
font-weight: 700;
|
|
39
|
+
font-style: normal;
|
|
40
|
+
font-display: swap;
|
|
41
|
+
}
|
|
42
|
+
@font-face {
|
|
43
|
+
font-family: "Gilroy";
|
|
44
|
+
src: url("./assets/fonts/gilroy/GilroyExtraBold/font.woff2") format("woff2"),
|
|
45
|
+
url("./assets/fonts/gilroy/GilroyExtraBold/font.woff") format("woff");
|
|
46
|
+
font-weight: 800;
|
|
47
|
+
font-style: normal;
|
|
48
|
+
font-display: swap;
|
|
49
|
+
}
|
|
50
|
+
@font-face {
|
|
51
|
+
font-family: "Gilroy";
|
|
52
|
+
src: url("./assets/fonts/gilroy/GilroyBoldItalic/font.woff2") format("woff2"),
|
|
53
|
+
url("./assets/fonts/gilroy/GilroyBoldItalic/font.woff") format("woff");
|
|
54
|
+
font-weight: 900;
|
|
55
|
+
font-style: italic;
|
|
56
|
+
font-display: swap;
|
|
57
|
+
}
|
|
58
|
+
@font-face {
|
|
59
|
+
font-family: "Gilroy";
|
|
60
|
+
src: url("./assets/fonts/gilroy/GilroyExtraBold/font.woff2") format("woff2"),
|
|
61
|
+
url("./assets/fonts/gilroy/GilroyExtraBold/font.woff") format("woff");
|
|
62
|
+
font-weight: 900;
|
|
63
|
+
font-style: normal;
|
|
64
|
+
font-display: swap;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@font-face {
|
|
68
|
+
font-family: "Inter";
|
|
69
|
+
font-style: italic;
|
|
70
|
+
font-weight: 400;
|
|
71
|
+
font-display: swap;
|
|
72
|
+
src: url("./assets/fonts/inter/Inter-Italic.woff2?v=3.19") format("woff2"),
|
|
73
|
+
url("./assets/fonts/inter/Inter-Italic.woff?v=3.19") format("woff");
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@font-face {
|
|
77
|
+
font-family: "Inter";
|
|
78
|
+
font-style: normal;
|
|
79
|
+
font-weight: 500;
|
|
80
|
+
font-display: swap;
|
|
81
|
+
src: url("./assets/fonts/inter/Inter-Medium.woff2?v=3.19") format("woff2"),
|
|
82
|
+
url("./assets/fonts/inter/Inter-Medium.woff?v=3.19") format("woff");
|
|
83
|
+
}
|
|
84
|
+
@font-face {
|
|
85
|
+
font-family: "Inter";
|
|
86
|
+
font-style: italic;
|
|
87
|
+
font-weight: 500;
|
|
88
|
+
font-display: swap;
|
|
89
|
+
src: url("../fonts/inter/Inter-MediumItalic.woff2?v=3.19") format("woff2"),
|
|
90
|
+
url("../fonts/inter/Inter-MediumItalic.woff?v=3.19") format("woff");
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@font-face {
|
|
94
|
+
font-family: "Inter";
|
|
95
|
+
font-style: normal;
|
|
96
|
+
font-weight: 600;
|
|
97
|
+
font-display: swap;
|
|
98
|
+
src: url("./assets/fonts/inter/Inter-SemiBold.woff2?v=3.19") format("woff2"),
|
|
99
|
+
url("./assets/fonts/inter/Inter-SemiBold.woff?v=3.19") format("woff");
|
|
100
|
+
}
|
|
101
|
+
@font-face {
|
|
102
|
+
font-family: "Inter";
|
|
103
|
+
font-style: italic;
|
|
104
|
+
font-weight: 600;
|
|
105
|
+
font-display: swap;
|
|
106
|
+
src: url("./assets/fonts/inter/Inter-SemiBoldItalic.woff2?v=3.19") format("woff2"),
|
|
107
|
+
url("./assets/fonts/inter/Inter-SemiBoldItalic.woff?v=3.19") format("woff");
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@font-face {
|
|
111
|
+
font-family: "Inter";
|
|
112
|
+
font-style: normal;
|
|
113
|
+
font-weight: 700;
|
|
114
|
+
font-display: swap;
|
|
115
|
+
src: url("./assets/fonts/inter/Inter-Bold.woff2?v=3.19") format("woff2"),
|
|
116
|
+
url("./assets/fonts/inter/Inter-Bold.woff?v=3.19") format("woff");
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"EUIButton.vue.d.ts","sourceRoot":"","sources":["../src/components/button/EUIButton.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,wGAAwG,CAAC;AAC/H,cAAc,wGAAwG,CAAC;AACvH,OAAO,sGAAsG,CAAC;AAC9G,eAAe,SAAS,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"EUIInput.vue.d.ts","sourceRoot":"","sources":["../src/components/input/EUIInput.vue"],"names":[],"mappings":"AACA,cAAc,sGAAsG,CAAC;AACrH,OAAO,oHAAoH,CAAC;;AAE5H,wBAA0F"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"EUISelect.vue.d.ts","sourceRoot":"","sources":["../../src/components/select/EUISelect.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,wGAAwG,CAAC;AAC/H,cAAc,wGAAwG,CAAC;AACvH,OAAO,sGAAsG,CAAC;AAC9G,eAAe,SAAS,CAAC"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|