@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.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.9"
8
+ "packageVersion": "7.52.10"
9
9
  }
10
10
  ]
11
11
  }
@@ -22652,7 +22652,8 @@ function requireStat () {
22652
22652
  }
22653
22653
 
22654
22654
  function areIdentical (srcStat, destStat) {
22655
- return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
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}(.+?)${this.nestingSuffix}`);
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-B8uiqaoK.mjs.map
56136
+ //# sourceMappingURL=vendor-OuaFLIX7.mjs.map