@taiga-ui/addon-doc 2.50.2 → 2.52.0
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 +82 -21
- package/bundles/taiga-ui-addon-doc.umd.js.map +1 -1
- package/bundles/taiga-ui-addon-doc.umd.min.js +1 -1
- package/bundles/taiga-ui-addon-doc.umd.min.js.map +1 -1
- package/components/documentation/documentation.component.d.ts +1 -0
- package/components/example/example.component.d.ts +2 -1
- package/components/navigation/navigation.component.d.ts +3 -1
- package/directives/scroll-into-view/scroll-into-view.directive.d.ts +9 -1
- package/directives/scroll-into-view/scroll-into-view.module.d.ts +6 -0
- package/esm2015/components/documentation/documentation.component.js +5 -2
- package/esm2015/components/example/example.component.js +10 -6
- package/esm2015/components/navigation/navigation.component.js +17 -11
- package/esm2015/components/navigation/navigation.module.js +3 -2
- package/esm2015/directives/scroll-into-view/scroll-into-view.directive.js +32 -11
- package/esm2015/directives/scroll-into-view/scroll-into-view.module.js +19 -3
- package/esm2015/public-api.js +3 -1
- package/esm2015/tokens/code-actions.js +5 -0
- package/esm2015/tokens/page-loaded.js +5 -0
- package/esm5/components/documentation/documentation.component.js +5 -2
- package/esm5/components/example/example.component.js +10 -6
- package/esm5/components/navigation/navigation.component.js +17 -11
- package/esm5/components/navigation/navigation.module.js +3 -2
- package/esm5/directives/scroll-into-view/scroll-into-view.directive.js +35 -11
- package/esm5/directives/scroll-into-view/scroll-into-view.module.js +20 -2
- package/esm5/public-api.js +3 -1
- package/esm5/tokens/code-actions.js +5 -0
- package/esm5/tokens/page-loaded.js +5 -0
- package/fesm2015/taiga-ui-addon-doc.js +78 -26
- package/fesm2015/taiga-ui-addon-doc.js.map +1 -1
- package/fesm5/taiga-ui-addon-doc.js +82 -25
- package/fesm5/taiga-ui-addon-doc.js.map +1 -1
- package/package.json +5 -5
- package/public-api.d.ts +2 -0
- package/taiga-ui-addon-doc.metadata.json +1 -1
- package/tokens/code-actions.d.ts +4 -0
- package/tokens/page-loaded.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/addon-doc",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.52.0",
|
|
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": ">=9.0.0",
|
|
28
28
|
"@angular/router": ">=9.0.0",
|
|
29
29
|
"@ng-web-apis/common": ">=1.12.1 < 2",
|
|
30
|
-
"@taiga-ui/addon-mobile": ">=2.
|
|
31
|
-
"@taiga-ui/cdk": ">=2.
|
|
32
|
-
"@taiga-ui/core": ">=2.
|
|
33
|
-
"@taiga-ui/kit": ">=2.
|
|
30
|
+
"@taiga-ui/addon-mobile": ">=2.52.0",
|
|
31
|
+
"@taiga-ui/cdk": ">=2.52.0",
|
|
32
|
+
"@taiga-ui/core": ">=2.52.0",
|
|
33
|
+
"@taiga-ui/kit": ">=2.52.0",
|
|
34
34
|
"@tinkoff/ng-polymorpheus": ">=3.1.12 < 4"
|
|
35
35
|
},
|
|
36
36
|
"schematics": "./schematics/collection.json",
|
package/public-api.d.ts
CHANGED
|
@@ -26,11 +26,13 @@ export * from './interfaces/code-editor';
|
|
|
26
26
|
export * from './interfaces/page';
|
|
27
27
|
export * from './interfaces/source-code-path-options';
|
|
28
28
|
export * from './languages/russian';
|
|
29
|
+
export * from './tokens/code-actions';
|
|
29
30
|
export * from './tokens/code-editor';
|
|
30
31
|
export * from './tokens/default-tabs';
|
|
31
32
|
export * from './tokens/example-content-processor';
|
|
32
33
|
export * from './tokens/i18n';
|
|
33
34
|
export * from './tokens/logo';
|
|
35
|
+
export * from './tokens/page-loaded';
|
|
34
36
|
export * from './tokens/pages';
|
|
35
37
|
export * from './tokens/see-also';
|
|
36
38
|
export * from './tokens/source-code';
|