@taiga-ui/kit 4.74.0 → 4.75.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.
- package/components/line-clamp/line-clamp.component.d.ts +3 -3
- package/components/multi-select/multi-select-group/multi-select-group.directive.d.ts +1 -0
- package/components/shrink-wrap/shrink-wrap.directive.d.ts +1 -1
- package/components/tiles/tile-handle.directive.d.ts +1 -0
- package/components/toast/toast.directive.d.ts +3 -2
- package/esm2022/components/files/files.validators.mjs +3 -3
- package/esm2022/components/line-clamp/line-clamp.component.mjs +2 -2
- package/esm2022/components/multi-select/multi-select-group/multi-select-group.directive.mjs +8 -2
- package/esm2022/components/multi-select/multi-select-option/multi-select-option.component.mjs +5 -3
- package/esm2022/components/select/select-option/select-option.component.mjs +5 -2
- package/esm2022/components/shrink-wrap/shrink-wrap.directive.mjs +3 -3
- package/esm2022/components/tiles/tile-handle.directive.mjs +18 -25
- package/esm2022/components/tiles/tiles.component.mjs +2 -2
- package/esm2022/components/toast/toast.component.mjs +1 -1
- package/esm2022/components/toast/toast.directive.mjs +19 -9
- package/esm2022/pipes/filter-by-input/filter-by-input.pipe.mjs +3 -2
- package/fesm2022/taiga-ui-kit-components-files.mjs +2 -2
- package/fesm2022/taiga-ui-kit-components-files.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-line-clamp.mjs +1 -1
- package/fesm2022/taiga-ui-kit-components-line-clamp.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-multi-select.mjs +13 -5
- package/fesm2022/taiga-ui-kit-components-multi-select.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-select.mjs +4 -1
- package/fesm2022/taiga-ui-kit-components-select.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-shrink-wrap.mjs +2 -2
- package/fesm2022/taiga-ui-kit-components-shrink-wrap.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-tiles.mjs +19 -26
- package/fesm2022/taiga-ui-kit-components-tiles.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-toast.mjs +19 -9
- package/fesm2022/taiga-ui-kit-components-toast.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-pipes-filter-by-input.mjs +2 -1
- package/fesm2022/taiga-ui-kit-pipes-filter-by-input.mjs.map +1 -1
- package/package.json +28 -28
- package/pipes/filter-by-input/filter-by-input.pipe.d.ts +1 -0
- package/styles/components/toast.less +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taiga-ui-kit-pipes-filter-by-input.mjs","sources":["../../../projects/kit/pipes/filter-by-input/filter-by-input.pipe.ts","../../../projects/kit/pipes/filter-by-input/taiga-ui-kit-pipes-filter-by-input.ts"],"sourcesContent":["import {inject, Pipe, type PipeTransform} from '@angular/core';\nimport {TUI_DEFAULT_MATCHER} from '@taiga-ui/cdk/constants';\nimport {type TuiStringHandler, type TuiStringMatcher} from '@taiga-ui/cdk/types';\nimport {tuiPure} from '@taiga-ui/cdk/utils/miscellaneous';\nimport {TUI_DATA_LIST_HOST} from '@taiga-ui/core/components/data-list';\nimport {TuiTextfieldComponent} from '@taiga-ui/core/components/textfield';\nimport {\n TUI_ITEMS_HANDLERS,\n type TuiItemsHandlers,\n} from '@taiga-ui/core/directives/items-handlers';\nimport {tuiIsFlat} from '@taiga-ui/kit/utils';\n\n// TODO: Consider replacing TuiTextfieldComponent with proper token once we refactor textfields\n@Pipe({\n standalone: true,\n name: 'tuiFilterByInput',\n pure: false,\n})\nexport class TuiFilterByInputPipe implements PipeTransform {\n // TODO: Remove optional after legacy controls are dropped\n private readonly textfield = inject(TuiTextfieldComponent, {optional: true});\n private readonly host = inject(TUI_DATA_LIST_HOST);\n private readonly itemsHandlers: TuiItemsHandlers<unknown> =\n inject(TUI_ITEMS_HANDLERS);\n\n public transform<T>(\n items: ReadonlyArray<readonly T[]>,\n matcher?: TuiStringMatcher<T>,\n ): ReadonlyArray<readonly T[]>;\n public transform<T>(items: readonly T[], matcher?: TuiStringMatcher<T>): readonly T[];\n public transform<T>(\n items: ReadonlyArray<readonly T[]> | null,\n matcher?: TuiStringMatcher<T>,\n ): ReadonlyArray<readonly T[]> | null;\n public transform<T>(\n items: readonly T[] | null,\n matcher?: TuiStringMatcher<T>,\n ): readonly T[] | null;\n public transform<T>(\n items: ReadonlyArray<readonly T[]> | readonly T[] | null,\n matcher: TuiStringMatcher<T> = TUI_DEFAULT_MATCHER,\n ): ReadonlyArray<readonly T[]> | readonly T[] | null {\n return this.filter<T>(\n items,\n matcher,\n (this.textfield\n ? this.itemsHandlers.stringify()\n : // TODO(v5): delete backward compatibility\n this.host.stringify) || String,\n this.textfield?.value() ||\n (this.host as any).nativeFocusableElement?.value ||\n '',\n );\n }\n\n @tuiPure\n private filter<T>(\n items: ReadonlyArray<readonly T[]> | readonly T[] | null,\n matcher: TuiStringMatcher<T>,\n stringify: TuiStringHandler<T>,\n query: string,\n ): ReadonlyArray<readonly T[]> | readonly T[] | null {\n if (!items) {\n return null;\n }\n\n return tuiIsFlat(items)\n ? this.filterFlat(items, matcher, stringify, query)\n : this.filter2d(items, matcher, stringify, query);\n }\n\n private filterFlat<T>(\n items: readonly T[],\n matcher: TuiStringMatcher<T>,\n stringify: TuiStringHandler<T>,\n query: string,\n ): readonly T[] {\n const match = this.getMatch(items, stringify, query);\n\n return match != null\n ? items\n : items.filter((item) => matcher(item, query, stringify));\n }\n\n private filter2d<T>(\n items: ReadonlyArray<readonly T[]>,\n matcher: TuiStringMatcher<T>,\n stringify: TuiStringHandler<T>,\n query: string,\n ): ReadonlyArray<readonly T[]> {\n const match = items.find((item) => this.getMatch(item, stringify, query) != null);\n\n return match != null\n ? items\n : items.map((inner) => this.filterFlat(inner, matcher, stringify, query));\n }\n\n private getMatch<T>(\n items: readonly T[],\n stringify: TuiStringHandler<T>,\n query: string,\n ): T | undefined {\n // TODO: Refactor when tui-textfield[multi] is ready\n if ((this.host as any).tagValidator) {\n return undefined;\n }\n\n return items.find(\n (item) => stringify(item).toLocaleLowerCase() === query.toLocaleLowerCase(),\n );\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;;;AAYA;AACA,MAKa,oBAAoB,CAAA;AALjC,IAAA,WAAA,GAAA;;QAOqB,IAAS,CAAA,SAAA,GAAG,MAAM,CAAC,qBAAqB,EAAE,EAAC,QAAQ,EAAE,IAAI,EAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"taiga-ui-kit-pipes-filter-by-input.mjs","sources":["../../../projects/kit/pipes/filter-by-input/filter-by-input.pipe.ts","../../../projects/kit/pipes/filter-by-input/taiga-ui-kit-pipes-filter-by-input.ts"],"sourcesContent":["import {inject, Pipe, type PipeTransform} from '@angular/core';\nimport {TUI_DEFAULT_MATCHER} from '@taiga-ui/cdk/constants';\nimport {type TuiStringHandler, type TuiStringMatcher} from '@taiga-ui/cdk/types';\nimport {tuiPure} from '@taiga-ui/cdk/utils/miscellaneous';\nimport {TUI_DATA_LIST_HOST} from '@taiga-ui/core/components/data-list';\nimport {TuiTextfieldComponent} from '@taiga-ui/core/components/textfield';\nimport {\n TUI_ITEMS_HANDLERS,\n type TuiItemsHandlers,\n} from '@taiga-ui/core/directives/items-handlers';\nimport {tuiIsFlat} from '@taiga-ui/kit/utils';\n\n// TODO: Consider replacing TuiTextfieldComponent with proper token once we refactor textfields\n@Pipe({\n standalone: true,\n name: 'tuiFilterByInput',\n pure: false,\n})\nexport class TuiFilterByInputPipe implements PipeTransform {\n // TODO: Remove optional after legacy controls are dropped\n private readonly textfield = inject(TuiTextfieldComponent, {optional: true});\n private readonly multi = this.textfield?.el.matches('[multi]');\n private readonly host = inject(TUI_DATA_LIST_HOST);\n private readonly itemsHandlers: TuiItemsHandlers<unknown> =\n inject(TUI_ITEMS_HANDLERS);\n\n public transform<T>(\n items: ReadonlyArray<readonly T[]>,\n matcher?: TuiStringMatcher<T>,\n ): ReadonlyArray<readonly T[]>;\n public transform<T>(items: readonly T[], matcher?: TuiStringMatcher<T>): readonly T[];\n public transform<T>(\n items: ReadonlyArray<readonly T[]> | null,\n matcher?: TuiStringMatcher<T>,\n ): ReadonlyArray<readonly T[]> | null;\n public transform<T>(\n items: readonly T[] | null,\n matcher?: TuiStringMatcher<T>,\n ): readonly T[] | null;\n public transform<T>(\n items: ReadonlyArray<readonly T[]> | readonly T[] | null,\n matcher: TuiStringMatcher<T> = TUI_DEFAULT_MATCHER,\n ): ReadonlyArray<readonly T[]> | readonly T[] | null {\n return this.filter<T>(\n items,\n matcher,\n (this.textfield\n ? this.itemsHandlers.stringify()\n : // TODO(v5): delete backward compatibility\n this.host.stringify) || String,\n this.textfield?.value() ||\n (this.host as any).nativeFocusableElement?.value ||\n '',\n );\n }\n\n @tuiPure\n private filter<T>(\n items: ReadonlyArray<readonly T[]> | readonly T[] | null,\n matcher: TuiStringMatcher<T>,\n stringify: TuiStringHandler<T>,\n query: string,\n ): ReadonlyArray<readonly T[]> | readonly T[] | null {\n if (!items) {\n return null;\n }\n\n return tuiIsFlat(items)\n ? this.filterFlat(items, matcher, stringify, query)\n : this.filter2d(items, matcher, stringify, query);\n }\n\n private filterFlat<T>(\n items: readonly T[],\n matcher: TuiStringMatcher<T>,\n stringify: TuiStringHandler<T>,\n query: string,\n ): readonly T[] {\n const match = this.getMatch(items, stringify, query);\n\n return match != null\n ? items\n : items.filter((item) => matcher(item, query, stringify));\n }\n\n private filter2d<T>(\n items: ReadonlyArray<readonly T[]>,\n matcher: TuiStringMatcher<T>,\n stringify: TuiStringHandler<T>,\n query: string,\n ): ReadonlyArray<readonly T[]> {\n const match = items.find((item) => this.getMatch(item, stringify, query) != null);\n\n return match != null\n ? items\n : items.map((inner) => this.filterFlat(inner, matcher, stringify, query));\n }\n\n private getMatch<T>(\n items: readonly T[],\n stringify: TuiStringHandler<T>,\n query: string,\n ): T | undefined {\n // TODO: Refactor when tui-textfield[multi] is ready\n if ((this.host as any).tagValidator || this.multi) {\n return undefined;\n }\n\n return items.find(\n (item) => stringify(item).toLocaleLowerCase() === query.toLocaleLowerCase(),\n );\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/kit",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.75.0",
|
|
4
4
|
"description": "Taiga UI Angular main components kit",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -155,18 +155,18 @@
|
|
|
155
155
|
"esm": "./esm2022/components/compass/taiga-ui-kit-components-compass.mjs",
|
|
156
156
|
"default": "./fesm2022/taiga-ui-kit-components-compass.mjs"
|
|
157
157
|
},
|
|
158
|
-
"./components/counter": {
|
|
159
|
-
"types": "./components/counter/index.d.ts",
|
|
160
|
-
"esm2022": "./esm2022/components/counter/taiga-ui-kit-components-counter.mjs",
|
|
161
|
-
"esm": "./esm2022/components/counter/taiga-ui-kit-components-counter.mjs",
|
|
162
|
-
"default": "./fesm2022/taiga-ui-kit-components-counter.mjs"
|
|
163
|
-
},
|
|
164
158
|
"./components/confirm": {
|
|
165
159
|
"types": "./components/confirm/index.d.ts",
|
|
166
160
|
"esm2022": "./esm2022/components/confirm/taiga-ui-kit-components-confirm.mjs",
|
|
167
161
|
"esm": "./esm2022/components/confirm/taiga-ui-kit-components-confirm.mjs",
|
|
168
162
|
"default": "./fesm2022/taiga-ui-kit-components-confirm.mjs"
|
|
169
163
|
},
|
|
164
|
+
"./components/counter": {
|
|
165
|
+
"types": "./components/counter/index.d.ts",
|
|
166
|
+
"esm2022": "./esm2022/components/counter/taiga-ui-kit-components-counter.mjs",
|
|
167
|
+
"esm": "./esm2022/components/counter/taiga-ui-kit-components-counter.mjs",
|
|
168
|
+
"default": "./fesm2022/taiga-ui-kit-components-counter.mjs"
|
|
169
|
+
},
|
|
170
170
|
"./components/data-list-wrapper": {
|
|
171
171
|
"types": "./components/data-list-wrapper/index.d.ts",
|
|
172
172
|
"esm2022": "./esm2022/components/data-list-wrapper/taiga-ui-kit-components-data-list-wrapper.mjs",
|
|
@@ -461,30 +461,24 @@
|
|
|
461
461
|
"esm": "./esm2022/components/status/taiga-ui-kit-components-status.mjs",
|
|
462
462
|
"default": "./fesm2022/taiga-ui-kit-components-status.mjs"
|
|
463
463
|
},
|
|
464
|
-
"./components/stepper": {
|
|
465
|
-
"types": "./components/stepper/index.d.ts",
|
|
466
|
-
"esm2022": "./esm2022/components/stepper/taiga-ui-kit-components-stepper.mjs",
|
|
467
|
-
"esm": "./esm2022/components/stepper/taiga-ui-kit-components-stepper.mjs",
|
|
468
|
-
"default": "./fesm2022/taiga-ui-kit-components-stepper.mjs"
|
|
469
|
-
},
|
|
470
464
|
"./components/switch": {
|
|
471
465
|
"types": "./components/switch/index.d.ts",
|
|
472
466
|
"esm2022": "./esm2022/components/switch/taiga-ui-kit-components-switch.mjs",
|
|
473
467
|
"esm": "./esm2022/components/switch/taiga-ui-kit-components-switch.mjs",
|
|
474
468
|
"default": "./fesm2022/taiga-ui-kit-components-switch.mjs"
|
|
475
469
|
},
|
|
470
|
+
"./components/stepper": {
|
|
471
|
+
"types": "./components/stepper/index.d.ts",
|
|
472
|
+
"esm2022": "./esm2022/components/stepper/taiga-ui-kit-components-stepper.mjs",
|
|
473
|
+
"esm": "./esm2022/components/stepper/taiga-ui-kit-components-stepper.mjs",
|
|
474
|
+
"default": "./fesm2022/taiga-ui-kit-components-stepper.mjs"
|
|
475
|
+
},
|
|
476
476
|
"./components/tabs": {
|
|
477
477
|
"types": "./components/tabs/index.d.ts",
|
|
478
478
|
"esm2022": "./esm2022/components/tabs/taiga-ui-kit-components-tabs.mjs",
|
|
479
479
|
"esm": "./esm2022/components/tabs/taiga-ui-kit-components-tabs.mjs",
|
|
480
480
|
"default": "./fesm2022/taiga-ui-kit-components-tabs.mjs"
|
|
481
481
|
},
|
|
482
|
-
"./components/textarea": {
|
|
483
|
-
"types": "./components/textarea/index.d.ts",
|
|
484
|
-
"esm2022": "./esm2022/components/textarea/taiga-ui-kit-components-textarea.mjs",
|
|
485
|
-
"esm": "./esm2022/components/textarea/taiga-ui-kit-components-textarea.mjs",
|
|
486
|
-
"default": "./fesm2022/taiga-ui-kit-components-textarea.mjs"
|
|
487
|
-
},
|
|
488
482
|
"./components/tiles": {
|
|
489
483
|
"types": "./components/tiles/index.d.ts",
|
|
490
484
|
"esm2022": "./esm2022/components/tiles/taiga-ui-kit-components-tiles.mjs",
|
|
@@ -503,6 +497,12 @@
|
|
|
503
497
|
"esm": "./esm2022/components/tree/taiga-ui-kit-components-tree.mjs",
|
|
504
498
|
"default": "./fesm2022/taiga-ui-kit-components-tree.mjs"
|
|
505
499
|
},
|
|
500
|
+
"./components/textarea": {
|
|
501
|
+
"types": "./components/textarea/index.d.ts",
|
|
502
|
+
"esm2022": "./esm2022/components/textarea/taiga-ui-kit-components-textarea.mjs",
|
|
503
|
+
"esm": "./esm2022/components/textarea/taiga-ui-kit-components-textarea.mjs",
|
|
504
|
+
"default": "./fesm2022/taiga-ui-kit-components-textarea.mjs"
|
|
505
|
+
},
|
|
506
506
|
"./directives/button-close": {
|
|
507
507
|
"types": "./directives/button-close/index.d.ts",
|
|
508
508
|
"esm2022": "./esm2022/directives/button-close/taiga-ui-kit-directives-button-close.mjs",
|
|
@@ -569,18 +569,18 @@
|
|
|
569
569
|
"esm": "./esm2022/directives/icon-badge/taiga-ui-kit-directives-icon-badge.mjs",
|
|
570
570
|
"default": "./fesm2022/taiga-ui-kit-directives-icon-badge.mjs"
|
|
571
571
|
},
|
|
572
|
-
"./directives/password": {
|
|
573
|
-
"types": "./directives/password/index.d.ts",
|
|
574
|
-
"esm2022": "./esm2022/directives/password/taiga-ui-kit-directives-password.mjs",
|
|
575
|
-
"esm": "./esm2022/directives/password/taiga-ui-kit-directives-password.mjs",
|
|
576
|
-
"default": "./fesm2022/taiga-ui-kit-directives-password.mjs"
|
|
577
|
-
},
|
|
578
572
|
"./directives/lazy-loading": {
|
|
579
573
|
"types": "./directives/lazy-loading/index.d.ts",
|
|
580
574
|
"esm2022": "./esm2022/directives/lazy-loading/taiga-ui-kit-directives-lazy-loading.mjs",
|
|
581
575
|
"esm": "./esm2022/directives/lazy-loading/taiga-ui-kit-directives-lazy-loading.mjs",
|
|
582
576
|
"default": "./fesm2022/taiga-ui-kit-directives-lazy-loading.mjs"
|
|
583
577
|
},
|
|
578
|
+
"./directives/password": {
|
|
579
|
+
"types": "./directives/password/index.d.ts",
|
|
580
|
+
"esm2022": "./esm2022/directives/password/taiga-ui-kit-directives-password.mjs",
|
|
581
|
+
"esm": "./esm2022/directives/password/taiga-ui-kit-directives-password.mjs",
|
|
582
|
+
"default": "./fesm2022/taiga-ui-kit-directives-password.mjs"
|
|
583
|
+
},
|
|
584
584
|
"./directives/present": {
|
|
585
585
|
"types": "./directives/present/index.d.ts",
|
|
586
586
|
"esm2022": "./esm2022/directives/present/taiga-ui-kit-directives-present.mjs",
|
|
@@ -685,9 +685,9 @@
|
|
|
685
685
|
"@ng-web-apis/intersection-observer": "^4.14.0",
|
|
686
686
|
"@ng-web-apis/mutation-observer": "^4.14.0",
|
|
687
687
|
"@ng-web-apis/resize-observer": "^4.14.0",
|
|
688
|
-
"@taiga-ui/cdk": "
|
|
689
|
-
"@taiga-ui/core": "
|
|
690
|
-
"@taiga-ui/i18n": "
|
|
688
|
+
"@taiga-ui/cdk": "4.75.0",
|
|
689
|
+
"@taiga-ui/core": "4.75.0",
|
|
690
|
+
"@taiga-ui/i18n": "4.75.0",
|
|
691
691
|
"@taiga-ui/polymorpheus": "^4.9.0",
|
|
692
692
|
"rxjs": ">=7.0.0"
|
|
693
693
|
},
|
|
@@ -3,6 +3,7 @@ import { type TuiStringMatcher } from '@taiga-ui/cdk/types';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TuiFilterByInputPipe implements PipeTransform {
|
|
5
5
|
private readonly textfield;
|
|
6
|
+
private readonly multi;
|
|
6
7
|
private readonly host;
|
|
7
8
|
private readonly itemsHandlers;
|
|
8
9
|
transform<T>(items: ReadonlyArray<readonly T[]>, matcher?: TuiStringMatcher<T>): ReadonlyArray<readonly T[]>;
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
justify-content: center;
|
|
18
18
|
inline-size: max-content;
|
|
19
19
|
font: var(--tui-font-text-ui-s);
|
|
20
|
-
max-inline-size: ~'min(calc(100vw - 2rem), 25rem
|
|
20
|
+
max-inline-size: ~'min(calc(100vw - 2rem), 25rem)';
|
|
21
21
|
border: inherit;
|
|
22
22
|
text-decoration: none;
|
|
23
23
|
white-space: pre-line;
|