@utrecht/component-library-css 1.0.0-alpha.205 → 1.0.0-alpha.208

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/bem.css CHANGED
@@ -426,6 +426,40 @@ ol.utrecht-breadcrumb__list {
426
426
  transform: scale(var(--utrecht-button-focus-transform-scale, 1));
427
427
  }
428
428
 
429
+ /**
430
+ * @license EUPL-1.2
431
+ * Copyright (c) 2022 Frameless B.V.
432
+ */
433
+ .utrecht-button-group {
434
+ background-color: var(--utrecht-button-group-background-color);
435
+ display: flex;
436
+ min-block-size: var(--utrecht-button-block-size);
437
+ padding-block-end: var(--utrecht-button-group-padding-block-end);
438
+ padding-block-start: var(--utrecht-button-group-padding-block-start);
439
+ }
440
+
441
+ .utrecht-button-group--distance {
442
+ margin-block-end: var(--utrecht-button-group-margin-block-end);
443
+ margin-block-start: var(--utrecht-button-group-margin-block-start);
444
+ }
445
+
446
+ .utrecht-button-group,
447
+ .utrecht-button-group--horizontal {
448
+ gap: var(--utrecht-button-group-inline-gap, 1em);
449
+ }
450
+
451
+ .utrecht-button-group__button-link--horizontal,
452
+ .utrecht-button-group--horizontal .utrecht-button-link,
453
+ .utrecht-button-group:not(.utrecht-button-group--vertical) .utrecht-button-link {
454
+ --utrecht-button-padding-inline-end: 0;
455
+ --utrecht-button-padding-inline-start: 0;
456
+ }
457
+
458
+ .utrecht-button-group--vertical {
459
+ flex-direction: column;
460
+ gap: var(--utrecht-button-group-block-gap, 1em);
461
+ }
462
+
429
463
  /**
430
464
  * @license EUPL-1.2
431
465
  * Copyright (c) 2021 Robbert Broersma
@@ -1516,87 +1550,6 @@ however browsers don't seem to have implemented great looking supixel tweening y
1516
1550
  outline-style: none;
1517
1551
  }
1518
1552
 
1519
- /**
1520
- * @license EUPL-1.2
1521
- * Copyright (c) 2021 Gemeente Utrecht
1522
- */
1523
- /**
1524
- * @license EUPL-1.2
1525
- * Copyright (c) 2021 Gemeente Utrecht
1526
- * Copyright (c) 2021 Robbert Broersma
1527
- */
1528
- /* stylelint-disable-next-line block-no-empty */
1529
- .utrecht-navhtml {
1530
- font-family: var(--utrecht-font-family-sans-serif);
1531
- }
1532
-
1533
- .utrecht-topnav__list {
1534
- background-color: var(--utrecht-topnav-list-background-color);
1535
- display: flex;
1536
- justify-content: space-between;
1537
- list-style: none;
1538
- list-style-image: none;
1539
- margin-block-end: 0;
1540
- margin-block-start: 0;
1541
- overflow: visible;
1542
- padding-block-end: 0;
1543
- padding-block-start: 0;
1544
- padding-inline-end: 0;
1545
- padding-inline-start: 0;
1546
- }
1547
-
1548
- .utrecht-topnav__item {
1549
- border-inline-end: 1px solid var(--utrecht-topnav-list-border-color);
1550
- flex: 1 0 auto;
1551
- margin-inline-start: 0;
1552
- text-align: center;
1553
- }
1554
-
1555
- .utrecht-topnav__item li:first-child {
1556
- border-inline-start: 1px solid var(--utrecht-topnav-list-border-color);
1557
- padding-inline-start: 0;
1558
- }
1559
-
1560
- .utrecht-topnav__link {
1561
- color: var(--utrecht-topnav-link-color);
1562
- display: block;
1563
- padding-block-end: 1rem;
1564
- padding-block-start: 1rem;
1565
- text-decoration: none;
1566
- }
1567
-
1568
- .utrecht-topnav__link:hover {
1569
- background-color: var(--utrecht-topnav-link-hover-background-color);
1570
- color: var(--utrecht-topnav-link-color);
1571
- text-decoration: underline;
1572
- }
1573
-
1574
- .utrecht-topnav__link--current {
1575
- background-color: var(--utrecht-topnav-list-background-active);
1576
- text-decoration: underline;
1577
- }
1578
-
1579
- .utrecht-topnav__link--focus, .utrecht-topnav__link:focus {
1580
- background-color: var(--utrecht-topnav-link-focus-background-color);
1581
- /* #ffd633 */
1582
- color: var(--utrecht-topnav-link-focus-color, var(--utrecht-topnav-link-color));
1583
- text-decoration: var(--utrecht-topnav-link-focus-text-decoration, var(--utrecht-topnav-link-text-decoration, underline));
1584
- }
1585
-
1586
- .utrecht-topnav__link--focus-visible, .utrecht-topnav__link:focus {
1587
- box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1588
- outline-color: var(--utrecht-focus-outline-color, transparent);
1589
- outline-offset: var(--utrecht-focus-outline-offset, 0);
1590
- outline-style: var(--utrecht-focus-outline-style, solid);
1591
- outline-width: var(--utrecht-focus-outline-width, 0);
1592
- }
1593
-
1594
- .utrecht-topnav__link:focus:not(:focus-visible) {
1595
- /* undo focus ring */
1596
- box-shadow: none;
1597
- outline-style: none;
1598
- }
1599
-
1600
1553
  /**
1601
1554
  * @license EUPL-1.2
1602
1555
  * Copyright (c) 2021 The Knights Who Say NIH! B.V.
package/dist/index.css CHANGED
@@ -463,6 +463,40 @@ ol.utrecht-breadcrumb__list {
463
463
  transform: scale(var(--utrecht-button-focus-transform-scale, 1));
464
464
  }
465
465
 
466
+ /**
467
+ * @license EUPL-1.2
468
+ * Copyright (c) 2022 Frameless B.V.
469
+ */
470
+ .utrecht-button-group {
471
+ background-color: var(--utrecht-button-group-background-color);
472
+ display: flex;
473
+ min-block-size: var(--utrecht-button-block-size);
474
+ padding-block-end: var(--utrecht-button-group-padding-block-end);
475
+ padding-block-start: var(--utrecht-button-group-padding-block-start);
476
+ }
477
+
478
+ .utrecht-button-group--distance {
479
+ margin-block-end: var(--utrecht-button-group-margin-block-end);
480
+ margin-block-start: var(--utrecht-button-group-margin-block-start);
481
+ }
482
+
483
+ .utrecht-button-group,
484
+ .utrecht-button-group--horizontal {
485
+ gap: var(--utrecht-button-group-inline-gap, 1em);
486
+ }
487
+
488
+ .utrecht-button-group__button-link--horizontal,
489
+ .utrecht-button-group--horizontal .utrecht-button-link,
490
+ .utrecht-button-group:not(.utrecht-button-group--vertical) .utrecht-button-link {
491
+ --utrecht-button-padding-inline-end: 0;
492
+ --utrecht-button-padding-inline-start: 0;
493
+ }
494
+
495
+ .utrecht-button-group--vertical {
496
+ flex-direction: column;
497
+ gap: var(--utrecht-button-group-block-gap, 1em);
498
+ }
499
+
466
500
  /**
467
501
  * @license EUPL-1.2
468
502
  * Copyright (c) 2021 Robbert Broersma
@@ -1556,87 +1590,6 @@ however browsers don't seem to have implemented great looking supixel tweening y
1556
1590
  outline-style: none;
1557
1591
  }
1558
1592
 
1559
- /**
1560
- * @license EUPL-1.2
1561
- * Copyright (c) 2021 Gemeente Utrecht
1562
- */
1563
- /**
1564
- * @license EUPL-1.2
1565
- * Copyright (c) 2021 Gemeente Utrecht
1566
- * Copyright (c) 2021 Robbert Broersma
1567
- */
1568
- /* stylelint-disable-next-line block-no-empty */
1569
- .utrecht-navhtml {
1570
- font-family: var(--utrecht-font-family-sans-serif);
1571
- }
1572
-
1573
- .utrecht-topnav__list {
1574
- background-color: var(--utrecht-topnav-list-background-color);
1575
- display: flex;
1576
- justify-content: space-between;
1577
- list-style: none;
1578
- list-style-image: none;
1579
- margin-block-end: 0;
1580
- margin-block-start: 0;
1581
- overflow: visible;
1582
- padding-block-end: 0;
1583
- padding-block-start: 0;
1584
- padding-inline-end: 0;
1585
- padding-inline-start: 0;
1586
- }
1587
-
1588
- .utrecht-topnav__item {
1589
- border-inline-end: 1px solid var(--utrecht-topnav-list-border-color);
1590
- flex: 1 0 auto;
1591
- margin-inline-start: 0;
1592
- text-align: center;
1593
- }
1594
-
1595
- .utrecht-topnav__item li:first-child {
1596
- border-inline-start: 1px solid var(--utrecht-topnav-list-border-color);
1597
- padding-inline-start: 0;
1598
- }
1599
-
1600
- .utrecht-topnav__link {
1601
- color: var(--utrecht-topnav-link-color);
1602
- display: block;
1603
- padding-block-end: 1rem;
1604
- padding-block-start: 1rem;
1605
- text-decoration: none;
1606
- }
1607
-
1608
- .utrecht-topnav__link:hover {
1609
- background-color: var(--utrecht-topnav-link-hover-background-color);
1610
- color: var(--utrecht-topnav-link-color);
1611
- text-decoration: underline;
1612
- }
1613
-
1614
- .utrecht-topnav__link--current {
1615
- background-color: var(--utrecht-topnav-list-background-active);
1616
- text-decoration: underline;
1617
- }
1618
-
1619
- .utrecht-topnav__link--focus, .utrecht-topnav__link:focus {
1620
- background-color: var(--utrecht-topnav-link-focus-background-color);
1621
- /* #ffd633 */
1622
- color: var(--utrecht-topnav-link-focus-color, var(--utrecht-topnav-link-color));
1623
- text-decoration: var(--utrecht-topnav-link-focus-text-decoration, var(--utrecht-topnav-link-text-decoration, underline));
1624
- }
1625
-
1626
- .utrecht-topnav__link--focus-visible, .utrecht-topnav__link:focus {
1627
- box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1628
- outline-color: var(--utrecht-focus-outline-color, transparent);
1629
- outline-offset: var(--utrecht-focus-outline-offset, 0);
1630
- outline-style: var(--utrecht-focus-outline-style, solid);
1631
- outline-width: var(--utrecht-focus-outline-width, 0);
1632
- }
1633
-
1634
- .utrecht-topnav__link:focus:not(:focus-visible) {
1635
- /* undo focus ring */
1636
- box-shadow: none;
1637
- outline-style: none;
1638
- }
1639
-
1640
1593
  /**
1641
1594
  * @license EUPL-1.2
1642
1595
  * Copyright (c) 2021 The Knights Who Say NIH! B.V.
@@ -5281,9 +5234,9 @@ however browsers don't seem to have implemented great looking supixel tweening y
5281
5234
  /* Collection of CSS variables for Utrecht theme applied to `:root` */
5282
5235
  /**
5283
5236
  * Do not edit directly
5284
- * Generated on Wed, 11 May 2022 16:14:24 GMT
5237
+ * Generated on Sat, 14 May 2022 12:04:02 GMT
5285
5238
  */
5286
- :root {
5239
+ .utrecht-theme {
5287
5240
  --denhaag-process-steps-sub-step-heading-font-weight: utrecht.typography.weight-scale.normal.font-weight;
5288
5241
  --denhaag-process-steps-sub-step-heading-font-family: ;
5289
5242
  --denhaag-process-steps-sub-step-marker-size: 8px;
@@ -5,9 +5,9 @@
5
5
  /* Collection of CSS variables for Utrecht theme applied to `:root` */
6
6
  /**
7
7
  * Do not edit directly
8
- * Generated on Wed, 11 May 2022 16:14:24 GMT
8
+ * Generated on Sat, 14 May 2022 12:04:02 GMT
9
9
  */
10
- :root {
10
+ .utrecht-theme {
11
11
  --denhaag-process-steps-sub-step-heading-font-weight: utrecht.typography.weight-scale.normal.font-weight;
12
12
  --denhaag-process-steps-sub-step-heading-font-family: ;
13
13
  --denhaag-process-steps-sub-step-marker-size: 8px;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.205",
2
+ "version": "1.0.0-alpha.208",
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",
@@ -16,7 +16,7 @@
16
16
  "url": "git@github.com:nl-design-system/utrecht.git"
17
17
  },
18
18
  "devDependencies": {
19
- "@utrecht/design-tokens": "1.0.0-alpha.198",
19
+ "@utrecht/design-tokens": "1.0.0-alpha.201",
20
20
  "node-sass-package-importer": "5.3.2",
21
21
  "rimraf": "3.0.2",
22
22
  "sass": "1.50.1"
@@ -26,5 +26,5 @@
26
26
  "build": "sass src/:dist/ --load-path=../../node_modules/ --no-source-map",
27
27
  "clean": "rimraf dist/"
28
28
  },
29
- "gitHead": "3f461a33b1d12db8ec72a1cfdde003e13f62f27a"
29
+ "gitHead": "6cdfa3731ad2ef4e2e43add8c193d9f311e045c8"
30
30
  }
package/src/bem.scss CHANGED
@@ -17,16 +17,17 @@
17
17
  */
18
18
 
19
19
  @import "../../../components/article/css";
20
- @import "../../../components/badge-counter/bem";
21
- @import "../../../components/badge-data/bem";
22
- @import "../../../components/badge-status/bem";
20
+ @import "../../../components/badge-counter/css";
21
+ @import "../../../components/badge-data/css";
22
+ @import "../../../components/badge-status/css";
23
23
  @import "../../../components/backdrop/css";
24
24
  @import "../../../components/blockquote/css";
25
25
  @import "../../../components/breadcrumb/css";
26
26
  @import "../../../components/button/bem";
27
+ @import "../../../components/button-group/css";
27
28
  @import "../../../components/checkbox/css";
28
- @import "../../../components/custom-checkbox/bem";
29
- @import "../../../components/digid-button/bem";
29
+ @import "../../../components/custom-checkbox/css";
30
+ @import "../../../components/digid-button/css";
30
31
  @import "../../../components/document/css";
31
32
  @import "../../../components/emphasis/css";
32
33
  @import "../../../components/form-field-checkbox-group/bem";
@@ -36,40 +37,39 @@
36
37
  @import "../../../components/form-field-radio/bem";
37
38
  @import "../../../components/form-field-textbox/bem";
38
39
  @import "../../../components/form-field/bem";
39
- @import "../../../components/form-fieldset/bem";
40
+ @import "../../../components/form-fieldset/css";
40
41
  @import "../../../components/form-label/css";
41
- @import "../../../components/form-toggle/bem";
42
+ @import "../../../components/form-toggle/css";
42
43
  @import "../../../components/heading-1/bem";
43
44
  @import "../../../components/heading-2/bem";
44
45
  @import "../../../components/heading-3/bem";
45
46
  @import "../../../components/heading-4/bem";
46
47
  @import "../../../components/heading-5/bem";
47
48
  @import "../../../components/heading-6/bem";
48
- @import "../../../components/link-list/bem";
49
- @import "../../../components/link-social/bem";
49
+ @import "../../../components/link-list/css";
50
+ @import "../../../components/link-social/css";
50
51
  @import "../../../components/link/css";
51
- @import "../../../components/logo-button/bem";
52
- @import "../../../components/logo/bem";
53
- @import "../../../components/mapcontrolbutton/bem";
54
- @import "../../../components/menulijst/bem";
55
- @import "../../../components/nav-top/bem";
56
- @import "../../../components/navigatie sidenav/bem";
57
- @import "../../../components/navigatie topnav/bem";
58
- @import "../../../components/ordered-list/bem";
59
- @import "../../../components/page-content/bem";
60
- @import "../../../components/page-footer/bem";
61
- @import "../../../components/page-header/bem";
62
- @import "../../../components/page/bem";
63
- @import "../../../components/pagination/bem";
52
+ @import "../../../components/logo-button/css";
53
+ @import "../../../components/logo/css";
54
+ @import "../../../components/mapcontrolbutton/css";
55
+ @import "../../../components/menulijst/css";
56
+ @import "../../../components/navigatie sidenav/css";
57
+ @import "../../../components/navigatie topnav/css";
58
+ @import "../../../components/ordered-list/css";
59
+ @import "../../../components/page-content/css";
60
+ @import "../../../components/page-footer/css";
61
+ @import "../../../components/page-header/css";
62
+ @import "../../../components/page/css";
63
+ @import "../../../components/pagination/css";
64
64
  @import "../../../components/paragraph/css";
65
- @import "../../../components/pre-heading/bem";
66
- @import "../../../components/radio-button/bem";
67
- @import "../../../components/search-bar/bem";
68
- @import "../../../components/select/bem";
69
- @import "../../../components/separator/bem";
70
- @import "../../../components/surface/bem";
71
- @import "../../../components/table/bem";
72
- @import "../../../components/textarea/bem";
73
- @import "../../../components/textbox/bem";
74
- @import "../../../components/unordered-list/bem";
75
- @import "../../../components/url/bem";
65
+ @import "../../../components/pre-heading/css";
66
+ @import "../../../components/radio-button/css";
67
+ @import "../../../components/search-bar/css";
68
+ @import "../../../components/select/css";
69
+ @import "../../../components/separator/css";
70
+ @import "../../../components/surface/css";
71
+ @import "../../../components/table/css";
72
+ @import "../../../components/textarea/css";
73
+ @import "../../../components/textbox/css";
74
+ @import "../../../components/unordered-list/css";
75
+ @import "../../../components/url/css";