@taiga-ui/kit 4.29.0 → 4.30.0-canary.07e997d
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/carousel/carousel.component.d.ts +4 -1
- 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/calendar-range/calendar-range.component.mjs +2 -2
- package/esm2022/components/carousel/carousel.component.mjs +14 -4
- package/esm2022/components/data-list-wrapper/data-list-group-wrapper.component.mjs +2 -2
- package/esm2022/components/data-list-wrapper/data-list-wrapper.component.mjs +2 -2
- package/esm2022/components/index.mjs +2 -1
- package/esm2022/components/input-number/input-number.options.mjs +1 -1
- package/esm2022/components/input-phone-international/input-phone-international.component.mjs +2 -2
- 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-calendar-range.mjs +1 -1
- package/fesm2022/taiga-ui-kit-components-calendar-range.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-carousel.mjs +13 -3
- package/fesm2022/taiga-ui-kit-components-carousel.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-data-list-wrapper.mjs +2 -2
- package/fesm2022/taiga-ui-kit-components-data-list-wrapper.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-input-number.mjs.map +1 -1
- package/fesm2022/taiga-ui-kit-components-input-phone-international.mjs +1 -1
- package/fesm2022/taiga-ui-kit-components-input-phone-international.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-canary.07e997d",
|
|
4
4
|
"description": "Taiga UI Angular main components kit",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -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",
|
|
@@ -485,12 +491,6 @@
|
|
|
485
491
|
"esm": "./esm2022/directives/unmask-handler/taiga-ui-kit-directives-unmask-handler.mjs",
|
|
486
492
|
"default": "./fesm2022/taiga-ui-kit-directives-unmask-handler.mjs"
|
|
487
493
|
},
|
|
488
|
-
"./pipes/emails": {
|
|
489
|
-
"types": "./pipes/emails/index.d.ts",
|
|
490
|
-
"esm2022": "./esm2022/pipes/emails/taiga-ui-kit-pipes-emails.mjs",
|
|
491
|
-
"esm": "./esm2022/pipes/emails/taiga-ui-kit-pipes-emails.mjs",
|
|
492
|
-
"default": "./fesm2022/taiga-ui-kit-pipes-emails.mjs"
|
|
493
|
-
},
|
|
494
494
|
"./pipes/field-error": {
|
|
495
495
|
"types": "./pipes/field-error/index.d.ts",
|
|
496
496
|
"esm2022": "./esm2022/pipes/field-error/taiga-ui-kit-pipes-field-error.mjs",
|
|
@@ -503,6 +503,12 @@
|
|
|
503
503
|
"esm": "./esm2022/pipes/filter-by-input/taiga-ui-kit-pipes-filter-by-input.mjs",
|
|
504
504
|
"default": "./fesm2022/taiga-ui-kit-pipes-filter-by-input.mjs"
|
|
505
505
|
},
|
|
506
|
+
"./pipes/emails": {
|
|
507
|
+
"types": "./pipes/emails/index.d.ts",
|
|
508
|
+
"esm2022": "./esm2022/pipes/emails/taiga-ui-kit-pipes-emails.mjs",
|
|
509
|
+
"esm": "./esm2022/pipes/emails/taiga-ui-kit-pipes-emails.mjs",
|
|
510
|
+
"default": "./fesm2022/taiga-ui-kit-pipes-emails.mjs"
|
|
511
|
+
},
|
|
506
512
|
"./pipes/sort-countries": {
|
|
507
513
|
"types": "./pipes/sort-countries/index.d.ts",
|
|
508
514
|
"esm2022": "./esm2022/pipes/sort-countries/taiga-ui-kit-pipes-sort-countries.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
|
},
|