@taiga-ui/legacy 4.8.1 → 4.9.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.
Files changed (52) hide show
  1. package/components/color-selector/color-selector.options.d.ts +2 -3
  2. package/components/input/input.module.d.ts +2 -1
  3. package/components/input-month-range/input-month-range.directive.d.ts +1 -1
  4. package/components/input-number/input-number.component.d.ts +1 -2
  5. package/components/sheet/sheet-tokens.d.ts +3 -4
  6. package/components/svg/svg-options.d.ts +2 -3
  7. package/directives/textfield-controller/textfield-controller.provider.d.ts +1 -2
  8. package/esm2022/components/color-selector/color-selector.options.mjs +5 -5
  9. package/esm2022/components/input/input.component.mjs +3 -2
  10. package/esm2022/components/input/input.module.mjs +12 -4
  11. package/esm2022/components/input-month-range/input-month-range.directive.mjs +2 -2
  12. package/esm2022/components/input-number/input-number.component.mjs +4 -4
  13. package/esm2022/components/input-tag/input-tag.component.mjs +3 -3
  14. package/esm2022/components/primitive-textfield/primitive-textfield.component.mjs +2 -2
  15. package/esm2022/components/sheet/sheet-tokens.mjs +5 -5
  16. package/esm2022/components/svg/svg-options.mjs +4 -4
  17. package/esm2022/directives/textfield-controller/textfield-controller.provider.mjs +4 -3
  18. package/esm2022/tokens/focusable-item-accessor.mjs +3 -4
  19. package/esm2022/tokens/fonts-ready.mjs +4 -5
  20. package/esm2022/tokens/month-formatter.mjs +3 -3
  21. package/esm2022/tokens/sanitizer.mjs +3 -3
  22. package/esm2022/tokens/textfield-host.mjs +3 -4
  23. package/esm2022/tokens/value-accessor.mjs +3 -3
  24. package/fesm2022/taiga-ui-legacy-components-color-selector.mjs +5 -4
  25. package/fesm2022/taiga-ui-legacy-components-color-selector.mjs.map +1 -1
  26. package/fesm2022/taiga-ui-legacy-components-input-month-range.mjs.map +1 -1
  27. package/fesm2022/taiga-ui-legacy-components-input-number.mjs +2 -2
  28. package/fesm2022/taiga-ui-legacy-components-input-number.mjs.map +1 -1
  29. package/fesm2022/taiga-ui-legacy-components-input-tag.mjs +2 -2
  30. package/fesm2022/taiga-ui-legacy-components-input-tag.mjs.map +1 -1
  31. package/fesm2022/taiga-ui-legacy-components-input.mjs +13 -5
  32. package/fesm2022/taiga-ui-legacy-components-input.mjs.map +1 -1
  33. package/fesm2022/taiga-ui-legacy-components-primitive-textfield.mjs +2 -2
  34. package/fesm2022/taiga-ui-legacy-components-primitive-textfield.mjs.map +1 -1
  35. package/fesm2022/taiga-ui-legacy-components-sheet.mjs +5 -5
  36. package/fesm2022/taiga-ui-legacy-components-sheet.mjs.map +1 -1
  37. package/fesm2022/taiga-ui-legacy-components-svg.mjs +3 -3
  38. package/fesm2022/taiga-ui-legacy-components-svg.mjs.map +1 -1
  39. package/fesm2022/taiga-ui-legacy-directives-textfield-controller.mjs +2 -2
  40. package/fesm2022/taiga-ui-legacy-directives-textfield-controller.mjs.map +1 -1
  41. package/fesm2022/taiga-ui-legacy-tokens.mjs +7 -9
  42. package/fesm2022/taiga-ui-legacy-tokens.mjs.map +1 -1
  43. package/package.json +7 -7
  44. package/styles/mixins/textfield.less +1 -1
  45. package/styles/mixins/textfield.scss +1 -1
  46. package/tokens/focusable-item-accessor.d.ts +1 -2
  47. package/tokens/fonts-ready.d.ts +1 -2
  48. package/tokens/month-formatter.d.ts +1 -2
  49. package/tokens/sanitizer.d.ts +1 -2
  50. package/tokens/textfield-host.d.ts +1 -2
  51. package/tokens/value-accessor.d.ts +1 -2
  52. package/utils/icons-path-factory.d.ts +1 -1
@@ -1,5 +1,4 @@
1
1
  import type { FactoryProvider } from '@angular/core';
2
- import { InjectionToken } from '@angular/core';
3
2
  import type { TuiMonth } from '@taiga-ui/cdk/date-time';
4
3
  import type { TuiHandler } from '@taiga-ui/cdk/types';
5
4
  import type { Observable } from 'rxjs';
@@ -7,5 +6,5 @@ import type { Observable } from 'rxjs';
7
6
  * @deprecated: drop in v5.0
8
7
  * A function to get localized formatted month
9
8
  */
10
- export declare const TUI_MONTH_FORMATTER: InjectionToken<TuiHandler<TuiMonth | null, Observable<string>>>;
9
+ export declare const TUI_MONTH_FORMATTER: import("@angular/core").InjectionToken<TuiHandler<TuiMonth | null, Observable<string>>>;
11
10
  export declare const TUI_MONTH_FORMATTER_PROVIDER: FactoryProvider;
@@ -1,7 +1,6 @@
1
1
  import type { Sanitizer } from '@angular/core';
2
- import { InjectionToken } from '@angular/core';
3
2
  /**
4
3
  * @deprecated: drop in v5.0
5
4
  * A custom Sanitizer to sanitize source before inlining
6
5
  */
7
- export declare const TUI_SANITIZER: InjectionToken<Sanitizer>;
6
+ export declare const TUI_SANITIZER: import("@angular/core").InjectionToken<Sanitizer>;
@@ -1,5 +1,4 @@
1
1
  import type { Provider, Type } from '@angular/core';
2
- import { InjectionToken } from '@angular/core';
3
2
  /**
4
3
  * @deprecated: drop in v5.0
5
4
  */
@@ -17,7 +16,7 @@ export interface TuiTextfieldHost {
17
16
  * @deprecated: drop in v5.0
18
17
  * An interface to communicate with textfield based controls
19
18
  */
20
- export declare const TUI_TEXTFIELD_HOST: InjectionToken<TuiTextfieldHost>;
19
+ export declare const TUI_TEXTFIELD_HOST: import("@angular/core").InjectionToken<TuiTextfieldHost>;
21
20
  /**
22
21
  * @deprecated: drop in v5.0
23
22
  */
@@ -1,7 +1,6 @@
1
- import { InjectionToken } from '@angular/core';
2
1
  import type { ControlValueAccessor } from '@angular/forms';
3
2
  /**
4
3
  * @deprecated: drop in v5.0
5
4
  * Buffer token to pass NG_VALUE_ACCESSOR to a different Injector
6
5
  */
7
- export declare const TUI_VALUE_ACCESSOR: InjectionToken<ControlValueAccessor>;
6
+ export declare const TUI_VALUE_ACCESSOR: import("@angular/core").InjectionToken<ControlValueAccessor>;
@@ -2,7 +2,7 @@ import type { TuiStringHandler } from '@taiga-ui/cdk/types';
2
2
  /**
3
3
  * @deprecated: drop in v5.0
4
4
  */
5
- export declare const TUI_CACHE_BUSTING_PAYLOAD: "?v=4.8.1";
5
+ export declare const TUI_CACHE_BUSTING_PAYLOAD: "?v=4.9.0";
6
6
  /**
7
7
  * @deprecated: drop in v5.0
8
8
  */