@utrecht/component-library-css 1.0.0-alpha.577 → 1.0.0-alpha.579

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 CHANGED
@@ -844,6 +844,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
844
844
  max-inline-size: var(--utrecht-form-max-inline-size);
845
845
  }
846
846
  .utrecht-html legend {
847
+ break-inside: avoid;
847
848
  color: var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));
848
849
  font-family: var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));
849
850
  font-size: var(--utrecht-form-fieldset-legend-font-size);
@@ -894,6 +895,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
894
895
  }
895
896
  }
896
897
  .utrecht-html h1 {
898
+ break-inside: avoid-column;
897
899
  page-break-after: avoid;
898
900
  page-break-inside: avoid;
899
901
  color: var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -907,6 +909,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
907
909
  --utrecht-space-around: 1;
908
910
  }
909
911
  .utrecht-html h2 {
912
+ break-inside: avoid-column;
910
913
  page-break-after: avoid;
911
914
  page-break-inside: avoid;
912
915
  color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -920,6 +923,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
920
923
  --utrecht-space-around: 1;
921
924
  }
922
925
  .utrecht-html h3 {
926
+ break-inside: avoid-column;
923
927
  page-break-after: avoid;
924
928
  page-break-inside: avoid;
925
929
  color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -933,6 +937,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
933
937
  --utrecht-space-around: 1;
934
938
  }
935
939
  .utrecht-html h4 {
940
+ break-inside: avoid-column;
936
941
  page-break-after: avoid;
937
942
  page-break-inside: avoid;
938
943
  color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -946,6 +951,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
946
951
  --utrecht-space-around: 1;
947
952
  }
948
953
  .utrecht-html h5 {
954
+ break-inside: avoid-column;
949
955
  page-break-after: avoid;
950
956
  page-break-inside: avoid;
951
957
  color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -959,6 +965,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
959
965
  --utrecht-space-around: 1;
960
966
  }
961
967
  .utrecht-html h6 {
968
+ break-inside: avoid-column;
962
969
  page-break-after: avoid;
963
970
  page-break-inside: avoid;
964
971
  color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -1380,6 +1387,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
1380
1387
  --utrecht-space-around: 1;
1381
1388
  }
1382
1389
  .utrecht-html caption {
1390
+ break-inside: avoid;
1383
1391
  color: var(--utrecht-table-caption-color);
1384
1392
  font-family: var(--utrecht-table-caption-font-family);
1385
1393
  font-size: var(--utrecht-table-caption-font-size);
@@ -1393,6 +1401,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
1393
1401
  --_utrecht-table-header-cell-vertical-align: bottom;
1394
1402
  --_utrecht-table-header-cell-z-index: 8;
1395
1403
  background-color: var(--utrecht-table-header-background-color);
1404
+ break-inside: avoid;
1396
1405
  color: var(--utrecht-table-header-color);
1397
1406
  font-weight: var(--utrecht-table-header-font-weight);
1398
1407
  page-break-inside: avoid;
package/dist/index.css CHANGED
@@ -41,6 +41,7 @@
41
41
  */
42
42
  /* stylelint-disable-next-line block-no-empty */
43
43
  .utrecht-accordion__section {
44
+ break-inside: avoid;
44
45
  margin-block-end: var(--utrecht-accordion-section-margin-block-end);
45
46
  margin-block-start: var(--utrecht-accordion-section-margin-block-start);
46
47
  }
@@ -2535,6 +2536,12 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
2535
2536
  * Copyright (c) 2021-2022 Gemeente Utrecht
2536
2537
  * Copyright (c) 2021-2022 Frameless B.V.
2537
2538
  */
2539
+ /* `@mixin utrecht-data-list--html-dl` is not necessary.
2540
+ * Default styles include only `display` and `margin`, and those properties are configured by default.
2541
+ */
2542
+ /* `@mixin utrecht-data-list__item-key--html-dt` is not necessary, `<dt>` has no default styles. */
2543
+ /* stylelint-disable-next-line block-no-empty */
2544
+ /* stylelint-disable-next-line block-no-empty */
2538
2545
  .utrecht-data-list {
2539
2546
  /* also set `margin-block` to reset browser styling of <dl> */
2540
2547
  display: block;
@@ -2558,7 +2565,11 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
2558
2565
  min-block-size: calc(var(--utrecht-data-list-item-value-line-height) * 1rem);
2559
2566
  }
2560
2567
 
2561
- .utrecht-data-list__actions--html-dd,
2568
+ .utrecht-data-list__actions--html-dd {
2569
+ /* reset browser styling of <dd> */
2570
+ margin-inline-start: 0;
2571
+ }
2572
+
2562
2573
  .utrecht-data-list__item-value--html-dd {
2563
2574
  /* reset browser styling of <dd> */
2564
2575
  margin-inline-start: 0;
@@ -2584,11 +2595,12 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
2584
2595
  border-block-end-color: var(--utrecht-data-list-rows-border-bottom-color, transparent);
2585
2596
  border-block-end-style: solid;
2586
2597
  border-block-end-width: var(--utrecht-data-list-rows-border-bottom-width, 0);
2598
+ column-gap: var(--utrecht-data-list-rows-gap);
2587
2599
  display: grid;
2588
- gap: 0 var(--utrecht-data-list-rows-gap);
2589
2600
  grid-auto-columns: 1fr;
2590
2601
  grid-template-columns: repeat(auto-fit, var(--_utrecht-auto-col));
2591
2602
  margin-block-start: var(--utrecht-data-list-rows-item-margin-block-start);
2603
+ row-gap: 0;
2592
2604
  }
2593
2605
  .utrecht-data-list--rows .utrecht-data-list__item:first-of-type {
2594
2606
  margin-block-start: 0;
@@ -2735,6 +2747,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
2735
2747
  */
2736
2748
  /* stylelint-disable-next-line block-no-empty */
2737
2749
  .utrecht-form-field {
2750
+ break-inside: avoid;
2738
2751
  font-family: var(--utrecht-document-font-family, inherit);
2739
2752
  margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-form-field-margin-block-end, 0));
2740
2753
  margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-form-field-margin-block-start, 0));
@@ -2881,6 +2894,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
2881
2894
  }
2882
2895
 
2883
2896
  .utrecht-form-fieldset__legend {
2897
+ break-inside: avoid;
2884
2898
  color: var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));
2885
2899
  font-family: var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));
2886
2900
  font-size: var(--utrecht-form-fieldset-legend-font-size);
@@ -3118,6 +3132,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
3118
3132
  * Copyright (c) 2021-2022 Frameless B.V.
3119
3133
  */
3120
3134
  .utrecht-heading-1 {
3135
+ break-inside: avoid-column;
3121
3136
  page-break-after: avoid;
3122
3137
  page-break-inside: avoid;
3123
3138
  color: var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -3151,6 +3166,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
3151
3166
  * Copyright (c) 2021-2022 Frameless B.V.
3152
3167
  */
3153
3168
  .utrecht-heading-2 {
3169
+ break-inside: avoid-column;
3154
3170
  page-break-after: avoid;
3155
3171
  page-break-inside: avoid;
3156
3172
  color: var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -3184,6 +3200,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
3184
3200
  * Copyright (c) 2021-2022 Frameless B.V.
3185
3201
  */
3186
3202
  .utrecht-heading-3 {
3203
+ break-inside: avoid-column;
3187
3204
  page-break-after: avoid;
3188
3205
  page-break-inside: avoid;
3189
3206
  color: var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -3217,6 +3234,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
3217
3234
  * Copyright (c) 2021-2022 Frameless B.V.
3218
3235
  */
3219
3236
  .utrecht-heading-4 {
3237
+ break-inside: avoid-column;
3220
3238
  page-break-after: avoid;
3221
3239
  page-break-inside: avoid;
3222
3240
  color: var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -3250,6 +3268,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
3250
3268
  * Copyright (c) 2021-2022 Frameless B.V.
3251
3269
  */
3252
3270
  .utrecht-heading-5 {
3271
+ break-inside: avoid-column;
3253
3272
  page-break-after: avoid;
3254
3273
  page-break-inside: avoid;
3255
3274
  color: var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -3283,6 +3302,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
3283
3302
  * Copyright (c) 2021-2022 Frameless B.V.
3284
3303
  */
3285
3304
  .utrecht-heading-6 {
3305
+ break-inside: avoid-column;
3286
3306
  page-break-after: avoid;
3287
3307
  page-break-inside: avoid;
3288
3308
  color: var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));
@@ -5695,6 +5715,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
5695
5715
 
5696
5716
  .utrecht-table--html-table > caption,
5697
5717
  .utrecht-table__caption {
5718
+ break-inside: avoid;
5698
5719
  color: var(--utrecht-table-caption-color);
5699
5720
  font-family: var(--utrecht-table-caption-font-family);
5700
5721
  font-size: var(--utrecht-table-caption-font-size);
@@ -5710,6 +5731,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
5710
5731
  --_utrecht-table-header-cell-vertical-align: bottom;
5711
5732
  --_utrecht-table-header-cell-z-index: 8;
5712
5733
  background-color: var(--utrecht-table-header-background-color);
5734
+ break-inside: avoid;
5713
5735
  color: var(--utrecht-table-header-color);
5714
5736
  font-weight: var(--utrecht-table-header-font-weight);
5715
5737
  page-break-inside: avoid;
@@ -5772,6 +5794,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
5772
5794
  .utrecht-table--html-table > tbody > tr,
5773
5795
  .utrecht-table--html-table > tfoot > tr,
5774
5796
  .utrecht-table__row {
5797
+ break-inside: avoid;
5775
5798
  page-break-inside: avoid;
5776
5799
  }
5777
5800
 
@@ -6489,6 +6512,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
6489
6512
  * Copyright (c) 2021 Gemeente Utrecht
6490
6513
  */
6491
6514
  .utrecht-url {
6515
+ break-inside: avoid;
6492
6516
  font-variant-ligatures: none;
6493
6517
  hyphens: none;
6494
6518
  page-break-inside: avoid;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.577",
2
+ "version": "1.0.0-alpha.579",
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": "3b0b954c3b91410c10c8c02f67ddb8de5fc3e555"
30
30
  }