@utrecht/component-library-css 1.0.0-alpha.364 → 1.0.0-alpha.365

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
@@ -85,6 +85,16 @@
85
85
  * @license EUPL-1.2
86
86
  * Copyright (c) 2021 Robbert Broersma
87
87
  */
88
+ /**
89
+ * @license EUPL-1.2
90
+ * Copyright (c) 2020-2022 Gemeente Utrecht
91
+ * Copyright (c) 2020-2022 Frameless B.V.
92
+ */
93
+ /**
94
+ * @license EUPL-1.2
95
+ * Copyright (c) 2020-2022 Gemeente Utrecht
96
+ * Copyright (c) 2020-2022 Frameless B.V.
97
+ */
88
98
  /**
89
99
  * @license EUPL-1.2
90
100
  * Copyright (c) 2021 Robbert Broersma
@@ -655,9 +665,10 @@ however browsers don't seem to have implemented great looking supixel tweening y
655
665
  margin-block-start: 0;
656
666
  margin-inline-end: 0;
657
667
  margin-inline-start: 0;
668
+ cursor: var(--utrecht-action-activate-cursor, revert);
658
669
  }
659
670
  .utrecht-html input[type=checkbox i]:disabled {
660
- cursor: var(--utrecht-action-disabled-cursor);
671
+ cursor: var(--utrecht-action-disabled-cursor, revert);
661
672
  }
662
673
  .utrecht-html input[type=checkbox i]:focus {
663
674
  box-shadow: 0 0 0 var(--utrecht-focus-outline-width, 0) var(--utrecht-focus-inverse-outline-color, transparent);
@@ -713,6 +724,9 @@ however browsers don't seem to have implemented great looking supixel tweening y
713
724
  font-size: var(--utrecht-figure-caption-font-size);
714
725
  line-height: var(--utrecht-figure-caption-line-height);
715
726
  }
727
+ .utrecht-html form {
728
+ max-inline-size: var(--utrecht-form-max-inline-size);
729
+ }
716
730
  .utrecht-html legend {
717
731
  color: var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));
718
732
  font-family: var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));
@@ -738,10 +752,12 @@ however browsers don't seem to have implemented great looking supixel tweening y
738
752
  }
739
753
  .utrecht-html input[type=checkbox i] ~ label {
740
754
  color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
755
+ cursor: var(--utrecht-action-activate-cursor, revert);
741
756
  font-weight: var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight));
742
757
  }
743
758
  .utrecht-html input[type=radio i] ~ label {
744
759
  color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
760
+ cursor: var(--utrecht-action-activate-cursor, revert);
745
761
  font-weight: var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight));
746
762
  }
747
763
  .utrecht-html h1 {
@@ -935,9 +951,10 @@ however browsers don't seem to have implemented great looking supixel tweening y
935
951
  margin-block-start: 0;
936
952
  margin-inline-end: 0;
937
953
  margin-inline-start: 0;
954
+ cursor: var(--utrecht-action-activate-cursor, revert);
938
955
  }
939
956
  .utrecht-html input[type=radio i]:disabled {
940
- cursor: var(--utrecht-action-disabled-cursor);
957
+ cursor: var(--utrecht-action-disabled-cursor, revert);
941
958
  }
942
959
  .utrecht-html input[type=radio i]:focus {
943
960
  box-shadow: 0 0 0 var(--utrecht-focus-outline-width, 0) var(--utrecht-focus-inverse-outline-color, transparent);
package/dist/index.css CHANGED
@@ -1674,11 +1674,12 @@ ol.utrecht-breadcrumb__list {
1674
1674
  margin-block-start: 0;
1675
1675
  margin-inline-end: 0;
1676
1676
  margin-inline-start: 0;
1677
+ cursor: var(--utrecht-action-activate-cursor, revert);
1677
1678
  }
1678
1679
 
1679
1680
  /* stylelint-disable-next-line block-no-empty */
1680
1681
  .utrecht-checkbox--disabled {
1681
- cursor: var(--utrecht-action-disabled-cursor);
1682
+ cursor: var(--utrecht-action-disabled-cursor, revert);
1682
1683
  }
1683
1684
 
1684
1685
  .utrecht-checkbox--focus-visible {
@@ -1690,7 +1691,7 @@ ol.utrecht-breadcrumb__list {
1690
1691
  }
1691
1692
 
1692
1693
  .utrecht-checkbox--html-input:disabled {
1693
- cursor: var(--utrecht-action-disabled-cursor);
1694
+ cursor: var(--utrecht-action-disabled-cursor, revert);
1694
1695
  }
1695
1696
  .utrecht-checkbox--html-input:focus {
1696
1697
  box-shadow: 0 0 0 var(--utrecht-focus-outline-width, 0) var(--utrecht-focus-inverse-outline-color, transparent);
@@ -1729,7 +1730,7 @@ ol.utrecht-breadcrumb__list {
1729
1730
  border-color: var(--utrecht-custom-checkbox-border-color);
1730
1731
  border-style: solid;
1731
1732
  border-width: var(--utrecht-custom-checkbox-border-width);
1732
- cursor: var(--utrecht-action-activate-cursor);
1733
+ cursor: var(--utrecht-action-activate-cursor, revert);
1733
1734
  height: var(--utrecht-custom-checkbox-size);
1734
1735
  margin-block-start: var(--utrecht-custom-checkbox-margin-block-start);
1735
1736
  -webkit-print-color-adjust: exact;
@@ -2106,6 +2107,20 @@ ol.utrecht-breadcrumb__list {
2106
2107
  font-weight: var(--utrecht-emphasis-strong-font-weight, bold);
2107
2108
  }
2108
2109
 
2110
+ /**
2111
+ * @license EUPL-1.2
2112
+ * Copyright (c) 2020-2022 Gemeente Utrecht
2113
+ * Copyright (c) 2020-2022 Frameless B.V.
2114
+ */
2115
+ /**
2116
+ * @license EUPL-1.2
2117
+ * Copyright (c) 2020-2022 Gemeente Utrecht
2118
+ * Copyright (c) 2020-2022 Frameless B.V.
2119
+ */
2120
+ .utrecht-form {
2121
+ max-inline-size: var(--utrecht-form-max-inline-size);
2122
+ }
2123
+
2109
2124
  /**
2110
2125
  * @license EUPL-1.2
2111
2126
  * Copyright (c) 2021 Gemeente Utrecht
@@ -2331,6 +2346,7 @@ ol.utrecht-breadcrumb__list {
2331
2346
 
2332
2347
  .utrecht-form-label--checkbox {
2333
2348
  color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
2349
+ cursor: var(--utrecht-action-activate-cursor, revert);
2334
2350
  font-weight: var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight));
2335
2351
  }
2336
2352
 
@@ -2339,12 +2355,13 @@ ol.utrecht-breadcrumb__list {
2339
2355
  }
2340
2356
 
2341
2357
  .utrecht-form-label--disabled {
2342
- cursor: var(--utrecht-action-disabled-cursor);
2358
+ cursor: var(--utrecht-action-disabled-cursor, revert);
2343
2359
  font-weight: var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color));
2344
2360
  }
2345
2361
 
2346
2362
  .utrecht-form-label--radio {
2347
2363
  color: var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));
2364
+ cursor: var(--utrecht-action-activate-cursor, revert);
2348
2365
  font-weight: var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight));
2349
2366
  }
2350
2367
 
@@ -4038,11 +4055,12 @@ however browsers don't seem to have implemented great looking supixel tweening y
4038
4055
  margin-block-start: 0;
4039
4056
  margin-inline-end: 0;
4040
4057
  margin-inline-start: 0;
4058
+ cursor: var(--utrecht-action-activate-cursor, revert);
4041
4059
  }
4042
4060
 
4043
4061
  /* stylelint-disable-next-line block-no-empty */
4044
4062
  .utrecht-radio-button--disabled {
4045
- cursor: var(--utrecht-action-disabled-cursor);
4063
+ cursor: var(--utrecht-action-disabled-cursor, revert);
4046
4064
  }
4047
4065
 
4048
4066
  .utrecht-radio-button--focus-visible {
@@ -4054,7 +4072,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
4054
4072
  }
4055
4073
 
4056
4074
  .utrecht-radio-button--html-input:disabled {
4057
- cursor: var(--utrecht-action-disabled-cursor);
4075
+ cursor: var(--utrecht-action-disabled-cursor, revert);
4058
4076
  }
4059
4077
  .utrecht-radio-button--html-input:focus {
4060
4078
  box-shadow: 0 0 0 var(--utrecht-focus-outline-width, 0) var(--utrecht-focus-inverse-outline-color, transparent);
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.364",
2
+ "version": "1.0.0-alpha.365",
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": "3d3b8802ec7a1e2ea043330df02d0d2e868ce1c1"
29
+ "gitHead": "e13e9c6c1ce7f570c69754464081cf4ca9b0d55c"
30
30
  }