@uxland/primary-shell 2.0.1-rc.2 → 2.1.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/dist/index.js.map +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/plugin.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +13 -10
- package/src/UI/components/primaria-shell/template.ts +2 -0
- package/src/UI/fonts/fonts.css +48 -0
- package/src/UI/fonts/open-sans-v40-latin-300.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-500.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-600.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-700.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-800.woff2 +0 -0
- package/src/UI/fonts/open-sans-v40-latin-regular.woff2 +0 -0
- package/src/UI/styles/index.css +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uxland/primary-shell",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Primaria Shell",
|
|
5
5
|
"author": "UXLand <dev@uxland.es>",
|
|
6
6
|
"homepage": "https://github.com/uxland/harmonix/tree/app#readme",
|
|
@@ -9,7 +9,10 @@
|
|
|
9
9
|
"main": "src/index.ts",
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
11
11
|
"module": "dist/index.js",
|
|
12
|
-
"files": [
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"src"
|
|
15
|
+
],
|
|
13
16
|
"publishConfig": {
|
|
14
17
|
"access": "public",
|
|
15
18
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -18,13 +21,6 @@
|
|
|
18
21
|
"type": "git",
|
|
19
22
|
"url": "git+https://github.com/uxland/harmonix.git"
|
|
20
23
|
},
|
|
21
|
-
"scripts": {
|
|
22
|
-
"serve": "vite",
|
|
23
|
-
"start": "ng serve --host 0.0.0.0",
|
|
24
|
-
"build": "vite build",
|
|
25
|
-
"preview": "vite preview",
|
|
26
|
-
"publish-rc": "npm publish --tag rc"
|
|
27
|
-
},
|
|
28
24
|
"bugs": {
|
|
29
25
|
"url": "https://github.com/uxland/harmonix/issues"
|
|
30
26
|
},
|
|
@@ -44,5 +40,12 @@
|
|
|
44
40
|
"tslib": "^2.3.0",
|
|
45
41
|
"vite": "^5.2.8",
|
|
46
42
|
"@salut/design-system-salut": "1.6.0"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"serve": "vite",
|
|
46
|
+
"start": "ng serve --host 0.0.0.0",
|
|
47
|
+
"build": "vite build",
|
|
48
|
+
"preview": "vite preview",
|
|
49
|
+
"publish-rc": "npm publish --tag rc"
|
|
47
50
|
}
|
|
48
|
-
}
|
|
51
|
+
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import "@salut/design-system-salut";
|
|
2
2
|
import "@salut/design-system-salut/css/main.css";
|
|
3
|
+
import "../../fonts/fonts.css";
|
|
4
|
+
import "../../styles/index.css";
|
|
3
5
|
import { html } from "lit";
|
|
4
6
|
import gencatLogo from "../../../UI/images/Gencat_Logotip.svg";
|
|
5
7
|
import salutLogo from "../../../UI/images/Salut_Logotip.svg";
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* open-sans-300 - latin */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
4
|
+
font-family: 'Open Sans';
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: 300;
|
|
7
|
+
src: url('open-sans-v40-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
8
|
+
}
|
|
9
|
+
/* open-sans-regular - latin */
|
|
10
|
+
@font-face {
|
|
11
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
12
|
+
font-family: 'Open Sans';
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
src: url('open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
16
|
+
}
|
|
17
|
+
/* open-sans-500 - latin */
|
|
18
|
+
@font-face {
|
|
19
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
20
|
+
font-family: 'Open Sans';
|
|
21
|
+
font-style: normal;
|
|
22
|
+
font-weight: 500;
|
|
23
|
+
src: url('open-sans-v40-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
24
|
+
}
|
|
25
|
+
/* open-sans-600 - latin */
|
|
26
|
+
@font-face {
|
|
27
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
28
|
+
font-family: 'Open Sans';
|
|
29
|
+
font-style: normal;
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
src: url('open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
32
|
+
}
|
|
33
|
+
/* open-sans-700 - latin */
|
|
34
|
+
@font-face {
|
|
35
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
36
|
+
font-family: 'Open Sans';
|
|
37
|
+
font-style: normal;
|
|
38
|
+
font-weight: 700;
|
|
39
|
+
src: url('open-sans-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
40
|
+
}
|
|
41
|
+
/* open-sans-800 - latin */
|
|
42
|
+
@font-face {
|
|
43
|
+
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
|
44
|
+
font-family: 'Open Sans';
|
|
45
|
+
font-style: normal;
|
|
46
|
+
font-weight: 800;
|
|
47
|
+
src: url('open-sans-v40-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
|
48
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
body {
|
|
2
|
+
margin: 0;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
font-size: 14px;
|
|
5
|
+
background-color: #f5f6fa;
|
|
6
|
+
font-family: 'Open Sans', sans-serif;
|
|
7
|
+
pointer-events: auto !important;
|
|
8
|
+
width: 100%;
|
|
9
|
+
height: 100%;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
html {
|
|
13
|
+
font-size: 14px;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
font-family: 'Open Sans', sans-serif;
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
}
|