qpp-design-system 0.1.1 → 0.2.1
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.
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
@layer reset {
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Rubik';
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 300;
|
|
6
|
+
letter-spacing: -0.2px;
|
|
7
|
+
src: url('../fonts/Rubik-Light.ttf') format('truetype');
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: 'Rubik';
|
|
12
|
+
font-style: normal;
|
|
13
|
+
font-weight: 400;
|
|
14
|
+
letter-spacing: -0.2px;
|
|
15
|
+
src: url('../fonts/Rubik-Regular.ttf') format('truetype');
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@font-face {
|
|
19
|
+
font-family: 'Rubik';
|
|
20
|
+
font-style: normal;
|
|
21
|
+
font-weight: 500;
|
|
22
|
+
letter-spacing: -0.2px;
|
|
23
|
+
src: url('../fonts/Rubik-Medium.ttf') format('truetype');
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: 'Rubik';
|
|
28
|
+
font-style: normal;
|
|
29
|
+
font-weight: 700;
|
|
30
|
+
letter-spacing: -0.2px;
|
|
31
|
+
src: url('../fonts/Rubik-Bold.ttf') format('truetype');
|
|
32
|
+
}
|
|
33
|
+
}
|
package/dist/styles/index.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qpp-design-system",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "QPP Design System",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"clean": "rm -rf dist",
|
|
50
50
|
"build": "npm run clean && npm run build:js && npm run build:css",
|
|
51
51
|
"build:js": "tsc -p tsconfig.build.json && node ./scripts/make-cjs.cjs",
|
|
52
|
-
"build:css": "mkdir -p dist
|
|
52
|
+
"build:css": "mkdir -p dist && cp -r src/styles dist/styles && cp -r src/fonts dist/fonts",
|
|
53
53
|
"prepublishOnly": "npm run build",
|
|
54
54
|
"lint": "echo \"(todo) add eslint\""
|
|
55
55
|
},
|