@taiga-ui/addon-doc 3.19.0-dev.main-508a744 → 3.19.0-dev.main-a9b9880
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/bundles/taiga-ui-addon-doc.umd.js +6 -2
- package/bundles/taiga-ui-addon-doc.umd.js.map +1 -1
- package/components/language-switcher/language-switcher.component.d.ts +1 -1
- package/esm2015/components/language-switcher/language-switcher.component.js +1 -1
- package/esm2015/tokens/example-content-processor.js +7 -3
- package/fesm2015/taiga-ui-addon-doc.js +6 -2
- package/fesm2015/taiga-ui-addon-doc.js.map +1 -1
- package/package.json +1 -1
|
@@ -55,8 +55,12 @@
|
|
|
55
55
|
return result.length ? result : [text];
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
var TUI_DOC_EXAMPLE_CONTENT_PROCESSOR = new i0.InjectionToken("[TUI_DOC_EXAMPLE_CONTENT_PROCESSOR]: Processes content in example", {
|
|
59
|
-
|
|
58
|
+
var TUI_DOC_EXAMPLE_CONTENT_PROCESSOR = new i0.InjectionToken("[TUI_DOC_EXAMPLE_CONTENT_PROCESSOR]: Processes content in example", {
|
|
59
|
+
factory: function () { return i9.identity; },
|
|
60
|
+
});
|
|
61
|
+
var TUI_DOC_EXAMPLE_MARKDOWN_CODE_PROCESSOR = new i0.InjectionToken("[TUI_DOC_EXAMPLE_MARKDOWN_CODE_PROCESSOR]: Processes markdown in code block", {
|
|
62
|
+
factory: function () { return tuiTryParseMarkdownCodeBlock; },
|
|
63
|
+
});
|
|
60
64
|
|
|
61
65
|
/*! *****************************************************************************
|
|
62
66
|
Copyright (c) Microsoft Corporation.
|