@forsakringskassan/docs-generator 2.38.6 → 2.39.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.
package/dist/runtime.mjs CHANGED
@@ -6332,6 +6332,8 @@ var init_katex = __esm({
6332
6332
  defineSymbol(math, main, rel, "\u220B", "\\owns");
6333
6333
  defineSymbol(math, main, punct, ".", "\\ldotp");
6334
6334
  defineSymbol(math, main, punct, "\u22C5", "\\cdotp");
6335
+ defineSymbol(math, main, punct, "\u22C5", "\xB7");
6336
+ defineSymbol(text2, main, textord, "\u22C5", "\xB7");
6335
6337
  defineSymbol(math, main, textord, "#", "\\#");
6336
6338
  defineSymbol(text2, main, textord, "#", "\\#");
6337
6339
  defineSymbol(math, main, textord, "&", "\\&");
@@ -14314,7 +14316,6 @@ var init_katex = __esm({
14314
14316
  defineMacro("\u210C", "\\mathfrak{H}");
14315
14317
  defineMacro("\u2128", "\\mathfrak{Z}");
14316
14318
  defineMacro("\\Bbbk", "\\Bbb{k}");
14317
- defineMacro("\xB7", "\\cdotp");
14318
14319
  defineMacro("\\llap", "\\mathllap{\\textrm{#1}}");
14319
14320
  defineMacro("\\rlap", "\\mathrlap{\\textrm{#1}}");
14320
14321
  defineMacro("\\clap", "\\mathclap{\\textrm{#1}}");
@@ -16538,7 +16539,7 @@ var init_katex = __esm({
16538
16539
  return renderError(error3, expression, settings);
16539
16540
  }
16540
16541
  };
16541
- version = "0.16.38";
16542
+ version = "0.16.40";
16542
16543
  __domTree = {
16543
16544
  Span,
16544
16545
  Anchor,
@@ -77,139 +77,125 @@ a.docs-badge:hover {
77
77
  }
78
78
  }
79
79
 
80
- h1:not(.code-preview h1),
81
- h2:not(.code-preview h2),
82
- h3:not(.code-preview h3),
83
- h4:not(.code-preview h4),
84
- h5:not(.code-preview h5),
85
- h6:not(.code-preview h6) {
80
+ :where(.docs-heading) {
86
81
  font-family: var(--docs-heading-font-family);
87
82
  line-height: var(--docs-heading-line-height);
88
83
  margin-top: 0;
89
84
  text-wrap: balance;
90
85
  text-wrap: pretty;
91
86
  }
92
-
93
- h1:not(.code-preview h1) {
94
- font-weight: var(--docs-heading-font-weight-h1);
95
- margin-bottom: var(--docs-heading-margin-bottom-h1);
96
- }
97
-
98
- h2:not(.code-preview h2) {
99
- font-weight: var(--docs-heading-font-weight-h2);
100
- margin-bottom: var(--docs-heading-margin-bottom-h2);
101
- }
102
-
103
- h3:not(.code-preview h3) {
104
- font-weight: var(--docs-heading-font-weight-h3);
105
- margin-bottom: var(--docs-heading-margin-bottom-h3);
106
- }
107
-
108
- h4:not(.code-preview h4) {
109
- font-weight: var(--docs-heading-font-weight-h4);
110
- margin-bottom: var(--docs-heading-margin-bottom-h4);
111
- }
112
-
113
- h5:not(.code-preview h5) {
114
- font-weight: var(--docs-heading-font-weight-h5);
115
- margin-bottom: var(--docs-heading-margin-bottom-h5);
87
+ :where(.docs-heading) .header-anchor {
88
+ color: var(--docs-text-color-default);
89
+ text-decoration: none;
116
90
  }
117
-
118
- h6:not(.code-preview h6) {
119
- font-weight: var(--docs-heading-font-weight-h6);
120
- margin-bottom: var(--docs-heading-margin-bottom-h6);
91
+ :where(.docs-heading) code {
92
+ font-size: inherit;
93
+ margin: 0;
94
+ padding: 0;
95
+ text-decoration: inherit;
121
96
  }
122
97
 
123
- h1 {
98
+ :where(.docs-heading--h1) {
99
+ font-weight: var(--docs-heading-font-weight-h1);
100
+ margin-bottom: var(--docs-heading-margin-bottom-h1);
124
101
  font-size: 2.5rem;
125
102
  color: inherit;
126
103
  letter-spacing: var(--docs-heading-letter-spacing-h1);
127
104
  }
128
105
 
129
- h2 {
106
+ :where(.docs-heading--h1 code) {
107
+ color: var(--docs-text-color-discrete);
108
+ font-family: var(--docs-font-family);
109
+ background-color: transparent;
110
+ font-weight: 400;
111
+ }
112
+
113
+ :where(.docs-heading--h2) {
114
+ font-weight: var(--docs-heading-font-weight-h2);
115
+ margin-bottom: var(--docs-heading-margin-bottom-h2);
130
116
  font-size: 1.75rem;
131
117
  color: inherit;
132
118
  letter-spacing: var(--docs-heading-letter-spacing-h2);
133
119
  }
134
120
 
135
- h3 {
121
+ :where(.docs-heading--h3) {
122
+ font-weight: var(--docs-heading-font-weight-h3);
123
+ margin-bottom: var(--docs-heading-margin-bottom-h3);
136
124
  font-size: 1.375rem;
137
125
  color: inherit;
138
126
  letter-spacing: var(--docs-heading-letter-spacing-h3);
139
127
  }
140
128
 
141
- h4 {
129
+ :where(.docs-heading--h4) {
130
+ font-weight: var(--docs-heading-font-weight-h4);
131
+ margin-bottom: var(--docs-heading-margin-bottom-h4);
142
132
  font-size: 1.25rem;
143
133
  color: inherit;
144
134
  letter-spacing: var(--docs-heading-letter-spacing-h4);
145
135
  }
146
136
 
147
- h5 {
137
+ :where(.docs-heading--h5) {
138
+ font-weight: var(--docs-heading-font-weight-h5);
139
+ margin-bottom: var(--docs-heading-margin-bottom-h5);
148
140
  font-size: 1.125rem;
149
141
  color: inherit;
150
142
  }
151
143
 
152
- h6 {
144
+ :where(.docs-heading--h6) {
145
+ font-weight: var(--docs-heading-font-weight-h6);
146
+ margin-bottom: var(--docs-heading-margin-bottom-h6);
153
147
  font-size: 1rem;
154
148
  color: inherit;
155
149
  }
156
150
 
157
- h1 > a,
158
- h2 > a,
159
- h3 > a,
160
- h4 > a,
161
- h5 > a,
162
- h6 > a {
163
- text-decoration: none;
151
+ :where(* + .docs-heading) {
152
+ margin-top: 2rem;
164
153
  }
165
154
 
166
- * + h1,
167
- * + h2,
168
- * + h3,
169
- * + h4,
170
- * + h5,
171
- * + h6 {
172
- margin-top: 2rem;
155
+ :where(.docs-heading--h1 + .docs-heading--h2),
156
+ :where(.docs-heading--h2 + .docs-heading--h3),
157
+ :where(.docs-heading--h3 + .docs-heading--h4),
158
+ :where(.docs-heading--h4 + .docs-heading--h5),
159
+ :where(.docs-heading--h5 + .docs-heading--h6) {
160
+ margin-top: 1rem;
173
161
  }
174
162
 
175
163
  @media (width <= 640px) {
176
- h1 {
164
+ :where(.docs-heading--h1) {
177
165
  font-size: 1.75rem;
178
166
  }
179
- h2 {
167
+ :where(.docs-heading--h2) {
180
168
  font-size: 1.5rem;
181
169
  }
182
- h3 {
170
+ :where(.docs-heading--h3) {
183
171
  font-size: 1.25rem;
184
172
  }
185
- h4 {
173
+ :where(.docs-heading--h4) {
186
174
  font-size: 1.125rem;
187
175
  }
188
- h5 {
176
+ :where(.docs-heading--h5) {
189
177
  font-size: 1rem;
190
178
  }
191
- h6 {
179
+ :where(.docs-heading--h6) {
192
180
  font-size: 1rem;
193
181
  }
194
182
  }
195
- h1 + h2 {
196
- margin-top: 1rem;
183
+ main :where(.docs-heading--h1) {
184
+ font-size: 2.5rem;
185
+ color: var(--docs-text-color-default);
197
186
  }
198
-
199
- h2 + h3 {
200
- margin-top: 1rem;
187
+ main :where(.docs-heading--h2) {
188
+ font-size: 1.5rem;
189
+ margin-top: 3rem;
201
190
  }
202
-
203
- h3 + h4 {
204
- margin-top: 1rem;
191
+ main :where(.docs-heading--h3) {
192
+ font-size: 1.2rem;
205
193
  }
206
-
207
- h4 + h5 {
208
- margin-top: 1rem;
194
+ main :where(.docs-heading--h4) {
195
+ font-size: 1rem;
209
196
  }
210
-
211
- h5 + h6 {
212
- margin-top: 1rem;
197
+ main :where(.docs-heading:first-child) {
198
+ margin-top: 0;
213
199
  }
214
200
 
215
201
  .docs-paragraph {
@@ -224,7 +210,7 @@ strong {
224
210
  font-weight: 700;
225
211
  }
226
212
 
227
- code {
213
+ :where(code) {
228
214
  font-size: var(--docs-font-size);
229
215
  border-radius: 2px;
230
216
  font-family: Consolas, "Liberation Mono", Courier, monospace;
@@ -891,24 +877,6 @@ p:not(.code-preview p) {
891
877
  max-width: 680px;
892
878
  }
893
879
 
894
- main h1:not(.code-preview h1) {
895
- font-size: 2.5rem;
896
- color: var(--docs-text-color-default);
897
- }
898
-
899
- main h2:not(.code-preview h2) {
900
- font-size: 1.5rem;
901
- margin-top: 3rem;
902
- }
903
-
904
- main h3:not(.code-preview h3) {
905
- font-size: 1.2rem;
906
- }
907
-
908
- main h4:not(.code-preview h4) {
909
- font-size: 1rem;
910
- }
911
-
912
880
  .header-anchor:hover {
913
881
  text-decoration: underline;
914
882
  }
@@ -928,38 +896,11 @@ main h4:not(.code-preview h4) {
928
896
  visibility: visible;
929
897
  }
930
898
 
931
- h1 code {
932
- color: var(--docs-text-color-discrete);
933
- font-family: var(--docs-font-family);
934
- background-color: transparent;
935
- font-weight: 400;
936
- }
937
-
938
- h1 .header-anchor,
939
- h2 .header-anchor,
940
- h3 .header-anchor,
941
- h4 .header-anchor,
942
- h5 .header-anchor,
943
- h6 .header-anchor {
944
- color: var(--docs-text-color-default);
945
- }
946
- h1 code,
947
- h2 code,
948
- h3 code,
949
- h4 code,
950
- h5 code,
951
- h6 code {
952
- font-size: inherit;
953
- margin: 0;
954
- padding: 0;
955
- text-decoration: inherit;
956
- }
957
-
958
899
  #content a:where(:not(.code-preview a)) {
959
900
  color: var(--docs-text-color-default);
960
901
  }
961
902
 
962
- #content a:where(:not(.code-preview a, h2 a, h3 a, h4 a, h5 a)),
903
+ #content a:where(:not(.code-preview a, .header-anchor)),
963
904
  footer a {
964
905
  text-decoration: underline;
965
906
  text-decoration-thickness: 1px;
@@ -967,7 +908,7 @@ footer a {
967
908
  text-decoration-color: var(--docs-text-color-link);
968
909
  text-underline-offset: 0.15rem;
969
910
  }
970
- #content a:where(:not(.code-preview a, h2 a, h3 a, h4 a, h5 a)):hover,
911
+ #content a:where(:not(.code-preview a, .header-anchor)):hover,
971
912
  footer a:hover {
972
913
  color: var(--docs-text-color-default);
973
914
  text-decoration-color: var(--docs-text-color-default);
@@ -1078,10 +1019,6 @@ header .page-header__right-slot {
1078
1019
  display: inline-block;
1079
1020
  }
1080
1021
 
1081
- main h2:first-child {
1082
- margin-top: 0;
1083
- }
1084
-
1085
1022
  main #aside dl {
1086
1023
  margin-bottom: 2rem;
1087
1024
  }
@@ -77,139 +77,125 @@ a.docs-badge:hover {
77
77
  }
78
78
  }
79
79
 
80
- h1:not(.code-preview h1),
81
- h2:not(.code-preview h2),
82
- h3:not(.code-preview h3),
83
- h4:not(.code-preview h4),
84
- h5:not(.code-preview h5),
85
- h6:not(.code-preview h6) {
80
+ :where(.docs-heading) {
86
81
  font-family: var(--docs-heading-font-family);
87
82
  line-height: var(--docs-heading-line-height);
88
83
  margin-top: 0;
89
84
  text-wrap: balance;
90
85
  text-wrap: pretty;
91
86
  }
92
-
93
- h1:not(.code-preview h1) {
94
- font-weight: var(--docs-heading-font-weight-h1);
95
- margin-bottom: var(--docs-heading-margin-bottom-h1);
96
- }
97
-
98
- h2:not(.code-preview h2) {
99
- font-weight: var(--docs-heading-font-weight-h2);
100
- margin-bottom: var(--docs-heading-margin-bottom-h2);
101
- }
102
-
103
- h3:not(.code-preview h3) {
104
- font-weight: var(--docs-heading-font-weight-h3);
105
- margin-bottom: var(--docs-heading-margin-bottom-h3);
106
- }
107
-
108
- h4:not(.code-preview h4) {
109
- font-weight: var(--docs-heading-font-weight-h4);
110
- margin-bottom: var(--docs-heading-margin-bottom-h4);
111
- }
112
-
113
- h5:not(.code-preview h5) {
114
- font-weight: var(--docs-heading-font-weight-h5);
115
- margin-bottom: var(--docs-heading-margin-bottom-h5);
87
+ :where(.docs-heading) .header-anchor {
88
+ color: var(--docs-text-color-default);
89
+ text-decoration: none;
116
90
  }
117
-
118
- h6:not(.code-preview h6) {
119
- font-weight: var(--docs-heading-font-weight-h6);
120
- margin-bottom: var(--docs-heading-margin-bottom-h6);
91
+ :where(.docs-heading) code {
92
+ font-size: inherit;
93
+ margin: 0;
94
+ padding: 0;
95
+ text-decoration: inherit;
121
96
  }
122
97
 
123
- h1 {
98
+ :where(.docs-heading--h1) {
99
+ font-weight: var(--docs-heading-font-weight-h1);
100
+ margin-bottom: var(--docs-heading-margin-bottom-h1);
124
101
  font-size: 2.5rem;
125
102
  color: inherit;
126
103
  letter-spacing: var(--docs-heading-letter-spacing-h1);
127
104
  }
128
105
 
129
- h2 {
106
+ :where(.docs-heading--h1 code) {
107
+ color: var(--docs-text-color-discrete);
108
+ font-family: var(--docs-font-family);
109
+ background-color: transparent;
110
+ font-weight: 400;
111
+ }
112
+
113
+ :where(.docs-heading--h2) {
114
+ font-weight: var(--docs-heading-font-weight-h2);
115
+ margin-bottom: var(--docs-heading-margin-bottom-h2);
130
116
  font-size: 1.75rem;
131
117
  color: inherit;
132
118
  letter-spacing: var(--docs-heading-letter-spacing-h2);
133
119
  }
134
120
 
135
- h3 {
121
+ :where(.docs-heading--h3) {
122
+ font-weight: var(--docs-heading-font-weight-h3);
123
+ margin-bottom: var(--docs-heading-margin-bottom-h3);
136
124
  font-size: 1.375rem;
137
125
  color: inherit;
138
126
  letter-spacing: var(--docs-heading-letter-spacing-h3);
139
127
  }
140
128
 
141
- h4 {
129
+ :where(.docs-heading--h4) {
130
+ font-weight: var(--docs-heading-font-weight-h4);
131
+ margin-bottom: var(--docs-heading-margin-bottom-h4);
142
132
  font-size: 1.25rem;
143
133
  color: inherit;
144
134
  letter-spacing: var(--docs-heading-letter-spacing-h4);
145
135
  }
146
136
 
147
- h5 {
137
+ :where(.docs-heading--h5) {
138
+ font-weight: var(--docs-heading-font-weight-h5);
139
+ margin-bottom: var(--docs-heading-margin-bottom-h5);
148
140
  font-size: 1.125rem;
149
141
  color: inherit;
150
142
  }
151
143
 
152
- h6 {
144
+ :where(.docs-heading--h6) {
145
+ font-weight: var(--docs-heading-font-weight-h6);
146
+ margin-bottom: var(--docs-heading-margin-bottom-h6);
153
147
  font-size: 1rem;
154
148
  color: inherit;
155
149
  }
156
150
 
157
- h1 > a,
158
- h2 > a,
159
- h3 > a,
160
- h4 > a,
161
- h5 > a,
162
- h6 > a {
163
- text-decoration: none;
151
+ :where(* + .docs-heading) {
152
+ margin-top: 2rem;
164
153
  }
165
154
 
166
- * + h1,
167
- * + h2,
168
- * + h3,
169
- * + h4,
170
- * + h5,
171
- * + h6 {
172
- margin-top: 2rem;
155
+ :where(.docs-heading--h1 + .docs-heading--h2),
156
+ :where(.docs-heading--h2 + .docs-heading--h3),
157
+ :where(.docs-heading--h3 + .docs-heading--h4),
158
+ :where(.docs-heading--h4 + .docs-heading--h5),
159
+ :where(.docs-heading--h5 + .docs-heading--h6) {
160
+ margin-top: 1rem;
173
161
  }
174
162
 
175
163
  @media (width <= 640px) {
176
- h1 {
164
+ :where(.docs-heading--h1) {
177
165
  font-size: 1.75rem;
178
166
  }
179
- h2 {
167
+ :where(.docs-heading--h2) {
180
168
  font-size: 1.5rem;
181
169
  }
182
- h3 {
170
+ :where(.docs-heading--h3) {
183
171
  font-size: 1.25rem;
184
172
  }
185
- h4 {
173
+ :where(.docs-heading--h4) {
186
174
  font-size: 1.125rem;
187
175
  }
188
- h5 {
176
+ :where(.docs-heading--h5) {
189
177
  font-size: 1rem;
190
178
  }
191
- h6 {
179
+ :where(.docs-heading--h6) {
192
180
  font-size: 1rem;
193
181
  }
194
182
  }
195
- h1 + h2 {
196
- margin-top: 1rem;
183
+ main :where(.docs-heading--h1) {
184
+ font-size: 2.5rem;
185
+ color: var(--docs-text-color-default);
197
186
  }
198
-
199
- h2 + h3 {
200
- margin-top: 1rem;
187
+ main :where(.docs-heading--h2) {
188
+ font-size: 1.5rem;
189
+ margin-top: 3rem;
201
190
  }
202
-
203
- h3 + h4 {
204
- margin-top: 1rem;
191
+ main :where(.docs-heading--h3) {
192
+ font-size: 1.2rem;
205
193
  }
206
-
207
- h4 + h5 {
208
- margin-top: 1rem;
194
+ main :where(.docs-heading--h4) {
195
+ font-size: 1rem;
209
196
  }
210
-
211
- h5 + h6 {
212
- margin-top: 1rem;
197
+ main :where(.docs-heading:first-child) {
198
+ margin-top: 0;
213
199
  }
214
200
 
215
201
  .docs-paragraph {
@@ -224,7 +210,7 @@ strong {
224
210
  font-weight: 700;
225
211
  }
226
212
 
227
- code {
213
+ :where(code) {
228
214
  font-size: var(--docs-font-size);
229
215
  border-radius: 2px;
230
216
  font-family: Consolas, "Liberation Mono", Courier, monospace;
@@ -891,24 +877,6 @@ p:not(.code-preview p) {
891
877
  max-width: 680px;
892
878
  }
893
879
 
894
- main h1:not(.code-preview h1) {
895
- font-size: 2.5rem;
896
- color: var(--docs-text-color-default);
897
- }
898
-
899
- main h2:not(.code-preview h2) {
900
- font-size: 1.5rem;
901
- margin-top: 3rem;
902
- }
903
-
904
- main h3:not(.code-preview h3) {
905
- font-size: 1.2rem;
906
- }
907
-
908
- main h4:not(.code-preview h4) {
909
- font-size: 1rem;
910
- }
911
-
912
880
  .header-anchor:hover {
913
881
  text-decoration: underline;
914
882
  }
@@ -928,38 +896,11 @@ main h4:not(.code-preview h4) {
928
896
  visibility: visible;
929
897
  }
930
898
 
931
- h1 code {
932
- color: var(--docs-text-color-discrete);
933
- font-family: var(--docs-font-family);
934
- background-color: transparent;
935
- font-weight: 400;
936
- }
937
-
938
- h1 .header-anchor,
939
- h2 .header-anchor,
940
- h3 .header-anchor,
941
- h4 .header-anchor,
942
- h5 .header-anchor,
943
- h6 .header-anchor {
944
- color: var(--docs-text-color-default);
945
- }
946
- h1 code,
947
- h2 code,
948
- h3 code,
949
- h4 code,
950
- h5 code,
951
- h6 code {
952
- font-size: inherit;
953
- margin: 0;
954
- padding: 0;
955
- text-decoration: inherit;
956
- }
957
-
958
899
  #content a:where(:not(.code-preview a)) {
959
900
  color: var(--docs-text-color-default);
960
901
  }
961
902
 
962
- #content a:where(:not(.code-preview a, h2 a, h3 a, h4 a, h5 a)),
903
+ #content a:where(:not(.code-preview a, .header-anchor)),
963
904
  footer a {
964
905
  text-decoration: underline;
965
906
  text-decoration-thickness: 1px;
@@ -967,7 +908,7 @@ footer a {
967
908
  text-decoration-color: var(--docs-text-color-link);
968
909
  text-underline-offset: 0.15rem;
969
910
  }
970
- #content a:where(:not(.code-preview a, h2 a, h3 a, h4 a, h5 a)):hover,
911
+ #content a:where(:not(.code-preview a, .header-anchor)):hover,
971
912
  footer a:hover {
972
913
  color: var(--docs-text-color-default);
973
914
  text-decoration-color: var(--docs-text-color-default);
@@ -1078,10 +1019,6 @@ header .page-header__right-slot {
1078
1019
  display: inline-block;
1079
1020
  }
1080
1021
 
1081
- main h2:first-child {
1082
- margin-top: 0;
1083
- }
1084
-
1085
1022
  main #aside dl {
1086
1023
  margin-bottom: 2rem;
1087
1024
  }
@@ -18856,21 +18856,19 @@ class I18n extends EventEmitter {
18856
18856
  o.lngs = o.lngs || fixedT.lngs;
18857
18857
  o.ns = o.ns || fixedT.ns;
18858
18858
  if (o.keyPrefix !== '') o.keyPrefix = o.keyPrefix || keyPrefix || fixedT.keyPrefix;
18859
+ const selectorOpts = {
18860
+ ...this.options,
18861
+ ...o
18862
+ };
18859
18863
  const keySeparator = this.options.keySeparator || '.';
18860
18864
  let resultKey;
18861
18865
  if (o.keyPrefix && Array.isArray(key)) {
18862
18866
  resultKey = key.map(k => {
18863
- if (typeof k === 'function') k = keysFromSelector(k, {
18864
- ...this.options,
18865
- ...opts
18866
- });
18867
+ if (typeof k === 'function') k = keysFromSelector(k, selectorOpts);
18867
18868
  return `${o.keyPrefix}${keySeparator}${k}`;
18868
18869
  });
18869
18870
  } else {
18870
- if (typeof key === 'function') key = keysFromSelector(key, {
18871
- ...this.options,
18872
- ...opts
18873
- });
18871
+ if (typeof key === 'function') key = keysFromSelector(key, selectorOpts);
18874
18872
  resultKey = o.keyPrefix ? `${o.keyPrefix}${keySeparator}${key}` : key;
18875
18873
  }
18876
18874
  return this.t(resultKey, o);
@@ -69703,4 +69701,4 @@ var typescript = /*#__PURE__*/Object.freeze({
69703
69701
  });
69704
69702
 
69705
69703
  export { HighlightJS as H, MarkdownIt as M, Ze$a as Z, resolveConfig as a, createTwoFilesPatch$1 as b, createSyncFn as c, dedent$1 as d, deflist_plugin as e, format2 as f, closest as g, distance as h, fm$2 as i, isCI as j, cliProgress as k, tinylr as l, moduleImporter as m, createInstance as n, fse as o, inter as p, runAsWorker as r, ts$7 as t, watch$1 as w };
69706
- //# sourceMappingURL=vendor-DgbU8VP_.mjs.map
69704
+ //# sourceMappingURL=vendor-B-ki54MB.mjs.map