@lux-design-system/font 1.0.0-alpha.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/LICENSE.md ADDED
@@ -0,0 +1,7 @@
1
+ # License
2
+
3
+ Copyright (c) 2024 LUX. All rights reserved.
4
+
5
+ The open source license does NOT apply to files in this directory.
6
+
7
+ These are properietary assets to LUX and Rijksoverheid.
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # Font assets voor het LUX Design System
2
+
3
+ Deze package bevat de lettertypes RijksoverheidSerif en RijksoverheidSans die het LUX Design System gebruikt.
4
+ **Let op:** Deze fonts zijn auteurrechtelijk beschermd. Lees meer op [Gebruiksvoorwaarden typografie](https://www.rijkshuisstijl.nl/publiek/modules/product/DigitalStyleGuide/default/index.aspx?ItemId=10370) op Rijkshuisstijl.nl
5
+
6
+ ## Installeren
7
+
8
+ ### NPM
9
+
10
+ `npm install @lux-design-system/fonts --save-dev`
11
+
12
+ ### Yarn
13
+
14
+ `yarn add @lux-design-system/fonts --dev`
15
+
16
+ ### PNPM
17
+
18
+ `pnpm add -D @lux-design-system/fonts --save-dev`
19
+
20
+ Daarna zijn de volgende fonts beschikbaar:
21
+
22
+ * RO Sans Web Text Regular
23
+ * RO Sans Web Text Bold
24
+ * RO Sans Web Text Italic
25
+
26
+ ## Bestanden
27
+
28
+ ### `index.css`
29
+ Hierin staan de definities en font-family-namen die binnen LUX worden gebruikt.
30
+
31
+ Dit bestand kun je importeren of invoegen in je website of applicatie
32
+
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/index.css ADDED
@@ -0,0 +1,34 @@
1
+ @font-face {
2
+ font-style: normal;
3
+ font-weight: 400;
4
+ src:
5
+ local("ROsanswebtextregular"),
6
+ url("ROsanswebtextregular.woff") format("woff"),
7
+ url("ROsanswebtextregular.eot") format("embedded-opentype"),
8
+ url("ROsanswebtextregular.ttf") format("truetype");
9
+ font-family: "RijksoverheidSansWebText";
10
+ }
11
+
12
+ @font-face {
13
+ font-style: normal;
14
+ font-weight: 700;
15
+ src:
16
+ local("ROsanswebtextbold"),
17
+ url("ROsanswebtextbold.woff") format("woff"),
18
+ url("ROsanswebtextbold.eot") format("embedded-opentype"),
19
+ url("ROsanswebtextbold.ttf") format("truetype");
20
+ font-family: "RijksoverheidSansWebText";
21
+ }
22
+
23
+ @font-face {
24
+ font-style: italic;
25
+ font-weight: 400;
26
+ src:
27
+ local("ROsanswebtextitalic"),
28
+ url("ROsanswebtextitalic.woff") format("woff"),
29
+ url("ROsanswebtextitalic.eot") format("embedded-opentype"),
30
+ url("ROsanswebtextitalic.ttf") format("truetype");
31
+ font-family: "RijksoverheidSansWebText";
32
+ }
33
+
34
+ /* TODO: Serif toevoegen */
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "version": "1.0.0-alpha.0",
3
+ "author": "Community for NL Design System",
4
+ "description": "Font assets for LUX, the Design System for Logius, based on the NL Design System architecture",
5
+ "license": "SEE LICENSE IN LICENSE.md",
6
+ "name": "@lux-design-system/font",
7
+ "main": "dist/index.css",
8
+ "keywords": [
9
+ "nl-design-system",
10
+ "lux-design-system"
11
+ ],
12
+ "private": false,
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "clean:dist": "rimraf dist/",
21
+ "create:dist": "cpy . ../../dist/ --cwd=src",
22
+ "prebuild": "npm run clean:dist",
23
+ "build": "npm run create:dist",
24
+ "prepack": "npm run build"
25
+ },
26
+ "devDependencies": {
27
+ "cpy-cli": "5.0.0",
28
+ "rimraf": "5.0.7"
29
+ },
30
+ "repository": {
31
+ "type": "git+ssh",
32
+ "url": "git@github.com:nl-design-system/lux.git"
33
+ }
34
+ }