@taiga-ui/core 3.19.0 → 3.20.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/abstract/abstract-driver.directive.d.ts +9 -2
- package/abstract/driver.d.ts +1 -0
- package/abstract/position-accessor.d.ts +3 -1
- package/abstract/rect-accessor.d.ts +4 -1
- package/abstract/vehicle.d.ts +1 -0
- package/bundles/taiga-ui-core-abstract.umd.js +49 -10
- package/bundles/taiga-ui-core-abstract.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-button.umd.js +4 -1
- package/bundles/taiga-ui-core-components-button.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-dialog.umd.js +8 -2
- package/bundles/taiga-ui-core-components-dialog.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-loader.umd.js +4 -1
- package/bundles/taiga-ui-core-components-loader.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-primitive-checkbox.umd.js +4 -1
- package/bundles/taiga-ui-core-components-primitive-checkbox.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-root.umd.js +1 -1
- package/bundles/taiga-ui-core-components-svg.umd.js +4 -1
- package/bundles/taiga-ui-core-components-svg.umd.js.map +1 -1
- package/bundles/taiga-ui-core-directives-dropdown.umd.js +167 -110
- package/bundles/taiga-ui-core-directives-dropdown.umd.js.map +1 -1
- package/bundles/taiga-ui-core-directives-hint.umd.js +242 -181
- package/bundles/taiga-ui-core-directives-hint.umd.js.map +1 -1
- package/bundles/taiga-ui-core-directives-textfield-controller.umd.js +15 -12
- package/bundles/taiga-ui-core-directives-textfield-controller.umd.js.map +1 -1
- package/bundles/taiga-ui-core-tokens.umd.js +129 -37
- package/bundles/taiga-ui-core-tokens.umd.js.map +1 -1
- package/components/button/button-options.d.ts +3 -0
- package/components/dialog/dialog.tokens.d.ts +6 -0
- package/components/loader/loader-options.d.ts +3 -0
- package/components/primitive-checkbox/checkbox-options.d.ts +3 -0
- package/components/svg/svg-options.d.ts +3 -0
- package/directives/dropdown/dropdown-context.directive.d.ts +1 -0
- package/directives/dropdown/dropdown-driver.directive.d.ts +5 -2
- package/directives/dropdown/dropdown-host.directive.d.ts +1 -0
- package/directives/dropdown/dropdown-hover-options.directive.d.ts +3 -0
- package/directives/dropdown/dropdown-hover.directive.d.ts +1 -0
- package/directives/dropdown/dropdown-manual.directive.d.ts +1 -0
- package/directives/dropdown/dropdown-options.directive.d.ts +3 -0
- package/directives/dropdown/dropdown-position-sided.directive.d.ts +4 -3
- package/directives/dropdown/dropdown-position.directive.d.ts +7 -3
- package/directives/dropdown/dropdown-selection.directive.d.ts +1 -0
- package/directives/dropdown/dropdown.directive.d.ts +7 -4
- package/directives/dropdown/dropdown.providers.d.ts +3 -0
- package/directives/hint/hint-describe.directive.d.ts +3 -5
- package/directives/hint/hint-driver.directive.d.ts +5 -2
- package/directives/hint/hint-host.directive.d.ts +1 -0
- package/directives/hint/hint-hover.directive.d.ts +2 -0
- package/directives/hint/hint-manual.directive.d.ts +3 -1
- package/directives/hint/hint-options.directive.d.ts +3 -0
- package/directives/hint/hint-position.directive.d.ts +6 -3
- package/directives/hint/hint.directive.d.ts +3 -2
- package/directives/hint/hint.providers.d.ts +3 -0
- package/directives/textfield-controller/textfield-options.d.ts +3 -0
- package/esm2015/abstract/abstract-driver.directive.js +15 -7
- package/esm2015/abstract/driver.js +2 -1
- package/esm2015/abstract/position-accessor.js +10 -1
- package/esm2015/abstract/rect-accessor.js +14 -1
- package/esm2015/abstract/vehicle.js +2 -1
- package/esm2015/components/button/button-options.js +5 -2
- package/esm2015/components/dialog/dialog.tokens.js +9 -3
- package/esm2015/components/loader/loader-options.js +5 -2
- package/esm2015/components/primitive-checkbox/checkbox-options.js +5 -2
- package/esm2015/components/root/root.component.js +1 -1
- package/esm2015/components/svg/svg-options.js +5 -2
- package/esm2015/directives/dropdown/dropdown-context.directive.js +2 -1
- package/esm2015/directives/dropdown/dropdown-driver.directive.js +22 -5
- package/esm2015/directives/dropdown/dropdown-host.directive.js +5 -1
- package/esm2015/directives/dropdown/dropdown-hover-options.directive.js +5 -2
- package/esm2015/directives/dropdown/dropdown-hover.directive.js +2 -1
- package/esm2015/directives/dropdown/dropdown-manual.directive.js +4 -3
- package/esm2015/directives/dropdown/dropdown-options.directive.js +5 -2
- package/esm2015/directives/dropdown/dropdown-position-sided.directive.js +13 -12
- package/esm2015/directives/dropdown/dropdown-position.directive.js +27 -10
- package/esm2015/directives/dropdown/dropdown-selection.directive.js +2 -1
- package/esm2015/directives/dropdown/dropdown.component.js +19 -9
- package/esm2015/directives/dropdown/dropdown.directive.js +14 -19
- package/esm2015/directives/dropdown/dropdown.providers.js +5 -2
- package/esm2015/directives/hint/hint-describe.directive.js +5 -11
- package/esm2015/directives/hint/hint-driver.directive.js +22 -5
- package/esm2015/directives/hint/hint-host.directive.js +5 -1
- package/esm2015/directives/hint/hint-hover.directive.js +5 -3
- package/esm2015/directives/hint/hint-manual.directive.js +12 -5
- package/esm2015/directives/hint/hint-options.directive.js +5 -2
- package/esm2015/directives/hint/hint-position.directive.js +24 -10
- package/esm2015/directives/hint/hint.component.js +18 -4
- package/esm2015/directives/hint/hint.directive.js +3 -1
- package/esm2015/directives/hint/hint.providers.js +6 -2
- package/esm2015/directives/textfield-controller/textfield-appearance.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-cleaner.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-controller.provider.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-custom-content.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-filler.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-icon-left.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-icon.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-label-outside.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-options.js +5 -2
- package/esm2015/directives/textfield-controller/textfield-postfix.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-prefix.directive.js +2 -2
- package/esm2015/directives/textfield-controller/textfield-size.directive.js +2 -2
- package/esm2015/tokens/animation-options.js +5 -2
- package/esm2015/tokens/animations-duration.js +5 -2
- package/esm2015/tokens/assert-enabled.js +5 -2
- package/esm2015/tokens/data-list-accessor.js +5 -2
- package/esm2015/tokens/data-list-host.js +5 -2
- package/esm2015/tokens/day-type-handler.js +5 -2
- package/esm2015/tokens/document-or-shadow-root.js +2 -2
- package/esm2015/tokens/element-ref.js +5 -2
- package/esm2015/tokens/first-day-of-week.js +5 -2
- package/esm2015/tokens/i18n.js +25 -7
- package/esm2015/tokens/icon-place.js +3 -2
- package/esm2015/tokens/icons-path.js +5 -2
- package/esm2015/tokens/icons.js +5 -2
- package/esm2015/tokens/is-mobile-resolution.js +5 -2
- package/esm2015/tokens/media.js +5 -2
- package/esm2015/tokens/mode.js +5 -2
- package/esm2015/tokens/notification-options.js +5 -2
- package/esm2015/tokens/number-format.js +5 -2
- package/esm2015/tokens/option-content.js +5 -2
- package/esm2015/tokens/ordered-short-week-days.js +3 -2
- package/esm2015/tokens/sanitizer.js +5 -2
- package/esm2015/tokens/scroll-ref.js +5 -2
- package/esm2015/tokens/selection-stream.js +5 -2
- package/esm2015/tokens/svg-content-processor.js +3 -2
- package/esm2015/tokens/svg-src-processor.js +3 -2
- package/esm2015/tokens/textfield-appearance.js +7 -4
- package/esm2015/tokens/textfield-host.js +5 -2
- package/esm2015/tokens/theme.js +2 -2
- package/esm2015/tokens/value-accessor.js +5 -2
- package/esm2015/tokens/viewport.js +6 -2
- package/fesm2015/taiga-ui-core-abstract.js +39 -9
- package/fesm2015/taiga-ui-core-abstract.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-button.js +4 -1
- package/fesm2015/taiga-ui-core-components-button.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-dialog.js +8 -2
- package/fesm2015/taiga-ui-core-components-dialog.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-loader.js +4 -1
- package/fesm2015/taiga-ui-core-components-loader.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-primitive-checkbox.js +4 -1
- package/fesm2015/taiga-ui-core-components-primitive-checkbox.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-root.js +1 -1
- package/fesm2015/taiga-ui-core-components-svg.js +4 -1
- package/fesm2015/taiga-ui-core-components-svg.js.map +1 -1
- package/fesm2015/taiga-ui-core-directives-dropdown.js +104 -53
- package/fesm2015/taiga-ui-core-directives-dropdown.js.map +1 -1
- package/fesm2015/taiga-ui-core-directives-hint.js +187 -132
- package/fesm2015/taiga-ui-core-directives-hint.js.map +1 -1
- package/fesm2015/taiga-ui-core-directives-textfield-controller.js +15 -12
- package/fesm2015/taiga-ui-core-directives-textfield-controller.js.map +1 -1
- package/fesm2015/taiga-ui-core-tokens.js +129 -37
- package/fesm2015/taiga-ui-core-tokens.js.map +1 -1
- package/package.json +4 -4
- package/tokens/animation-options.d.ts +3 -0
- package/tokens/animations-duration.d.ts +3 -0
- package/tokens/assert-enabled.d.ts +3 -0
- package/tokens/data-list-accessor.d.ts +3 -0
- package/tokens/data-list-host.d.ts +3 -0
- package/tokens/day-type-handler.d.ts +3 -0
- package/tokens/element-ref.d.ts +3 -0
- package/tokens/first-day-of-week.d.ts +3 -0
- package/tokens/i18n.d.ts +18 -0
- package/tokens/icon-place.d.ts +1 -0
- package/tokens/icons-path.d.ts +1 -0
- package/tokens/icons.d.ts +3 -0
- package/tokens/is-mobile-resolution.d.ts +3 -0
- package/tokens/media.d.ts +3 -0
- package/tokens/mode.d.ts +3 -0
- package/tokens/notification-options.d.ts +3 -0
- package/tokens/number-format.d.ts +3 -0
- package/tokens/option-content.d.ts +3 -0
- package/tokens/ordered-short-week-days.d.ts +1 -0
- package/tokens/sanitizer.d.ts +3 -0
- package/tokens/scroll-ref.d.ts +3 -0
- package/tokens/selection-stream.d.ts +3 -0
- package/tokens/svg-content-processor.d.ts +1 -0
- package/tokens/svg-src-processor.d.ts +1 -0
- package/tokens/textfield-appearance.d.ts +5 -1
- package/tokens/textfield-host.d.ts +3 -0
- package/tokens/value-accessor.d.ts +3 -0
- package/tokens/viewport.d.ts +3 -0
package/tokens/sanitizer.d.ts
CHANGED
package/tokens/scroll-ref.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { InjectionToken } from '@angular/core';
|
|
|
2
2
|
import { SafeHtml } from '@angular/platform-browser';
|
|
3
3
|
import { TuiHandler } from '@taiga-ui/cdk';
|
|
4
4
|
/**
|
|
5
|
+
* Transform function the contents of the loaded svg file
|
|
5
6
|
* @deprecated Use {@link TUI_SVG_OPTIONS} instead
|
|
6
7
|
*/
|
|
7
8
|
export declare const TUI_SVG_CONTENT_PROCESSOR: InjectionToken<TuiHandler<string | SafeHtml, string | SafeHtml>>;
|
|
@@ -2,6 +2,7 @@ import { InjectionToken } from '@angular/core';
|
|
|
2
2
|
import { SafeHtml } from '@angular/platform-browser';
|
|
3
3
|
import { TuiHandler } from '@taiga-ui/cdk';
|
|
4
4
|
/**
|
|
5
|
+
* Source path processor for svg
|
|
5
6
|
* @deprecated Use {@link TUI_SVG_OPTIONS} instead
|
|
6
7
|
*/
|
|
7
8
|
export declare const TUI_SVG_SRC_PROCESSOR: InjectionToken<TuiHandler<string | SafeHtml, string | SafeHtml>>;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
|
-
/**
|
|
2
|
+
/**
|
|
3
|
+
* Appearance for inputs
|
|
4
|
+
* @deprecated use {@link TUI_TEXTFIELD_APPEARANCE_DIRECTIVE} instead
|
|
5
|
+
* TODO: Remove in 4.0
|
|
6
|
+
*/
|
|
3
7
|
export declare const TUI_TEXTFIELD_APPEARANCE: InjectionToken<string>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { InjectionToken, Provider, Type } from '@angular/core';
|
|
2
2
|
import { TuiTextfieldHost } from '@taiga-ui/core/interfaces';
|
|
3
|
+
/**
|
|
4
|
+
* An interface to communicate with textfield based controls
|
|
5
|
+
*/
|
|
3
6
|
export declare const TUI_TEXTFIELD_HOST: InjectionToken<TuiTextfieldHost>;
|
|
4
7
|
export declare function tuiAsTextfieldHost(useExisting: Type<TuiTextfieldHost>): Provider;
|
package/tokens/viewport.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { InjectionToken, Provider, Type } from '@angular/core';
|
|
2
2
|
import { TuiRectAccessor } from '@taiga-ui/core/abstract';
|
|
3
|
+
/**
|
|
4
|
+
* Viewport accessor
|
|
5
|
+
*/
|
|
3
6
|
export declare const TUI_VIEWPORT: InjectionToken<TuiRectAccessor>;
|
|
4
7
|
export declare function tuiAsViewport(useExisting: Type<TuiRectAccessor>): Provider;
|