@taiga-ui/kit 4.29.0-canary.c41cdb1 → 4.30.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/index.d.ts +1 -0
- package/components/input-number/input-number.options.d.ts +1 -1
- package/components/input-slider/index.d.ts +2 -0
- package/components/input-slider/input-slider.d.ts +2 -0
- package/components/input-slider/input-slider.directive.d.ts +19 -0
- package/components/slider/helpers/key-steps.d.ts +3 -0
- package/components/slider/helpers/slider-key-steps.directive.d.ts +31 -7
- package/components/slider/slider.component.d.ts +6 -3
- package/components/slider/slider.d.ts +2 -2
- package/esm2022/components/index.mjs +2 -1
- package/esm2022/components/input-number/input-number.options.mjs +1 -1
- package/esm2022/components/input-slider/index.mjs +3 -0
- package/esm2022/components/input-slider/input-slider.directive.mjs +117 -0
- package/esm2022/components/input-slider/input-slider.mjs +4 -0
- package/esm2022/components/input-slider/taiga-ui-kit-components-input-slider.mjs +5 -0
- package/esm2022/components/range/range.component.mjs +1 -1
- package/esm2022/components/slider/helpers/key-steps.mjs +13 -1
- package/esm2022/components/slider/helpers/slider-key-steps.directive.mjs +82 -32
- package/esm2022/components/slider/slider.component.mjs +25 -20
- package/esm2022/components/slider/slider.mjs +3 -2
- package/esm2022/directives/button-group/button-group.directive.mjs +2 -2
- package/esm2022/directives/button-select/button-select.directive.mjs +4 -5
- package/fesm2022/taiga-ui-kit-components-input-number.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-input-slider.mjs +125 -0
- package/fesm2022/taiga-ui-kit-components-input-slider.mjs.map +1 -0
- package/fesm2022/taiga-ui-kit-components-range.mjs +1 -1
- package/fesm2022/taiga-ui-kit-components-range.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-slider.mjs +116 -52
- package/fesm2022/taiga-ui-kit-components-slider.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components.mjs +1 -0
- package/fesm2022/taiga-ui-kit-components.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-directives-button-group.mjs +2 -2
- package/fesm2022/taiga-ui-kit-directives-button-group.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-directives-button-select.mjs +3 -4
- package/fesm2022/taiga-ui-kit-directives-button-select.mjs.map +1 -1
- package/package.json +20 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/kit",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.30.0",
|
|
4
4
|
"description": "Taiga UI Angular main components kit",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -83,18 +83,18 @@
|
|
|
83
83
|
"esm": "./esm2022/components/badge-notification/taiga-ui-kit-components-badge-notification.mjs",
|
|
84
84
|
"default": "./fesm2022/taiga-ui-kit-components-badge-notification.mjs"
|
|
85
85
|
},
|
|
86
|
-
"./components/block": {
|
|
87
|
-
"types": "./components/block/index.d.ts",
|
|
88
|
-
"esm2022": "./esm2022/components/block/taiga-ui-kit-components-block.mjs",
|
|
89
|
-
"esm": "./esm2022/components/block/taiga-ui-kit-components-block.mjs",
|
|
90
|
-
"default": "./fesm2022/taiga-ui-kit-components-block.mjs"
|
|
91
|
-
},
|
|
92
86
|
"./components/badged-content": {
|
|
93
87
|
"types": "./components/badged-content/index.d.ts",
|
|
94
88
|
"esm2022": "./esm2022/components/badged-content/taiga-ui-kit-components-badged-content.mjs",
|
|
95
89
|
"esm": "./esm2022/components/badged-content/taiga-ui-kit-components-badged-content.mjs",
|
|
96
90
|
"default": "./fesm2022/taiga-ui-kit-components-badged-content.mjs"
|
|
97
91
|
},
|
|
92
|
+
"./components/block": {
|
|
93
|
+
"types": "./components/block/index.d.ts",
|
|
94
|
+
"esm2022": "./esm2022/components/block/taiga-ui-kit-components-block.mjs",
|
|
95
|
+
"esm": "./esm2022/components/block/taiga-ui-kit-components-block.mjs",
|
|
96
|
+
"default": "./fesm2022/taiga-ui-kit-components-block.mjs"
|
|
97
|
+
},
|
|
98
98
|
"./components/breadcrumbs": {
|
|
99
99
|
"types": "./components/breadcrumbs/index.d.ts",
|
|
100
100
|
"esm2022": "./esm2022/components/breadcrumbs/taiga-ui-kit-components-breadcrumbs.mjs",
|
|
@@ -227,6 +227,12 @@
|
|
|
227
227
|
"esm": "./esm2022/components/input-pin/taiga-ui-kit-components-input-pin.mjs",
|
|
228
228
|
"default": "./fesm2022/taiga-ui-kit-components-input-pin.mjs"
|
|
229
229
|
},
|
|
230
|
+
"./components/input-slider": {
|
|
231
|
+
"types": "./components/input-slider/index.d.ts",
|
|
232
|
+
"esm2022": "./esm2022/components/input-slider/taiga-ui-kit-components-input-slider.mjs",
|
|
233
|
+
"esm": "./esm2022/components/input-slider/taiga-ui-kit-components-input-slider.mjs",
|
|
234
|
+
"default": "./fesm2022/taiga-ui-kit-components-input-slider.mjs"
|
|
235
|
+
},
|
|
230
236
|
"./components/items-with-more": {
|
|
231
237
|
"types": "./components/items-with-more/index.d.ts",
|
|
232
238
|
"esm2022": "./esm2022/components/items-with-more/taiga-ui-kit-components-items-with-more.mjs",
|
|
@@ -539,17 +545,17 @@
|
|
|
539
545
|
"@angular/core": ">=16.0.0",
|
|
540
546
|
"@angular/forms": ">=16.0.0",
|
|
541
547
|
"@angular/router": ">=16.0.0",
|
|
542
|
-
"@maskito/angular": "^3.
|
|
543
|
-
"@maskito/core": "^3.
|
|
544
|
-
"@maskito/kit": "^3.
|
|
545
|
-
"@maskito/phone": "^3.
|
|
548
|
+
"@maskito/angular": "^3.5.0",
|
|
549
|
+
"@maskito/core": "^3.5.0",
|
|
550
|
+
"@maskito/kit": "^3.5.0",
|
|
551
|
+
"@maskito/phone": "^3.5.0",
|
|
546
552
|
"@ng-web-apis/common": "^4.11.1",
|
|
547
553
|
"@ng-web-apis/intersection-observer": "^4.11.1",
|
|
548
554
|
"@ng-web-apis/mutation-observer": "^4.11.1",
|
|
549
555
|
"@ng-web-apis/resize-observer": "^4.11.1",
|
|
550
|
-
"@taiga-ui/cdk": "^4.
|
|
551
|
-
"@taiga-ui/core": "^4.
|
|
552
|
-
"@taiga-ui/i18n": "^4.
|
|
556
|
+
"@taiga-ui/cdk": "^4.30.0",
|
|
557
|
+
"@taiga-ui/core": "^4.30.0",
|
|
558
|
+
"@taiga-ui/i18n": "^4.30.0",
|
|
553
559
|
"@taiga-ui/polymorpheus": "^4.9.0",
|
|
554
560
|
"rxjs": ">=7.0.0"
|
|
555
561
|
},
|