@utrecht/component-library-css 1.0.0-alpha.316 → 1.0.0-alpha.319
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/html.css +4 -4
- package/dist/index.css +6 -5
- package/package.json +2 -3
- package/project.json +17 -0
package/dist/html.css
CHANGED
|
@@ -734,10 +734,10 @@
|
|
|
734
734
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-paragraph-margin-block-start, 0));
|
|
735
735
|
}
|
|
736
736
|
.utrecht-html p.lead {
|
|
737
|
-
color: var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));
|
|
738
|
-
font-size: var(--utrecht-paragraph-lead-font-size, inherit);
|
|
739
|
-
font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
|
|
740
|
-
line-height: var(--utrecht-paragraph-lead-line-height, inherit);
|
|
737
|
+
color: var(--utrecht-paragraph-lead-color, var(--utrecht-paragraph-color, var(--utrecht-document-color, inherit)));
|
|
738
|
+
font-size: var(--utrecht-paragraph-lead-font-size, var(--utrecht-paragraph-font-size, inherit));
|
|
739
|
+
font-weight: var(--utrecht-paragraph-lead-font-weight, var(--utrecht-paragraph-font-weight, inherit));
|
|
740
|
+
line-height: var(--utrecht-paragraph-lead-line-height, var(--utrecht-paragraph-line-height, inherit));
|
|
741
741
|
}
|
|
742
742
|
.utrecht-html * ~ p {
|
|
743
743
|
--utrecht-space-around: 1;
|
package/dist/index.css
CHANGED
|
@@ -2785,7 +2785,8 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
2785
2785
|
|
|
2786
2786
|
/**
|
|
2787
2787
|
* @license EUPL-1.2
|
|
2788
|
-
* Copyright (c)
|
|
2788
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
2789
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
2789
2790
|
*/
|
|
2790
2791
|
/**
|
|
2791
2792
|
* @license EUPL-1.2
|
|
@@ -3156,10 +3157,10 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3156
3157
|
}
|
|
3157
3158
|
|
|
3158
3159
|
.utrecht-paragraph--lead {
|
|
3159
|
-
color: var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));
|
|
3160
|
-
font-size: var(--utrecht-paragraph-lead-font-size, inherit);
|
|
3161
|
-
font-weight: var(--utrecht-paragraph-lead-font-weight, inherit);
|
|
3162
|
-
line-height: var(--utrecht-paragraph-lead-line-height, inherit);
|
|
3160
|
+
color: var(--utrecht-paragraph-lead-color, var(--utrecht-paragraph-color, var(--utrecht-document-color, inherit)));
|
|
3161
|
+
font-size: var(--utrecht-paragraph-lead-font-size, var(--utrecht-paragraph-font-size, inherit));
|
|
3162
|
+
font-weight: var(--utrecht-paragraph-lead-font-weight, var(--utrecht-paragraph-font-weight, inherit));
|
|
3163
|
+
line-height: var(--utrecht-paragraph-lead-line-height, var(--utrecht-paragraph-line-height, inherit));
|
|
3163
3164
|
}
|
|
3164
3165
|
|
|
3165
3166
|
.utrecht-paragraph--distanced {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.319",
|
|
3
3
|
"author": "Community for NL Design System",
|
|
4
4
|
"description": "Component library bundle for the Municipality of Utrecht based on the NL Design System architecture",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"url": "git@github.com:nl-design-system/utrecht.git"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@utrecht/design-tokens": "1.0.0-alpha.309",
|
|
20
19
|
"node-sass-package-importer": "5.3.2",
|
|
21
20
|
"rimraf": "3.0.2",
|
|
22
21
|
"sass": "1.54.0"
|
|
@@ -27,5 +26,5 @@
|
|
|
27
26
|
"clean": "rimraf dist/"
|
|
28
27
|
},
|
|
29
28
|
"main": "dist/index.css",
|
|
30
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "59b58253ad5f576a9c9f092fd9266f3c7783cfb1"
|
|
31
30
|
}
|
package/project.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
3
|
+
"root": "{workspaceRoot}/packages/component-library-css",
|
|
4
|
+
"sourceRoot": "{projectRoot}",
|
|
5
|
+
"projectType": "library",
|
|
6
|
+
"targets": {
|
|
7
|
+
"build": {
|
|
8
|
+
"executor": "@nrwl/workspace:run-commands",
|
|
9
|
+
"outputs": ["{projectRoot}/dist"],
|
|
10
|
+
"options": {
|
|
11
|
+
"command": "npm run build",
|
|
12
|
+
"cwd": "packages/component-library-css"
|
|
13
|
+
},
|
|
14
|
+
"dependsOn": ["^build"]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|