@taiga-ui/layout 4.52.0-canary.2c75afa → 4.52.0-canary.2d877cf
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/README.md +2 -2
- package/components/app-bar/app-bar-back.component.d.ts +1 -1
- package/components/elastic-container/elastic-container.component.d.ts +8 -0
- package/components/elastic-container/elastic-container.directive.d.ts +7 -0
- package/components/elastic-container/index.d.ts +2 -0
- package/components/floating-container/floating-container.directive.d.ts +8 -0
- package/components/floating-container/index.d.ts +1 -0
- package/components/index.d.ts +3 -0
- package/components/input-search/input-search.component.d.ts +2 -2
- package/components/navigation/aside-group.component.d.ts +1 -1
- package/components/navigation/aside-item.directive.d.ts +2 -2
- package/components/navigation/drawer.component.d.ts +4 -5
- package/components/navigation/hint-aside.directive.d.ts +5 -3
- package/components/pdf-viewer/pdf-viewer.component.d.ts +1 -1
- package/components/search/search-filter.component.d.ts +1 -1
- package/components/slides/index.d.ts +1 -0
- package/components/slides/slides.directive.d.ts +11 -0
- package/fesm2022/taiga-ui-layout-components-app-bar.mjs +15 -15
- package/fesm2022/taiga-ui-layout-components-app-bar.mjs.map +1 -1
- package/fesm2022/taiga-ui-layout-components-block-details.mjs +6 -6
- package/fesm2022/taiga-ui-layout-components-block-status.mjs +6 -6
- package/fesm2022/taiga-ui-layout-components-card.mjs +25 -25
- package/fesm2022/taiga-ui-layout-components-card.mjs.map +1 -1
- package/fesm2022/taiga-ui-layout-components-dynamic-header.mjs +9 -9
- package/fesm2022/taiga-ui-layout-components-elastic-container.mjs +74 -0
- package/fesm2022/taiga-ui-layout-components-elastic-container.mjs.map +1 -0
- package/fesm2022/taiga-ui-layout-components-floating-container.mjs +40 -0
- package/fesm2022/taiga-ui-layout-components-floating-container.mjs.map +1 -0
- package/fesm2022/taiga-ui-layout-components-form.mjs +6 -6
- package/fesm2022/taiga-ui-layout-components-header.mjs +6 -6
- package/fesm2022/taiga-ui-layout-components-input-search.mjs +9 -8
- package/fesm2022/taiga-ui-layout-components-input-search.mjs.map +1 -1
- package/fesm2022/taiga-ui-layout-components-item-group.mjs +6 -6
- package/fesm2022/taiga-ui-layout-components-navigation.mjs +65 -61
- package/fesm2022/taiga-ui-layout-components-navigation.mjs.map +1 -1
- package/fesm2022/taiga-ui-layout-components-pdf-viewer.mjs +3 -3
- package/fesm2022/taiga-ui-layout-components-pdf-viewer.mjs.map +1 -1
- package/fesm2022/taiga-ui-layout-components-search.mjs +11 -11
- package/fesm2022/taiga-ui-layout-components-search.mjs.map +1 -1
- package/fesm2022/taiga-ui-layout-components-slides.mjs +49 -0
- package/fesm2022/taiga-ui-layout-components-slides.mjs.map +1 -0
- package/fesm2022/taiga-ui-layout-components-surface.mjs +6 -6
- package/fesm2022/taiga-ui-layout-components.mjs +3 -0
- package/fesm2022/taiga-ui-layout-components.mjs.map +1 -1
- package/fesm2022/taiga-ui-layout-tokens.mjs +2 -7
- package/fesm2022/taiga-ui-layout-tokens.mjs.map +1 -1
- package/package.json +20 -8
- package/tokens/common-icons.d.ts +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/layout",
|
|
3
|
-
"version": "4.52.0-canary.
|
|
3
|
+
"version": "4.52.0-canary.2d877cf",
|
|
4
4
|
"description": "A package with Taiga UI layout components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -40,26 +40,34 @@
|
|
|
40
40
|
"types": "./tokens/index.d.ts",
|
|
41
41
|
"default": "./fesm2022/taiga-ui-layout-tokens.mjs"
|
|
42
42
|
},
|
|
43
|
-
"./components/block-status": {
|
|
44
|
-
"types": "./components/block-status/index.d.ts",
|
|
45
|
-
"default": "./fesm2022/taiga-ui-layout-components-block-status.mjs"
|
|
46
|
-
},
|
|
47
43
|
"./components/block-details": {
|
|
48
44
|
"types": "./components/block-details/index.d.ts",
|
|
49
45
|
"default": "./fesm2022/taiga-ui-layout-components-block-details.mjs"
|
|
50
46
|
},
|
|
51
|
-
"./components/
|
|
52
|
-
"types": "./components/
|
|
53
|
-
"default": "./fesm2022/taiga-ui-layout-components-
|
|
47
|
+
"./components/block-status": {
|
|
48
|
+
"types": "./components/block-status/index.d.ts",
|
|
49
|
+
"default": "./fesm2022/taiga-ui-layout-components-block-status.mjs"
|
|
54
50
|
},
|
|
55
51
|
"./components/card": {
|
|
56
52
|
"types": "./components/card/index.d.ts",
|
|
57
53
|
"default": "./fesm2022/taiga-ui-layout-components-card.mjs"
|
|
58
54
|
},
|
|
55
|
+
"./components/app-bar": {
|
|
56
|
+
"types": "./components/app-bar/index.d.ts",
|
|
57
|
+
"default": "./fesm2022/taiga-ui-layout-components-app-bar.mjs"
|
|
58
|
+
},
|
|
59
59
|
"./components/dynamic-header": {
|
|
60
60
|
"types": "./components/dynamic-header/index.d.ts",
|
|
61
61
|
"default": "./fesm2022/taiga-ui-layout-components-dynamic-header.mjs"
|
|
62
62
|
},
|
|
63
|
+
"./components/elastic-container": {
|
|
64
|
+
"types": "./components/elastic-container/index.d.ts",
|
|
65
|
+
"default": "./fesm2022/taiga-ui-layout-components-elastic-container.mjs"
|
|
66
|
+
},
|
|
67
|
+
"./components/floating-container": {
|
|
68
|
+
"types": "./components/floating-container/index.d.ts",
|
|
69
|
+
"default": "./fesm2022/taiga-ui-layout-components-floating-container.mjs"
|
|
70
|
+
},
|
|
63
71
|
"./components/form": {
|
|
64
72
|
"types": "./components/form/index.d.ts",
|
|
65
73
|
"default": "./fesm2022/taiga-ui-layout-components-form.mjs"
|
|
@@ -88,6 +96,10 @@
|
|
|
88
96
|
"types": "./components/search/index.d.ts",
|
|
89
97
|
"default": "./fesm2022/taiga-ui-layout-components-search.mjs"
|
|
90
98
|
},
|
|
99
|
+
"./components/slides": {
|
|
100
|
+
"types": "./components/slides/index.d.ts",
|
|
101
|
+
"default": "./fesm2022/taiga-ui-layout-components-slides.mjs"
|
|
102
|
+
},
|
|
91
103
|
"./components/surface": {
|
|
92
104
|
"types": "./components/surface/index.d.ts",
|
|
93
105
|
"default": "./fesm2022/taiga-ui-layout-components-surface.mjs"
|
package/tokens/common-icons.d.ts
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
import { InjectionToken, type Provider } from '@angular/core';
|
|
2
1
|
export interface TuiLayoutIcons {
|
|
3
2
|
readonly filter: string;
|
|
4
3
|
readonly grid: string;
|
|
5
4
|
}
|
|
6
|
-
export declare const TUI_LAYOUT_ICONS: InjectionToken<TuiLayoutIcons
|
|
7
|
-
export declare function tuiLayoutIconsProvider(icons: Partial<TuiLayoutIcons>): Provider;
|
|
5
|
+
export declare const TUI_LAYOUT_ICONS: import("@angular/core").InjectionToken<TuiLayoutIcons>, tuiLayoutIconsProvider: (item: Partial<TuiLayoutIcons> | (() => Partial<TuiLayoutIcons>)) => import("@angular/core").FactoryProvider;
|
|
8
6
|
/**
|
|
9
7
|
* @deprecated use {@link TUI_LAYOUT_ICONS} instead
|
|
10
8
|
*/
|
|
11
|
-
export declare const TUI_COMMON_ICONS: InjectionToken<TuiLayoutIcons>;
|
|
9
|
+
export declare const TUI_COMMON_ICONS: import("@angular/core").InjectionToken<TuiLayoutIcons>;
|
|
12
10
|
/**
|
|
13
11
|
* @deprecated use {@link tuiLayoutIconsProvider} instead
|
|
14
12
|
*/
|
|
15
|
-
export declare const tuiCommonIconsProvider:
|
|
13
|
+
export declare const tuiCommonIconsProvider: (item: Partial<TuiLayoutIcons> | (() => Partial<TuiLayoutIcons>)) => import("@angular/core").FactoryProvider;
|
|
16
14
|
/**
|
|
17
15
|
* @deprecated use {@link TuiLayoutIcons} instead
|
|
18
16
|
*/
|