@utrecht/component-library-css 1.0.0-alpha.460 → 1.0.0-alpha.462

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 +57 -0
  2. package/package.json +2 -2
package/dist/index.css CHANGED
@@ -29,6 +29,63 @@
29
29
  * Will become:
30
30
  * @import "@utrecht/blockquote/index";
31
31
  */
32
+ /**
33
+ * @license EUPL-1.2
34
+ * Copyright (c) 2020-2022 Gemeente Utrecht
35
+ * Copyright (c) 2020-2022 Frameless B.V.
36
+ */
37
+ /**
38
+ * @license EUPL-1.2
39
+ * Copyright (c) 2020-2022 Gemeente Utrecht
40
+ * Copyright (c) 2020-2022 Frameless B.V.
41
+ */
42
+ /* stylelint-disable-next-line block-no-empty */
43
+ .utrecht-accordion__button {
44
+ --utrecht-button-focus-scale: 1;
45
+ --utrecht-button-hover-scale: 1;
46
+ --utrecht-button-inline-size: 100%;
47
+ --utrecht-button-subtle-background-color: var(--utrecht-accordion-button-background-color);
48
+ --utrecht-button-subtle-color: var(--utrecht-accordion-button-color);
49
+ --utrecht-button-subtle-hover-background-color: var(--utrecht-accordion-button-hover-background-color);
50
+ --utrecht-button-subtle-hover-border-color: var(--utrecht-accordion-button-hover-border-color);
51
+ --utrecht-button-subtle-border-color: var(--utrecht-accordion-button-border-color);
52
+ --utrecht-button-subtle-border-width: var(--utrecht-accordion-button-border-width);
53
+ justify-content: start !important;
54
+ padding-inline-end: var(--utrecht-accordion-button-padding-inline-end);
55
+ position: relative;
56
+ }
57
+ .utrecht-accordion__button[aria-expanded]::after {
58
+ background-color: var(--utrecht-accordion-button-icon-background-color);
59
+ background-position: center;
60
+ background-repeat: no-repeat;
61
+ content: "";
62
+ height: var(--utrecht-accordion-button-icon-size);
63
+ inset-block-start: 0;
64
+ inset-inline-end: 0;
65
+ position: absolute;
66
+ width: var(--utrecht-accordion-button-icon-size);
67
+ }
68
+ .utrecht-accordion__button[aria-expanded=false]::after {
69
+ background-image: var(--utrecht-accordion-icon-arrow-down, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.39' height='14.39'%3E%3Cpath fill='none' stroke='%231D1D1D' stroke-width='3' stroke-miterlimit='10' d='M15.866 4.135l-5.32 5.322-5.322-5.322'/%3E%3C/svg%3E"));
70
+ }
71
+ .utrecht-accordion__button[aria-expanded=true]::after {
72
+ background-image: var(--utrecht-accordion-icon-arrow-up, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.39' height='14.39'%3E%3Cpath fill='none' stroke='%231D1D1D' stroke-width='3' stroke-miterlimit='10' d='M5.223 9.457l5.32-5.322 5.322 5.322'/%3E%3C/svg%3E"));
73
+ background-position: center;
74
+ background-repeat: no-repeat;
75
+ content: "";
76
+ }
77
+
78
+ .utrecht-accordion__body {
79
+ border-color: var(--utrecht-accordion-body-border-color);
80
+ border-style: solid;
81
+ border-top: none;
82
+ border-width: var(--utrecht-accordion-body-border-width);
83
+ padding-block-end: var(--utrecht-accordion-body-padding-block-end);
84
+ padding-block-start: var(--utrecht-accordion-body-padding-block-start);
85
+ padding-inline-end: var(--utrecht-accordion-body-padding-inline-end);
86
+ padding-inline-start: var(--utrecht-accordion-body-padding-inline-start);
87
+ }
88
+
32
89
  /**
33
90
  * @license EUPL-1.2
34
91
  * Copyright (c) 2020-2022 Gemeente Utrecht
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.460",
2
+ "version": "1.0.0-alpha.462",
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": "d59e973d874ee0ed35c72346e375fece0e368ef3"
29
+ "gitHead": "c962a346c0b11f34cd1c279644b9741ab66a5c7c"
30
30
  }