@taiga-ui/kit 4.19.0 → 4.20.0-canary.ef907c4

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.
Files changed (60) hide show
  1. package/components/checkbox/checkbox.component.d.ts +1 -0
  2. package/components/index.d.ts +2 -0
  3. package/components/input-number/index.d.ts +2 -0
  4. package/components/input-number/input-number.component.d.ts +38 -0
  5. package/components/input-number/input-number.options.d.ts +15 -0
  6. package/components/input-pin/index.d.ts +1 -0
  7. package/components/input-pin/input-pin.component.d.ts +18 -0
  8. package/components/line-clamp/line-clamp.component.d.ts +0 -2
  9. package/components/pulse/pulse.component.d.ts +6 -1
  10. package/components/radio/radio.component.d.ts +5 -2
  11. package/components/switch/switch.component.d.ts +5 -2
  12. package/directives/tooltip/tooltip.directive.d.ts +3 -1
  13. package/esm2022/components/avatar/avatar.component.mjs +3 -3
  14. package/esm2022/components/checkbox/checkbox.component.mjs +5 -4
  15. package/esm2022/components/confirm/confirm.component.mjs +3 -3
  16. package/esm2022/components/files/files/files.component.mjs +4 -4
  17. package/esm2022/components/index.mjs +3 -1
  18. package/esm2022/components/input-number/index.mjs +3 -0
  19. package/esm2022/components/input-number/input-number.component.mjs +207 -0
  20. package/esm2022/components/input-number/input-number.options.mjs +15 -0
  21. package/esm2022/components/input-number/taiga-ui-kit-components-input-number.mjs +5 -0
  22. package/esm2022/components/input-password/input-password.component.mjs +1 -1
  23. package/esm2022/components/input-pin/index.mjs +2 -0
  24. package/esm2022/components/input-pin/input-pin.component.mjs +64 -0
  25. package/esm2022/components/input-pin/taiga-ui-kit-components-input-pin.mjs +5 -0
  26. package/esm2022/components/line-clamp/line-clamp.component.mjs +7 -22
  27. package/esm2022/components/pulse/pulse.component.mjs +20 -7
  28. package/esm2022/components/radio/radio.component.mjs +11 -2
  29. package/esm2022/components/switch/switch.component.mjs +11 -2
  30. package/esm2022/directives/chevron/chevron.directive.mjs +2 -2
  31. package/esm2022/directives/tooltip/tooltip.directive.mjs +10 -6
  32. package/fesm2022/taiga-ui-kit-components-avatar.mjs +2 -2
  33. package/fesm2022/taiga-ui-kit-components-avatar.mjs.map +1 -1
  34. package/fesm2022/taiga-ui-kit-components-checkbox.mjs +4 -3
  35. package/fesm2022/taiga-ui-kit-components-checkbox.mjs.map +1 -1
  36. package/fesm2022/taiga-ui-kit-components-confirm.mjs +2 -2
  37. package/fesm2022/taiga-ui-kit-components-confirm.mjs.map +1 -1
  38. package/fesm2022/taiga-ui-kit-components-files.mjs +3 -3
  39. package/fesm2022/taiga-ui-kit-components-files.mjs.map +1 -1
  40. package/fesm2022/taiga-ui-kit-components-input-number.mjs +227 -0
  41. package/fesm2022/taiga-ui-kit-components-input-number.mjs.map +1 -0
  42. package/fesm2022/taiga-ui-kit-components-input-password.mjs +1 -1
  43. package/fesm2022/taiga-ui-kit-components-input-password.mjs.map +1 -1
  44. package/fesm2022/taiga-ui-kit-components-input-pin.mjs +70 -0
  45. package/fesm2022/taiga-ui-kit-components-input-pin.mjs.map +1 -0
  46. package/fesm2022/taiga-ui-kit-components-line-clamp.mjs +6 -21
  47. package/fesm2022/taiga-ui-kit-components-line-clamp.mjs.map +1 -1
  48. package/fesm2022/taiga-ui-kit-components-pulse.mjs +19 -6
  49. package/fesm2022/taiga-ui-kit-components-pulse.mjs.map +1 -1
  50. package/fesm2022/taiga-ui-kit-components-radio.mjs +10 -1
  51. package/fesm2022/taiga-ui-kit-components-radio.mjs.map +1 -1
  52. package/fesm2022/taiga-ui-kit-components-switch.mjs +10 -1
  53. package/fesm2022/taiga-ui-kit-components-switch.mjs.map +1 -1
  54. package/fesm2022/taiga-ui-kit-components.mjs +2 -0
  55. package/fesm2022/taiga-ui-kit-components.mjs.map +1 -1
  56. package/fesm2022/taiga-ui-kit-directives-chevron.mjs +2 -2
  57. package/fesm2022/taiga-ui-kit-directives-chevron.mjs.map +1 -1
  58. package/fesm2022/taiga-ui-kit-directives-tooltip.mjs +9 -5
  59. package/fesm2022/taiga-ui-kit-directives-tooltip.mjs.map +1 -1
  60. package/package.json +32 -20
@@ -1 +1 @@
1
- {"version":3,"file":"taiga-ui-kit-directives-tooltip.mjs","sources":["../../../projects/kit/directives/tooltip/tooltip.options.ts","../../../projects/kit/directives/tooltip/tooltip.directive.ts","../../../projects/kit/directives/tooltip/taiga-ui-kit-directives-tooltip.ts"],"sourcesContent":["import {tuiCreateOptions} from '@taiga-ui/cdk/utils/di';\n\nexport const [TUI_TOOLTIP_OPTIONS, tuiTooltipOptionsProvider] = tuiCreateOptions({\n icon: '',\n appearance: 'icon',\n});\n","import type {DoCheck, Signal} from '@angular/core';\nimport {\n ChangeDetectionStrategy,\n Component,\n Directive,\n inject,\n ViewEncapsulation,\n} from '@angular/core';\nimport {toSignal} from '@angular/core/rxjs-interop';\nimport {tuiWatch} from '@taiga-ui/cdk/observables';\nimport {TUI_IS_MOBILE} from '@taiga-ui/cdk/tokens';\nimport {tuiWithStyles} from '@taiga-ui/cdk/utils/miscellaneous';\nimport {TuiTextfieldComponent} from '@taiga-ui/core/components/textfield';\nimport {\n tuiAppearanceOptionsProvider,\n tuiAppearanceState,\n TuiWithAppearance,\n} from '@taiga-ui/core/directives/appearance';\nimport {\n TUI_HINT_OPTIONS,\n TuiHintDescribe,\n TuiHintDirective,\n TuiHintHover,\n} from '@taiga-ui/core/directives/hint';\nimport {TUI_ICON_START} from '@taiga-ui/core/tokens';\nimport {map} from 'rxjs';\n\nimport {TUI_TOOLTIP_OPTIONS} from './tooltip.options';\n\n@Component({\n standalone: true,\n template: '',\n styleUrls: ['./tooltip.style.less'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'tui-tooltip',\n },\n})\nclass TuiTooltipStyles {}\n\n@Directive({\n standalone: true,\n selector: 'tui-icon[tuiTooltip]',\n providers: [\n tuiAppearanceOptionsProvider(TUI_TOOLTIP_OPTIONS),\n {\n provide: TUI_ICON_START,\n useFactory: () =>\n inject(TUI_TOOLTIP_OPTIONS).icon || inject(TUI_HINT_OPTIONS).icon,\n },\n ],\n hostDirectives: [\n TuiWithAppearance,\n {\n directive: TuiHintDescribe,\n inputs: ['tuiHintDescribe: tuiTooltipDescribe'],\n },\n {\n directive: TuiHintDirective,\n inputs: ['tuiHint: tuiTooltip', 'tuiHintAppearance', 'tuiHintContext'],\n },\n ],\n host: {\n tuiTooltip: '',\n '(click.prevent)': '0',\n '(mousedown)': 'onClick($event)',\n },\n})\nexport class TuiTooltip implements DoCheck {\n private readonly textfield = inject(TuiTextfieldComponent, {optional: true});\n private readonly isMobile = inject(TUI_IS_MOBILE);\n private readonly describe = inject(TuiHintDescribe);\n private readonly driver = inject(TuiHintHover);\n\n protected readonly nothing = tuiWithStyles(TuiTooltipStyles);\n protected readonly state: Signal<unknown> = tuiAppearanceState(\n toSignal(\n inject(TuiHintHover).pipe(\n map((hover) => (hover ? 'hover' : null)),\n tuiWatch(),\n ),\n {initialValue: null},\n ),\n );\n\n public ngDoCheck(): void {\n if (this.textfield?.id) {\n this.describe.tuiHintDescribe = this.textfield.id;\n }\n }\n\n protected onClick(event: MouseEvent): void {\n if (this.isMobile) {\n event.preventDefault();\n event.stopPropagation();\n } else {\n this.driver.toggle();\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"taiga-ui-kit-directives-tooltip.mjs","sources":["../../../projects/kit/directives/tooltip/tooltip.options.ts","../../../projects/kit/directives/tooltip/tooltip.directive.ts","../../../projects/kit/directives/tooltip/taiga-ui-kit-directives-tooltip.ts"],"sourcesContent":["import {tuiCreateOptions} from '@taiga-ui/cdk/utils/di';\n\nexport const [TUI_TOOLTIP_OPTIONS, tuiTooltipOptionsProvider] = tuiCreateOptions({\n icon: '',\n appearance: 'icon',\n});\n","import type {DoCheck, Signal} from '@angular/core';\nimport {\n ChangeDetectionStrategy,\n Component,\n Directive,\n inject,\n Input,\n ViewEncapsulation,\n} from '@angular/core';\nimport {toSignal} from '@angular/core/rxjs-interop';\nimport {tuiWatch} from '@taiga-ui/cdk/observables';\nimport {TUI_IS_MOBILE} from '@taiga-ui/cdk/tokens';\nimport {tuiWithStyles} from '@taiga-ui/cdk/utils/miscellaneous';\nimport {TuiTextfieldComponent} from '@taiga-ui/core/components/textfield';\nimport {\n tuiAppearanceOptionsProvider,\n tuiAppearanceState,\n TuiWithAppearance,\n} from '@taiga-ui/core/directives/appearance';\nimport {\n TUI_HINT_OPTIONS,\n TuiHintDescribe,\n TuiHintDirective,\n TuiHintHover,\n} from '@taiga-ui/core/directives/hint';\nimport {TUI_ICON_START} from '@taiga-ui/core/tokens';\nimport type {TuiSizeS} from '@taiga-ui/core/types';\nimport {map} from 'rxjs';\n\nimport {TUI_TOOLTIP_OPTIONS} from './tooltip.options';\n\n@Component({\n standalone: true,\n template: '',\n styleUrls: ['./tooltip.style.less'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n class: 'tui-tooltip',\n },\n})\nclass TuiTooltipStyles {}\n\n@Directive({\n standalone: true,\n selector: 'tui-icon[tuiTooltip]',\n providers: [\n tuiAppearanceOptionsProvider(TUI_TOOLTIP_OPTIONS),\n {\n provide: TUI_ICON_START,\n useFactory: () =>\n inject(TUI_TOOLTIP_OPTIONS).icon || inject(TUI_HINT_OPTIONS).icon,\n },\n ],\n hostDirectives: [\n TuiWithAppearance,\n {\n directive: TuiHintDescribe,\n inputs: ['tuiHintDescribe: tuiTooltipDescribe'],\n },\n {\n directive: TuiHintDirective,\n inputs: ['tuiHint: tuiTooltip', 'tuiHintAppearance', 'tuiHintContext'],\n },\n ],\n host: {\n tuiTooltip: '',\n '[attr.data-size]': 'size',\n '(click.prevent)': '0',\n '(mousedown)': 'onClick($event)',\n },\n})\nexport class TuiTooltip implements DoCheck {\n private readonly textfield = inject(TuiTextfieldComponent, {optional: true});\n private readonly isMobile = inject(TUI_IS_MOBILE);\n private readonly describe = inject(TuiHintDescribe);\n private readonly driver = inject(TuiHintHover);\n\n protected readonly nothing = tuiWithStyles(TuiTooltipStyles);\n protected readonly state: Signal<unknown> = tuiAppearanceState(\n toSignal(\n inject(TuiHintHover).pipe(\n map((hover) => (hover ? 'hover' : null)),\n tuiWatch(),\n ),\n {initialValue: null},\n ),\n );\n\n @Input()\n public size: TuiSizeS = 'm';\n\n public ngDoCheck(): void {\n if (this.textfield?.id) {\n this.describe.tuiHintDescribe = this.textfield.id;\n }\n }\n\n protected onClick(event: MouseEvent): void {\n if (this.isMobile) {\n event.preventDefault();\n event.stopPropagation();\n } else {\n this.driver.toggle();\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.19.0",
3
+ "version": "4.20.0-canary.ef907c4",
4
4
  "description": "Taiga UI Angular main components kit",
5
5
  "keywords": [
6
6
  "angular",
@@ -53,18 +53,18 @@
53
53
  "esm": "./esm2022/utils/taiga-ui-kit-utils.mjs",
54
54
  "default": "./fesm2022/taiga-ui-kit-utils.mjs"
55
55
  },
56
- "./components/accordion": {
57
- "types": "./components/accordion/index.d.ts",
58
- "esm2022": "./esm2022/components/accordion/taiga-ui-kit-components-accordion.mjs",
59
- "esm": "./esm2022/components/accordion/taiga-ui-kit-components-accordion.mjs",
60
- "default": "./fesm2022/taiga-ui-kit-components-accordion.mjs"
61
- },
62
56
  "./components/action-bar": {
63
57
  "types": "./components/action-bar/index.d.ts",
64
58
  "esm2022": "./esm2022/components/action-bar/taiga-ui-kit-components-action-bar.mjs",
65
59
  "esm": "./esm2022/components/action-bar/taiga-ui-kit-components-action-bar.mjs",
66
60
  "default": "./fesm2022/taiga-ui-kit-components-action-bar.mjs"
67
61
  },
62
+ "./components/accordion": {
63
+ "types": "./components/accordion/index.d.ts",
64
+ "esm2022": "./esm2022/components/accordion/taiga-ui-kit-components-accordion.mjs",
65
+ "esm": "./esm2022/components/accordion/taiga-ui-kit-components-accordion.mjs",
66
+ "default": "./fesm2022/taiga-ui-kit-components-accordion.mjs"
67
+ },
68
68
  "./components/avatar": {
69
69
  "types": "./components/avatar/index.d.ts",
70
70
  "esm2022": "./esm2022/components/avatar/taiga-ui-kit-components-avatar.mjs",
@@ -131,18 +131,18 @@
131
131
  "esm": "./esm2022/components/checkbox/taiga-ui-kit-components-checkbox.mjs",
132
132
  "default": "./fesm2022/taiga-ui-kit-components-checkbox.mjs"
133
133
  },
134
- "./components/chip": {
135
- "types": "./components/chip/index.d.ts",
136
- "esm2022": "./esm2022/components/chip/taiga-ui-kit-components-chip.mjs",
137
- "esm": "./esm2022/components/chip/taiga-ui-kit-components-chip.mjs",
138
- "default": "./fesm2022/taiga-ui-kit-components-chip.mjs"
139
- },
140
134
  "./components/comment": {
141
135
  "types": "./components/comment/index.d.ts",
142
136
  "esm2022": "./esm2022/components/comment/taiga-ui-kit-components-comment.mjs",
143
137
  "esm": "./esm2022/components/comment/taiga-ui-kit-components-comment.mjs",
144
138
  "default": "./fesm2022/taiga-ui-kit-components-comment.mjs"
145
139
  },
140
+ "./components/chip": {
141
+ "types": "./components/chip/index.d.ts",
142
+ "esm2022": "./esm2022/components/chip/taiga-ui-kit-components-chip.mjs",
143
+ "esm": "./esm2022/components/chip/taiga-ui-kit-components-chip.mjs",
144
+ "default": "./fesm2022/taiga-ui-kit-components-chip.mjs"
145
+ },
146
146
  "./components/compass": {
147
147
  "types": "./components/compass/index.d.ts",
148
148
  "esm2022": "./esm2022/components/compass/taiga-ui-kit-components-compass.mjs",
@@ -191,6 +191,12 @@
191
191
  "esm": "./esm2022/components/input-inline/taiga-ui-kit-components-input-inline.mjs",
192
192
  "default": "./fesm2022/taiga-ui-kit-components-input-inline.mjs"
193
193
  },
194
+ "./components/input-number": {
195
+ "types": "./components/input-number/index.d.ts",
196
+ "esm2022": "./esm2022/components/input-number/taiga-ui-kit-components-input-number.mjs",
197
+ "esm": "./esm2022/components/input-number/taiga-ui-kit-components-input-number.mjs",
198
+ "default": "./fesm2022/taiga-ui-kit-components-input-number.mjs"
199
+ },
194
200
  "./components/input-password": {
195
201
  "types": "./components/input-password/index.d.ts",
196
202
  "esm2022": "./esm2022/components/input-password/taiga-ui-kit-components-input-password.mjs",
@@ -203,6 +209,12 @@
203
209
  "esm": "./esm2022/components/input-phone-international/taiga-ui-kit-components-input-phone-international.mjs",
204
210
  "default": "./fesm2022/taiga-ui-kit-components-input-phone-international.mjs"
205
211
  },
212
+ "./components/input-pin": {
213
+ "types": "./components/input-pin/index.d.ts",
214
+ "esm2022": "./esm2022/components/input-pin/taiga-ui-kit-components-input-pin.mjs",
215
+ "esm": "./esm2022/components/input-pin/taiga-ui-kit-components-input-pin.mjs",
216
+ "default": "./fesm2022/taiga-ui-kit-components-input-pin.mjs"
217
+ },
206
218
  "./components/items-with-more": {
207
219
  "types": "./components/items-with-more/index.d.ts",
208
220
  "esm2022": "./esm2022/components/items-with-more/taiga-ui-kit-components-items-with-more.mjs",
@@ -515,17 +527,17 @@
515
527
  "@angular/core": ">=16.0.0",
516
528
  "@angular/forms": ">=16.0.0",
517
529
  "@angular/router": ">=16.0.0",
518
- "@maskito/angular": "^3.2.0",
519
- "@maskito/core": "^3.2.0",
520
- "@maskito/kit": "^3.2.0",
521
- "@maskito/phone": "^3.2.0",
530
+ "@maskito/angular": "^3.2.1",
531
+ "@maskito/core": "^3.2.1",
532
+ "@maskito/kit": "^3.2.1",
533
+ "@maskito/phone": "^3.2.1",
522
534
  "@ng-web-apis/common": "^4.11.1",
523
535
  "@ng-web-apis/intersection-observer": "^4.11.1",
524
536
  "@ng-web-apis/mutation-observer": "^4.11.1",
525
537
  "@ng-web-apis/resize-observer": "^4.11.1",
526
- "@taiga-ui/cdk": "^4.19.0",
527
- "@taiga-ui/core": "^4.19.0",
528
- "@taiga-ui/i18n": "^4.19.0",
538
+ "@taiga-ui/cdk": "^4.20.0",
539
+ "@taiga-ui/core": "^4.20.0",
540
+ "@taiga-ui/i18n": "^4.20.0",
529
541
  "@taiga-ui/polymorpheus": "^4.7.4",
530
542
  "rxjs": ">=7.0.0"
531
543
  },