@taiga-ui/addon-doc 4.52.0-canary.ec0802b → 4.52.0-canary.efbd0d4
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/components/{documentation/pipes → api}/inspect.pipe.d.ts +1 -1
- package/components/{documentation/pipes → api}/type-reference.pipe.d.ts +3 -3
- package/components/index.d.ts +0 -10
- package/fesm2022/taiga-ui-addon-doc-components.mjs +127 -421
- package/fesm2022/taiga-ui-addon-doc-components.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-doc-services.mjs +3 -3
- package/fesm2022/taiga-ui-addon-doc-utils.mjs +4 -4
- package/fesm2022/taiga-ui-addon-doc-utils.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-doc.mjs +1 -7
- package/fesm2022/taiga-ui-addon-doc.mjs.map +1 -1
- package/index.d.ts +2 -4
- package/package.json +5 -9
- package/utils/inspect.d.ts +1 -1
- package/components/documentation/documentation-property-connector.directive.d.ts +0 -31
- package/components/documentation/documentation.component.d.ts +0 -23
- package/components/documentation/pipes/cleaner.pipe.d.ts +0 -7
- package/components/documentation/pipes/color.pipe.d.ts +0 -7
- package/components/documentation/pipes/opacity.pipe.d.ts +0 -7
- package/components/documentation/pipes/optional.pipe.d.ts +0 -7
- package/components/documentation/pipes/primitive-polymorpheus-content.pipe.d.ts +0 -7
- package/components/documentation/pipes/strip-optional.pipe.d.ts +0 -7
- package/directives/index.d.ts +0 -1
- package/directives/text-code/text-code.directive.d.ts +0 -9
- package/fesm2022/taiga-ui-addon-doc-directives.mjs +0 -29
- package/fesm2022/taiga-ui-addon-doc-directives.mjs.map +0 -1
|
@@ -4,5 +4,5 @@ export declare class TuiInspectPipe implements PipeTransform {
|
|
|
4
4
|
private readonly isE2E;
|
|
5
5
|
transform(value: unknown, depth?: number): string;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInspectPipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<TuiInspectPipe, "
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TuiInspectPipe, "tuiInspect", true>;
|
|
8
8
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type PipeTransform } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class TuiTypeReferencePipe implements PipeTransform {
|
|
4
4
|
private readonly parser;
|
|
5
5
|
private readonly linkHandler;
|
|
6
6
|
transform(original: string): ReadonlyArray<{
|
|
@@ -8,6 +8,6 @@ export declare class TuiDocTypeReferencePipe implements PipeTransform {
|
|
|
8
8
|
extracted: string;
|
|
9
9
|
reference: string | null;
|
|
10
10
|
}>;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
12
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiTypeReferencePipe, never>;
|
|
12
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TuiTypeReferencePipe, "tuiTypeReference", true>;
|
|
13
13
|
}
|
package/components/index.d.ts
CHANGED
|
@@ -5,16 +5,6 @@ export * from './code';
|
|
|
5
5
|
export * from './copy';
|
|
6
6
|
export * from './demo';
|
|
7
7
|
export * from './doc-tab';
|
|
8
|
-
export * from './documentation/documentation.component';
|
|
9
|
-
export * from './documentation/documentation-property-connector.directive';
|
|
10
|
-
export * from './documentation/pipes/cleaner.pipe';
|
|
11
|
-
export * from './documentation/pipes/color.pipe';
|
|
12
|
-
export * from './documentation/pipes/inspect.pipe';
|
|
13
|
-
export * from './documentation/pipes/opacity.pipe';
|
|
14
|
-
export * from './documentation/pipes/optional.pipe';
|
|
15
|
-
export * from './documentation/pipes/primitive-polymorpheus-content.pipe';
|
|
16
|
-
export * from './documentation/pipes/strip-optional.pipe';
|
|
17
|
-
export * from './documentation/pipes/type-reference.pipe';
|
|
18
8
|
export * from './example/example.component';
|
|
19
9
|
export * from './example/example.options';
|
|
20
10
|
export * from './example/example-get-tabs.pipe';
|