@taiga-ui/addon-doc 3.58.0 → 3.59.0-canary.10da730

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.
Files changed (239) hide show
  1. package/components/code/code.component.d.ts +1 -1
  2. package/components/copy/copy.component.d.ts +1 -1
  3. package/components/demo/demo.component.d.ts +3 -3
  4. package/components/doc-tab/doc-tab.component.d.ts +1 -1
  5. package/components/documentation/documentation-property-connector.directive.d.ts +3 -3
  6. package/components/documentation/documentation.component.d.ts +1 -1
  7. package/components/documentation/pipes/cleaner.pipe.d.ts +1 -1
  8. package/components/documentation/pipes/color.pipe.d.ts +1 -1
  9. package/components/documentation/pipes/inspect.pipe.d.ts +1 -1
  10. package/components/documentation/pipes/opacity.pipe.d.ts +1 -1
  11. package/components/documentation/pipes/optional.pipe.d.ts +1 -1
  12. package/components/documentation/pipes/primitive-polymorpheus-content.pipe.d.ts +1 -1
  13. package/components/documentation/pipes/strip-optional.pipe.d.ts +1 -1
  14. package/components/documentation/pipes/type-reference.pipe.d.ts +1 -1
  15. package/components/example/example-get-tabs.pipe.d.ts +1 -1
  16. package/components/example/example.component.d.ts +1 -1
  17. package/components/internal/header/header.component.d.ts +1 -1
  18. package/components/internal/input-opacity/input-opacity.directive.d.ts +1 -1
  19. package/components/internal/see-also/see-also.component.d.ts +1 -1
  20. package/components/internal/source-code/source-code.component.d.ts +1 -1
  21. package/components/language-switcher/language-switcher.component.d.ts +3 -3
  22. package/components/main/main.component.d.ts +1 -1
  23. package/components/navigation/navigation.component.d.ts +3 -3
  24. package/components/page/page-tab.directive.d.ts +1 -1
  25. package/components/page/page.component.d.ts +1 -1
  26. package/directives/scroll-into-view/scroll-into-view.directive.d.ts +1 -1
  27. package/directives/text-code/text-code.directive.d.ts +1 -1
  28. package/{esm2015/addon-doc.module.js → esm2020/addon-doc.module.mjs} +4 -4
  29. package/esm2020/components/code/code.component.mjs +42 -0
  30. package/{esm2015/components/code/code.module.js → esm2020/components/code/code.module.mjs} +9 -11
  31. package/esm2020/components/copy/copy.component.mjs +35 -0
  32. package/{esm2015/components/copy/copy.module.js → esm2020/components/copy/copy.module.mjs} +5 -5
  33. package/esm2020/components/demo/demo.component.mjs +179 -0
  34. package/{esm2015/components/demo/demo.module.js → esm2020/components/demo/demo.module.mjs} +23 -25
  35. package/esm2020/components/doc-tab/doc-tab.component.mjs +17 -0
  36. package/{esm2015/components/doc-tab/doc-tab.module.js → esm2020/components/doc-tab/doc-tab.module.mjs} +5 -5
  37. package/{esm2015/components/documentation/documentation-property-connector.directive.js → esm2020/components/documentation/documentation-property-connector.directive.mjs} +8 -5
  38. package/esm2020/components/documentation/documentation.component.mjs +109 -0
  39. package/{esm2015/components/documentation/documentation.module.js → esm2020/components/documentation/documentation.module.mjs} +22 -24
  40. package/{esm2015/components/documentation/pipes/cleaner.pipe.js → esm2020/components/documentation/pipes/cleaner.pipe.mjs} +3 -3
  41. package/{esm2015/components/documentation/pipes/color.pipe.js → esm2020/components/documentation/pipes/color.pipe.mjs} +3 -3
  42. package/{esm2015/components/documentation/pipes/inspect.pipe.js → esm2020/components/documentation/pipes/inspect.pipe.mjs} +3 -3
  43. package/{esm2015/components/documentation/pipes/opacity.pipe.js → esm2020/components/documentation/pipes/opacity.pipe.mjs} +3 -3
  44. package/{esm2015/components/documentation/pipes/optional.pipe.js → esm2020/components/documentation/pipes/optional.pipe.mjs} +3 -3
  45. package/{esm2015/components/documentation/pipes/primitive-polymorpheus-content.pipe.js → esm2020/components/documentation/pipes/primitive-polymorpheus-content.pipe.mjs} +3 -3
  46. package/{esm2015/components/documentation/pipes/strip-optional.pipe.js → esm2020/components/documentation/pipes/strip-optional.pipe.mjs} +3 -3
  47. package/esm2020/components/documentation/pipes/type-reference.pipe.mjs +31 -0
  48. package/{esm2015/components/example/example-get-tabs.pipe.js → esm2020/components/example/example-get-tabs.pipe.mjs} +3 -3
  49. package/esm2020/components/example/example.component.mjs +150 -0
  50. package/{esm2015/components/example/example.module.js → esm2020/components/example/example.module.mjs} +13 -15
  51. package/esm2020/components/internal/header/header.component.mjs +54 -0
  52. package/{esm2015/components/internal/header/header.module.js → esm2020/components/internal/header/header.module.mjs} +10 -12
  53. package/{esm2015/components/internal/input-opacity/input-opacity.directive.js → esm2020/components/internal/input-opacity/input-opacity.directive.mjs} +8 -8
  54. package/{esm2015/components/internal/input-opacity/input-opacity.module.js → esm2020/components/internal/input-opacity/input-opacity.module.mjs} +4 -4
  55. package/esm2020/components/internal/see-also/see-also.component.mjs +31 -0
  56. package/{esm2015/components/internal/see-also/see-also.module.js → esm2020/components/internal/see-also/see-also.module.mjs} +5 -5
  57. package/{esm2015/components/internal/source-code/source-code.component.js → esm2020/components/internal/source-code/source-code.component.mjs} +7 -11
  58. package/{esm2015/components/internal/source-code/source-code.module.js → esm2020/components/internal/source-code/source-code.module.mjs} +5 -5
  59. package/esm2020/components/language-switcher/language-switcher.component.mjs +61 -0
  60. package/{esm2015/components/language-switcher/language-switcher.module.js → esm2020/components/language-switcher/language-switcher.module.mjs} +9 -11
  61. package/esm2020/components/main/main.component.mjs +59 -0
  62. package/{esm2015/components/main/main.module.js → esm2020/components/main/main.module.mjs} +14 -16
  63. package/esm2020/components/navigation/navigation.component.mjs +213 -0
  64. package/{esm2015/components/navigation/navigation.module.js → esm2020/components/navigation/navigation.module.mjs} +24 -26
  65. package/esm2020/components/navigation/navigation.providers.mjs +48 -0
  66. package/{esm2015/components/page/page-tab.directive.js → esm2020/components/page/page-tab.directive.mjs} +3 -3
  67. package/esm2020/components/page/page.component.mjs +56 -0
  68. package/{esm2015/components/page/page.module.js → esm2020/components/page/page.module.mjs} +11 -13
  69. package/esm2020/directives/scroll-into-view/scroll-into-view.directive.mjs +44 -0
  70. package/{esm2015/directives/scroll-into-view/scroll-into-view.module.js → esm2020/directives/scroll-into-view/scroll-into-view.module.mjs} +4 -4
  71. package/{esm2015/directives/text-code/text-code.directive.js → esm2020/directives/text-code/text-code.directive.mjs} +3 -3
  72. package/{esm2015/directives/text-code/text-code.module.js → esm2020/directives/text-code/text-code.module.mjs} +4 -4
  73. package/{esm2015/services/theme-night.service.js → esm2020/services/theme-night.service.mjs} +4 -4
  74. package/{esm2015/services/theme.service.js → esm2020/services/theme.service.mjs} +4 -4
  75. package/esm2020/tokens/page-loaded.mjs +7 -0
  76. package/esm2020/tokens/pages.mjs +9 -0
  77. package/esm2020/utils/coerce-boolean.mjs +4 -0
  78. package/{esm2015/utils/coerce-value.js → esm2020/utils/coerce-value.mjs} +2 -2
  79. package/esm2020/utils/raw-load-record.mjs +11 -0
  80. package/esm2020/utils/raw-load.mjs +4 -0
  81. package/esm2020/utils/sort-pages.mjs +26 -0
  82. package/esm2020/utils/to-flat-map-pages.mjs +22 -0
  83. package/esm2020/utils/type-reference-parser.mjs +24 -0
  84. package/fesm2015/taiga-ui-addon-doc-components.mjs +1909 -0
  85. package/fesm2015/taiga-ui-addon-doc-components.mjs.map +1 -0
  86. package/fesm2015/taiga-ui-addon-doc-directives.mjs +99 -0
  87. package/fesm2015/taiga-ui-addon-doc-directives.mjs.map +1 -0
  88. package/fesm2015/{taiga-ui-addon-doc-interfaces.js → taiga-ui-addon-doc-interfaces.mjs} +1 -1
  89. package/fesm2015/taiga-ui-addon-doc-interfaces.mjs.map +1 -0
  90. package/fesm2015/{taiga-ui-addon-doc-languages.js → taiga-ui-addon-doc-languages.mjs} +1 -1
  91. package/fesm2015/taiga-ui-addon-doc-languages.mjs.map +1 -0
  92. package/fesm2015/taiga-ui-addon-doc-services.mjs +97 -0
  93. package/fesm2015/taiga-ui-addon-doc-services.mjs.map +1 -0
  94. package/fesm2015/{taiga-ui-addon-doc-tokens.js → taiga-ui-addon-doc-tokens.mjs} +2 -3
  95. package/fesm2015/taiga-ui-addon-doc-tokens.mjs.map +1 -0
  96. package/fesm2015/taiga-ui-addon-doc-types.mjs +4 -0
  97. package/fesm2015/taiga-ui-addon-doc-types.mjs.map +1 -0
  98. package/fesm2015/{taiga-ui-addon-doc-utils.js → taiga-ui-addon-doc-utils.mjs} +7 -6
  99. package/fesm2015/taiga-ui-addon-doc-utils.mjs.map +1 -0
  100. package/fesm2015/{taiga-ui-addon-doc.js → taiga-ui-addon-doc.mjs} +5 -5
  101. package/fesm2015/taiga-ui-addon-doc.mjs.map +1 -0
  102. package/{fesm2015/taiga-ui-addon-doc-components.js → fesm2020/taiga-ui-addon-doc-components.mjs} +351 -441
  103. package/fesm2020/taiga-ui-addon-doc-components.mjs.map +1 -0
  104. package/{fesm2015/taiga-ui-addon-doc-directives.js → fesm2020/taiga-ui-addon-doc-directives.mjs} +19 -20
  105. package/fesm2020/taiga-ui-addon-doc-directives.mjs.map +1 -0
  106. package/fesm2020/taiga-ui-addon-doc-interfaces.mjs +12 -0
  107. package/fesm2020/taiga-ui-addon-doc-interfaces.mjs.map +1 -0
  108. package/fesm2020/taiga-ui-addon-doc-languages.mjs +46 -0
  109. package/fesm2020/taiga-ui-addon-doc-languages.mjs.map +1 -0
  110. package/{fesm2015/taiga-ui-addon-doc-services.js → fesm2020/taiga-ui-addon-doc-services.mjs} +7 -7
  111. package/fesm2020/taiga-ui-addon-doc-services.mjs.map +1 -0
  112. package/fesm2020/taiga-ui-addon-doc-tokens.mjs +148 -0
  113. package/fesm2020/taiga-ui-addon-doc-tokens.mjs.map +1 -0
  114. package/fesm2020/taiga-ui-addon-doc-types.mjs +4 -0
  115. package/fesm2020/taiga-ui-addon-doc-types.mjs.map +1 -0
  116. package/fesm2020/taiga-ui-addon-doc-utils.mjs +275 -0
  117. package/fesm2020/taiga-ui-addon-doc-utils.mjs.map +1 -0
  118. package/fesm2020/taiga-ui-addon-doc.mjs +49 -0
  119. package/fesm2020/taiga-ui-addon-doc.mjs.map +1 -0
  120. package/interfaces/page.d.ts +3 -3
  121. package/package.json +115 -38
  122. package/tokens/pages.d.ts +4 -2
  123. package/types/pages.d.ts +1 -1
  124. package/utils/type-reference-parser.d.ts +1 -1
  125. package/bundles/taiga-ui-addon-doc-components.umd.js +0 -2549
  126. package/bundles/taiga-ui-addon-doc-components.umd.js.map +0 -1
  127. package/bundles/taiga-ui-addon-doc-directives.umd.js +0 -140
  128. package/bundles/taiga-ui-addon-doc-directives.umd.js.map +0 -1
  129. package/bundles/taiga-ui-addon-doc-interfaces.umd.js +0 -22
  130. package/bundles/taiga-ui-addon-doc-interfaces.umd.js.map +0 -1
  131. package/bundles/taiga-ui-addon-doc-languages.umd.js +0 -54
  132. package/bundles/taiga-ui-addon-doc-languages.umd.js.map +0 -1
  133. package/bundles/taiga-ui-addon-doc-services.umd.js +0 -457
  134. package/bundles/taiga-ui-addon-doc-services.umd.js.map +0 -1
  135. package/bundles/taiga-ui-addon-doc-tokens.umd.js +0 -179
  136. package/bundles/taiga-ui-addon-doc-tokens.umd.js.map +0 -1
  137. package/bundles/taiga-ui-addon-doc-types.umd.js +0 -11
  138. package/bundles/taiga-ui-addon-doc-types.umd.js.map +0 -1
  139. package/bundles/taiga-ui-addon-doc-utils.umd.js +0 -671
  140. package/bundles/taiga-ui-addon-doc-utils.umd.js.map +0 -1
  141. package/bundles/taiga-ui-addon-doc.umd.js +0 -117
  142. package/bundles/taiga-ui-addon-doc.umd.js.map +0 -1
  143. package/components/package.json +0 -10
  144. package/components/taiga-ui-addon-doc-components.d.ts +0 -5
  145. package/directives/package.json +0 -10
  146. package/directives/taiga-ui-addon-doc-directives.d.ts +0 -5
  147. package/esm2015/components/code/code.component.js +0 -48
  148. package/esm2015/components/copy/copy.component.js +0 -42
  149. package/esm2015/components/demo/demo.component.js +0 -183
  150. package/esm2015/components/doc-tab/doc-tab.component.js +0 -22
  151. package/esm2015/components/documentation/documentation.component.js +0 -117
  152. package/esm2015/components/documentation/pipes/type-reference.pipe.js +0 -34
  153. package/esm2015/components/example/example.component.js +0 -152
  154. package/esm2015/components/internal/header/header.component.js +0 -60
  155. package/esm2015/components/internal/see-also/see-also.component.js +0 -37
  156. package/esm2015/components/language-switcher/language-switcher.component.js +0 -67
  157. package/esm2015/components/main/main.component.js +0 -68
  158. package/esm2015/components/navigation/navigation.component.js +0 -221
  159. package/esm2015/components/navigation/navigation.providers.js +0 -48
  160. package/esm2015/components/page/page.component.js +0 -62
  161. package/esm2015/directives/scroll-into-view/scroll-into-view.directive.js +0 -45
  162. package/esm2015/tokens/page-loaded.js +0 -8
  163. package/esm2015/tokens/pages.js +0 -9
  164. package/esm2015/utils/coerce-boolean.js +0 -4
  165. package/esm2015/utils/raw-load-record.js +0 -14
  166. package/esm2015/utils/raw-load.js +0 -7
  167. package/esm2015/utils/sort-pages.js +0 -23
  168. package/esm2015/utils/to-flat-map-pages.js +0 -23
  169. package/esm2015/utils/type-reference-parser.js +0 -24
  170. package/fesm2015/taiga-ui-addon-doc-components.js.map +0 -1
  171. package/fesm2015/taiga-ui-addon-doc-directives.js.map +0 -1
  172. package/fesm2015/taiga-ui-addon-doc-interfaces.js.map +0 -1
  173. package/fesm2015/taiga-ui-addon-doc-languages.js.map +0 -1
  174. package/fesm2015/taiga-ui-addon-doc-services.js.map +0 -1
  175. package/fesm2015/taiga-ui-addon-doc-tokens.js.map +0 -1
  176. package/fesm2015/taiga-ui-addon-doc-types.js +0 -4
  177. package/fesm2015/taiga-ui-addon-doc-types.js.map +0 -1
  178. package/fesm2015/taiga-ui-addon-doc-utils.js.map +0 -1
  179. package/fesm2015/taiga-ui-addon-doc.js.map +0 -1
  180. package/interfaces/package.json +0 -10
  181. package/interfaces/taiga-ui-addon-doc-interfaces.d.ts +0 -5
  182. package/languages/package.json +0 -10
  183. package/languages/taiga-ui-addon-doc-languages.d.ts +0 -5
  184. package/services/package.json +0 -10
  185. package/services/taiga-ui-addon-doc-services.d.ts +0 -5
  186. package/taiga-ui-addon-doc.d.ts +0 -5
  187. package/tokens/package.json +0 -10
  188. package/tokens/taiga-ui-addon-doc-tokens.d.ts +0 -5
  189. package/types/package.json +0 -10
  190. package/types/taiga-ui-addon-doc-types.d.ts +0 -5
  191. package/utils/package.json +0 -10
  192. package/utils/taiga-ui-addon-doc-utils.d.ts +0 -5
  193. /package/{esm2015/components/example/example.options.js → esm2020/components/example/example.options.mjs} +0 -0
  194. /package/{esm2015/components/index.js → esm2020/components/index.mjs} +0 -0
  195. /package/{esm2015/components/page/page.providers.js → esm2020/components/page/page.providers.mjs} +0 -0
  196. /package/{esm2015/components/taiga-ui-addon-doc-components.js → esm2020/components/taiga-ui-addon-doc-components.mjs} +0 -0
  197. /package/{esm2015/directives/index.js → esm2020/directives/index.mjs} +0 -0
  198. /package/{esm2015/directives/taiga-ui-addon-doc-directives.js → esm2020/directives/taiga-ui-addon-doc-directives.mjs} +0 -0
  199. /package/{esm2015/index.js → esm2020/index.mjs} +0 -0
  200. /package/{esm2015/interfaces/code-editor.js → esm2020/interfaces/code-editor.mjs} +0 -0
  201. /package/{esm2015/interfaces/demo-params.js → esm2020/interfaces/demo-params.mjs} +0 -0
  202. /package/{esm2015/interfaces/index.js → esm2020/interfaces/index.mjs} +0 -0
  203. /package/{esm2015/interfaces/page.js → esm2020/interfaces/page.mjs} +0 -0
  204. /package/{esm2015/interfaces/source-code-path-options.js → esm2020/interfaces/source-code-path-options.mjs} +0 -0
  205. /package/{esm2015/interfaces/taiga-ui-addon-doc-interfaces.js → esm2020/interfaces/taiga-ui-addon-doc-interfaces.mjs} +0 -0
  206. /package/{esm2015/languages/index.js → esm2020/languages/index.mjs} +0 -0
  207. /package/{esm2015/languages/russian.js → esm2020/languages/russian.mjs} +0 -0
  208. /package/{esm2015/languages/taiga-ui-addon-doc-languages.js → esm2020/languages/taiga-ui-addon-doc-languages.mjs} +0 -0
  209. /package/{esm2015/services/index.js → esm2020/services/index.mjs} +0 -0
  210. /package/{esm2015/services/taiga-ui-addon-doc-services.js → esm2020/services/taiga-ui-addon-doc-services.mjs} +0 -0
  211. /package/{esm2015/services/theme-night.options.js → esm2020/services/theme-night.options.mjs} +0 -0
  212. /package/{esm2015/services/theme.options.js → esm2020/services/theme.options.mjs} +0 -0
  213. /package/{esm2015/taiga-ui-addon-doc.js → esm2020/taiga-ui-addon-doc.mjs} +0 -0
  214. /package/{esm2015/tokens/code-actions.js → esm2020/tokens/code-actions.mjs} +0 -0
  215. /package/{esm2015/tokens/code-editor.js → esm2020/tokens/code-editor.mjs} +0 -0
  216. /package/{esm2015/tokens/default-tabs.js → esm2020/tokens/default-tabs.mjs} +0 -0
  217. /package/{esm2015/tokens/doc-icons.js → esm2020/tokens/doc-icons.mjs} +0 -0
  218. /package/{esm2015/tokens/example-content-processor.js → esm2020/tokens/example-content-processor.mjs} +0 -0
  219. /package/{esm2015/tokens/excluded-properties.js → esm2020/tokens/excluded-properties.mjs} +0 -0
  220. /package/{esm2015/tokens/i18n.js → esm2020/tokens/i18n.mjs} +0 -0
  221. /package/{esm2015/tokens/index.js → esm2020/tokens/index.mjs} +0 -0
  222. /package/{esm2015/tokens/logo.js → esm2020/tokens/logo.mjs} +0 -0
  223. /package/{esm2015/tokens/scroll-behavior.js → esm2020/tokens/scroll-behavior.mjs} +0 -0
  224. /package/{esm2015/tokens/see-also.js → esm2020/tokens/see-also.mjs} +0 -0
  225. /package/{esm2015/tokens/source-code.js → esm2020/tokens/source-code.mjs} +0 -0
  226. /package/{esm2015/tokens/taiga-ui-addon-doc-tokens.js → esm2020/tokens/taiga-ui-addon-doc-tokens.mjs} +0 -0
  227. /package/{esm2015/tokens/title.js → esm2020/tokens/title.mjs} +0 -0
  228. /package/{esm2015/tokens/type-reference-handler.js → esm2020/tokens/type-reference-handler.mjs} +0 -0
  229. /package/{esm2015/tokens/url-state-handler.js → esm2020/tokens/url-state-handler.mjs} +0 -0
  230. /package/{esm2015/types/index.js → esm2020/types/index.mjs} +0 -0
  231. /package/{esm2015/types/pages.js → esm2020/types/pages.mjs} +0 -0
  232. /package/{esm2015/types/taiga-ui-addon-doc-types.js → esm2020/types/taiga-ui-addon-doc-types.mjs} +0 -0
  233. /package/{esm2015/utils/generate-routes.js → esm2020/utils/generate-routes.mjs} +0 -0
  234. /package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
  235. /package/{esm2015/utils/inspect.js → esm2020/utils/inspect.mjs} +0 -0
  236. /package/{esm2015/utils/is-page-group.js → esm2020/utils/is-page-group.mjs} +0 -0
  237. /package/{esm2015/utils/parse-code-block.js → esm2020/utils/parse-code-block.mjs} +0 -0
  238. /package/{esm2015/utils/taiga-ui-addon-doc-utils.js → esm2020/utils/taiga-ui-addon-doc-utils.mjs} +0 -0
  239. /package/{esm2015/utils/transliterate-keyboard-layout.js → esm2020/utils/transliterate-keyboard-layout.mjs} +0 -0
@@ -1,671 +0,0 @@
1
- (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('markdown-it')) :
3
- typeof define === 'function' && define.amd ? define('@taiga-ui/addon-doc/utils', ['exports', 'markdown-it'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["taiga-ui"] = global["taiga-ui"] || {}, global["taiga-ui"]["addon-doc"] = global["taiga-ui"]["addon-doc"] || {}, global["taiga-ui"]["addon-doc"].utils = {}), global.MarkdownIt));
5
- })(this, (function (exports, MarkdownIt) { 'use strict';
6
-
7
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
8
-
9
- var MarkdownIt__default = /*#__PURE__*/_interopDefaultLegacy(MarkdownIt);
10
-
11
- function tuiCoerceValueIsTrue(value) {
12
- return (value === null || value === void 0 ? void 0 : value.toString()) === "true";
13
- }
14
-
15
- function isEmptyParamValue(value) {
16
- return ["undefined", "null", "NaN"].includes(value);
17
- }
18
- function isBooleanParamValue(value) {
19
- return value === "true" || value === "false";
20
- }
21
- function isNumberParamValue(value) {
22
- return !!value.trim() && !Number.isNaN(Number(value)) && !value.startsWith("+");
23
- }
24
- function isPossibleArray(value) {
25
- return value.startsWith("[") && value.endsWith("]");
26
- }
27
- function isPossibleObject(value) {
28
- return value.startsWith("{") && value.endsWith("}");
29
- }
30
- function tuiCoerceValue(value) {
31
- var prepared = String(value).trim();
32
- if (isEmptyParamValue(prepared)) {
33
- return null;
34
- }
35
- if (isBooleanParamValue(prepared)) {
36
- return String(prepared) === "true";
37
- }
38
- if (isNumberParamValue(prepared)) {
39
- return Number(prepared);
40
- }
41
- var decodedValue = decodeURIComponent(prepared);
42
- try {
43
- return isPossibleArray(decodedValue) || isPossibleObject(decodedValue)
44
- ? JSON.parse(decodedValue)
45
- : decodedValue;
46
- }
47
- catch (_a) {
48
- return decodedValue;
49
- }
50
- }
51
-
52
- function tuiGenerateRoutes(type) {
53
- return [
54
- {
55
- path: "",
56
- component: type,
57
- children: [
58
- {
59
- path: ":tab",
60
- component: type,
61
- },
62
- ],
63
- },
64
- ];
65
- }
66
-
67
- function inspectArray(array, depth) {
68
- if (depth === 0) {
69
- return "[\u2026]";
70
- }
71
- var result = "";
72
- var first = true;
73
- for (var index = 0; index < array.length; index++) {
74
- if (first) {
75
- first = false;
76
- }
77
- else {
78
- result += ", ";
79
- }
80
- result += index in array ? tuiInspectAny(array[index], depth - 1) : "empty";
81
- }
82
- return "[" + result + "]";
83
- }
84
- function inspectObject(object, depth) {
85
- if (depth === 0) {
86
- return "{\u2026}";
87
- }
88
- var result = "";
89
- var first = true;
90
- for (var key in object) {
91
- if (!object.hasOwnProperty(key)) {
92
- continue;
93
- }
94
- if (first) {
95
- first = false;
96
- }
97
- else {
98
- result += ", ";
99
- }
100
- result += key + ": " + tuiInspectAny(object[key], depth - 1);
101
- }
102
- return "{" + result + "}";
103
- }
104
- /**
105
- * Returns readable JS entity
106
- * @param data
107
- * @param depth
108
- * @return readable JS entity
109
- */
110
- function tuiInspectAny(data, depth) {
111
- if (data === null) {
112
- return "null";
113
- }
114
- switch (typeof data) {
115
- case "string":
116
- return "'" + data + "'";
117
- case "undefined":
118
- case "number":
119
- case "boolean":
120
- case "function":
121
- return String(data);
122
- default:
123
- break;
124
- }
125
- if (data instanceof RegExp) {
126
- return String(data);
127
- }
128
- if (Array.isArray(data)) {
129
- return inspectArray(data, depth);
130
- }
131
- return inspectObject(data, depth);
132
- }
133
-
134
- function tuiIsPageGroup(page) {
135
- return "subPages" in page;
136
- }
137
-
138
- function tuiTryParseMarkdownCodeBlock(text) {
139
- if (text === void 0) { text = ""; }
140
- var tokens = new MarkdownIt__default["default"]().parse(text, {});
141
- var result = tokens
142
- .filter(function (_a) {
143
- var tag = _a.tag, type = _a.type;
144
- return tag === "code" && type === "fence";
145
- })
146
- .map(function (_a) {
147
- var content = _a.content;
148
- return content.trim();
149
- });
150
- return result.length ? result : [text];
151
- }
152
-
153
- /*! *****************************************************************************
154
- Copyright (c) Microsoft Corporation.
155
-
156
- Permission to use, copy, modify, and/or distribute this software for any
157
- purpose with or without fee is hereby granted.
158
-
159
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
160
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
161
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
162
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
163
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
164
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
165
- PERFORMANCE OF THIS SOFTWARE.
166
- ***************************************************************************** */
167
- /* global Reflect, Promise */
168
- var extendStatics = function (d, b) {
169
- extendStatics = Object.setPrototypeOf ||
170
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
171
- function (d, b) { for (var p in b)
172
- if (Object.prototype.hasOwnProperty.call(b, p))
173
- d[p] = b[p]; };
174
- return extendStatics(d, b);
175
- };
176
- function __extends(d, b) {
177
- if (typeof b !== "function" && b !== null)
178
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
179
- extendStatics(d, b);
180
- function __() { this.constructor = d; }
181
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
182
- }
183
- var __assign = function () {
184
- __assign = Object.assign || function __assign(t) {
185
- for (var s, i = 1, n = arguments.length; i < n; i++) {
186
- s = arguments[i];
187
- for (var p in s)
188
- if (Object.prototype.hasOwnProperty.call(s, p))
189
- t[p] = s[p];
190
- }
191
- return t;
192
- };
193
- return __assign.apply(this, arguments);
194
- };
195
- function __rest(s, e) {
196
- var t = {};
197
- for (var p in s)
198
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
199
- t[p] = s[p];
200
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
201
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
202
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
203
- t[p[i]] = s[p[i]];
204
- }
205
- return t;
206
- }
207
- function __decorate(decorators, target, key, desc) {
208
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
209
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
210
- r = Reflect.decorate(decorators, target, key, desc);
211
- else
212
- for (var i = decorators.length - 1; i >= 0; i--)
213
- if (d = decorators[i])
214
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
215
- return c > 3 && r && Object.defineProperty(target, key, r), r;
216
- }
217
- function __param(paramIndex, decorator) {
218
- return function (target, key) { decorator(target, key, paramIndex); };
219
- }
220
- function __metadata(metadataKey, metadataValue) {
221
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
222
- return Reflect.metadata(metadataKey, metadataValue);
223
- }
224
- function __awaiter(thisArg, _arguments, P, generator) {
225
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
226
- return new (P || (P = Promise))(function (resolve, reject) {
227
- function fulfilled(value) { try {
228
- step(generator.next(value));
229
- }
230
- catch (e) {
231
- reject(e);
232
- } }
233
- function rejected(value) { try {
234
- step(generator["throw"](value));
235
- }
236
- catch (e) {
237
- reject(e);
238
- } }
239
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
240
- step((generator = generator.apply(thisArg, _arguments || [])).next());
241
- });
242
- }
243
- function __generator(thisArg, body) {
244
- var _ = { label: 0, sent: function () { if (t[0] & 1)
245
- throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
246
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
247
- function verb(n) { return function (v) { return step([n, v]); }; }
248
- function step(op) {
249
- if (f)
250
- throw new TypeError("Generator is already executing.");
251
- while (_)
252
- try {
253
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
254
- return t;
255
- if (y = 0, t)
256
- op = [op[0] & 2, t.value];
257
- switch (op[0]) {
258
- case 0:
259
- case 1:
260
- t = op;
261
- break;
262
- case 4:
263
- _.label++;
264
- return { value: op[1], done: false };
265
- case 5:
266
- _.label++;
267
- y = op[1];
268
- op = [0];
269
- continue;
270
- case 7:
271
- op = _.ops.pop();
272
- _.trys.pop();
273
- continue;
274
- default:
275
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
276
- _ = 0;
277
- continue;
278
- }
279
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
280
- _.label = op[1];
281
- break;
282
- }
283
- if (op[0] === 6 && _.label < t[1]) {
284
- _.label = t[1];
285
- t = op;
286
- break;
287
- }
288
- if (t && _.label < t[2]) {
289
- _.label = t[2];
290
- _.ops.push(op);
291
- break;
292
- }
293
- if (t[2])
294
- _.ops.pop();
295
- _.trys.pop();
296
- continue;
297
- }
298
- op = body.call(thisArg, _);
299
- }
300
- catch (e) {
301
- op = [6, e];
302
- y = 0;
303
- }
304
- finally {
305
- f = t = 0;
306
- }
307
- if (op[0] & 5)
308
- throw op[1];
309
- return { value: op[0] ? op[1] : void 0, done: true };
310
- }
311
- }
312
- var __createBinding = Object.create ? (function (o, m, k, k2) {
313
- if (k2 === undefined)
314
- k2 = k;
315
- Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
316
- }) : (function (o, m, k, k2) {
317
- if (k2 === undefined)
318
- k2 = k;
319
- o[k2] = m[k];
320
- });
321
- function __exportStar(m, o) {
322
- for (var p in m)
323
- if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
324
- __createBinding(o, m, p);
325
- }
326
- function __values(o) {
327
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
328
- if (m)
329
- return m.call(o);
330
- if (o && typeof o.length === "number")
331
- return {
332
- next: function () {
333
- if (o && i >= o.length)
334
- o = void 0;
335
- return { value: o && o[i++], done: !o };
336
- }
337
- };
338
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
339
- }
340
- function __read(o, n) {
341
- var m = typeof Symbol === "function" && o[Symbol.iterator];
342
- if (!m)
343
- return o;
344
- var i = m.call(o), r, ar = [], e;
345
- try {
346
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
347
- ar.push(r.value);
348
- }
349
- catch (error) {
350
- e = { error: error };
351
- }
352
- finally {
353
- try {
354
- if (r && !r.done && (m = i["return"]))
355
- m.call(i);
356
- }
357
- finally {
358
- if (e)
359
- throw e.error;
360
- }
361
- }
362
- return ar;
363
- }
364
- /** @deprecated */
365
- function __spread() {
366
- for (var ar = [], i = 0; i < arguments.length; i++)
367
- ar = ar.concat(__read(arguments[i]));
368
- return ar;
369
- }
370
- /** @deprecated */
371
- function __spreadArrays() {
372
- for (var s = 0, i = 0, il = arguments.length; i < il; i++)
373
- s += arguments[i].length;
374
- for (var r = Array(s), k = 0, i = 0; i < il; i++)
375
- for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
376
- r[k] = a[j];
377
- return r;
378
- }
379
- function __spreadArray(to, from, pack) {
380
- if (pack || arguments.length === 2)
381
- for (var i = 0, l = from.length, ar; i < l; i++) {
382
- if (ar || !(i in from)) {
383
- if (!ar)
384
- ar = Array.prototype.slice.call(from, 0, i);
385
- ar[i] = from[i];
386
- }
387
- }
388
- return to.concat(ar || from);
389
- }
390
- function __await(v) {
391
- return this instanceof __await ? (this.v = v, this) : new __await(v);
392
- }
393
- function __asyncGenerator(thisArg, _arguments, generator) {
394
- if (!Symbol.asyncIterator)
395
- throw new TypeError("Symbol.asyncIterator is not defined.");
396
- var g = generator.apply(thisArg, _arguments || []), i, q = [];
397
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
398
- function verb(n) { if (g[n])
399
- i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
400
- function resume(n, v) { try {
401
- step(g[n](v));
402
- }
403
- catch (e) {
404
- settle(q[0][3], e);
405
- } }
406
- function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
407
- function fulfill(value) { resume("next", value); }
408
- function reject(value) { resume("throw", value); }
409
- function settle(f, v) { if (f(v), q.shift(), q.length)
410
- resume(q[0][0], q[0][1]); }
411
- }
412
- function __asyncDelegator(o) {
413
- var i, p;
414
- return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
415
- function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
416
- }
417
- function __asyncValues(o) {
418
- if (!Symbol.asyncIterator)
419
- throw new TypeError("Symbol.asyncIterator is not defined.");
420
- var m = o[Symbol.asyncIterator], i;
421
- return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
422
- function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
423
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
424
- }
425
- function __makeTemplateObject(cooked, raw) {
426
- if (Object.defineProperty) {
427
- Object.defineProperty(cooked, "raw", { value: raw });
428
- }
429
- else {
430
- cooked.raw = raw;
431
- }
432
- return cooked;
433
- }
434
- ;
435
- var __setModuleDefault = Object.create ? (function (o, v) {
436
- Object.defineProperty(o, "default", { enumerable: true, value: v });
437
- }) : function (o, v) {
438
- o["default"] = v;
439
- };
440
- function __importStar(mod) {
441
- if (mod && mod.__esModule)
442
- return mod;
443
- var result = {};
444
- if (mod != null)
445
- for (var k in mod)
446
- if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
447
- __createBinding(result, mod, k);
448
- __setModuleDefault(result, mod);
449
- return result;
450
- }
451
- function __importDefault(mod) {
452
- return (mod && mod.__esModule) ? mod : { default: mod };
453
- }
454
- function __classPrivateFieldGet(receiver, state, kind, f) {
455
- if (kind === "a" && !f)
456
- throw new TypeError("Private accessor was defined without a getter");
457
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
458
- throw new TypeError("Cannot read private member from an object whose class did not declare it");
459
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
460
- }
461
- function __classPrivateFieldSet(receiver, state, value, kind, f) {
462
- if (kind === "m")
463
- throw new TypeError("Private method is not writable");
464
- if (kind === "a" && !f)
465
- throw new TypeError("Private accessor was defined without a setter");
466
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
467
- throw new TypeError("Cannot write private member to an object whose class did not declare it");
468
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
469
- }
470
-
471
- function tuiRawLoad(content) {
472
- return __awaiter(this, void 0, void 0, function () {
473
- var _a;
474
- return __generator(this, function (_b) {
475
- switch (_b.label) {
476
- case 0:
477
- if (!(content instanceof Promise)) return [3 /*break*/, 2];
478
- return [4 /*yield*/, content];
479
- case 1:
480
- _a = (_b.sent()).default;
481
- return [3 /*break*/, 3];
482
- case 2:
483
- _a = content;
484
- _b.label = 3;
485
- case 3: return [2 /*return*/, _a];
486
- }
487
- });
488
- });
489
- }
490
-
491
- function tuiRawLoadRecord(example) {
492
- return __awaiter(this, void 0, void 0, function () {
493
- var processedContent, _a, _b, _c, key, content, _d, _e, e_1_1;
494
- var e_1, _f;
495
- return __generator(this, function (_g) {
496
- switch (_g.label) {
497
- case 0:
498
- processedContent = {};
499
- _g.label = 1;
500
- case 1:
501
- _g.trys.push([1, 6, 7, 8]);
502
- _a = __values(Object.entries(example)), _b = _a.next();
503
- _g.label = 2;
504
- case 2:
505
- if (!!_b.done) return [3 /*break*/, 5];
506
- _c = __read(_b.value, 2), key = _c[0], content = _c[1];
507
- if (!content) return [3 /*break*/, 4];
508
- _d = processedContent;
509
- _e = key;
510
- return [4 /*yield*/, tuiRawLoad(content)];
511
- case 3:
512
- _d[_e] = _g.sent();
513
- _g.label = 4;
514
- case 4:
515
- _b = _a.next();
516
- return [3 /*break*/, 2];
517
- case 5: return [3 /*break*/, 8];
518
- case 6:
519
- e_1_1 = _g.sent();
520
- e_1 = { error: e_1_1 };
521
- return [3 /*break*/, 8];
522
- case 7:
523
- try {
524
- if (_b && !_b.done && (_f = _a.return)) _f.call(_a);
525
- }
526
- finally { if (e_1) throw e_1.error; }
527
- return [7 /*endfinally*/];
528
- case 8: return [2 /*return*/, processedContent];
529
- }
530
- });
531
- });
532
- }
533
-
534
- function tuiSortPages(pages, excludeSections) {
535
- if (excludeSections === void 0) { excludeSections = new Set(); }
536
- var sections = Array.from(new Set(pages.map(function (page) { return page.section; })));
537
- var sortedPages = pages.slice().sort(function (a, b) {
538
- var _a, _b;
539
- if (excludeSections.has((_a = a.section) !== null && _a !== void 0 ? _a : "") ||
540
- excludeSections.has((_b = b.section) !== null && _b !== void 0 ? _b : "")) {
541
- return 0;
542
- }
543
- var aSectionIndex = sections.indexOf(a.section);
544
- var bSectionIndex = sections.indexOf(b.section);
545
- if (aSectionIndex !== bSectionIndex) {
546
- return aSectionIndex - bSectionIndex;
547
- }
548
- if (a.title > b.title) {
549
- return 1;
550
- }
551
- return a.title.localeCompare(b.title);
552
- });
553
- return sortedPages.map(function (page) { return tuiIsPageGroup(page)
554
- ? Object.assign(Object.assign({}, page), { subPages: tuiSortPages(page.subPages, excludeSections) }) : page; });
555
- }
556
-
557
- function assertTitle(page, map) {
558
- var _a;
559
- if (map.has(page.title) && ((_a = map.get(page.title)) === null || _a === void 0 ? void 0 : _a.route) !== page.route) {
560
- console.error("Title for page should be unique for prevent inconsistent page names", page, "<== Collisions between ==>", map.get(page.title));
561
- }
562
- }
563
- function tuiToFlatMapPages(pages) {
564
- var map = new Map();
565
- pages.forEach(function (page) {
566
- if ("subPages" in page) {
567
- page.subPages.forEach(function (subPage) {
568
- ngDevMode && assertTitle(subPage, map);
569
- map.set(subPage.title, subPage);
570
- });
571
- }
572
- else {
573
- ngDevMode && assertTitle(page, map);
574
- map.set(page.title, page);
575
- }
576
- });
577
- return map;
578
- }
579
-
580
- var MAP = {
581
- а: "f",
582
- б: ",",
583
- в: "d",
584
- г: "u",
585
- д: "l",
586
- е: "t",
587
- ё: "`",
588
- ж: ";",
589
- з: "p",
590
- и: "b",
591
- й: "q",
592
- к: "r",
593
- л: "k",
594
- м: "v",
595
- н: "y",
596
- о: "j",
597
- п: "g",
598
- р: "h",
599
- с: "c",
600
- т: "n",
601
- у: "e",
602
- ф: "a",
603
- х: "[",
604
- ц: "w",
605
- ч: "x",
606
- ш: "i",
607
- щ: "o",
608
- ъ: "]",
609
- ы: "s",
610
- ь: "m",
611
- ю: ".",
612
- я: "z",
613
- };
614
- /**
615
- * Translates text mistakenly typed in the Russian layout into English
616
- * @param string string with Russian layout characters
617
- * @return string with English layout characters
618
- */
619
- function tuiTransliterateKeyboardLayout(string) {
620
- var newStr = "";
621
- for (var i = 0; i < string.length; i++) {
622
- newStr += string.charAt(i) in MAP ? MAP[string.charAt(i)] : string.charAt(i);
623
- }
624
- return newStr;
625
- }
626
-
627
- function tuiTypeReferenceParser(types) {
628
- var _a;
629
- var generics = (_a = types.match(/<([^>]+)>/g)) !== null && _a !== void 0 ? _a : [];
630
- var escaped = generics
631
- .reduce(function (result, current) { return result.replace(current, current.replace(/\|/g, "&")); }, types)
632
- .split("|")
633
- .map(function (item) { return item.trim(); });
634
- return escaped.reduce(function (result, type) {
635
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
636
- var extracted = type
637
- .trim()
638
- .replace(/readonly /g, "")
639
- .replace(/\[\]/g, "");
640
- extracted =
641
- (_d = (_c = (_b = (_a = extracted.match(/ReadonlyArray<([^>]+)>/)) === null || _a === void 0 ? void 0 : _a[1]) === null || _b === void 0 ? void 0 : _b.split("&")) === null || _c === void 0 ? void 0 : _c[0]) !== null && _d !== void 0 ? _d : extracted;
642
- extracted = (_h = (_g = (_f = (_e = extracted.match(/\[([^\]]+)\]/)) === null || _e === void 0 ? void 0 : _e[1]) === null || _f === void 0 ? void 0 : _f.split(",")) === null || _g === void 0 ? void 0 : _g[0]) !== null && _h !== void 0 ? _h : extracted;
643
- extracted = (_m = (_l = ((_k = (_j = extracted.split("<")) === null || _j === void 0 ? void 0 : _j[0]) !== null && _k !== void 0 ? _k : extracted)) === null || _l === void 0 ? void 0 : _l.trim()) !== null && _m !== void 0 ? _m : "";
644
- extracted = Number.isNaN(parseFloat(extracted)) ? extracted : "number";
645
- extracted = /^'(.+)'$|^"(.+)"$|^`(.+)`$/.test(extracted) ? "string" : extracted;
646
- extracted = extracted.length === 1 ? "unknown" : extracted;
647
- return result.concat({ type: type.replace(/&/g, "|"), extracted: extracted });
648
- }, []);
649
- }
650
-
651
- /**
652
- * Generated bundle index. Do not edit.
653
- */
654
-
655
- exports.tuiCoerceValue = tuiCoerceValue;
656
- exports.tuiCoerceValueIsTrue = tuiCoerceValueIsTrue;
657
- exports.tuiGenerateRoutes = tuiGenerateRoutes;
658
- exports.tuiInspectAny = tuiInspectAny;
659
- exports.tuiIsPageGroup = tuiIsPageGroup;
660
- exports.tuiRawLoad = tuiRawLoad;
661
- exports.tuiRawLoadRecord = tuiRawLoadRecord;
662
- exports.tuiSortPages = tuiSortPages;
663
- exports.tuiToFlatMapPages = tuiToFlatMapPages;
664
- exports.tuiTransliterateKeyboardLayout = tuiTransliterateKeyboardLayout;
665
- exports.tuiTryParseMarkdownCodeBlock = tuiTryParseMarkdownCodeBlock;
666
- exports.tuiTypeReferenceParser = tuiTypeReferenceParser;
667
-
668
- Object.defineProperty(exports, '__esModule', { value: true });
669
-
670
- }));
671
- //# sourceMappingURL=taiga-ui-addon-doc-utils.umd.js.map