@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.
- package/components/color-selector/color-selector.options.d.ts +2 -3
- package/components/input/input.module.d.ts +2 -1
- package/components/input-month-range/input-month-range.directive.d.ts +1 -1
- package/components/input-number/input-number.component.d.ts +1 -2
- package/components/sheet/sheet-tokens.d.ts +3 -4
- package/components/svg/svg-options.d.ts +2 -3
- package/directives/textfield-controller/textfield-controller.provider.d.ts +1 -2
- package/esm2022/components/color-selector/color-selector.options.mjs +5 -5
- package/esm2022/components/input/input.component.mjs +3 -2
- package/esm2022/components/input/input.module.mjs +12 -4
- package/esm2022/components/input-month-range/input-month-range.directive.mjs +2 -2
- package/esm2022/components/input-number/input-number.component.mjs +4 -4
- package/esm2022/components/input-tag/input-tag.component.mjs +3 -3
- package/esm2022/components/primitive-textfield/primitive-textfield.component.mjs +2 -2
- package/esm2022/components/sheet/sheet-tokens.mjs +5 -5
- package/esm2022/components/svg/svg-options.mjs +4 -4
- package/esm2022/directives/textfield-controller/textfield-controller.provider.mjs +4 -3
- package/esm2022/tokens/focusable-item-accessor.mjs +3 -4
- package/esm2022/tokens/fonts-ready.mjs +4 -5
- package/esm2022/tokens/month-formatter.mjs +3 -3
- package/esm2022/tokens/sanitizer.mjs +3 -3
- package/esm2022/tokens/textfield-host.mjs +3 -4
- package/esm2022/tokens/value-accessor.mjs +3 -3
- package/fesm2022/taiga-ui-legacy-components-color-selector.mjs +5 -4
- package/fesm2022/taiga-ui-legacy-components-color-selector.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-components-input-month-range.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-components-input-number.mjs +2 -2
- package/fesm2022/taiga-ui-legacy-components-input-number.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-components-input-tag.mjs +2 -2
- package/fesm2022/taiga-ui-legacy-components-input-tag.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-components-input.mjs +13 -5
- package/fesm2022/taiga-ui-legacy-components-input.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-components-primitive-textfield.mjs +2 -2
- package/fesm2022/taiga-ui-legacy-components-primitive-textfield.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-components-sheet.mjs +5 -5
- package/fesm2022/taiga-ui-legacy-components-sheet.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-components-svg.mjs +3 -3
- package/fesm2022/taiga-ui-legacy-components-svg.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-directives-textfield-controller.mjs +2 -2
- package/fesm2022/taiga-ui-legacy-directives-textfield-controller.mjs.map +1 -1
- package/fesm2022/taiga-ui-legacy-tokens.mjs +7 -9
- package/fesm2022/taiga-ui-legacy-tokens.mjs.map +1 -1
- package/package.json +7 -7
- package/styles/mixins/textfield.less +1 -1
- package/styles/mixins/textfield.scss +1 -1
- package/tokens/focusable-item-accessor.d.ts +1 -2
- package/tokens/fonts-ready.d.ts +1 -2
- package/tokens/month-formatter.d.ts +1 -2
- package/tokens/sanitizer.d.ts +1 -2
- package/tokens/textfield-host.d.ts +1 -2
- package/tokens/value-accessor.d.ts +1 -2
- 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;
|
package/tokens/sanitizer.d.ts
CHANGED
|
@@ -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>;
|