@forsakringskassan/docs-generator 2.28.5 → 2.28.7

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.
@@ -25168,12 +25168,10 @@ class Interpolator {
25168
25168
  clonedOptions = clonedOptions.replace && !isString(clonedOptions.replace) ? clonedOptions.replace : clonedOptions;
25169
25169
  clonedOptions.applyPostProcessor = false;
25170
25170
  delete clonedOptions.defaultValue;
25171
- let doReduce = false;
25172
- if (match[0].indexOf(this.formatSeparator) !== -1 && !/{.*}/.test(match[1])) {
25173
- const r = match[1].split(this.formatSeparator).map(elem => elem.trim());
25174
- match[1] = r.shift();
25175
- formatters = r;
25176
- doReduce = true;
25171
+ const keyEndIndex = /{.*}/.test(match[1]) ? match[1].lastIndexOf('}') + 1 : match[1].indexOf(this.formatSeparator);
25172
+ if (keyEndIndex !== -1) {
25173
+ formatters = match[1].slice(keyEndIndex).split(this.formatSeparator).map(elem => elem.trim()).filter(Boolean);
25174
+ match[1] = match[1].slice(0, keyEndIndex);
25177
25175
  }
25178
25176
  value = fc(handleHasOptions.call(this, match[1].trim(), clonedOptions), clonedOptions);
25179
25177
  if (value && match[0] === str && !isString(value)) return value;
@@ -25182,7 +25180,7 @@ class Interpolator {
25182
25180
  this.logger.warn(`missed to resolve ${match[1]} for nesting ${str}`);
25183
25181
  value = '';
25184
25182
  }
25185
- if (doReduce) {
25183
+ if (formatters.length) {
25186
25184
  value = formatters.reduce((v, f) => this.format(v, f, options.lng, {
25187
25185
  ...options,
25188
25186
  interpolationkey: match[1].trim()
@@ -25704,9 +25702,13 @@ class I18n extends EventEmitter {
25704
25702
  prepend: this.options.pluralSeparator,
25705
25703
  simplifyPluralSuffix: this.options.simplifyPluralSuffix
25706
25704
  });
25705
+ const usingLegacyFormatFunction = this.options.interpolation.format && this.options.interpolation.format !== defOpts.interpolation.format;
25706
+ if (usingLegacyFormatFunction) {
25707
+ this.logger.warn(`init: you are still using the legacy format function, please use the new approach: https://www.i18next.com/translation-function/formatting`);
25708
+ }
25707
25709
  if (formatter && (!this.options.interpolation.format || this.options.interpolation.format === defOpts.interpolation.format)) {
25708
25710
  s.formatter = createClassOnDemand(formatter);
25709
- s.formatter.init(s, this.options);
25711
+ if (s.formatter.init) s.formatter.init(s, this.options);
25710
25712
  this.options.interpolation.format = s.formatter.format.bind(s.formatter);
25711
25713
  }
25712
25714
  s.interpolator = new Interpolator(this.options);
@@ -26021,8 +26023,16 @@ class I18n extends EventEmitter {
26021
26023
  dir(lng) {
26022
26024
  if (!lng) lng = this.resolvedLanguage || (this.languages?.length > 0 ? this.languages[0] : this.language);
26023
26025
  if (!lng) return 'rtl';
26026
+ if (Intl.Locale) {
26027
+ const l = new Intl.Locale(lng);
26028
+ if (l && l.getTextInfo) {
26029
+ const ti = l.getTextInfo();
26030
+ if (ti && ti.direction) return ti.direction;
26031
+ }
26032
+ }
26024
26033
  const rtlLngs = ['ar', 'shu', 'sqr', 'ssh', 'xaa', 'yhd', 'yud', 'aao', 'abh', 'abv', 'acm', 'acq', 'acw', 'acx', 'acy', 'adf', 'ads', 'aeb', 'aec', 'afb', 'ajp', 'apc', 'apd', 'arb', 'arq', 'ars', 'ary', 'arz', 'auz', 'avl', 'ayh', 'ayl', 'ayn', 'ayp', 'bbz', 'pga', 'he', 'iw', 'ps', 'pbt', 'pbu', 'pst', 'prp', 'prd', 'ug', 'ur', 'ydd', 'yds', 'yih', 'ji', 'yi', 'hbo', 'men', 'xmn', 'fa', 'jpr', 'peo', 'pes', 'prs', 'dv', 'sam', 'ckb'];
26025
26034
  const languageUtils = this.services?.languageUtils || new LanguageUtil(get$1());
26035
+ if (lng.toLowerCase().indexOf('-latn') > 1) return 'ltr';
26026
26036
  return rtlLngs.indexOf(languageUtils.getLanguagePartFromCode(lng)) > -1 || lng.toLowerCase().indexOf('-arab') > 1 ? 'rtl' : 'ltr';
26027
26037
  }
26028
26038
  static createInstance(options = {}, callback) {
@@ -56121,4 +56131,4 @@ var srcExports = requireSrc();
56121
56131
  var tinylr = /*@__PURE__*/getDefaultExportFromCjs(srcExports);
56122
56132
 
56123
56133
  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 };
56124
- //# sourceMappingURL=vendor-zQuDI2ju.mjs.map
56134
+ //# sourceMappingURL=vendor-D-BtdwMT.mjs.map