@utrecht/component-library-css 1.0.0-alpha.534 → 1.0.0-alpha.535

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 +58 -0
  2. package/package.json +2 -2
package/dist/index.css CHANGED
@@ -4562,6 +4562,64 @@ however browsers don't seem to have implemented great looking supixel tweening y
4562
4562
  outline-style: revert;
4563
4563
  }
4564
4564
 
4565
+ /**
4566
+ * @license EUPL-1.2
4567
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
4568
+ * Copyright (c) 2021 Gemeente Utrecht
4569
+ */
4570
+ /**
4571
+ * @license EUPL-1.2
4572
+ * Copyright (c) 2021 Gemeente Utrecht
4573
+ * Copyright (c) 2021 Robbert Broersma
4574
+ */
4575
+ .utrecht-data-placeholder {
4576
+ background-color: var(--utrecht-data-placeholder-background-color, currentColor);
4577
+ block-size: 1em;
4578
+ display: inline-block;
4579
+ inline-size: min(100%, var(--utrecht-data-placeholder-max-inline-size));
4580
+ max-inline-size: var(--utrecht-data-placeholder-max-inline-size);
4581
+ min-inline-size: var(--utrecht-data-placeholder-min-inline-size, 10ch);
4582
+ vertical-align: -0.1em;
4583
+ }
4584
+ @media print {
4585
+ .utrecht-data-placeholder {
4586
+ outline-color: currentColor;
4587
+ outline-style: dashed;
4588
+ outline-width: 0.1em;
4589
+ }
4590
+ }
4591
+ @media screen and (prefers-contrast: more) {
4592
+ .utrecht-data-placeholder {
4593
+ background-color: var(--utrecht-data-placeholder-high-contrast-background-color, var(--utrecht-data-placeholder-background-color, currentColor));
4594
+ }
4595
+ }
4596
+ @media screen and (forced-colors: active) {
4597
+ .utrecht-data-placeholder {
4598
+ background-color: GrayText;
4599
+ }
4600
+ }
4601
+
4602
+ .utrecht-data-placeholder--loading {
4603
+ cursor: var(--utrecht-action-busy-cursor, busy);
4604
+ }
4605
+
4606
+ /* class name available only for Storybook */
4607
+ .utrecht-data-placeholder--print {
4608
+ outline-color: currentColor;
4609
+ outline-style: dashed;
4610
+ outline-width: 0.1em;
4611
+ }
4612
+
4613
+ /* class name available only for Storybook */
4614
+ .utrecht-data-placeholder--forced-colors {
4615
+ background-color: GrayText;
4616
+ }
4617
+
4618
+ /* class name available only for Storybook */
4619
+ .utrecht-data-placeholder--high-contrast {
4620
+ cursor: var(--utrecht-action-busy-cursor, busy);
4621
+ }
4622
+
4565
4623
  /**
4566
4624
  * @license EUPL-1.2
4567
4625
  * 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.534",
2
+ "version": "1.0.0-alpha.535",
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": "c3bb0bc7cd9fc4dc420dc12f66eb52ac9301c383"
29
+ "gitHead": "9a262273ce5029dca33700b49b79b79d9c0eca36"
30
30
  }