@taiga-ui/core 3.23.1-dev.main-ba19ce0 → 3.24.0-dev.main-94f283d
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-core-components-alert.umd.js +1 -1
- package/bundles/taiga-ui-core-components-alert.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-notification.umd.js +8 -2
- package/bundles/taiga-ui-core-components-notification.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-root.umd.js +1 -1
- package/bundles/taiga-ui-core-directives-hint.umd.js.map +1 -1
- package/components/alert/alert.service.d.ts +1 -1
- package/components/dialog/dialog.service.d.ts +1 -1
- package/components/notification/notification.component.d.ts +2 -1
- package/directives/dropdown/dropdown.directive.d.ts +1 -1
- package/directives/hint/hint.directive.d.ts +2 -2
- package/esm2015/components/alert/alert.component.js +2 -2
- package/esm2015/components/notification/notification.component.js +9 -3
- package/esm2015/components/root/root.component.js +1 -1
- package/esm2015/directives/hint/hint.directive.js +1 -1
- package/esm2015/interfaces/data-list-host.js +1 -1
- package/esm2015/interfaces/portal-item.js +1 -1
- package/fesm2015/taiga-ui-core-components-alert.js +1 -1
- package/fesm2015/taiga-ui-core-components-alert.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-notification.js +8 -2
- package/fesm2015/taiga-ui-core-components-notification.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-root.js +1 -1
- package/fesm2015/taiga-ui-core-directives-hint.js.map +1 -1
- package/interfaces/data-list-host.d.ts +2 -1
- package/interfaces/portal-item.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { TuiIdentityMatcher } from '@taiga-ui/cdk';
|
|
1
|
+
import { TuiIdentityMatcher, TuiStringHandler } from '@taiga-ui/cdk';
|
|
2
2
|
export interface TuiDataListHost<T> {
|
|
3
3
|
handleOption(option: T): void;
|
|
4
4
|
checkOption?(option: T): void;
|
|
5
5
|
readonly identityMatcher?: TuiIdentityMatcher<T>;
|
|
6
|
+
readonly stringify?: TuiStringHandler<T>;
|
|
6
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TuiActiveZoneDirective } from '@taiga-ui/cdk';
|
|
2
2
|
import { PolymorpheusComponent, PolymorpheusContent } from '@tinkoff/ng-polymorpheus';
|
|
3
3
|
export interface TuiPortalItem<C = any> {
|
|
4
|
-
readonly component: PolymorpheusComponent<any
|
|
4
|
+
readonly component: PolymorpheusComponent<any>;
|
|
5
5
|
readonly content: PolymorpheusContent<C>;
|
|
6
6
|
readonly context?: C;
|
|
7
7
|
readonly appearance?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0-dev.main-94f283d",
|
|
4
4
|
"description": "Core library for creating Angular components and applications using Taiga UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"repository": "https://github.com/tinkoff/taiga-ui",
|
|
16
16
|
"license": "Apache-2.0",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@taiga-ui/i18n": "^3.
|
|
18
|
+
"@taiga-ui/i18n": "^3.24.0",
|
|
19
19
|
"tslib": ">=2.0.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"@angular/router": ">=12.0.0",
|
|
28
28
|
"@ng-web-apis/common": ">=2.0.0",
|
|
29
29
|
"@ng-web-apis/mutation-observer": ">=2.0.0",
|
|
30
|
-
"@taiga-ui/cdk": ">=3.
|
|
31
|
-
"@taiga-ui/i18n": ">=3.
|
|
30
|
+
"@taiga-ui/cdk": ">=3.24.0",
|
|
31
|
+
"@taiga-ui/i18n": ">=3.24.0",
|
|
32
32
|
"@tinkoff/ng-event-plugins": ">=3.1.0",
|
|
33
33
|
"@tinkoff/ng-polymorpheus": ">=4.0.0",
|
|
34
34
|
"rxjs": ">=6.0.0"
|