@taiga-ui/kit 3.27.0-dev.main-aafa41b → 3.28.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/bundles/taiga-ui-kit-components-input-date-range.umd.js +43 -48
- package/bundles/taiga-ui-kit-components-input-date-range.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-components-input-inline.umd.js +8 -1
- package/bundles/taiga-ui-kit-components-input-inline.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-components-input-tag.umd.js +1 -1
- package/bundles/taiga-ui-kit-components-input-tag.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-components-text-area.umd.js +38 -15
- package/bundles/taiga-ui-kit-components-text-area.umd.js.map +1 -1
- package/bundles/taiga-ui-kit-utils-mask.umd.js +6 -0
- package/bundles/taiga-ui-kit-utils-mask.umd.js.map +1 -1
- package/components/input-date-range/input-date-range.component.d.ts +4 -4
- package/components/input-date-range/input-date-range.module.d.ts +3 -2
- package/components/input-inline/input-inline.component.d.ts +2 -0
- package/components/text-area/text-area.component.d.ts +5 -2
- package/esm2015/components/input-date-range/input-date-range.component.js +33 -37
- package/esm2015/components/input-date-range/input-date-range.module.js +6 -5
- package/esm2015/components/input-inline/input-inline.component.js +9 -2
- package/esm2015/components/input-tag/input-tag.component.js +2 -2
- package/esm2015/components/text-area/text-area.component.js +23 -12
- package/esm2015/utils/mask/create-auto-corrected-date-range-pipe.js +3 -1
- package/esm2015/utils/mask/create-date-range-mask.js +5 -1
- package/fesm2015/taiga-ui-kit-components-input-date-range.js +37 -40
- package/fesm2015/taiga-ui-kit-components-input-date-range.js.map +1 -1
- package/fesm2015/taiga-ui-kit-components-input-inline.js +8 -1
- package/fesm2015/taiga-ui-kit-components-input-inline.js.map +1 -1
- package/fesm2015/taiga-ui-kit-components-input-tag.js +1 -1
- package/fesm2015/taiga-ui-kit-components-input-tag.js.map +1 -1
- package/fesm2015/taiga-ui-kit-components-text-area.js +22 -11
- package/fesm2015/taiga-ui-kit-components-text-area.js.map +1 -1
- package/fesm2015/taiga-ui-kit-utils-mask.js +6 -0
- package/fesm2015/taiga-ui-kit-utils-mask.js.map +1 -1
- package/package.json +4 -4
- package/utils/mask/create-auto-corrected-date-range-pipe.d.ts +2 -0
- package/utils/mask/create-date-range-mask.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/kit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.28.0",
|
|
4
4
|
"description": "Taiga UI Angular main components kit",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"@ng-web-apis/common": ">=2.0.0",
|
|
29
29
|
"@ng-web-apis/mutation-observer": ">=2.0.0",
|
|
30
30
|
"@ng-web-apis/resize-observer": ">=2.0.0",
|
|
31
|
-
"@taiga-ui/cdk": ">=3.
|
|
32
|
-
"@taiga-ui/core": ">=3.
|
|
33
|
-
"@taiga-ui/i18n": ">=3.
|
|
31
|
+
"@taiga-ui/cdk": ">=3.28.0",
|
|
32
|
+
"@taiga-ui/core": ">=3.28.0",
|
|
33
|
+
"@taiga-ui/i18n": ">=3.28.0",
|
|
34
34
|
"@tinkoff/ng-polymorpheus": ">=4.0.0",
|
|
35
35
|
"rxjs": ">=6.0.0"
|
|
36
36
|
},
|
|
@@ -5,6 +5,8 @@ interface TuiAutoCorrectedDatePipeConfigs extends TuiWithOptionalMinMaxWithValue
|
|
|
5
5
|
dateSeparator: string;
|
|
6
6
|
}
|
|
7
7
|
/**
|
|
8
|
+
* @deprecated Use {@link https://tinkoff.github.io/maskito/kit/date-range DateRange} from {@link https://github.com/Tinkoff/maskito Maskito} instead
|
|
9
|
+
* TODO: delete in v4.0
|
|
8
10
|
* Normalizes date in formatted string
|
|
9
11
|
*
|
|
10
12
|
* Normalizes when:
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import { TuiDateMode } from '@taiga-ui/cdk';
|
|
2
2
|
import { TuiTextMaskList } from '@taiga-ui/core';
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Use {@link https://tinkoff.github.io/maskito/kit/date-range DateRange} from {@link https://github.com/Tinkoff/maskito Maskito} instead
|
|
5
|
+
* TODO: delete in v4.0
|
|
6
|
+
*/
|
|
3
7
|
export declare function tuiCreateDateRangeMask(dateMode: TuiDateMode, dateSeparator: string): TuiTextMaskList;
|