@taiga-ui/addon-doc 3.23.1 → 3.24.0-dev.main-cf04d14
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 +51 -42
- package/bundles/taiga-ui-addon-doc.umd.js.map +1 -1
- package/components/demo/demo.component.d.ts +2 -2
- package/components/documentation/documentation.component.d.ts +2 -2
- package/components/example/example.component.d.ts +2 -2
- package/components/main/main.component.d.ts +4 -3
- package/components/navigation/navigation.component.d.ts +2 -2
- package/components/page/page.component.d.ts +2 -1
- package/components/page/page.module.d.ts +2 -1
- package/esm2015/components/demo/demo.component.js +5 -5
- package/esm2015/components/documentation/documentation.component.js +5 -5
- package/esm2015/components/example/example.component.js +4 -4
- package/esm2015/components/main/main.component.js +9 -7
- package/esm2015/components/navigation/navigation.component.js +5 -5
- package/esm2015/components/page/page.component.js +4 -5
- package/esm2015/components/page/page.module.js +6 -2
- package/esm2015/internal/input-opacity/input-opacity.directive.js +4 -4
- package/esm2015/services/theme-night.options.js +4 -1
- package/esm2015/services/theme-night.service.js +10 -6
- package/esm2015/utils/coerce-value.js +2 -2
- package/esm2015/utils/to-flat-map-pages.js +4 -4
- package/fesm2015/taiga-ui-addon-doc.js +49 -40
- package/fesm2015/taiga-ui-addon-doc.js.map +1 -1
- package/internal/input-opacity/input-opacity.directive.d.ts +2 -2
- package/package.json +5 -5
- package/services/theme-night.options.d.ts +1 -0
- package/services/theme-night.service.d.ts +3 -2
|
@@ -3,9 +3,9 @@ import { TuiFocusableElementAccessor } from '@taiga-ui/cdk';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TuiInputOpacityDirective {
|
|
5
5
|
private readonly renderer;
|
|
6
|
-
private readonly
|
|
6
|
+
private readonly focusable;
|
|
7
7
|
set tuiInputOpacity(opacity: number);
|
|
8
|
-
constructor(renderer: Renderer2,
|
|
8
|
+
constructor(renderer: Renderer2, focusable: TuiFocusableElementAccessor);
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputOpacityDirective, never>;
|
|
10
10
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiInputOpacityDirective, "[tuiInputOpacity]", never, { "tuiInputOpacity": "tuiInputOpacity"; }, {}, never>;
|
|
11
11
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/addon-doc",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0-dev.main-cf04d14",
|
|
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.24.0",
|
|
31
|
+
"@taiga-ui/cdk": ">=3.24.0",
|
|
32
|
+
"@taiga-ui/core": ">=3.24.0",
|
|
33
|
+
"@taiga-ui/kit": ">=3.24.0",
|
|
34
34
|
"@tinkoff/ng-polymorpheus": ">=4.0.0"
|
|
35
35
|
},
|
|
36
36
|
"main": "bundles/taiga-ui-addon-doc.umd.js",
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { BehaviorSubject } from 'rxjs';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TuiThemeNightService extends BehaviorSubject<boolean> {
|
|
4
|
-
readonly
|
|
4
|
+
readonly win: Window;
|
|
5
5
|
readonly storage: Storage;
|
|
6
6
|
readonly key: string;
|
|
7
|
-
|
|
7
|
+
readonly useDefaultNightTheme: boolean;
|
|
8
|
+
constructor(win: Window, storage: Storage, key: string, useDefaultNightTheme: boolean);
|
|
8
9
|
next(night: boolean): void;
|
|
9
10
|
toggle(): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiThemeNightService, never>;
|