@taiga-ui/addon-doc 3.45.0 → 3.46.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.
@@ -1 +1 @@
1
- {"version":3,"file":"taiga-ui-addon-doc-interfaces.js","sources":["../../../projects/addon-doc/interfaces/page.ts","../../../projects/addon-doc/interfaces/taiga-ui-addon-doc-interfaces.ts"],"sourcesContent":["export interface TuiDocPageBase {\n readonly section?: string;\n readonly title: string;\n}\n\nexport interface TuiDocPage extends TuiDocPageBase {\n readonly fragment?: string;\n readonly keywords?: string;\n readonly route: string;\n}\n\nexport interface TuiDocPageGroup extends TuiDocPageBase {\n readonly subPages: readonly TuiDocPage[];\n}\n\nexport type RawLoaderContent = Promise<{default: string}> | string;\n\nexport const TUI_EXAMPLE_PRIMARY_FILE_NAME = {\n TS: `TypeScript`,\n LESS: `LESS`,\n HTML: `HTML`,\n} as const;\n\nexport type TuiDocExample =\n | Record<string, RawLoaderContent>\n | {\n [TUI_EXAMPLE_PRIMARY_FILE_NAME.HTML]?: string;\n [TUI_EXAMPLE_PRIMARY_FILE_NAME.LESS]?: string;\n [TUI_EXAMPLE_PRIMARY_FILE_NAME.TS]?: string;\n };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAiBa,MAAA,6BAA6B,GAAG;AACzC,IAAA,EAAE,EAAE,CAAY,UAAA,CAAA;AAChB,IAAA,IAAI,EAAE,CAAM,IAAA,CAAA;AACZ,IAAA,IAAI,EAAE,CAAM,IAAA,CAAA;;;ACpBhB;;AAEG;;;;"}
1
+ {"version":3,"file":"taiga-ui-addon-doc-interfaces.js","sources":["../../../projects/addon-doc/interfaces/page.ts","../../../projects/addon-doc/interfaces/taiga-ui-addon-doc-interfaces.ts"],"sourcesContent":["import {PolymorpheusContent} from '@tinkoff/ng-polymorpheus';\n\nexport interface TuiDocPageBase {\n readonly section?: string;\n readonly title: string;\n}\n\nexport interface TuiDocPage extends TuiDocPageBase {\n readonly fragment?: string;\n readonly keywords?: string;\n readonly route: string;\n readonly icon?: PolymorpheusContent;\n}\n\nexport interface TuiDocPageGroup extends TuiDocPageBase {\n readonly subPages: readonly TuiDocPage[];\n}\n\nexport type RawLoaderContent = Promise<{default: string}> | string;\n\nexport const TUI_EXAMPLE_PRIMARY_FILE_NAME = {\n TS: `TypeScript`,\n LESS: `LESS`,\n HTML: `HTML`,\n} as const;\n\nexport type TuiDocExample =\n | Record<string, RawLoaderContent>\n | {\n [TUI_EXAMPLE_PRIMARY_FILE_NAME.HTML]?: string;\n [TUI_EXAMPLE_PRIMARY_FILE_NAME.LESS]?: string;\n [TUI_EXAMPLE_PRIMARY_FILE_NAME.TS]?: string;\n };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAoBa,MAAA,6BAA6B,GAAG;AACzC,IAAA,EAAE,EAAE,CAAY,UAAA,CAAA;AAChB,IAAA,IAAI,EAAE,CAAM,IAAA,CAAA;AACZ,IAAA,IAAI,EAAE,CAAM,IAAA,CAAA;;;ACvBhB;;AAEG;;;;"}
@@ -1,3 +1,4 @@
1
+ import { PolymorpheusContent } from '@tinkoff/ng-polymorpheus';
1
2
  export interface TuiDocPageBase {
2
3
  readonly section?: string;
3
4
  readonly title: string;
@@ -6,6 +7,7 @@ export interface TuiDocPage extends TuiDocPageBase {
6
7
  readonly fragment?: string;
7
8
  readonly keywords?: string;
8
9
  readonly route: string;
10
+ readonly icon?: PolymorpheusContent;
9
11
  }
10
12
  export interface TuiDocPageGroup extends TuiDocPageBase {
11
13
  readonly subPages: readonly TuiDocPage[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/addon-doc",
3
- "version": "3.45.0",
3
+ "version": "3.46.0",
4
4
  "description": "Taiga UI based library for developing documentation portals for Angular libraries.",
5
5
  "keywords": [
6
6
  "angular",
@@ -26,10 +26,10 @@
26
26
  "@angular/forms": ">=12.0.0",
27
27
  "@angular/router": ">=12.0.0",
28
28
  "@ng-web-apis/common": ">=3.0.0",
29
- "@taiga-ui/addon-mobile": ">=3.45.0",
30
- "@taiga-ui/cdk": ">=3.45.0",
31
- "@taiga-ui/core": ">=3.45.0",
32
- "@taiga-ui/kit": ">=3.45.0",
29
+ "@taiga-ui/addon-mobile": ">=3.46.0",
30
+ "@taiga-ui/cdk": ">=3.46.0",
31
+ "@taiga-ui/core": ">=3.46.0",
32
+ "@taiga-ui/kit": ">=3.46.0",
33
33
  "@tinkoff/ng-polymorpheus": ">=4.0.0"
34
34
  },
35
35
  "main": "bundles/taiga-ui-addon-doc.umd.js",