@utrecht/component-library-css 1.0.0-alpha.576 → 1.0.0-alpha.578
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.css +35 -2
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -2313,6 +2313,28 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
2313
2313
|
outline-style: revert;
|
|
2314
2314
|
}
|
|
2315
2315
|
|
|
2316
|
+
/**
|
|
2317
|
+
* @license EUPL-1.2
|
|
2318
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
2319
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
2320
|
+
*/
|
|
2321
|
+
/**
|
|
2322
|
+
* @license EUPL-1.2
|
|
2323
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
2324
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
2325
|
+
*/
|
|
2326
|
+
.utrecht-column-layout {
|
|
2327
|
+
column-gap: var(--utrecht-column-layout-gap, 2em);
|
|
2328
|
+
column-width: var(--utrecht-column-layout-column-width, 40ch);
|
|
2329
|
+
display: block;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
.utrecht-column-layout--rule {
|
|
2333
|
+
column-rule-color: var(--utrecht-column-layout-column-rule-color);
|
|
2334
|
+
column-rule-style: solid;
|
|
2335
|
+
column-rule-width: var(--utrecht-column-layout-column-rule-width, 0);
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2316
2338
|
/**
|
|
2317
2339
|
* @license EUPL-1.2
|
|
2318
2340
|
* Copyright (c) 2021 Robbert Broersma
|
|
@@ -2513,6 +2535,12 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
2513
2535
|
* Copyright (c) 2021-2022 Gemeente Utrecht
|
|
2514
2536
|
* Copyright (c) 2021-2022 Frameless B.V.
|
|
2515
2537
|
*/
|
|
2538
|
+
/* `@mixin utrecht-data-list--html-dl` is not necessary.
|
|
2539
|
+
* Default styles include only `display` and `margin`, and those properties are configured by default.
|
|
2540
|
+
*/
|
|
2541
|
+
/* `@mixin utrecht-data-list__item-key--html-dt` is not necessary, `<dt>` has no default styles. */
|
|
2542
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2543
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
2516
2544
|
.utrecht-data-list {
|
|
2517
2545
|
/* also set `margin-block` to reset browser styling of <dl> */
|
|
2518
2546
|
display: block;
|
|
@@ -2536,7 +2564,11 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
2536
2564
|
min-block-size: calc(var(--utrecht-data-list-item-value-line-height) * 1rem);
|
|
2537
2565
|
}
|
|
2538
2566
|
|
|
2539
|
-
.utrecht-data-list__actions--html-dd
|
|
2567
|
+
.utrecht-data-list__actions--html-dd {
|
|
2568
|
+
/* reset browser styling of <dd> */
|
|
2569
|
+
margin-inline-start: 0;
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2540
2572
|
.utrecht-data-list__item-value--html-dd {
|
|
2541
2573
|
/* reset browser styling of <dd> */
|
|
2542
2574
|
margin-inline-start: 0;
|
|
@@ -2562,11 +2594,12 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
2562
2594
|
border-block-end-color: var(--utrecht-data-list-rows-border-bottom-color, transparent);
|
|
2563
2595
|
border-block-end-style: solid;
|
|
2564
2596
|
border-block-end-width: var(--utrecht-data-list-rows-border-bottom-width, 0);
|
|
2597
|
+
column-gap: var(--utrecht-data-list-rows-gap);
|
|
2565
2598
|
display: grid;
|
|
2566
|
-
gap: 0 var(--utrecht-data-list-rows-gap);
|
|
2567
2599
|
grid-auto-columns: 1fr;
|
|
2568
2600
|
grid-template-columns: repeat(auto-fit, var(--_utrecht-auto-col));
|
|
2569
2601
|
margin-block-start: var(--utrecht-data-list-rows-item-margin-block-start);
|
|
2602
|
+
row-gap: 0;
|
|
2570
2603
|
}
|
|
2571
2604
|
.utrecht-data-list--rows .utrecht-data-list__item:first-of-type {
|
|
2572
2605
|
margin-block-start: 0;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.578",
|
|
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",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"clean": "rimraf dist/"
|
|
27
27
|
},
|
|
28
28
|
"main": "dist/index.css",
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "d074041a4ec2d33dab6173dfe0d872d63db5a739"
|
|
30
30
|
}
|