@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.
@@ -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 tuiFocusableComponent;
6
+ private readonly focusable;
7
7
  set tuiInputOpacity(opacity: number);
8
- constructor(renderer: Renderer2, tuiFocusableComponent: TuiFocusableElementAccessor);
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.23.1",
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.23.1",
31
- "@taiga-ui/cdk": ">=3.23.1",
32
- "@taiga-ui/core": ">=3.23.1",
33
- "@taiga-ui/kit": ">=3.23.1",
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,3 +1,4 @@
1
1
  import { InjectionToken } from '@angular/core';
2
2
  export declare const TUI_THEME_NIGHT_STORAGE_DEFAULT_KEY: "tuiNight";
3
3
  export declare const TUI_THEME_NIGHT_STORAGE_KEY: InjectionToken<string>;
4
+ export declare const TUI_USE_DEFAULT_NIGHT_THEME: InjectionToken<boolean>;
@@ -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 windowRef: Window;
4
+ readonly win: Window;
5
5
  readonly storage: Storage;
6
6
  readonly key: string;
7
- constructor(windowRef: Window, storage: Storage, key: string);
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>;