v-eris 1.0.9 → 1.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "v-eris",
3
- "version": "1.0.9",
3
+ "version": "1.0.13",
4
4
  "description": "",
5
5
  "bootstrapVersion": 3,
6
6
  "styleLoaders": [],
@@ -10,7 +10,7 @@
10
10
  "scripts": {
11
11
  "webpack": "webpack --mode development",
12
12
  "auto": "tsc -watch - tsconfig.json",
13
- "build": "yarn build:esm && yarn build:cjs && yarn copy",
13
+ "build": "yarn build:esm && yarn build:cjs && yarn copy && yarn copy2 && yarn copy3",
14
14
  "build:esm": "tsc",
15
15
  "build:cjs": "tsc --module commonjs --outDir release/cjs",
16
16
  "tsc2": "tsc && tsc -m es6 --outDir release && webpack --mode development",
@@ -20,6 +20,8 @@
20
20
  "start": "webpack-dev-server --mode development",
21
21
  "production": "webpack --mode production",
22
22
  "copy": "copyfiles -u 2 \"./source/components/**/*.{css,scss}\" \"./release/cjs/components\"",
23
+ "copy2": "copyfiles -u 2 \"./assets/**/*.{scss,css}\" \"./release/assets/styles/\"",
24
+ "copy3": "copyfiles -u 2 \"./assets/**/*.{woff,woff2,ttf}\" \"./release/assets/fonts/\"",
23
25
  "pub": "tsc && npm version patch --force && npm publish --access public"
24
26
  },
25
27
  "files": [
Binary file
@@ -0,0 +1,12 @@
1
+ @font-face{
2
+ font-family: Roboto;
3
+ src: url(/assets/fonts/Roboto-Regular.ttf);
4
+ }
5
+
6
+ body{
7
+ margin: 20px;
8
+ }
9
+
10
+ .hidden{
11
+ display: none !important;
12
+ }
@@ -0,0 +1,6 @@
1
+ $fonts: Roboto;
2
+
3
+ $link: #56b7ff;
4
+
5
+ $icons-accent: #56b7ff;
6
+ $icons-accent-hover: #00a2ff;