@taiga-ui/layout 4.51.0 → 4.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.
@@ -3,4 +3,4 @@ export interface TuiCellOptions {
3
3
  readonly height: 'compact' | 'normal' | 'spacious';
4
4
  readonly size: TuiSizeL | TuiSizeS;
5
5
  }
6
- export declare const TUI_CELL_OPTIONS: import("@angular/core").InjectionToken<TuiCellOptions>, tuiCellOptionsProvider: (item: Partial<TuiCellOptions> | import("@angular/core").ProviderToken<Partial<TuiCellOptions>>) => import("@angular/core").FactoryProvider;
6
+ export declare const TUI_CELL_OPTIONS: import("@angular/core").InjectionToken<TuiCellOptions>, tuiCellOptionsProvider: (item: Partial<TuiCellOptions> | import("@angular/core").ProviderToken<Partial<TuiCellOptions>> | (() => Partial<TuiCellOptions>)) => import("@angular/core").FactoryProvider;
@@ -2,4 +2,4 @@ import { type TuiSizeL, type TuiSizeS } from '@taiga-ui/core/types';
2
2
  export interface TuiFormOptions {
3
3
  readonly size: TuiSizeL | TuiSizeS;
4
4
  }
5
- export declare const TUI_FORM_OPTIONS: import("@angular/core").InjectionToken<TuiFormOptions>, tuiFormOptionsProvider: (item: Partial<TuiFormOptions> | import("@angular/core").ProviderToken<Partial<TuiFormOptions>>) => import("@angular/core").FactoryProvider;
5
+ export declare const TUI_FORM_OPTIONS: import("@angular/core").InjectionToken<TuiFormOptions>, tuiFormOptionsProvider: (item: Partial<TuiFormOptions> | import("@angular/core").ProviderToken<Partial<TuiFormOptions>> | (() => Partial<TuiFormOptions>)) => import("@angular/core").FactoryProvider;
@@ -6,7 +6,9 @@ export declare const TUI_HEADER_OPTIONS: import("@angular/core").InjectionToken<
6
6
  size: TuiSizeXXL | TuiSizeXXS | 'body-l' | 'body-m' | 'body-xl' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
7
7
  }> | import("@angular/core").ProviderToken<Partial<{
8
8
  size: TuiSizeXXL | TuiSizeXXS | 'body-l' | 'body-m' | 'body-xl' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
9
- }>>) => import("@angular/core").FactoryProvider;
9
+ }>> | (() => Partial<{
10
+ size: TuiSizeXXL | TuiSizeXXS | 'body-l' | 'body-m' | 'body-xl' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
11
+ }>)) => import("@angular/core").FactoryProvider;
10
12
  export declare class TuiHeader {
11
13
  protected readonly options: {
12
14
  size: "m" | "l" | "xl" | "xxl" | "s" | "xs" | "xxs" | "body-l" | "body-m" | "body-xl" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/layout",
3
- "version": "4.51.0",
3
+ "version": "4.52.0",
4
4
  "description": "A package with Taiga UI layout components",
5
5
  "keywords": [
6
6
  "angular",
@@ -13,9 +13,9 @@
13
13
  "peerDependencies": {
14
14
  "@angular/common": ">=16.0.0",
15
15
  "@angular/core": ">=16.0.0",
16
- "@taiga-ui/cdk": "^4.51.0",
17
- "@taiga-ui/core": "^4.51.0",
18
- "@taiga-ui/kit": "^4.51.0",
16
+ "@taiga-ui/cdk": "^4.52.0",
17
+ "@taiga-ui/core": "^4.52.0",
18
+ "@taiga-ui/kit": "^4.52.0",
19
19
  "@taiga-ui/polymorpheus": "^4.9.0",
20
20
  "rxjs": ">=7.0.0"
21
21
  },