@forsakringskassan/docs-generator 2.35.8 → 2.36.0

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.
@@ -84,7 +84,6 @@ h4:not(.code-preview h4),
84
84
  h5:not(.code-preview h5),
85
85
  h6:not(.code-preview h6) {
86
86
  font-family: var(--docs-heading-font-family);
87
- font-weight: var(--docs-heading-font-weight);
88
87
  line-height: var(--docs-heading-line-height);
89
88
  margin-top: 0;
90
89
  margin-bottom: 0.25rem;
@@ -94,31 +93,37 @@ h6:not(.code-preview h6) {
94
93
 
95
94
  h1 {
96
95
  font-size: var(--f-font-size-h1);
96
+ font-weight: var(--docs-heading-font-weight-h1);
97
97
  color: var(--f-text-color-heading-1);
98
98
  }
99
99
 
100
100
  h2 {
101
101
  font-size: var(--f-font-size-h2);
102
+ font-weight: var(--docs-heading-font-weight-h2);
102
103
  color: var(--f-text-color-heading-2);
103
104
  }
104
105
 
105
106
  h3 {
106
107
  font-size: var(--f-font-size-h3);
108
+ font-weight: var(--docs-heading-font-weight-h3);
107
109
  color: var(--f-text-color-heading-3);
108
110
  }
109
111
 
110
112
  h4 {
111
113
  font-size: var(--f-font-size-h4);
114
+ font-weight: var(--docs-heading-font-weight-h4);
112
115
  color: var(--f-text-color-heading-4);
113
116
  }
114
117
 
115
118
  h5 {
116
119
  font-size: var(--f-font-size-large);
120
+ font-weight: var(--docs-heading-font-weight-h5);
117
121
  color: var(--f-text-color-heading-5);
118
122
  }
119
123
 
120
124
  h6 {
121
125
  font-size: var(--f-font-size-standard);
126
+ font-weight: var(--docs-heading-font-weight-h6);
122
127
  color: var(--f-text-color-heading-6);
123
128
  }
124
129
 
@@ -84,7 +84,6 @@ h4:not(.code-preview h4),
84
84
  h5:not(.code-preview h5),
85
85
  h6:not(.code-preview h6) {
86
86
  font-family: var(--docs-heading-font-family);
87
- font-weight: var(--docs-heading-font-weight);
88
87
  line-height: var(--docs-heading-line-height);
89
88
  margin-top: 0;
90
89
  margin-bottom: 0.25rem;
@@ -94,31 +93,37 @@ h6:not(.code-preview h6) {
94
93
 
95
94
  h1 {
96
95
  font-size: var(--f-font-size-h1);
96
+ font-weight: var(--docs-heading-font-weight-h1);
97
97
  color: var(--f-text-color-heading-1);
98
98
  }
99
99
 
100
100
  h2 {
101
101
  font-size: var(--f-font-size-h2);
102
+ font-weight: var(--docs-heading-font-weight-h2);
102
103
  color: var(--f-text-color-heading-2);
103
104
  }
104
105
 
105
106
  h3 {
106
107
  font-size: var(--f-font-size-h3);
108
+ font-weight: var(--docs-heading-font-weight-h3);
107
109
  color: var(--f-text-color-heading-3);
108
110
  }
109
111
 
110
112
  h4 {
111
113
  font-size: var(--f-font-size-h4);
114
+ font-weight: var(--docs-heading-font-weight-h4);
112
115
  color: var(--f-text-color-heading-4);
113
116
  }
114
117
 
115
118
  h5 {
116
119
  font-size: var(--f-font-size-large);
120
+ font-weight: var(--docs-heading-font-weight-h5);
117
121
  color: var(--f-text-color-heading-5);
118
122
  }
119
123
 
120
124
  h6 {
121
125
  font-size: var(--f-font-size-standard);
126
+ font-weight: var(--docs-heading-font-weight-h6);
122
127
  color: var(--f-text-color-heading-6);
123
128
  }
124
129
 
@@ -1368,6 +1373,12 @@ kbd {
1368
1373
  --docs-contextmenu-link-background-hover: #ddddde;
1369
1374
  --docs-heading-font-family: var(--docs-font-family);
1370
1375
  --docs-heading-font-weight: var(--docs-font-weight);
1376
+ --docs-heading-font-weight-h1: var(--docs-font-weight);
1377
+ --docs-heading-font-weight-h2: var(--docs-font-weight);
1378
+ --docs-heading-font-weight-h3: var(--docs-font-weight);
1379
+ --docs-heading-font-weight-h4: var(--docs-font-weight);
1380
+ --docs-heading-font-weight-h5: var(--docs-font-weight);
1381
+ --docs-heading-font-weight-h6: var(--docs-font-weight);
1371
1382
  --docs-heading-line-height: 1.4;
1372
1383
  --docs-header-text-color-default: #1b1e23;
1373
1384
  --docs-header-text-color-discrete: #5f6165;
@@ -25,6 +25,12 @@
25
25
  --docs-contextmenu-link-background-hover: #ddddde;
26
26
  --docs-heading-font-family: var(--docs-font-family);
27
27
  --docs-heading-font-weight: var(--docs-font-weight);
28
+ --docs-heading-font-weight-h1: var(--docs-font-weight);
29
+ --docs-heading-font-weight-h2: var(--docs-font-weight);
30
+ --docs-heading-font-weight-h3: var(--docs-font-weight);
31
+ --docs-heading-font-weight-h4: var(--docs-font-weight);
32
+ --docs-heading-font-weight-h5: var(--docs-font-weight);
33
+ --docs-heading-font-weight-h6: var(--docs-font-weight);
28
34
  --docs-heading-line-height: 1.4;
29
35
  --docs-header-text-color-default: #1b1e23;
30
36
  --docs-header-text-color-discrete: #5f6165;
@@ -16,6 +16,12 @@
16
16
  --docs-error-background: var(--fkds-color-feedback-background-negative);
17
17
  --docs-font-line-height: var(--f-line-height-large);
18
18
  --docs-font-size: var(--f-font-size-default-rem);
19
+ --docs-heading-font-weight-h1: var(--f-font-weight-bold);
20
+ --docs-heading-font-weight-h2: var(--f-font-weight-medium);
21
+ --docs-heading-font-weight-h3: var(--f-font-weight-medium);
22
+ --docs-heading-font-weight-h4: var(--f-font-weight-medium);
23
+ --docs-heading-font-weight-h5: var(--f-font-weight-medium);
24
+ --docs-heading-font-weight-h6: var(--f-font-weight-medium);
19
25
  --docs-badge-component-color: var(--fkds-color-text-primary);
20
26
  --docs-badge-component-background: var(--fkds-color-feedback-background-neutral);
21
27
  --docs-badge-component-border: var(--fkds-color-feedback-border-neutral);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forsakringskassan/docs-generator",
3
- "version": "2.35.8",
3
+ "version": "2.36.0",
4
4
  "description": "Documentation generator",
5
5
  "keywords": [
6
6
  "documentation"