@forsakringskassan/docs-generator 2.28.10 → 2.29.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/{create-markdown-renderer-CyfvyYyU.mjs → create-markdown-renderer-CQxhXDbC.mjs} +4 -4
- package/dist/{create-markdown-renderer-CyfvyYyU.mjs.map → create-markdown-renderer-CQxhXDbC.mjs.map} +1 -1
- package/dist/index.mjs +85 -21
- package/dist/index.mjs.map +1 -1
- package/dist/markdown.mjs +3 -3
- package/dist/runtime.mjs +3206 -3014
- package/dist/tsdoc-metadata.json +1 -1
- package/dist/{vendor-B8uiqaoK.mjs → vendor-OuaFLIX7.mjs} +9 -7
- package/dist/vendor-OuaFLIX7.mjs.map +1 -0
- package/dist/{vue3-BnNvoOYe.mjs → vue3-BOnqvtDm.mjs} +24 -24
- package/dist/vue3-BOnqvtDm.mjs.map +1 -0
- package/dist/{worker-tOyGhY2n.mjs → worker-Dal4yTwy.mjs} +3 -3
- package/dist/{worker-tOyGhY2n.mjs.map → worker-Dal4yTwy.mjs.map} +1 -1
- package/package.json +1 -1
- package/dist/vendor-B8uiqaoK.mjs.map +0 -1
- package/dist/vue3-BnNvoOYe.mjs.map +0 -1
package/dist/tsdoc-metadata.json
CHANGED
|
@@ -22652,7 +22652,8 @@ function requireStat () {
|
|
|
22652
22652
|
}
|
|
22653
22653
|
|
|
22654
22654
|
function areIdentical (srcStat, destStat) {
|
|
22655
|
-
|
|
22655
|
+
// stat.dev can be 0n on windows when node version >= 22.x.x
|
|
22656
|
+
return destStat.ino !== undefined && destStat.dev !== undefined && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
|
|
22656
22657
|
}
|
|
22657
22658
|
|
|
22658
22659
|
// return true if dest is a subdir of src, otherwise false.
|
|
@@ -24725,22 +24726,22 @@ class Translator extends EventEmitter {
|
|
|
24725
24726
|
const zeroSuffix = `${this.options.pluralSeparator}zero`;
|
|
24726
24727
|
const ordinalPrefix = `${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;
|
|
24727
24728
|
if (needsPluralHandling) {
|
|
24728
|
-
finalKeys.push(key + pluralSuffix);
|
|
24729
24729
|
if (opt.ordinal && pluralSuffix.indexOf(ordinalPrefix) === 0) {
|
|
24730
24730
|
finalKeys.push(key + pluralSuffix.replace(ordinalPrefix, this.options.pluralSeparator));
|
|
24731
24731
|
}
|
|
24732
|
+
finalKeys.push(key + pluralSuffix);
|
|
24732
24733
|
if (needsZeroSuffixLookup) {
|
|
24733
24734
|
finalKeys.push(key + zeroSuffix);
|
|
24734
24735
|
}
|
|
24735
24736
|
}
|
|
24736
24737
|
if (needsContextHandling) {
|
|
24737
|
-
const contextKey = `${key}${this.options.contextSeparator}${opt.context}`;
|
|
24738
|
+
const contextKey = `${key}${this.options.contextSeparator || '_'}${opt.context}`;
|
|
24738
24739
|
finalKeys.push(contextKey);
|
|
24739
24740
|
if (needsPluralHandling) {
|
|
24740
|
-
finalKeys.push(contextKey + pluralSuffix);
|
|
24741
24741
|
if (opt.ordinal && pluralSuffix.indexOf(ordinalPrefix) === 0) {
|
|
24742
24742
|
finalKeys.push(contextKey + pluralSuffix.replace(ordinalPrefix, this.options.pluralSeparator));
|
|
24743
24743
|
}
|
|
24744
|
+
finalKeys.push(contextKey + pluralSuffix);
|
|
24744
24745
|
if (needsZeroSuffixLookup) {
|
|
24745
24746
|
finalKeys.push(contextKey + zeroSuffix);
|
|
24746
24747
|
}
|
|
@@ -25059,7 +25060,7 @@ class Interpolator {
|
|
|
25059
25060
|
};
|
|
25060
25061
|
this.regexp = getOrResetRegExp(this.regexp, `${this.prefix}(.+?)${this.suffix}`);
|
|
25061
25062
|
this.regexpUnescape = getOrResetRegExp(this.regexpUnescape, `${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`);
|
|
25062
|
-
this.nestingRegexp = getOrResetRegExp(this.nestingRegexp, `${this.nestingPrefix}(
|
|
25063
|
+
this.nestingRegexp = getOrResetRegExp(this.nestingRegexp, `${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`);
|
|
25063
25064
|
}
|
|
25064
25065
|
interpolate(str, data, lng, options) {
|
|
25065
25066
|
let match;
|
|
@@ -26735,7 +26736,8 @@ var moduleImporter = {
|
|
|
26735
26736
|
`${fileName}.css`,
|
|
26736
26737
|
`${fileName}.scss`,
|
|
26737
26738
|
`_${fileName}.scss`,
|
|
26738
|
-
`${fileName}
|
|
26739
|
+
`${fileName}`,
|
|
26740
|
+
`${fileName}/_index.scss`
|
|
26739
26741
|
];
|
|
26740
26742
|
for (const variant of search) {
|
|
26741
26743
|
try {
|
|
@@ -56131,4 +56133,4 @@ var srcExports = requireSrc();
|
|
|
56131
56133
|
var tinylr = /*@__PURE__*/getDefaultExportFromCjs(srcExports);
|
|
56132
56134
|
|
|
56133
56135
|
export { HighlightJS as H, MarkdownIt as M, createTwoFilesPatch as a, deflist_plugin as b, commonjsRequire as c, dedent as d, closest as e, distance as f, globSync as g, fm as h, isCI as i, glob as j, moduleImporter as k, cliProgress as l, minimatch as m, createInstance as n, fse as o, tinylr as t, watch$1 as w };
|
|
56134
|
-
//# sourceMappingURL=vendor-
|
|
56136
|
+
//# sourceMappingURL=vendor-OuaFLIX7.mjs.map
|