@conduction/components 2.2.45 → 2.2.47

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/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  - **Version 2.2 (breaking changes from 2.1.x)**
6
6
 
7
+ - 2.2.46 / 2.2.47: Fixed minor css parse error.
7
8
  - 2.2.45: Updated Pagination and select to ensure more WCAG compliancy.
8
9
  - 2.2.44: Updated PrimaryTopNav to allow font-weight.
9
10
  - 2.2.43: Updated DownloadCard to allow size as string.
@@ -7,6 +7,6 @@
7
7
  width: 100%;
8
8
  margin-inline: auto;
9
9
  box-sizing: border-box;
10
- padding-inline: var(--conduction-container-padding-inline);
10
+ padding-inline: var(--conduction-container-padding-inline, unset);
11
11
  max-width: var(--conduction-container-max-width);
12
12
  }
@@ -14,7 +14,7 @@
14
14
  --conduction-tabs-tab-padding-inline-start: var(--skeleton-size-sm);
15
15
  --conduction-tabs-tab-padding-inline-end: var(--skeleton-size-sm);
16
16
  /* --conduction-tabs-tab-margin-inline-end: var(--skeleton-size-xs); */
17
- --conduction-tabs-tab-font-size: var(--skeleton-font-size-sm: );
17
+ --conduction-tabs-tab-font-size: var(--skeleton-font-size-sm);
18
18
  --conduction-tabs-tab-font-weight: var(--skeleton-font-weight-normal);
19
19
  --conduction-tabs-tab-font-family: "Noto Sans", Arial, sans-serif;
20
20
  --conduction-tabs-tab-max-width: unset;
@@ -149,7 +149,7 @@
149
149
  display: block;
150
150
  overflow: hidden;
151
151
  max-width: 100%;
152
- white-space: wrap;
152
+ white-space: nowrap;
153
153
  }
154
154
 
155
155
  .primary .link:not(.currentLink) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/components",
3
- "version": "2.2.45",
3
+ "version": "2.2.47",
4
4
  "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -7,6 +7,6 @@
7
7
  width: 100%;
8
8
  margin-inline: auto;
9
9
  box-sizing: border-box;
10
- padding-inline: var(--conduction-container-padding-inline);
10
+ padding-inline: var(--conduction-container-padding-inline, unset);
11
11
  max-width: var(--conduction-container-max-width);
12
12
  }
@@ -14,7 +14,7 @@
14
14
  --conduction-tabs-tab-padding-inline-start: var(--skeleton-size-sm);
15
15
  --conduction-tabs-tab-padding-inline-end: var(--skeleton-size-sm);
16
16
  /* --conduction-tabs-tab-margin-inline-end: var(--skeleton-size-xs); */
17
- --conduction-tabs-tab-font-size: var(--skeleton-font-size-sm: );
17
+ --conduction-tabs-tab-font-size: var(--skeleton-font-size-sm);
18
18
  --conduction-tabs-tab-font-weight: var(--skeleton-font-weight-normal);
19
19
  --conduction-tabs-tab-font-family: "Noto Sans", Arial, sans-serif;
20
20
  --conduction-tabs-tab-max-width: unset;
@@ -149,7 +149,7 @@
149
149
  display: block;
150
150
  overflow: hidden;
151
151
  max-width: 100%;
152
- white-space: wrap;
152
+ white-space: nowrap;
153
153
  }
154
154
 
155
155
  .primary .link:not(.currentLink) {