@utrecht/component-library-css 1.0.0-alpha.577 → 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.
Files changed (2) hide show
  1. package/dist/index.css +13 -2
  2. package/package.json +2 -2
package/dist/index.css CHANGED
@@ -2535,6 +2535,12 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
2535
2535
  * Copyright (c) 2021-2022 Gemeente Utrecht
2536
2536
  * Copyright (c) 2021-2022 Frameless B.V.
2537
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 */
2538
2544
  .utrecht-data-list {
2539
2545
  /* also set `margin-block` to reset browser styling of <dl> */
2540
2546
  display: block;
@@ -2558,7 +2564,11 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
2558
2564
  min-block-size: calc(var(--utrecht-data-list-item-value-line-height) * 1rem);
2559
2565
  }
2560
2566
 
2561
- .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
+
2562
2572
  .utrecht-data-list__item-value--html-dd {
2563
2573
  /* reset browser styling of <dd> */
2564
2574
  margin-inline-start: 0;
@@ -2584,11 +2594,12 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
2584
2594
  border-block-end-color: var(--utrecht-data-list-rows-border-bottom-color, transparent);
2585
2595
  border-block-end-style: solid;
2586
2596
  border-block-end-width: var(--utrecht-data-list-rows-border-bottom-width, 0);
2597
+ column-gap: var(--utrecht-data-list-rows-gap);
2587
2598
  display: grid;
2588
- gap: 0 var(--utrecht-data-list-rows-gap);
2589
2599
  grid-auto-columns: 1fr;
2590
2600
  grid-template-columns: repeat(auto-fit, var(--_utrecht-auto-col));
2591
2601
  margin-block-start: var(--utrecht-data-list-rows-item-margin-block-start);
2602
+ row-gap: 0;
2592
2603
  }
2593
2604
  .utrecht-data-list--rows .utrecht-data-list__item:first-of-type {
2594
2605
  margin-block-start: 0;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.577",
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": "7fdaf0f100856ed33b188092dfb8c8c665f09d1f"
29
+ "gitHead": "d074041a4ec2d33dab6173dfe0d872d63db5a739"
30
30
  }