@forsakringskassan/docs-generator 2.35.8 → 2.37.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,41 @@ 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
+ letter-spacing: var(--docs-heading-letter-spacing-h1);
98
99
  }
99
100
 
100
101
  h2 {
101
102
  font-size: var(--f-font-size-h2);
103
+ font-weight: var(--docs-heading-font-weight-h2);
102
104
  color: var(--f-text-color-heading-2);
105
+ letter-spacing: var(--docs-heading-letter-spacing-h2);
103
106
  }
104
107
 
105
108
  h3 {
106
109
  font-size: var(--f-font-size-h3);
110
+ font-weight: var(--docs-heading-font-weight-h3);
107
111
  color: var(--f-text-color-heading-3);
112
+ letter-spacing: var(--docs-heading-letter-spacing-h3);
108
113
  }
109
114
 
110
115
  h4 {
111
116
  font-size: var(--f-font-size-h4);
117
+ font-weight: var(--docs-heading-font-weight-h4);
112
118
  color: var(--f-text-color-heading-4);
119
+ letter-spacing: var(--docs-heading-letter-spacing-h4);
113
120
  }
114
121
 
115
122
  h5 {
116
123
  font-size: var(--f-font-size-large);
124
+ font-weight: var(--docs-heading-font-weight-h5);
117
125
  color: var(--f-text-color-heading-5);
118
126
  }
119
127
 
120
128
  h6 {
121
129
  font-size: var(--f-font-size-standard);
130
+ font-weight: var(--docs-heading-font-weight-h6);
122
131
  color: var(--f-text-color-heading-6);
123
132
  }
124
133
 
@@ -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,41 @@ 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
+ letter-spacing: var(--docs-heading-letter-spacing-h1);
98
99
  }
99
100
 
100
101
  h2 {
101
102
  font-size: var(--f-font-size-h2);
103
+ font-weight: var(--docs-heading-font-weight-h2);
102
104
  color: var(--f-text-color-heading-2);
105
+ letter-spacing: var(--docs-heading-letter-spacing-h2);
103
106
  }
104
107
 
105
108
  h3 {
106
109
  font-size: var(--f-font-size-h3);
110
+ font-weight: var(--docs-heading-font-weight-h3);
107
111
  color: var(--f-text-color-heading-3);
112
+ letter-spacing: var(--docs-heading-letter-spacing-h3);
108
113
  }
109
114
 
110
115
  h4 {
111
116
  font-size: var(--f-font-size-h4);
117
+ font-weight: var(--docs-heading-font-weight-h4);
112
118
  color: var(--f-text-color-heading-4);
119
+ letter-spacing: var(--docs-heading-letter-spacing-h4);
113
120
  }
114
121
 
115
122
  h5 {
116
123
  font-size: var(--f-font-size-large);
124
+ font-weight: var(--docs-heading-font-weight-h5);
117
125
  color: var(--f-text-color-heading-5);
118
126
  }
119
127
 
120
128
  h6 {
121
129
  font-size: var(--f-font-size-standard);
130
+ font-weight: var(--docs-heading-font-weight-h6);
122
131
  color: var(--f-text-color-heading-6);
123
132
  }
124
133
 
@@ -1368,6 +1377,16 @@ kbd {
1368
1377
  --docs-contextmenu-link-background-hover: #ddddde;
1369
1378
  --docs-heading-font-family: var(--docs-font-family);
1370
1379
  --docs-heading-font-weight: var(--docs-font-weight);
1380
+ --docs-heading-font-weight-h1: var(--docs-font-weight);
1381
+ --docs-heading-font-weight-h2: var(--docs-font-weight);
1382
+ --docs-heading-font-weight-h3: var(--docs-font-weight);
1383
+ --docs-heading-font-weight-h4: var(--docs-font-weight);
1384
+ --docs-heading-font-weight-h5: var(--docs-font-weight);
1385
+ --docs-heading-font-weight-h6: var(--docs-font-weight);
1386
+ --docs-heading-letter-spacing-h1: -0.5px;
1387
+ --docs-heading-letter-spacing-h2: -0.3px;
1388
+ --docs-heading-letter-spacing-h3: -0.3px;
1389
+ --docs-heading-letter-spacing-h4: -0.3px;
1371
1390
  --docs-heading-line-height: 1.4;
1372
1391
  --docs-header-text-color-default: #1b1e23;
1373
1392
  --docs-header-text-color-discrete: #5f6165;
@@ -25,6 +25,16 @@
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);
34
+ --docs-heading-letter-spacing-h1: -0.5px;
35
+ --docs-heading-letter-spacing-h2: -0.3px;
36
+ --docs-heading-letter-spacing-h3: -0.3px;
37
+ --docs-heading-letter-spacing-h4: -0.3px;
28
38
  --docs-heading-line-height: 1.4;
29
39
  --docs-header-text-color-default: #1b1e23;
30
40
  --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);
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.56.3"
8
+ "packageVersion": "7.57.3"
9
9
  }
10
10
  ]
11
11
  }