@utrecht/component-library-css 1.0.0-alpha.574 → 1.0.0-alpha.576

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 +31 -2
  2. package/package.json +2 -2
package/dist/index.css CHANGED
@@ -743,9 +743,14 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
743
743
  cursor: var(--utrecht-action-disabled-cursor, not-allowed);
744
744
  }
745
745
 
746
- .utrecht-breadcrumb__link--current:any-link {
747
- /* `current` should override `disabled` */
746
+ .utrecht-breadcrumb__link--current {
747
+ /*
748
+ * `current` should apply to `disabled` links too, and it should override `disabled`.
749
+ * The override is the reason why this selector is not ordered alphabetically.
750
+ */
751
+ --utrecht-link-current-font-weight: var(--utrecht-breadcrumb-nav-link-current-font-weight, inherit);
748
752
  cursor: var(--utrecht-action-inert-cursor, default);
753
+ font-weight: var(--utrecht-breadcrumb-nav-link-current-font-weight, inherit);
749
754
  }
750
755
 
751
756
  /* stylelint-disable-next-line block-no-empty */
@@ -3340,6 +3345,8 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
3340
3345
  */
3341
3346
  /* stylelint-disable-next-line property-disallowed-list */
3342
3347
  height: 100%;
3348
+ /* Remove tooltip from SVG `<title>` element using `pointer-events: none` */
3349
+ pointer-events: none;
3343
3350
  /* stylelint-disable-next-line property-disallowed-list */
3344
3351
  width: 100%;
3345
3352
  }
@@ -4204,6 +4211,28 @@ however browsers don't seem to have implemented great looking supixel tweening y
4204
4211
  outline-style: revert;
4205
4212
  }
4206
4213
 
4214
+ /**
4215
+ * @license EUPL-1.2
4216
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
4217
+ * Copyright (c) 2021 Gemeente Utrecht
4218
+ */
4219
+ /**
4220
+ * @license EUPL-1.2
4221
+ * Copyright (c) 2021 Gemeente Utrecht
4222
+ * Copyright (c) 2021 Robbert Broersma
4223
+ */
4224
+ .utrecht-multiline-data {
4225
+ white-space: pre-line;
4226
+ /* stylelint-disable-next-line property-no-unknown */
4227
+ white-space-collapse: preserve-breaks;
4228
+ }
4229
+
4230
+ .utrecht-multiline-data--html-pre {
4231
+ font-family: inherit;
4232
+ margin-block-end: 0;
4233
+ margin-block-start: 0;
4234
+ }
4235
+
4207
4236
  /**
4208
4237
  * @license EUPL-1.2
4209
4238
  * Copyright (c) 2021 The Knights Who Say NIH! B.V.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.574",
2
+ "version": "1.0.0-alpha.576",
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": "8721384851ba6dc9d26d8be86675ec2ac9fc8f85"
29
+ "gitHead": "f36c0b0a2911dceab5b827f00076101e2687a24a"
30
30
  }