@forsakringskassan/docs-generator 2.36.0 → 2.37.1
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/{create-markdown-renderer-BlFJHRlD.mjs → create-markdown-renderer-BO8ZE3IZ.mjs} +3 -3
- package/dist/{create-markdown-renderer-BlFJHRlD.mjs.map → create-markdown-renderer-BO8ZE3IZ.mjs.map} +1 -1
- package/dist/{format-code.worker-BsOwzXkY.mjs → format-code.worker-CRcs4_Zl.mjs} +2 -2
- package/dist/{format-code.worker-BsOwzXkY.mjs.map → format-code.worker-CRcs4_Zl.mjs.map} +1 -1
- package/dist/index.mjs +2 -2
- package/dist/markdown.mjs +2 -2
- package/dist/runtime.mjs +9001 -2385
- package/dist/style/core.css +4 -0
- package/dist/style/index.css +8 -0
- package/dist/style/site.css +4 -0
- package/dist/style/theme/fkui.css +2 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/dist/{vendor-BVmnvb-f.mjs → vendor-Bk5vSW_n.mjs} +461 -122
- package/dist/{vendor-BVmnvb-f.mjs.map → vendor-Bk5vSW_n.mjs.map} +1 -1
- package/package.json +1 -1
package/dist/style/core.css
CHANGED
|
@@ -95,24 +95,28 @@ h1 {
|
|
|
95
95
|
font-size: var(--f-font-size-h1);
|
|
96
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);
|
|
102
103
|
font-weight: var(--docs-heading-font-weight-h2);
|
|
103
104
|
color: var(--f-text-color-heading-2);
|
|
105
|
+
letter-spacing: var(--docs-heading-letter-spacing-h2);
|
|
104
106
|
}
|
|
105
107
|
|
|
106
108
|
h3 {
|
|
107
109
|
font-size: var(--f-font-size-h3);
|
|
108
110
|
font-weight: var(--docs-heading-font-weight-h3);
|
|
109
111
|
color: var(--f-text-color-heading-3);
|
|
112
|
+
letter-spacing: var(--docs-heading-letter-spacing-h3);
|
|
110
113
|
}
|
|
111
114
|
|
|
112
115
|
h4 {
|
|
113
116
|
font-size: var(--f-font-size-h4);
|
|
114
117
|
font-weight: var(--docs-heading-font-weight-h4);
|
|
115
118
|
color: var(--f-text-color-heading-4);
|
|
119
|
+
letter-spacing: var(--docs-heading-letter-spacing-h4);
|
|
116
120
|
}
|
|
117
121
|
|
|
118
122
|
h5 {
|
package/dist/style/index.css
CHANGED
|
@@ -95,24 +95,28 @@ h1 {
|
|
|
95
95
|
font-size: var(--f-font-size-h1);
|
|
96
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);
|
|
102
103
|
font-weight: var(--docs-heading-font-weight-h2);
|
|
103
104
|
color: var(--f-text-color-heading-2);
|
|
105
|
+
letter-spacing: var(--docs-heading-letter-spacing-h2);
|
|
104
106
|
}
|
|
105
107
|
|
|
106
108
|
h3 {
|
|
107
109
|
font-size: var(--f-font-size-h3);
|
|
108
110
|
font-weight: var(--docs-heading-font-weight-h3);
|
|
109
111
|
color: var(--f-text-color-heading-3);
|
|
112
|
+
letter-spacing: var(--docs-heading-letter-spacing-h3);
|
|
110
113
|
}
|
|
111
114
|
|
|
112
115
|
h4 {
|
|
113
116
|
font-size: var(--f-font-size-h4);
|
|
114
117
|
font-weight: var(--docs-heading-font-weight-h4);
|
|
115
118
|
color: var(--f-text-color-heading-4);
|
|
119
|
+
letter-spacing: var(--docs-heading-letter-spacing-h4);
|
|
116
120
|
}
|
|
117
121
|
|
|
118
122
|
h5 {
|
|
@@ -1379,6 +1383,10 @@ kbd {
|
|
|
1379
1383
|
--docs-heading-font-weight-h4: var(--docs-font-weight);
|
|
1380
1384
|
--docs-heading-font-weight-h5: var(--docs-font-weight);
|
|
1381
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;
|
|
1382
1390
|
--docs-heading-line-height: 1.4;
|
|
1383
1391
|
--docs-header-text-color-default: #1b1e23;
|
|
1384
1392
|
--docs-header-text-color-discrete: #5f6165;
|
package/dist/style/site.css
CHANGED
|
@@ -31,6 +31,10 @@
|
|
|
31
31
|
--docs-heading-font-weight-h4: var(--docs-font-weight);
|
|
32
32
|
--docs-heading-font-weight-h5: var(--docs-font-weight);
|
|
33
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;
|
|
34
38
|
--docs-heading-line-height: 1.4;
|
|
35
39
|
--docs-header-text-color-default: #1b1e23;
|
|
36
40
|
--docs-header-text-color-discrete: #5f6165;
|
|
@@ -16,6 +16,8 @@
|
|
|
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-font-family: var(--f-font-family);
|
|
20
|
+
--docs-heading-font-family: var(--f-font-family);
|
|
19
21
|
--docs-heading-font-weight-h1: var(--f-font-weight-bold);
|
|
20
22
|
--docs-heading-font-weight-h2: var(--f-font-weight-medium);
|
|
21
23
|
--docs-heading-font-weight-h3: var(--f-font-weight-medium);
|