edvoyui-component-library-test-flight 0.0.20 → 0.0.21

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/dist/style.scss +118 -0
  2. package/package.json +2 -2
@@ -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
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edvoyui-component-library-test-flight",
3
3
  "private": false,
4
- "version": "0.0.20",
4
+ "version": "0.0.21",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/",
@@ -20,7 +20,7 @@
20
20
  "types": "./dist/main.d.ts",
21
21
  "scripts": {
22
22
  "dev": "vite",
23
- "build": "vue-tsc -b && vite build",
23
+ "build": "vue-tsc -b && vite build && cp src/style.scss dist/style.scss",
24
24
  "preview": "vite preview",
25
25
  "storybook": "storybook dev -p 6006",
26
26
  "build-storybook": "storybook build",