@taiga-ui/addon-doc 3.16.0 → 3.17.0-dev.main-1be6586
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 +54 -45
- package/bundles/taiga-ui-addon-doc.umd.js.map +1 -1
- package/components/code/code.component.d.ts +3 -0
- package/components/example/example.component.d.ts +4 -4
- package/components/page/page.component.d.ts +4 -4
- package/esm2015/components/code/code.component.js +13 -8
- package/esm2015/components/example/example.component.js +11 -12
- package/esm2015/components/main/main.component.js +6 -3
- package/esm2015/components/navigation/navigation.component.js +3 -3
- package/esm2015/components/page/page.component.js +8 -9
- package/esm2015/tokens/example-content-processor.js +3 -1
- package/esm2015/utils/coerce-value.js +2 -4
- package/fesm2015/taiga-ui-addon-doc.js +45 -40
- package/fesm2015/taiga-ui-addon-doc.js.map +1 -1
- package/package.json +5 -5
- package/tokens/example-content-processor.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/addon-doc",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0-dev.main-1be6586",
|
|
4
4
|
"description": "Taiga UI based library for developing documentation portals for Angular libraries.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"@angular/forms": ">=12.0.0",
|
|
28
28
|
"@angular/router": ">=12.0.0",
|
|
29
29
|
"@ng-web-apis/common": ">=2.0.0",
|
|
30
|
-
"@taiga-ui/addon-mobile": ">=3.
|
|
31
|
-
"@taiga-ui/cdk": ">=3.
|
|
32
|
-
"@taiga-ui/core": ">=3.
|
|
33
|
-
"@taiga-ui/kit": ">=3.
|
|
30
|
+
"@taiga-ui/addon-mobile": ">=3.17.0",
|
|
31
|
+
"@taiga-ui/cdk": ">=3.17.0",
|
|
32
|
+
"@taiga-ui/core": ">=3.17.0",
|
|
33
|
+
"@taiga-ui/kit": ">=3.17.0",
|
|
34
34
|
"@tinkoff/ng-polymorpheus": ">=4.0.0"
|
|
35
35
|
},
|
|
36
36
|
"main": "bundles/taiga-ui-addon-doc.umd.js",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
2
|
import { TuiHandler } from '@taiga-ui/cdk';
|
|
3
3
|
export declare const TUI_DOC_EXAMPLE_CONTENT_PROCESSOR: InjectionToken<TuiHandler<Record<string, string>, Record<string, string>>>;
|
|
4
|
+
export declare const TUI_DOC_EXAMPLE_MARKDOWN_CODE_PROCESSOR: InjectionToken<TuiHandler<string, string[]>>;
|