@forsakringskassan/docs-generator 2.39.0 → 2.39.2

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.
@@ -1097,7 +1097,7 @@ main #aside dd {
1097
1097
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff;
1098
1098
  outline: 3px solid transparent;
1099
1099
  }
1100
- .code-preview .code-preview__button .icon {
1100
+ .code-preview .code-preview__button .docs-icon {
1101
1101
  margin-right: 0.25rem;
1102
1102
  }
1103
1103
 
@@ -1728,11 +1728,32 @@ body {
1728
1728
  border: 0;
1729
1729
  }
1730
1730
 
1731
- .icon {
1731
+ @property --docs-icon-size {
1732
+ syntax: "<length>";
1733
+ inherits: true;
1734
+ initial-value: 16px;
1735
+ }
1736
+ .docs-icon {
1732
1737
  display: inline-block;
1733
- height: 1rem;
1738
+ height: var(--docs-icon-size);
1734
1739
  max-height: 100%;
1735
1740
  max-width: 100%;
1736
1741
  pointer-events: none;
1737
- width: 1rem;
1742
+ width: var(--docs-icon-size);
1743
+ }
1744
+ .docs-icon-stack {
1745
+ display: inline-block;
1746
+ height: var(--docs-icon-size);
1747
+ max-height: 100%;
1748
+ max-width: 100%;
1749
+ pointer-events: none;
1750
+ width: var(--docs-icon-size);
1751
+ position: relative;
1752
+ }
1753
+ .docs-icon-stack .icon {
1754
+ position: absolute;
1755
+ }
1756
+ .docs-icon-stack--info .f-icon-circle {
1757
+ color: #ffffff;
1758
+ fill: #4a52b6;
1738
1759
  }
@@ -576,11 +576,32 @@ body {
576
576
  border: 0;
577
577
  }
578
578
 
579
- .icon {
579
+ @property --docs-icon-size {
580
+ syntax: "<length>";
581
+ inherits: true;
582
+ initial-value: 16px;
583
+ }
584
+ .docs-icon {
580
585
  display: inline-block;
581
- height: 1rem;
586
+ height: var(--docs-icon-size);
582
587
  max-height: 100%;
583
588
  max-width: 100%;
584
589
  pointer-events: none;
585
- width: 1rem;
590
+ width: var(--docs-icon-size);
591
+ }
592
+ .docs-icon-stack {
593
+ display: inline-block;
594
+ height: var(--docs-icon-size);
595
+ max-height: 100%;
596
+ max-width: 100%;
597
+ pointer-events: none;
598
+ width: var(--docs-icon-size);
599
+ position: relative;
600
+ }
601
+ .docs-icon-stack .icon {
602
+ position: absolute;
603
+ }
604
+ .docs-icon-stack--info .f-icon-circle {
605
+ color: #ffffff;
606
+ fill: #4a52b6;
586
607
  }
@@ -18524,7 +18524,11 @@ const bindMemberFunctions = inst => {
18524
18524
  });
18525
18525
  };
18526
18526
  const SUPPORT_NOTICE_KEY = '__i18next_supportNoticeShown';
18527
- const getSupportNoticeShown = () => typeof globalThis !== 'undefined' && !!globalThis[SUPPORT_NOTICE_KEY];
18527
+ const getSupportNoticeShown = () => {
18528
+ if (typeof globalThis !== 'undefined' && !!globalThis[SUPPORT_NOTICE_KEY]) return true;
18529
+ if (typeof process !== 'undefined' && process.env && process.env.I18NEXT_NO_SUPPORT_NOTICE) return true;
18530
+ return false;
18531
+ };
18528
18532
  const setSupportNoticeShown = () => {
18529
18533
  if (typeof globalThis !== 'undefined') globalThis[SUPPORT_NOTICE_KEY] = true;
18530
18534
  };
@@ -18860,6 +18864,7 @@ class I18n extends EventEmitter {
18860
18864
  ...this.options,
18861
18865
  ...o
18862
18866
  };
18867
+ if (typeof o.keyPrefix === 'function') o.keyPrefix = keysFromSelector(o.keyPrefix, selectorOpts);
18863
18868
  const keySeparator = this.options.keySeparator || '.';
18864
18869
  let resultKey;
18865
18870
  if (o.keyPrefix && Array.isArray(key)) {
@@ -69701,4 +69706,4 @@ var typescript = /*#__PURE__*/Object.freeze({
69701
69706
  });
69702
69707
 
69703
69708
  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 };
69704
- //# sourceMappingURL=vendor-B-ki54MB.mjs.map
69709
+ //# sourceMappingURL=vendor-KZo5HqAF.mjs.map