@taiga-ui/cdk 3.57.0 → 3.59.0-canary.10da730
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/control.d.ts +1 -1
- package/abstract/controller.d.ts +1 -1
- package/abstract/dialog.directive.d.ts +1 -1
- package/abstract/interactive.d.ts +1 -1
- package/abstract/multiple-control.d.ts +1 -1
- package/abstract/nullable-control.d.ts +1 -1
- package/abstract/portal-host.d.ts +1 -1
- package/abstract/theme-switcher.d.ts +1 -1
- package/components/alert-host/alert-host.component.d.ts +1 -1
- package/components/dialog-host/dialog-host.component.d.ts +1 -1
- package/components/dropdown-host/dropdown-host.component.d.ts +1 -1
- package/components/scroll-controls/scroll-controls.component.d.ts +1 -1
- package/components/scroll-controls/scroll-ref.directive.d.ts +1 -1
- package/components/scroll-controls/scrollbar.directive.d.ts +1 -1
- package/constants/version.d.ts +1 -1
- package/constants/version.js +1 -1
- package/directives/active-zone/active-zone.directive.d.ts +1 -1
- package/directives/auto-focus/autofocus.directive.d.ts +1 -1
- package/directives/auto-focus/handlers/abstract.handler.d.ts +1 -1
- package/directives/auto-focus/handlers/default.handler.d.ts +1 -1
- package/directives/auto-focus/handlers/ios.handler.d.ts +1 -1
- package/directives/auto-focus/handlers/sync.handler.d.ts +1 -1
- package/directives/autofilled/autofilled-style.component.d.ts +1 -1
- package/directives/autofilled/autofilled.directive.d.ts +1 -1
- package/directives/checked/checked.directive.d.ts +1 -1
- package/directives/click-outside/click-outside.directive.d.ts +1 -1
- package/directives/control/control.directive.d.ts +1 -1
- package/directives/copy-processor/copy-processor.directive.d.ts +1 -1
- package/directives/drag/drag.directive.d.ts +1 -1
- package/directives/droppable/droppable.directive.d.ts +1 -1
- package/directives/element/element.directive.d.ts +1 -1
- package/directives/focus-trap/focus-trap.directive.d.ts +1 -1
- package/directives/focus-visible/focus-visible.directive.d.ts +1 -1
- package/directives/focusable/focusable.directive.d.ts +1 -1
- package/directives/focused/focused.directive.d.ts +1 -1
- package/directives/for/for.directive.d.ts +1 -1
- package/directives/for-async/for-async.directive.d.ts +1 -1
- package/directives/high-dpi/high-dpi.directive.d.ts +1 -1
- package/directives/hovered/hovered.directive.d.ts +1 -1
- package/directives/index.d.ts +1 -0
- package/directives/item/item.directive.d.ts +1 -1
- package/directives/let/let.directive.d.ts +1 -1
- package/directives/media/media.directive.d.ts +1 -1
- package/directives/native-validator/index.d.ts +1 -0
- package/directives/native-validator/native-validator.directive.d.ts +12 -0
- package/directives/obscured/obscured.directive.d.ts +1 -1
- package/directives/overscroll/overscroll.directive.d.ts +1 -1
- package/directives/pan/pan.directive.d.ts +1 -1
- package/directives/platform/platform.directive.d.ts +1 -1
- package/directives/portal/portal.directive.d.ts +1 -1
- package/directives/pressed/pressed.directive.d.ts +1 -1
- package/directives/prevent-default/prevent-default.directive.d.ts +1 -1
- package/directives/repeat-times/repeat-times.directive.d.ts +1 -1
- package/directives/resize/resize.directive.d.ts +1 -1
- package/directives/resizer/resizeable.directive.d.ts +1 -1
- package/directives/resizer/resizer.directive.d.ts +1 -1
- package/directives/swipe/swipe.directive.d.ts +1 -1
- package/directives/validator/validator.directive.d.ts +1 -1
- package/directives/value-changes/value-changes.directive.d.ts +1 -1
- package/directives/zoom/zoom.directive.d.ts +1 -1
- package/esm2020/abstract/control.mjs +188 -0
- package/esm2020/abstract/controller.mjs +17 -0
- package/esm2020/abstract/dialog.directive.mjs +35 -0
- package/esm2020/abstract/dialog.service.mjs +43 -0
- package/esm2020/abstract/interactive.mjs +84 -0
- package/esm2020/abstract/multiple-control.mjs +17 -0
- package/esm2020/abstract/nullable-control.mjs +14 -0
- package/esm2020/abstract/portal-host.mjs +50 -0
- package/esm2020/abstract/portal-service.mjs +39 -0
- package/esm2020/abstract/theme-switcher.mjs +45 -0
- package/esm2020/coercion/coerce-boolean-property.mjs +8 -0
- package/esm2020/components/alert-host/alert-host.component.mjs +60 -0
- package/esm2020/components/alert-host/alert-host.module.mjs +19 -0
- package/esm2020/components/dialog-host/dialog-host.component.mjs +127 -0
- package/esm2020/components/dialog-host/dialog-host.module.mjs +38 -0
- package/esm2020/components/dropdown-host/dropdown-host.component.mjs +24 -0
- package/esm2020/components/dropdown-host/dropdown-host.module.mjs +16 -0
- package/esm2020/components/dropdown-host/dropdown-portal.service.mjs +17 -0
- package/esm2020/components/scroll-controls/scroll-controls.component.mjs +40 -0
- package/esm2020/components/scroll-controls/scroll-controls.module.mjs +26 -0
- package/esm2020/components/scroll-controls/scroll-ref.directive.mjs +26 -0
- package/esm2020/components/scroll-controls/scrollbar.directive.mjs +132 -0
- package/esm2020/constants/empty.mjs +26 -0
- package/esm2020/constants/version.mjs +2 -0
- package/esm2020/directives/active-zone/active-zone.directive.mjs +77 -0
- package/esm2020/directives/active-zone/active-zone.module.mjs +16 -0
- package/esm2020/directives/auto-focus/autofocus.directive.mjs +54 -0
- package/esm2020/directives/auto-focus/autofocus.module.mjs +16 -0
- package/esm2020/directives/auto-focus/handlers/abstract.handler.mjs +20 -0
- package/esm2020/directives/auto-focus/handlers/default.handler.mjs +43 -0
- package/esm2020/directives/auto-focus/handlers/ios.handler.mjs +168 -0
- package/esm2020/directives/auto-focus/handlers/sync.handler.mjs +28 -0
- package/esm2020/directives/autofilled/autofilled-style.component.mjs +13 -0
- package/esm2020/directives/autofilled/autofilled.directive.mjs +40 -0
- package/esm2020/directives/autofilled/autofilled.module.mjs +17 -0
- package/esm2020/directives/checked/checked.directive.mjs +46 -0
- package/esm2020/directives/checked/checked.module.mjs +16 -0
- package/esm2020/directives/click-outside/click-outside.directive.mjs +38 -0
- package/esm2020/directives/click-outside/click-outside.module.mjs +16 -0
- package/esm2020/directives/control/control.directive.mjs +25 -0
- package/esm2020/directives/control/control.module.mjs +16 -0
- package/esm2020/directives/copy-processor/copy-processor.directive.mjs +34 -0
- package/esm2020/directives/copy-processor/copy-processor.module.mjs +16 -0
- package/esm2020/directives/drag/drag.directive.mjs +37 -0
- package/esm2020/directives/drag/drag.module.mjs +19 -0
- package/esm2020/directives/droppable/droppable.directive.mjs +39 -0
- package/esm2020/directives/droppable/droppable.module.mjs +16 -0
- package/esm2020/directives/element/element.directive.mjs +34 -0
- package/esm2020/directives/element/element.module.mjs +16 -0
- package/esm2020/directives/focus-trap/focus-trap.directive.mjs +77 -0
- package/esm2020/directives/focus-trap/focus-trap.module.mjs +16 -0
- package/esm2020/directives/focus-visible/focus-visible.directive.mjs +28 -0
- package/esm2020/directives/focus-visible/focus-visible.module.mjs +16 -0
- package/esm2020/directives/focusable/focusable.directive.mjs +31 -0
- package/esm2020/directives/focusable/focusable.module.mjs +16 -0
- package/esm2020/directives/focused/focused.directive.mjs +32 -0
- package/esm2020/directives/focused/focused.module.mjs +16 -0
- package/esm2020/directives/for/for.directive.mjs +35 -0
- package/esm2020/directives/for/for.module.mjs +16 -0
- package/esm2020/directives/for-async/for-async.directive.mjs +59 -0
- package/esm2020/directives/for-async/for-async.module.mjs +20 -0
- package/esm2020/directives/high-dpi/high-dpi.directive.mjs +31 -0
- package/esm2020/directives/high-dpi/high-dpi.module.mjs +16 -0
- package/esm2020/directives/hovered/hovered.directive.mjs +23 -0
- package/esm2020/directives/hovered/hovered.module.mjs +16 -0
- package/esm2020/directives/hovered/hovered.service.mjs +33 -0
- package/esm2020/directives/index.mjs +37 -0
- package/esm2020/directives/item/item.directive.mjs +16 -0
- package/esm2020/directives/item/item.module.mjs +16 -0
- package/esm2020/directives/let/let.directive.mjs +38 -0
- package/esm2020/directives/let/let.module.mjs +16 -0
- package/esm2020/directives/media/media.directive.mjs +109 -0
- package/esm2020/directives/media/media.module.mjs +16 -0
- package/esm2020/directives/native-validator/index.mjs +2 -0
- package/esm2020/directives/native-validator/native-validator.directive.mjs +46 -0
- package/esm2020/directives/native-validator/taiga-ui-cdk-directives-native-validator.mjs +5 -0
- package/esm2020/directives/obscured/obscured.directive.mjs +48 -0
- package/esm2020/directives/obscured/obscured.module.mjs +16 -0
- package/esm2020/directives/overscroll/overscroll.directive.mjs +102 -0
- package/esm2020/directives/overscroll/overscroll.module.mjs +16 -0
- package/esm2020/directives/pan/pan.directive.mjs +23 -0
- package/esm2020/directives/pan/pan.module.mjs +19 -0
- package/esm2020/directives/platform/platform.directive.mjs +35 -0
- package/esm2020/directives/platform/platform.module.mjs +16 -0
- package/esm2020/directives/portal/portal.directive.mjs +36 -0
- package/esm2020/directives/portal/portal.module.mjs +16 -0
- package/esm2020/directives/pressed/pressed.directive.mjs +30 -0
- package/esm2020/directives/pressed/pressed.module.mjs +16 -0
- package/esm2020/directives/prevent-default/prevent-default.directive.mjs +48 -0
- package/esm2020/directives/prevent-default/prevent-default.module.mjs +19 -0
- package/esm2020/directives/repeat-times/repeat-times.directive.mjs +59 -0
- package/esm2020/directives/repeat-times/repeat-times.module.mjs +16 -0
- package/esm2020/directives/resize/resize.directive.mjs +23 -0
- package/esm2020/directives/resize/resize.module.mjs +19 -0
- package/esm2020/directives/resizer/resizeable.directive.mjs +14 -0
- package/esm2020/directives/resizer/resizer.directive.mjs +106 -0
- package/esm2020/directives/resizer/resizer.module.mjs +17 -0
- package/esm2020/directives/swipe/swipe.directive.mjs +23 -0
- package/esm2020/directives/swipe/swipe.module.mjs +19 -0
- package/esm2020/directives/validator/validator.directive.mjs +47 -0
- package/esm2020/directives/validator/validator.module.mjs +16 -0
- package/esm2020/directives/value-changes/value-changes.directive.mjs +37 -0
- package/esm2020/directives/value-changes/value-changes.module.mjs +16 -0
- package/esm2020/directives/zoom/zoom.directive.mjs +26 -0
- package/esm2020/directives/zoom/zoom.module.mjs +19 -0
- package/esm2020/observables/control-value.mjs +14 -0
- package/esm2020/observables/drag-and-drop-from.mjs +27 -0
- package/esm2020/observables/focus-visible-observable.mjs +30 -0
- package/esm2020/observables/if-map.mjs +5 -0
- package/esm2020/observables/is-alive.mjs +9 -0
- package/esm2020/observables/is-observed.mjs +6 -0
- package/esm2020/observables/items-query-list-observable.mjs +13 -0
- package/esm2020/observables/must-be-present.mjs +12 -0
- package/esm2020/observables/pressed-observable.mjs +13 -0
- package/esm2020/observables/prevent-default.mjs +5 -0
- package/esm2020/observables/stop-propagation.mjs +7 -0
- package/esm2020/observables/watch.mjs +7 -0
- package/esm2020/pipes/filter/filter.module.mjs +16 -0
- package/esm2020/pipes/filter/filter.pipe.mjs +14 -0
- package/esm2020/pipes/is-present/is-present.module.mjs +16 -0
- package/esm2020/pipes/is-present/is-present.pipe.mjs +15 -0
- package/esm2020/pipes/keys/keys.module.mjs +16 -0
- package/esm2020/pipes/keys/keys.pipe.mjs +14 -0
- package/esm2020/pipes/mapper/mapper.module.mjs +16 -0
- package/esm2020/pipes/mapper/mapper.pipe.mjs +14 -0
- package/esm2020/pipes/replace/replace.module.mjs +16 -0
- package/esm2020/pipes/replace/replace.pipe.mjs +16 -0
- package/esm2020/services/destroy.service.mjs +26 -0
- package/esm2020/services/directive-styles.service.mjs +32 -0
- package/esm2020/services/focus-visible.service.mjs +34 -0
- package/esm2020/services/id.service.mjs +21 -0
- package/esm2020/services/obscured.service.mjs +53 -0
- package/esm2020/services/pan.service.mjs +34 -0
- package/esm2020/services/parents-scroll.service.mjs +36 -0
- package/esm2020/services/resize.service.mjs +47 -0
- package/esm2020/services/scroll.service.mjs +58 -0
- package/esm2020/services/static-request.service.mjs +49 -0
- package/esm2020/services/swipe.service.mjs +50 -0
- package/esm2020/services/zoom.service.mjs +53 -0
- package/esm2020/tokens/active-element.mjs +60 -0
- package/esm2020/tokens/base-href.mjs +5 -0
- package/esm2020/tokens/ensure-base-href.mjs +16 -0
- package/esm2020/tokens/fonts-ready.mjs +7 -0
- package/esm2020/tokens/is-firefox.mjs +9 -0
- package/esm2020/tokens/is-webkit.mjs +9 -0
- package/esm2020/tokens/removed-element.mjs +19 -0
- package/esm2020/tokens/window-height.mjs +9 -0
- package/esm2020/tokens/window-size.mjs +28 -0
- package/esm2020/utils/browser/is-safari.mjs +10 -0
- package/esm2020/utils/color/hex-to-rgba.mjs +30 -0
- package/esm2020/utils/color/rgba-to-hex.mjs +26 -0
- package/esm2020/utils/dom/contains-or-after.mjs +10 -0
- package/esm2020/utils/dom/get-element-obscurers.mjs +43 -0
- package/esm2020/utils/dom/get-selected-text.mjs +15 -0
- package/esm2020/utils/dom/is-node-in.mjs +14 -0
- package/esm2020/utils/dom/point-to-client-rect.mjs +19 -0
- package/esm2020/utils/dom/retarget-boundary-crossing.mjs +16 -0
- package/esm2020/utils/focus/get-native-focused.mjs +16 -0
- package/esm2020/utils/focus/is-native-focused.mjs +15 -0
- package/esm2020/utils/miscellaneous/is-number.mjs +4 -0
- package/esm2020/utils/miscellaneous/is-object.mjs +4 -0
- package/esm2020/utils/miscellaneous/is-string.mjs +4 -0
- package/esm2020/utils/miscellaneous/object-from-entries.mjs +12 -0
- package/esm2020/utils/miscellaneous/provide-options.mjs +12 -0
- package/esm2020/utils/svg/svg-linear-gradient-processor.mjs +64 -0
- package/fesm2015/taiga-ui-cdk-abstract.mjs +523 -0
- package/fesm2015/taiga-ui-cdk-abstract.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-classes.mjs +29 -0
- package/fesm2015/taiga-ui-cdk-classes.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-coercion.mjs +14 -0
- package/fesm2015/taiga-ui-cdk-coercion.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components-alert-host.mjs +85 -0
- package/fesm2015/taiga-ui-cdk-components-alert-host.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components-dialog-host.mjs +170 -0
- package/fesm2015/taiga-ui-cdk-components-dialog-host.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components-dropdown-host.mjs +57 -0
- package/fesm2015/taiga-ui-cdk-components-dropdown-host.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components-scroll-controls.mjs +218 -0
- package/fesm2015/taiga-ui-cdk-components-scroll-controls.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components.mjs +9 -0
- package/fesm2015/taiga-ui-cdk-components.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-constants.mjs +237 -0
- package/fesm2015/taiga-ui-cdk-constants.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-date-time.mjs +821 -0
- package/fesm2015/taiga-ui-cdk-date-time.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-decorators.mjs +193 -0
- package/fesm2015/taiga-ui-cdk-decorators.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-active-zone.mjs +102 -0
- package/fesm2015/taiga-ui-cdk-directives-active-zone.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-auto-focus.mjs +355 -0
- package/fesm2015/taiga-ui-cdk-directives-auto-focus.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-autofilled.mjs +72 -0
- package/fesm2015/taiga-ui-cdk-directives-autofilled.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-checked.mjs +66 -0
- package/fesm2015/taiga-ui-cdk-directives-checked.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-click-outside.mjs +60 -0
- package/fesm2015/taiga-ui-cdk-directives-click-outside.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-control.mjs +47 -0
- package/fesm2015/taiga-ui-cdk-directives-control.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-copy-processor.mjs +57 -0
- package/fesm2015/taiga-ui-cdk-directives-copy-processor.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-drag.mjs +62 -0
- package/fesm2015/taiga-ui-cdk-directives-drag.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-droppable.mjs +61 -0
- package/fesm2015/taiga-ui-cdk-directives-droppable.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-element.mjs +56 -0
- package/fesm2015/taiga-ui-cdk-directives-element.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-focus-trap.mjs +99 -0
- package/fesm2015/taiga-ui-cdk-directives-focus-trap.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-focus-visible.mjs +50 -0
- package/fesm2015/taiga-ui-cdk-directives-focus-visible.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-focusable.mjs +51 -0
- package/fesm2015/taiga-ui-cdk-directives-focusable.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-focused.mjs +54 -0
- package/fesm2015/taiga-ui-cdk-directives-focused.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-for-async.mjs +86 -0
- package/fesm2015/taiga-ui-cdk-directives-for-async.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-for.mjs +58 -0
- package/fesm2015/taiga-ui-cdk-directives-for.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-high-dpi.mjs +53 -0
- package/fesm2015/taiga-ui-cdk-directives-high-dpi.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-hovered.mjs +77 -0
- package/fesm2015/taiga-ui-cdk-directives-hovered.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-item.mjs +36 -0
- package/fesm2015/taiga-ui-cdk-directives-item.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-let.mjs +74 -0
- package/fesm2015/taiga-ui-cdk-directives-let.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-media.mjs +131 -0
- package/fesm2015/taiga-ui-cdk-directives-media.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-native-validator.mjs +54 -0
- package/fesm2015/taiga-ui-cdk-directives-native-validator.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-obscured.mjs +70 -0
- package/fesm2015/taiga-ui-cdk-directives-obscured.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-overscroll.mjs +124 -0
- package/fesm2015/taiga-ui-cdk-directives-overscroll.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-pan.mjs +48 -0
- package/fesm2015/taiga-ui-cdk-directives-pan.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-platform.mjs +55 -0
- package/fesm2015/taiga-ui-cdk-directives-platform.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-portal.mjs +60 -0
- package/fesm2015/taiga-ui-cdk-directives-portal.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-pressed.mjs +52 -0
- package/fesm2015/taiga-ui-cdk-directives-pressed.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-prevent-default.mjs +73 -0
- package/fesm2015/taiga-ui-cdk-directives-prevent-default.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-repeat-times.mjs +81 -0
- package/fesm2015/taiga-ui-cdk-directives-repeat-times.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-resize.mjs +48 -0
- package/fesm2015/taiga-ui-cdk-directives-resize.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-resizer.mjs +139 -0
- package/fesm2015/taiga-ui-cdk-directives-resizer.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-swipe.mjs +48 -0
- package/fesm2015/taiga-ui-cdk-directives-swipe.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-validator.mjs +67 -0
- package/fesm2015/taiga-ui-cdk-directives-validator.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-value-changes.mjs +60 -0
- package/fesm2015/taiga-ui-cdk-directives-value-changes.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-zoom.mjs +51 -0
- package/fesm2015/taiga-ui-cdk-directives-zoom.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives.mjs +41 -0
- package/fesm2015/taiga-ui-cdk-directives.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-enums.mjs +37 -0
- package/fesm2015/taiga-ui-cdk-enums.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-exceptions.mjs +84 -0
- package/fesm2015/taiga-ui-cdk-exceptions.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-interfaces.mjs +4 -0
- package/fesm2015/taiga-ui-cdk-interfaces.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-observables.mjs +171 -0
- package/fesm2015/taiga-ui-cdk-observables.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-filter.mjs +34 -0
- package/fesm2015/taiga-ui-cdk-pipes-filter.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-is-present.mjs +35 -0
- package/fesm2015/taiga-ui-cdk-pipes-is-present.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-keys.mjs +34 -0
- package/fesm2015/taiga-ui-cdk-pipes-keys.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-mapper.mjs +34 -0
- package/fesm2015/taiga-ui-cdk-pipes-mapper.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-replace.mjs +37 -0
- package/fesm2015/taiga-ui-cdk-pipes-replace.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes.mjs +10 -0
- package/fesm2015/taiga-ui-cdk-pipes.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-services.mjs +468 -0
- package/fesm2015/taiga-ui-cdk-services.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-tokens.mjs +286 -0
- package/fesm2015/taiga-ui-cdk-tokens.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-types.mjs +4 -0
- package/fesm2015/taiga-ui-cdk-types.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-browser.mjs +31 -0
- package/fesm2015/taiga-ui-cdk-utils-browser.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-color.mjs +125 -0
- package/fesm2015/taiga-ui-cdk-utils-color.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-dom.mjs +259 -0
- package/fesm2015/taiga-ui-cdk-utils-dom.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-focus.mjs +171 -0
- package/fesm2015/taiga-ui-cdk-utils-focus.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-format.mjs +16 -0
- package/fesm2015/taiga-ui-cdk-utils-format.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-math.mjs +135 -0
- package/fesm2015/taiga-ui-cdk-utils-math.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-miscellaneous.mjs +184 -0
- package/fesm2015/taiga-ui-cdk-utils-miscellaneous.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-os.mjs +31 -0
- package/fesm2015/taiga-ui-cdk-utils-os.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-svg.mjs +72 -0
- package/fesm2015/taiga-ui-cdk-utils-svg.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils.mjs +14 -0
- package/fesm2015/taiga-ui-cdk-utils.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk.mjs +22 -0
- package/fesm2015/taiga-ui-cdk.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-abstract.mjs +513 -0
- package/fesm2020/taiga-ui-cdk-abstract.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-classes.mjs +29 -0
- package/fesm2020/taiga-ui-cdk-classes.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-coercion.mjs +14 -0
- package/fesm2020/taiga-ui-cdk-coercion.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components-alert-host.mjs +83 -0
- package/fesm2020/taiga-ui-cdk-components-alert-host.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components-dialog-host.mjs +168 -0
- package/fesm2020/taiga-ui-cdk-components-dialog-host.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components-dropdown-host.mjs +57 -0
- package/fesm2020/taiga-ui-cdk-components-dropdown-host.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components-scroll-controls.mjs +214 -0
- package/fesm2020/taiga-ui-cdk-components-scroll-controls.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components.mjs +9 -0
- package/fesm2020/taiga-ui-cdk-components.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-constants.mjs +240 -0
- package/fesm2020/taiga-ui-cdk-constants.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-date-time.mjs +821 -0
- package/fesm2020/taiga-ui-cdk-date-time.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-decorators.mjs +193 -0
- package/fesm2020/taiga-ui-cdk-decorators.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-active-zone.mjs +97 -0
- package/fesm2020/taiga-ui-cdk-directives-active-zone.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-auto-focus.mjs +345 -0
- package/fesm2020/taiga-ui-cdk-directives-auto-focus.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-autofilled.mjs +70 -0
- package/fesm2020/taiga-ui-cdk-directives-autofilled.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-checked.mjs +66 -0
- package/fesm2020/taiga-ui-cdk-directives-checked.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-click-outside.mjs +58 -0
- package/fesm2020/taiga-ui-cdk-directives-click-outside.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-control.mjs +45 -0
- package/fesm2020/taiga-ui-cdk-directives-control.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-copy-processor.mjs +54 -0
- package/fesm2020/taiga-ui-cdk-directives-copy-processor.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-drag.mjs +60 -0
- package/fesm2020/taiga-ui-cdk-directives-drag.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-droppable.mjs +59 -0
- package/fesm2020/taiga-ui-cdk-directives-droppable.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-element.mjs +54 -0
- package/fesm2020/taiga-ui-cdk-directives-element.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-focus-trap.mjs +97 -0
- package/fesm2020/taiga-ui-cdk-directives-focus-trap.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-focus-visible.mjs +48 -0
- package/fesm2020/taiga-ui-cdk-directives-focus-visible.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-focusable.mjs +51 -0
- package/fesm2020/taiga-ui-cdk-directives-focusable.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-focused.mjs +52 -0
- package/fesm2020/taiga-ui-cdk-directives-focused.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-for-async.mjs +83 -0
- package/fesm2020/taiga-ui-cdk-directives-for-async.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-for.mjs +55 -0
- package/fesm2020/taiga-ui-cdk-directives-for.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-high-dpi.mjs +51 -0
- package/fesm2020/taiga-ui-cdk-directives-high-dpi.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-hovered.mjs +73 -0
- package/fesm2020/taiga-ui-cdk-directives-hovered.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-item.mjs +36 -0
- package/fesm2020/taiga-ui-cdk-directives-item.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-let.mjs +72 -0
- package/fesm2020/taiga-ui-cdk-directives-let.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-media.mjs +129 -0
- package/fesm2020/taiga-ui-cdk-directives-media.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-native-validator.mjs +53 -0
- package/fesm2020/taiga-ui-cdk-directives-native-validator.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-obscured.mjs +68 -0
- package/fesm2020/taiga-ui-cdk-directives-obscured.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-overscroll.mjs +122 -0
- package/fesm2020/taiga-ui-cdk-directives-overscroll.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-pan.mjs +46 -0
- package/fesm2020/taiga-ui-cdk-directives-pan.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-platform.mjs +55 -0
- package/fesm2020/taiga-ui-cdk-directives-platform.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-portal.mjs +56 -0
- package/fesm2020/taiga-ui-cdk-directives-portal.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-pressed.mjs +50 -0
- package/fesm2020/taiga-ui-cdk-directives-pressed.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-prevent-default.mjs +71 -0
- package/fesm2020/taiga-ui-cdk-directives-prevent-default.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-repeat-times.mjs +79 -0
- package/fesm2020/taiga-ui-cdk-directives-repeat-times.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-resize.mjs +46 -0
- package/fesm2020/taiga-ui-cdk-directives-resize.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-resizer.mjs +137 -0
- package/fesm2020/taiga-ui-cdk-directives-resizer.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-swipe.mjs +46 -0
- package/fesm2020/taiga-ui-cdk-directives-swipe.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-validator.mjs +67 -0
- package/fesm2020/taiga-ui-cdk-directives-validator.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-value-changes.mjs +57 -0
- package/fesm2020/taiga-ui-cdk-directives-value-changes.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-zoom.mjs +49 -0
- package/fesm2020/taiga-ui-cdk-directives-zoom.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives.mjs +41 -0
- package/fesm2020/taiga-ui-cdk-directives.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-enums.mjs +37 -0
- package/fesm2020/taiga-ui-cdk-enums.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-exceptions.mjs +84 -0
- package/fesm2020/taiga-ui-cdk-exceptions.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-interfaces.mjs +4 -0
- package/fesm2020/taiga-ui-cdk-interfaces.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-observables.mjs +170 -0
- package/fesm2020/taiga-ui-cdk-observables.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-filter.mjs +34 -0
- package/fesm2020/taiga-ui-cdk-pipes-filter.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-is-present.mjs +35 -0
- package/fesm2020/taiga-ui-cdk-pipes-is-present.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-keys.mjs +34 -0
- package/fesm2020/taiga-ui-cdk-pipes-keys.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-mapper.mjs +34 -0
- package/fesm2020/taiga-ui-cdk-pipes-mapper.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-replace.mjs +36 -0
- package/fesm2020/taiga-ui-cdk-pipes-replace.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes.mjs +10 -0
- package/fesm2020/taiga-ui-cdk-pipes.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-services.mjs +446 -0
- package/fesm2020/taiga-ui-cdk-services.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-tokens.mjs +283 -0
- package/fesm2020/taiga-ui-cdk-tokens.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-types.mjs +4 -0
- package/fesm2020/taiga-ui-cdk-types.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-browser.mjs +30 -0
- package/fesm2020/taiga-ui-cdk-utils-browser.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-color.mjs +124 -0
- package/fesm2020/taiga-ui-cdk-utils-color.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-dom.mjs +260 -0
- package/fesm2020/taiga-ui-cdk-utils-dom.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-focus.mjs +171 -0
- package/fesm2020/taiga-ui-cdk-utils-focus.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-format.mjs +16 -0
- package/fesm2020/taiga-ui-cdk-utils-format.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-math.mjs +135 -0
- package/fesm2020/taiga-ui-cdk-utils-math.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-miscellaneous.mjs +187 -0
- package/fesm2020/taiga-ui-cdk-utils-miscellaneous.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-os.mjs +31 -0
- package/fesm2020/taiga-ui-cdk-utils-os.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-svg.mjs +71 -0
- package/fesm2020/taiga-ui-cdk-utils-svg.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils.mjs +14 -0
- package/fesm2020/taiga-ui-cdk-utils.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk.mjs +22 -0
- package/fesm2020/taiga-ui-cdk.mjs.map +1 -0
- package/interfaces/alert-context.d.ts +1 -1
- package/interfaces/safe-html.d.ts +1 -1
- package/interfaces/swipe.d.ts +1 -1
- package/package.json +650 -69
- package/pipes/filter/filter.pipe.d.ts +1 -1
- package/pipes/is-present/is-present.pipe.d.ts +1 -1
- package/pipes/keys/keys.pipe.d.ts +1 -1
- package/pipes/mapper/mapper.pipe.d.ts +1 -1
- package/pipes/replace/replace.pipe.d.ts +1 -1
- package/schematics/ng-add/index.js +9 -9
- package/schematics/ng-add/setup-project.js +5 -5
- package/schematics/ng-add/steps/add-taiga-icons.js +3 -3
- package/schematics/ng-add/steps/add-taiga-modules.js +18 -18
- package/schematics/ng-add/steps/add-taiga-styles.js +1 -1
- package/schematics/ng-add/steps/wrap-with-tui-root.js +8 -8
- package/schematics/ng-update/interfaces/asset.d.ts +1 -1
- package/schematics/ng-update/interfaces/template-resource.d.ts +1 -1
- package/schematics/ng-update/steps/icons/replace-imports.js +5 -5
- package/schematics/ng-update/steps/remove-module.js +4 -4
- package/schematics/ng-update/steps/rename-types.js +6 -6
- package/schematics/ng-update/steps/replace-deep-import.js +4 -4
- package/schematics/ng-update/steps/replace-enums.js +4 -4
- package/schematics/ng-update/steps/replace-identifier.js +5 -5
- package/schematics/ng-update/steps/replace-services.js +6 -6
- package/schematics/ng-update/steps/show-warnings.js +1 -1
- package/schematics/ng-update/utils/get-file-system.js +2 -2
- package/schematics/ng-update/utils/replace-text.js +1 -1
- package/schematics/ng-update/utils/templates/remove-inputs.js +4 -4
- package/schematics/ng-update/utils/templates/replace-attr-values.js +3 -3
- package/schematics/ng-update/utils/templates/replace-attrs-by-directives.js +1 -1
- package/schematics/ng-update/utils/templates/replace-attrs.js +4 -4
- package/schematics/ng-update/utils/templates/replace-tags.js +4 -4
- package/schematics/ng-update/utils/templates/template-comments.js +4 -4
- package/schematics/ng-update/v3/constants/templates.js +3 -3
- package/schematics/ng-update/v3/index.js +27 -29
- package/schematics/ng-update/v3/steps/migrate-date-time.js +12 -12
- package/schematics/ng-update/v3/steps/migrate-polymorpheus.js +8 -8
- package/schematics/ng-update/v3/steps/migrate-progress.js +9 -9
- package/schematics/ng-update/v3/steps/migrate-sliders/index.js +6 -6
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.js +11 -11
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.js +13 -13
- package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.js +7 -7
- package/schematics/ng-update/v3/steps/migrate-templates.js +36 -36
- package/schematics/ng-update/v3/steps/migrate-textfield-controller.js +6 -6
- package/schematics/ng-update/v3/steps/miscellaneous.js +5 -5
- package/schematics/ng-update/v3/steps/replace-functions.js +17 -17
- package/schematics/ng-update/v3/steps/replace-styles.js +1 -1
- package/schematics/ng-update/v3-30/index.js +8 -8
- package/schematics/ng-update/v3-35/index.js +8 -8
- package/schematics/ng-update/v3-36/index.js +9 -9
- package/schematics/ng-update/v3-40/index.js +14 -14
- package/schematics/ng-update/v3-5/index.js +4 -4
- package/schematics/ng-update/v3-5/steps/migrate-expand-templates.js +9 -9
- package/schematics/ng-update/v4/index.js +10 -10
- package/schematics/ng-update/v4/steps/migrate-templates.js +5 -5
- package/schematics/ng-update/v4/steps/restore-tui-mapper.js +5 -5
- package/schematics/ng-update/v4/steps/restore-tui-matcher.js +5 -5
- package/schematics/ng-update/v4/steps/templates/migrate-avatar.js +4 -4
- package/schematics/ng-update/v4/steps/templates/migrate-badge.js +3 -3
- package/schematics/ng-update/v4/steps/templates/toggles/migrate-checkbox.js +7 -7
- package/schematics/ng-update/v4/steps/templates/toggles/migrate-radio.js +7 -7
- package/schematics/ng-update/v4/steps/templates/toggles/migrate-toggle.js +7 -7
- package/schematics/utils/add-import-to-closest-module.js +7 -7
- package/schematics/utils/add-import-to-component.js +1 -1
- package/schematics/utils/add-unique-import.js +4 -4
- package/schematics/utils/angular/ng-component.js +1 -1
- package/schematics/utils/angular/ng-module.js +2 -2
- package/schematics/utils/angular-json-manipulations.js +6 -6
- package/schematics/utils/create-angular-json.js +4 -2
- package/schematics/utils/get-component-from-identifier.js +2 -2
- package/schematics/utils/get-named-import-references.js +2 -2
- package/schematics/utils/get-projects.js +1 -3
- package/schematics/utils/get-standalone-bootstrap-function.js +1 -1
- package/schematics/utils/progress.js +3 -3
- package/schematics/utils/push-to-array-property.js +0 -1
- package/schematics/utils/templates/elements.js +1 -1
- package/schematics/utils/templates/get-component-templates.js +1 -1
- package/schematics/utils/templates/ng-component-input-manipulations.js +12 -12
- package/tokens/window-size.d.ts +1 -1
- package/types/autocomplete.d.ts +1 -1
- package/types/date-mode.d.ts +1 -1
- package/types/deep-partial.d.ts +1 -1
- package/types/dialog.d.ts +1 -1
- package/types/event-with.d.ts +1 -1
- package/types/handler.d.ts +4 -4
- package/types/injection-token-type.d.ts +1 -1
- package/types/input-mode.d.ts +1 -1
- package/types/input-type.d.ts +1 -1
- package/types/mapper.d.ts +2 -2
- package/types/matcher.d.ts +4 -4
- package/types/overscroll-mode.d.ts +1 -1
- package/types/platform.d.ts +1 -1
- package/types/rounding.d.ts +1 -1
- package/types/time-mode.d.ts +1 -1
- package/types/values-of.d.ts +1 -1
- package/utils/miscellaneous/is-string.js +0 -1
- package/abstract/package.json +0 -10
- package/abstract/taiga-ui-cdk-abstract.d.ts +0 -5
- package/bundles/taiga-ui-cdk-abstract.umd.js +0 -997
- package/bundles/taiga-ui-cdk-abstract.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-classes.umd.js +0 -40
- package/bundles/taiga-ui-cdk-classes.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-coercion.umd.js +0 -26
- package/bundles/taiga-ui-cdk-coercion.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components-alert-host.umd.js +0 -122
- package/bundles/taiga-ui-cdk-components-alert-host.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components-dialog-host.umd.js +0 -522
- package/bundles/taiga-ui-cdk-components-dialog-host.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components-dropdown-host.umd.js +0 -422
- package/bundles/taiga-ui-cdk-components-dropdown-host.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components-scroll-controls.umd.js +0 -609
- package/bundles/taiga-ui-cdk-components-scroll-controls.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components.umd.js +0 -39
- package/bundles/taiga-ui-cdk-components.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-constants.umd.js +0 -278
- package/bundles/taiga-ui-cdk-constants.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-date-time.umd.js +0 -1242
- package/bundles/taiga-ui-cdk-date-time.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-decorators.umd.js +0 -545
- package/bundles/taiga-ui-cdk-decorators.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-active-zone.umd.js +0 -451
- package/bundles/taiga-ui-cdk-directives-active-zone.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-auto-focus.umd.js +0 -728
- package/bundles/taiga-ui-cdk-directives-auto-focus.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-autofilled.umd.js +0 -115
- package/bundles/taiga-ui-cdk-directives-autofilled.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-checked.umd.js +0 -111
- package/bundles/taiga-ui-cdk-directives-checked.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-click-outside.umd.js +0 -89
- package/bundles/taiga-ui-cdk-directives-click-outside.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-control.umd.js +0 -82
- package/bundles/taiga-ui-cdk-directives-control.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-copy-processor.umd.js +0 -86
- package/bundles/taiga-ui-cdk-directives-copy-processor.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-drag.umd.js +0 -110
- package/bundles/taiga-ui-cdk-directives-drag.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-droppable.umd.js +0 -93
- package/bundles/taiga-ui-cdk-directives-droppable.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-element.umd.js +0 -89
- package/bundles/taiga-ui-cdk-directives-element.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-focus-trap.umd.js +0 -130
- package/bundles/taiga-ui-cdk-directives-focus-trap.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-focus-visible.umd.js +0 -81
- package/bundles/taiga-ui-cdk-directives-focus-visible.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-focusable.umd.js +0 -87
- package/bundles/taiga-ui-cdk-directives-focusable.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-focused.umd.js +0 -84
- package/bundles/taiga-ui-cdk-directives-focused.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-for-async.umd.js +0 -443
- package/bundles/taiga-ui-cdk-directives-for-async.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-for.umd.js +0 -90
- package/bundles/taiga-ui-cdk-directives-for.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-high-dpi.umd.js +0 -85
- package/bundles/taiga-ui-cdk-directives-high-dpi.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-hovered.umd.js +0 -428
- package/bundles/taiga-ui-cdk-directives-hovered.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-item.umd.js +0 -70
- package/bundles/taiga-ui-cdk-directives-item.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-let.umd.js +0 -116
- package/bundles/taiga-ui-cdk-directives-let.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-media.umd.js +0 -175
- package/bundles/taiga-ui-cdk-directives-media.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-obscured.umd.js +0 -102
- package/bundles/taiga-ui-cdk-directives-obscured.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-overscroll.umd.js +0 -164
- package/bundles/taiga-ui-cdk-directives-overscroll.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-pan.umd.js +0 -79
- package/bundles/taiga-ui-cdk-directives-pan.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-platform.umd.js +0 -92
- package/bundles/taiga-ui-cdk-directives-platform.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-portal.umd.js +0 -95
- package/bundles/taiga-ui-cdk-directives-portal.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-pressed.umd.js +0 -82
- package/bundles/taiga-ui-cdk-directives-pressed.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-prevent-default.umd.js +0 -102
- package/bundles/taiga-ui-cdk-directives-prevent-default.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-repeat-times.umd.js +0 -118
- package/bundles/taiga-ui-cdk-directives-repeat-times.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-resize.umd.js +0 -79
- package/bundles/taiga-ui-cdk-directives-resize.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-resizer.umd.js +0 -500
- package/bundles/taiga-ui-cdk-directives-resizer.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-swipe.umd.js +0 -79
- package/bundles/taiga-ui-cdk-directives-swipe.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-validator.umd.js +0 -97
- package/bundles/taiga-ui-cdk-directives-validator.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-value-changes.umd.js +0 -90
- package/bundles/taiga-ui-cdk-directives-value-changes.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-zoom.umd.js +0 -82
- package/bundles/taiga-ui-cdk-directives-zoom.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives.umd.js +0 -225
- package/bundles/taiga-ui-cdk-directives.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-enums.umd.js +0 -45
- package/bundles/taiga-ui-cdk-enums.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-exceptions.umd.js +0 -450
- package/bundles/taiga-ui-cdk-exceptions.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-interfaces.umd.js +0 -11
- package/bundles/taiga-ui-cdk-interfaces.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-observables.umd.js +0 -201
- package/bundles/taiga-ui-cdk-observables.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-filter.umd.js +0 -390
- package/bundles/taiga-ui-cdk-pipes-filter.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-is-present.umd.js +0 -68
- package/bundles/taiga-ui-cdk-pipes-is-present.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-keys.umd.js +0 -68
- package/bundles/taiga-ui-cdk-pipes-keys.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-mapper.umd.js +0 -390
- package/bundles/taiga-ui-cdk-pipes-mapper.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-replace.umd.js +0 -71
- package/bundles/taiga-ui-cdk-pipes-replace.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes.umd.js +0 -45
- package/bundles/taiga-ui-cdk-pipes.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-services.umd.js +0 -865
- package/bundles/taiga-ui-cdk-services.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-tokens.umd.js +0 -656
- package/bundles/taiga-ui-cdk-tokens.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-types.umd.js +0 -11
- package/bundles/taiga-ui-cdk-types.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-browser.umd.js +0 -45
- package/bundles/taiga-ui-cdk-utils-browser.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-color.umd.js +0 -462
- package/bundles/taiga-ui-cdk-utils-color.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-dom.umd.js +0 -291
- package/bundles/taiga-ui-cdk-utils-dom.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-focus.umd.js +0 -190
- package/bundles/taiga-ui-cdk-utils-focus.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-format.umd.js +0 -24
- package/bundles/taiga-ui-cdk-utils-format.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-math.umd.js +0 -164
- package/bundles/taiga-ui-cdk-utils-math.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-miscellaneous.umd.js +0 -539
- package/bundles/taiga-ui-cdk-utils-miscellaneous.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-os.umd.js +0 -43
- package/bundles/taiga-ui-cdk-utils-os.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-svg.umd.js +0 -82
- package/bundles/taiga-ui-cdk-utils-svg.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils.umd.js +0 -69
- package/bundles/taiga-ui-cdk-utils.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk.umd.js +0 -117
- package/bundles/taiga-ui-cdk.umd.js.map +0 -1
- package/classes/package.json +0 -10
- package/classes/taiga-ui-cdk-classes.d.ts +0 -5
- package/coercion/package.json +0 -10
- package/coercion/taiga-ui-cdk-coercion.d.ts +0 -5
- package/components/alert-host/package.json +0 -10
- package/components/alert-host/taiga-ui-cdk-components-alert-host.d.ts +0 -5
- package/components/dialog-host/package.json +0 -10
- package/components/dialog-host/taiga-ui-cdk-components-dialog-host.d.ts +0 -5
- package/components/dropdown-host/package.json +0 -10
- package/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.d.ts +0 -5
- package/components/package.json +0 -10
- package/components/scroll-controls/package.json +0 -10
- package/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.d.ts +0 -5
- package/components/taiga-ui-cdk-components.d.ts +0 -5
- package/constants/package.json +0 -10
- package/constants/taiga-ui-cdk-constants.d.ts +0 -5
- package/date-time/package.json +0 -10
- package/date-time/taiga-ui-cdk-date-time.d.ts +0 -5
- package/decorators/package.json +0 -10
- package/decorators/taiga-ui-cdk-decorators.d.ts +0 -5
- package/directives/active-zone/package.json +0 -10
- package/directives/active-zone/taiga-ui-cdk-directives-active-zone.d.ts +0 -5
- package/directives/auto-focus/package.json +0 -10
- package/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.d.ts +0 -5
- package/directives/autofilled/package.json +0 -10
- package/directives/autofilled/taiga-ui-cdk-directives-autofilled.d.ts +0 -5
- package/directives/checked/package.json +0 -10
- package/directives/checked/taiga-ui-cdk-directives-checked.d.ts +0 -5
- package/directives/click-outside/package.json +0 -10
- package/directives/click-outside/taiga-ui-cdk-directives-click-outside.d.ts +0 -5
- package/directives/control/package.json +0 -10
- package/directives/control/taiga-ui-cdk-directives-control.d.ts +0 -5
- package/directives/copy-processor/package.json +0 -10
- package/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.d.ts +0 -5
- package/directives/drag/package.json +0 -10
- package/directives/drag/taiga-ui-cdk-directives-drag.d.ts +0 -5
- package/directives/droppable/package.json +0 -10
- package/directives/droppable/taiga-ui-cdk-directives-droppable.d.ts +0 -5
- package/directives/element/package.json +0 -10
- package/directives/element/taiga-ui-cdk-directives-element.d.ts +0 -5
- package/directives/focus-trap/package.json +0 -10
- package/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.d.ts +0 -5
- package/directives/focus-visible/package.json +0 -10
- package/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.d.ts +0 -5
- package/directives/focusable/package.json +0 -10
- package/directives/focusable/taiga-ui-cdk-directives-focusable.d.ts +0 -5
- package/directives/focused/package.json +0 -10
- package/directives/focused/taiga-ui-cdk-directives-focused.d.ts +0 -5
- package/directives/for/package.json +0 -10
- package/directives/for/taiga-ui-cdk-directives-for.d.ts +0 -5
- package/directives/for-async/package.json +0 -10
- package/directives/for-async/taiga-ui-cdk-directives-for-async.d.ts +0 -5
- package/directives/high-dpi/package.json +0 -10
- package/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.d.ts +0 -5
- package/directives/hovered/package.json +0 -10
- package/directives/hovered/taiga-ui-cdk-directives-hovered.d.ts +0 -5
- package/directives/item/package.json +0 -10
- package/directives/item/taiga-ui-cdk-directives-item.d.ts +0 -5
- package/directives/let/package.json +0 -10
- package/directives/let/taiga-ui-cdk-directives-let.d.ts +0 -5
- package/directives/media/package.json +0 -10
- package/directives/media/taiga-ui-cdk-directives-media.d.ts +0 -5
- package/directives/obscured/package.json +0 -10
- package/directives/obscured/taiga-ui-cdk-directives-obscured.d.ts +0 -5
- package/directives/overscroll/package.json +0 -10
- package/directives/overscroll/taiga-ui-cdk-directives-overscroll.d.ts +0 -5
- package/directives/package.json +0 -10
- package/directives/pan/package.json +0 -10
- package/directives/pan/taiga-ui-cdk-directives-pan.d.ts +0 -5
- package/directives/platform/package.json +0 -10
- package/directives/platform/taiga-ui-cdk-directives-platform.d.ts +0 -5
- package/directives/portal/package.json +0 -10
- package/directives/portal/taiga-ui-cdk-directives-portal.d.ts +0 -5
- package/directives/pressed/package.json +0 -10
- package/directives/pressed/taiga-ui-cdk-directives-pressed.d.ts +0 -5
- package/directives/prevent-default/package.json +0 -10
- package/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.d.ts +0 -5
- package/directives/repeat-times/package.json +0 -10
- package/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.d.ts +0 -5
- package/directives/resize/package.json +0 -10
- package/directives/resize/taiga-ui-cdk-directives-resize.d.ts +0 -5
- package/directives/resizer/package.json +0 -10
- package/directives/resizer/taiga-ui-cdk-directives-resizer.d.ts +0 -5
- package/directives/swipe/package.json +0 -10
- package/directives/swipe/taiga-ui-cdk-directives-swipe.d.ts +0 -5
- package/directives/taiga-ui-cdk-directives.d.ts +0 -5
- package/directives/validator/package.json +0 -10
- package/directives/validator/taiga-ui-cdk-directives-validator.d.ts +0 -5
- package/directives/value-changes/package.json +0 -10
- package/directives/value-changes/taiga-ui-cdk-directives-value-changes.d.ts +0 -5
- package/directives/zoom/package.json +0 -10
- package/directives/zoom/taiga-ui-cdk-directives-zoom.d.ts +0 -5
- package/enums/package.json +0 -10
- package/enums/taiga-ui-cdk-enums.d.ts +0 -5
- package/esm2015/abstract/control.js +0 -194
- package/esm2015/abstract/controller.js +0 -17
- package/esm2015/abstract/dialog.directive.js +0 -36
- package/esm2015/abstract/dialog.service.js +0 -35
- package/esm2015/abstract/interactive.js +0 -86
- package/esm2015/abstract/multiple-control.js +0 -17
- package/esm2015/abstract/nullable-control.js +0 -14
- package/esm2015/abstract/portal-host.js +0 -50
- package/esm2015/abstract/portal-service.js +0 -39
- package/esm2015/abstract/theme-switcher.js +0 -46
- package/esm2015/coercion/coerce-boolean-property.js +0 -10
- package/esm2015/components/alert-host/alert-host.component.js +0 -71
- package/esm2015/components/alert-host/alert-host.module.js +0 -19
- package/esm2015/components/dialog-host/dialog-host.component.js +0 -137
- package/esm2015/components/dialog-host/dialog-host.module.js +0 -40
- package/esm2015/components/dropdown-host/dropdown-host.component.js +0 -30
- package/esm2015/components/dropdown-host/dropdown-host.module.js +0 -16
- package/esm2015/components/dropdown-host/dropdown-portal.service.js +0 -17
- package/esm2015/components/scroll-controls/scroll-controls.component.js +0 -45
- package/esm2015/components/scroll-controls/scroll-controls.module.js +0 -26
- package/esm2015/components/scroll-controls/scroll-ref.directive.js +0 -26
- package/esm2015/components/scroll-controls/scrollbar.directive.js +0 -133
- package/esm2015/constants/empty.js +0 -23
- package/esm2015/constants/version.js +0 -2
- package/esm2015/directives/active-zone/active-zone.directive.js +0 -80
- package/esm2015/directives/active-zone/active-zone.module.js +0 -16
- package/esm2015/directives/auto-focus/autofocus.directive.js +0 -55
- package/esm2015/directives/auto-focus/autofocus.module.js +0 -16
- package/esm2015/directives/auto-focus/handlers/abstract.handler.js +0 -21
- package/esm2015/directives/auto-focus/handlers/default.handler.js +0 -44
- package/esm2015/directives/auto-focus/handlers/ios.handler.js +0 -169
- package/esm2015/directives/auto-focus/handlers/sync.handler.js +0 -28
- package/esm2015/directives/autofilled/autofilled-style.component.js +0 -19
- package/esm2015/directives/autofilled/autofilled.directive.js +0 -41
- package/esm2015/directives/autofilled/autofilled.module.js +0 -17
- package/esm2015/directives/checked/checked.directive.js +0 -46
- package/esm2015/directives/checked/checked.module.js +0 -16
- package/esm2015/directives/click-outside/click-outside.directive.js +0 -39
- package/esm2015/directives/click-outside/click-outside.module.js +0 -16
- package/esm2015/directives/control/control.directive.js +0 -25
- package/esm2015/directives/control/control.module.js +0 -16
- package/esm2015/directives/copy-processor/copy-processor.directive.js +0 -35
- package/esm2015/directives/copy-processor/copy-processor.module.js +0 -16
- package/esm2015/directives/drag/drag.directive.js +0 -37
- package/esm2015/directives/drag/drag.module.js +0 -19
- package/esm2015/directives/droppable/droppable.directive.js +0 -40
- package/esm2015/directives/droppable/droppable.module.js +0 -16
- package/esm2015/directives/element/element.directive.js +0 -34
- package/esm2015/directives/element/element.module.js +0 -16
- package/esm2015/directives/focus-trap/focus-trap.directive.js +0 -77
- package/esm2015/directives/focus-trap/focus-trap.module.js +0 -16
- package/esm2015/directives/focus-visible/focus-visible.directive.js +0 -28
- package/esm2015/directives/focus-visible/focus-visible.module.js +0 -16
- package/esm2015/directives/focusable/focusable.directive.js +0 -31
- package/esm2015/directives/focusable/focusable.module.js +0 -16
- package/esm2015/directives/focused/focused.directive.js +0 -33
- package/esm2015/directives/focused/focused.module.js +0 -16
- package/esm2015/directives/for/for.directive.js +0 -36
- package/esm2015/directives/for/for.module.js +0 -16
- package/esm2015/directives/for-async/for-async.directive.js +0 -61
- package/esm2015/directives/for-async/for-async.module.js +0 -20
- package/esm2015/directives/high-dpi/high-dpi.directive.js +0 -31
- package/esm2015/directives/high-dpi/high-dpi.module.js +0 -16
- package/esm2015/directives/hovered/hovered.directive.js +0 -23
- package/esm2015/directives/hovered/hovered.module.js +0 -16
- package/esm2015/directives/hovered/hovered.service.js +0 -34
- package/esm2015/directives/index.js +0 -36
- package/esm2015/directives/item/item.directive.js +0 -16
- package/esm2015/directives/item/item.module.js +0 -16
- package/esm2015/directives/let/let.directive.js +0 -38
- package/esm2015/directives/let/let.module.js +0 -16
- package/esm2015/directives/media/media.directive.js +0 -109
- package/esm2015/directives/media/media.module.js +0 -16
- package/esm2015/directives/obscured/obscured.directive.js +0 -49
- package/esm2015/directives/obscured/obscured.module.js +0 -16
- package/esm2015/directives/overscroll/overscroll.directive.js +0 -103
- package/esm2015/directives/overscroll/overscroll.module.js +0 -16
- package/esm2015/directives/pan/pan.directive.js +0 -23
- package/esm2015/directives/pan/pan.module.js +0 -19
- package/esm2015/directives/platform/platform.directive.js +0 -35
- package/esm2015/directives/platform/platform.module.js +0 -16
- package/esm2015/directives/portal/portal.directive.js +0 -38
- package/esm2015/directives/portal/portal.module.js +0 -16
- package/esm2015/directives/pressed/pressed.directive.js +0 -30
- package/esm2015/directives/pressed/pressed.module.js +0 -16
- package/esm2015/directives/prevent-default/prevent-default.directive.js +0 -49
- package/esm2015/directives/prevent-default/prevent-default.module.js +0 -19
- package/esm2015/directives/repeat-times/repeat-times.directive.js +0 -59
- package/esm2015/directives/repeat-times/repeat-times.module.js +0 -16
- package/esm2015/directives/resize/resize.directive.js +0 -23
- package/esm2015/directives/resize/resize.module.js +0 -19
- package/esm2015/directives/resizer/resizeable.directive.js +0 -14
- package/esm2015/directives/resizer/resizer.directive.js +0 -106
- package/esm2015/directives/resizer/resizer.module.js +0 -17
- package/esm2015/directives/swipe/swipe.directive.js +0 -23
- package/esm2015/directives/swipe/swipe.module.js +0 -19
- package/esm2015/directives/validator/validator.directive.js +0 -47
- package/esm2015/directives/validator/validator.module.js +0 -16
- package/esm2015/directives/value-changes/value-changes.directive.js +0 -39
- package/esm2015/directives/value-changes/value-changes.module.js +0 -16
- package/esm2015/directives/zoom/zoom.directive.js +0 -26
- package/esm2015/directives/zoom/zoom.module.js +0 -19
- package/esm2015/observables/control-value.js +0 -15
- package/esm2015/observables/drag-and-drop-from.js +0 -28
- package/esm2015/observables/focus-visible-observable.js +0 -31
- package/esm2015/observables/if-map.js +0 -6
- package/esm2015/observables/is-alive.js +0 -10
- package/esm2015/observables/is-observed.js +0 -7
- package/esm2015/observables/items-query-list-observable.js +0 -13
- package/esm2015/observables/must-be-present.js +0 -12
- package/esm2015/observables/pressed-observable.js +0 -13
- package/esm2015/observables/prevent-default.js +0 -5
- package/esm2015/observables/stop-propagation.js +0 -7
- package/esm2015/observables/watch.js +0 -7
- package/esm2015/pipes/filter/filter.module.js +0 -16
- package/esm2015/pipes/filter/filter.pipe.js +0 -14
- package/esm2015/pipes/is-present/is-present.module.js +0 -16
- package/esm2015/pipes/is-present/is-present.pipe.js +0 -15
- package/esm2015/pipes/keys/keys.module.js +0 -16
- package/esm2015/pipes/keys/keys.pipe.js +0 -14
- package/esm2015/pipes/mapper/mapper.module.js +0 -16
- package/esm2015/pipes/mapper/mapper.pipe.js +0 -14
- package/esm2015/pipes/replace/replace.module.js +0 -16
- package/esm2015/pipes/replace/replace.pipe.js +0 -17
- package/esm2015/services/destroy.service.js +0 -26
- package/esm2015/services/directive-styles.service.js +0 -32
- package/esm2015/services/focus-visible.service.js +0 -35
- package/esm2015/services/id.service.js +0 -21
- package/esm2015/services/obscured.service.js +0 -54
- package/esm2015/services/pan.service.js +0 -35
- package/esm2015/services/parents-scroll.service.js +0 -36
- package/esm2015/services/resize.service.js +0 -47
- package/esm2015/services/scroll.service.js +0 -60
- package/esm2015/services/static-request.service.js +0 -51
- package/esm2015/services/swipe.service.js +0 -51
- package/esm2015/services/zoom.service.js +0 -54
- package/esm2015/tokens/active-element.js +0 -61
- package/esm2015/tokens/base-href.js +0 -5
- package/esm2015/tokens/ensure-base-href.js +0 -17
- package/esm2015/tokens/fonts-ready.js +0 -11
- package/esm2015/tokens/is-firefox.js +0 -11
- package/esm2015/tokens/is-webkit.js +0 -11
- package/esm2015/tokens/removed-element.js +0 -20
- package/esm2015/tokens/window-height.js +0 -9
- package/esm2015/tokens/window-size.js +0 -23
- package/esm2015/utils/browser/is-safari.js +0 -11
- package/esm2015/utils/color/hex-to-rgba.js +0 -31
- package/esm2015/utils/color/rgba-to-hex.js +0 -26
- package/esm2015/utils/dom/contains-or-after.js +0 -10
- package/esm2015/utils/dom/get-element-obscurers.js +0 -43
- package/esm2015/utils/dom/get-selected-text.js +0 -16
- package/esm2015/utils/dom/is-node-in.js +0 -15
- package/esm2015/utils/dom/point-to-client-rect.js +0 -16
- package/esm2015/utils/dom/retarget-boundary-crossing.js +0 -16
- package/esm2015/utils/focus/get-native-focused.js +0 -16
- package/esm2015/utils/focus/is-native-focused.js +0 -15
- package/esm2015/utils/miscellaneous/is-number.js +0 -5
- package/esm2015/utils/miscellaneous/is-object.js +0 -5
- package/esm2015/utils/miscellaneous/is-string.js +0 -5
- package/esm2015/utils/miscellaneous/object-from-entries.js +0 -12
- package/esm2015/utils/miscellaneous/provide-options.js +0 -9
- package/esm2015/utils/svg/svg-linear-gradient-processor.js +0 -65
- package/exceptions/package.json +0 -10
- package/exceptions/taiga-ui-cdk-exceptions.d.ts +0 -5
- package/fesm2015/taiga-ui-cdk-abstract.js +0 -514
- package/fesm2015/taiga-ui-cdk-abstract.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-classes.js +0 -29
- package/fesm2015/taiga-ui-cdk-classes.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-coercion.js +0 -16
- package/fesm2015/taiga-ui-cdk-coercion.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components-alert-host.js +0 -94
- package/fesm2015/taiga-ui-cdk-components-alert-host.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components-dialog-host.js +0 -180
- package/fesm2015/taiga-ui-cdk-components-dialog-host.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components-dropdown-host.js +0 -63
- package/fesm2015/taiga-ui-cdk-components-dropdown-host.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components-scroll-controls.js +0 -220
- package/fesm2015/taiga-ui-cdk-components-scroll-controls.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components.js +0 -9
- package/fesm2015/taiga-ui-cdk-components.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-constants.js +0 -237
- package/fesm2015/taiga-ui-cdk-constants.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-date-time.js +0 -821
- package/fesm2015/taiga-ui-cdk-date-time.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-decorators.js +0 -193
- package/fesm2015/taiga-ui-cdk-decorators.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-active-zone.js +0 -100
- package/fesm2015/taiga-ui-cdk-directives-active-zone.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-auto-focus.js +0 -348
- package/fesm2015/taiga-ui-cdk-directives-auto-focus.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-autofilled.js +0 -77
- package/fesm2015/taiga-ui-cdk-directives-autofilled.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-checked.js +0 -66
- package/fesm2015/taiga-ui-cdk-directives-checked.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-click-outside.js +0 -59
- package/fesm2015/taiga-ui-cdk-directives-click-outside.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-control.js +0 -45
- package/fesm2015/taiga-ui-cdk-directives-control.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-copy-processor.js +0 -55
- package/fesm2015/taiga-ui-cdk-directives-copy-processor.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-drag.js +0 -60
- package/fesm2015/taiga-ui-cdk-directives-drag.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-droppable.js +0 -60
- package/fesm2015/taiga-ui-cdk-directives-droppable.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-element.js +0 -54
- package/fesm2015/taiga-ui-cdk-directives-element.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-focus-trap.js +0 -97
- package/fesm2015/taiga-ui-cdk-directives-focus-trap.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-focus-visible.js +0 -48
- package/fesm2015/taiga-ui-cdk-directives-focus-visible.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-focusable.js +0 -51
- package/fesm2015/taiga-ui-cdk-directives-focusable.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-focused.js +0 -53
- package/fesm2015/taiga-ui-cdk-directives-focused.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-for-async.js +0 -85
- package/fesm2015/taiga-ui-cdk-directives-for-async.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-for.js +0 -56
- package/fesm2015/taiga-ui-cdk-directives-for.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-high-dpi.js +0 -51
- package/fesm2015/taiga-ui-cdk-directives-high-dpi.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-hovered.js +0 -74
- package/fesm2015/taiga-ui-cdk-directives-hovered.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-item.js +0 -36
- package/fesm2015/taiga-ui-cdk-directives-item.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-let.js +0 -72
- package/fesm2015/taiga-ui-cdk-directives-let.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-media.js +0 -129
- package/fesm2015/taiga-ui-cdk-directives-media.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-obscured.js +0 -69
- package/fesm2015/taiga-ui-cdk-directives-obscured.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-overscroll.js +0 -123
- package/fesm2015/taiga-ui-cdk-directives-overscroll.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-pan.js +0 -46
- package/fesm2015/taiga-ui-cdk-directives-pan.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-platform.js +0 -55
- package/fesm2015/taiga-ui-cdk-directives-platform.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-portal.js +0 -58
- package/fesm2015/taiga-ui-cdk-directives-portal.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-pressed.js +0 -50
- package/fesm2015/taiga-ui-cdk-directives-pressed.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-prevent-default.js +0 -72
- package/fesm2015/taiga-ui-cdk-directives-prevent-default.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-repeat-times.js +0 -79
- package/fesm2015/taiga-ui-cdk-directives-repeat-times.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-resize.js +0 -46
- package/fesm2015/taiga-ui-cdk-directives-resize.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-resizer.js +0 -137
- package/fesm2015/taiga-ui-cdk-directives-resizer.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-swipe.js +0 -46
- package/fesm2015/taiga-ui-cdk-directives-swipe.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-validator.js +0 -67
- package/fesm2015/taiga-ui-cdk-directives-validator.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-value-changes.js +0 -59
- package/fesm2015/taiga-ui-cdk-directives-value-changes.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-zoom.js +0 -49
- package/fesm2015/taiga-ui-cdk-directives-zoom.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives.js +0 -40
- package/fesm2015/taiga-ui-cdk-directives.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-enums.js +0 -37
- package/fesm2015/taiga-ui-cdk-enums.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-exceptions.js +0 -84
- package/fesm2015/taiga-ui-cdk-exceptions.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-interfaces.js +0 -4
- package/fesm2015/taiga-ui-cdk-interfaces.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-observables.js +0 -172
- package/fesm2015/taiga-ui-cdk-observables.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-filter.js +0 -34
- package/fesm2015/taiga-ui-cdk-pipes-filter.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-is-present.js +0 -35
- package/fesm2015/taiga-ui-cdk-pipes-is-present.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-keys.js +0 -34
- package/fesm2015/taiga-ui-cdk-pipes-keys.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-mapper.js +0 -34
- package/fesm2015/taiga-ui-cdk-pipes-mapper.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-replace.js +0 -37
- package/fesm2015/taiga-ui-cdk-pipes-replace.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes.js +0 -10
- package/fesm2015/taiga-ui-cdk-pipes.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-services.js +0 -449
- package/fesm2015/taiga-ui-cdk-services.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-tokens.js +0 -287
- package/fesm2015/taiga-ui-cdk-tokens.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-types.js +0 -4
- package/fesm2015/taiga-ui-cdk-types.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-browser.js +0 -31
- package/fesm2015/taiga-ui-cdk-utils-browser.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-color.js +0 -125
- package/fesm2015/taiga-ui-cdk-utils-color.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-dom.js +0 -259
- package/fesm2015/taiga-ui-cdk-utils-dom.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-focus.js +0 -171
- package/fesm2015/taiga-ui-cdk-utils-focus.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-format.js +0 -16
- package/fesm2015/taiga-ui-cdk-utils-format.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-math.js +0 -135
- package/fesm2015/taiga-ui-cdk-utils-math.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-miscellaneous.js +0 -187
- package/fesm2015/taiga-ui-cdk-utils-miscellaneous.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-os.js +0 -31
- package/fesm2015/taiga-ui-cdk-utils-os.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-svg.js +0 -72
- package/fesm2015/taiga-ui-cdk-utils-svg.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils.js +0 -14
- package/fesm2015/taiga-ui-cdk-utils.js.map +0 -1
- package/fesm2015/taiga-ui-cdk.js +0 -22
- package/fesm2015/taiga-ui-cdk.js.map +0 -1
- package/interfaces/package.json +0 -10
- package/interfaces/taiga-ui-cdk-interfaces.d.ts +0 -5
- package/observables/package.json +0 -10
- package/observables/taiga-ui-cdk-observables.d.ts +0 -5
- package/pipes/filter/package.json +0 -10
- package/pipes/filter/taiga-ui-cdk-pipes-filter.d.ts +0 -5
- package/pipes/is-present/package.json +0 -10
- package/pipes/is-present/taiga-ui-cdk-pipes-is-present.d.ts +0 -5
- package/pipes/keys/package.json +0 -10
- package/pipes/keys/taiga-ui-cdk-pipes-keys.d.ts +0 -5
- package/pipes/mapper/package.json +0 -10
- package/pipes/mapper/taiga-ui-cdk-pipes-mapper.d.ts +0 -5
- package/pipes/package.json +0 -10
- package/pipes/replace/package.json +0 -10
- package/pipes/replace/taiga-ui-cdk-pipes-replace.d.ts +0 -5
- package/pipes/taiga-ui-cdk-pipes.d.ts +0 -5
- package/services/package.json +0 -10
- package/services/taiga-ui-cdk-services.d.ts +0 -5
- package/taiga-ui-cdk.d.ts +0 -5
- package/tokens/package.json +0 -10
- package/tokens/taiga-ui-cdk-tokens.d.ts +0 -5
- package/types/package.json +0 -10
- package/types/taiga-ui-cdk-types.d.ts +0 -5
- package/utils/browser/package.json +0 -10
- package/utils/browser/taiga-ui-cdk-utils-browser.d.ts +0 -5
- package/utils/color/package.json +0 -10
- package/utils/color/taiga-ui-cdk-utils-color.d.ts +0 -5
- package/utils/dom/package.json +0 -10
- package/utils/dom/taiga-ui-cdk-utils-dom.d.ts +0 -5
- package/utils/focus/package.json +0 -10
- package/utils/focus/taiga-ui-cdk-utils-focus.d.ts +0 -5
- package/utils/format/package.json +0 -10
- package/utils/format/taiga-ui-cdk-utils-format.d.ts +0 -5
- package/utils/math/package.json +0 -10
- package/utils/math/taiga-ui-cdk-utils-math.d.ts +0 -5
- package/utils/miscellaneous/package.json +0 -10
- package/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.d.ts +0 -5
- package/utils/os/package.json +0 -10
- package/utils/os/taiga-ui-cdk-utils-os.d.ts +0 -5
- package/utils/package.json +0 -10
- package/utils/svg/package.json +0 -10
- package/utils/svg/taiga-ui-cdk-utils-svg.d.ts +0 -5
- package/utils/taiga-ui-cdk-utils.d.ts +0 -5
- /package/{esm2015/abstract/index.js → esm2020/abstract/index.mjs} +0 -0
- /package/{esm2015/abstract/taiga-ui-cdk-abstract.js → esm2020/abstract/taiga-ui-cdk-abstract.mjs} +0 -0
- /package/{esm2015/abstract/value-transformer.js → esm2020/abstract/value-transformer.mjs} +0 -0
- /package/{esm2015/classes/assert.js → esm2020/classes/assert.mjs} +0 -0
- /package/{esm2015/classes/index.js → esm2020/classes/index.mjs} +0 -0
- /package/{esm2015/classes/taiga-ui-cdk-classes.js → esm2020/classes/taiga-ui-cdk-classes.mjs} +0 -0
- /package/{esm2015/classes/validation-error.js → esm2020/classes/validation-error.mjs} +0 -0
- /package/{esm2015/coercion/index.js → esm2020/coercion/index.mjs} +0 -0
- /package/{esm2015/coercion/taiga-ui-cdk-coercion.js → esm2020/coercion/taiga-ui-cdk-coercion.mjs} +0 -0
- /package/{esm2015/components/alert-host/index.js → esm2020/components/alert-host/index.mjs} +0 -0
- /package/{esm2015/components/alert-host/taiga-ui-cdk-components-alert-host.js → esm2020/components/alert-host/taiga-ui-cdk-components-alert-host.mjs} +0 -0
- /package/{esm2015/components/dialog-host/index.js → esm2020/components/dialog-host/index.mjs} +0 -0
- /package/{esm2015/components/dialog-host/taiga-ui-cdk-components-dialog-host.js → esm2020/components/dialog-host/taiga-ui-cdk-components-dialog-host.mjs} +0 -0
- /package/{esm2015/components/dropdown-host/index.js → esm2020/components/dropdown-host/index.mjs} +0 -0
- /package/{esm2015/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.js → esm2020/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.mjs} +0 -0
- /package/{esm2015/components/index.js → esm2020/components/index.mjs} +0 -0
- /package/{esm2015/components/scroll-controls/index.js → esm2020/components/scroll-controls/index.mjs} +0 -0
- /package/{esm2015/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.js → esm2020/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.mjs} +0 -0
- /package/{esm2015/components/taiga-ui-cdk-components.js → esm2020/components/taiga-ui-cdk-components.mjs} +0 -0
- /package/{esm2015/constants/always-false-handler.js → esm2020/constants/always-false-handler.mjs} +0 -0
- /package/{esm2015/constants/always-true-handler.js → esm2020/constants/always-true-handler.mjs} +0 -0
- /package/{esm2015/constants/browser.js → esm2020/constants/browser.mjs} +0 -0
- /package/{esm2015/constants/index.js → esm2020/constants/index.mjs} +0 -0
- /package/{esm2015/constants/matcher.js → esm2020/constants/matcher.mjs} +0 -0
- /package/{esm2015/constants/parent-animation.js → esm2020/constants/parent-animation.mjs} +0 -0
- /package/{esm2015/constants/polling-time.js → esm2020/constants/polling-time.mjs} +0 -0
- /package/{esm2015/constants/stringify.js → esm2020/constants/stringify.mjs} +0 -0
- /package/{esm2015/constants/svg-node-filter.js → esm2020/constants/svg-node-filter.mjs} +0 -0
- /package/{esm2015/constants/taiga-ui-cdk-constants.js → esm2020/constants/taiga-ui-cdk-constants.mjs} +0 -0
- /package/{esm2015/constants/unicode-chars.js → esm2020/constants/unicode-chars.mjs} +0 -0
- /package/{esm2015/constants/used-icons.js → esm2020/constants/used-icons.mjs} +0 -0
- /package/{esm2015/date-time/date-clamp.js → esm2020/date-time/date-clamp.mjs} +0 -0
- /package/{esm2015/date-time/date-fillers.js → esm2020/date-time/date-fillers.mjs} +0 -0
- /package/{esm2015/date-time/date-format.js → esm2020/date-time/date-format.mjs} +0 -0
- /package/{esm2015/date-time/date-separator.js → esm2020/date-time/date-separator.mjs} +0 -0
- /package/{esm2015/date-time/date-time.js → esm2020/date-time/date-time.mjs} +0 -0
- /package/{esm2015/date-time/day-range.js → esm2020/date-time/day-range.mjs} +0 -0
- /package/{esm2015/date-time/day.js → esm2020/date-time/day.mjs} +0 -0
- /package/{esm2015/date-time/days.const.js → esm2020/date-time/days.const.mjs} +0 -0
- /package/{esm2015/date-time/index.js → esm2020/date-time/index.mjs} +0 -0
- /package/{esm2015/date-time/month-range.js → esm2020/date-time/month-range.mjs} +0 -0
- /package/{esm2015/date-time/month.js → esm2020/date-time/month.mjs} +0 -0
- /package/{esm2015/date-time/taiga-ui-cdk-date-time.js → esm2020/date-time/taiga-ui-cdk-date-time.mjs} +0 -0
- /package/{esm2015/date-time/time.js → esm2020/date-time/time.mjs} +0 -0
- /package/{esm2015/date-time/year.js → esm2020/date-time/year.mjs} +0 -0
- /package/{esm2015/decorators/debounce.js → esm2020/decorators/debounce.mjs} +0 -0
- /package/{esm2015/decorators/default-prop.js → esm2020/decorators/default-prop.mjs} +0 -0
- /package/{esm2015/decorators/index.js → esm2020/decorators/index.mjs} +0 -0
- /package/{esm2015/decorators/pure.js → esm2020/decorators/pure.mjs} +0 -0
- /package/{esm2015/decorators/required-setter.js → esm2020/decorators/required-setter.mjs} +0 -0
- /package/{esm2015/decorators/taiga-ui-cdk-decorators.js → esm2020/decorators/taiga-ui-cdk-decorators.mjs} +0 -0
- /package/{esm2015/directives/active-zone/index.js → esm2020/directives/active-zone/index.mjs} +0 -0
- /package/{esm2015/directives/active-zone/taiga-ui-cdk-directives-active-zone.js → esm2020/directives/active-zone/taiga-ui-cdk-directives-active-zone.mjs} +0 -0
- /package/{esm2015/directives/auto-focus/autofocus.options.js → esm2020/directives/auto-focus/autofocus.options.mjs} +0 -0
- /package/{esm2015/directives/auto-focus/index.js → esm2020/directives/auto-focus/index.mjs} +0 -0
- /package/{esm2015/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.js → esm2020/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.mjs} +0 -0
- /package/{esm2015/directives/autofilled/index.js → esm2020/directives/autofilled/index.mjs} +0 -0
- /package/{esm2015/directives/autofilled/taiga-ui-cdk-directives-autofilled.js → esm2020/directives/autofilled/taiga-ui-cdk-directives-autofilled.mjs} +0 -0
- /package/{esm2015/directives/checked/index.js → esm2020/directives/checked/index.mjs} +0 -0
- /package/{esm2015/directives/checked/taiga-ui-cdk-directives-checked.js → esm2020/directives/checked/taiga-ui-cdk-directives-checked.mjs} +0 -0
- /package/{esm2015/directives/click-outside/index.js → esm2020/directives/click-outside/index.mjs} +0 -0
- /package/{esm2015/directives/click-outside/taiga-ui-cdk-directives-click-outside.js → esm2020/directives/click-outside/taiga-ui-cdk-directives-click-outside.mjs} +0 -0
- /package/{esm2015/directives/control/index.js → esm2020/directives/control/index.mjs} +0 -0
- /package/{esm2015/directives/control/taiga-ui-cdk-directives-control.js → esm2020/directives/control/taiga-ui-cdk-directives-control.mjs} +0 -0
- /package/{esm2015/directives/copy-processor/index.js → esm2020/directives/copy-processor/index.mjs} +0 -0
- /package/{esm2015/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.js → esm2020/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.mjs} +0 -0
- /package/{esm2015/directives/drag/index.js → esm2020/directives/drag/index.mjs} +0 -0
- /package/{esm2015/directives/drag/taiga-ui-cdk-directives-drag.js → esm2020/directives/drag/taiga-ui-cdk-directives-drag.mjs} +0 -0
- /package/{esm2015/directives/droppable/index.js → esm2020/directives/droppable/index.mjs} +0 -0
- /package/{esm2015/directives/droppable/taiga-ui-cdk-directives-droppable.js → esm2020/directives/droppable/taiga-ui-cdk-directives-droppable.mjs} +0 -0
- /package/{esm2015/directives/element/index.js → esm2020/directives/element/index.mjs} +0 -0
- /package/{esm2015/directives/element/taiga-ui-cdk-directives-element.js → esm2020/directives/element/taiga-ui-cdk-directives-element.mjs} +0 -0
- /package/{esm2015/directives/focus-trap/index.js → esm2020/directives/focus-trap/index.mjs} +0 -0
- /package/{esm2015/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.js → esm2020/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.mjs} +0 -0
- /package/{esm2015/directives/focus-visible/index.js → esm2020/directives/focus-visible/index.mjs} +0 -0
- /package/{esm2015/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.js → esm2020/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.mjs} +0 -0
- /package/{esm2015/directives/focusable/index.js → esm2020/directives/focusable/index.mjs} +0 -0
- /package/{esm2015/directives/focusable/taiga-ui-cdk-directives-focusable.js → esm2020/directives/focusable/taiga-ui-cdk-directives-focusable.mjs} +0 -0
- /package/{esm2015/directives/focused/index.js → esm2020/directives/focused/index.mjs} +0 -0
- /package/{esm2015/directives/focused/taiga-ui-cdk-directives-focused.js → esm2020/directives/focused/taiga-ui-cdk-directives-focused.mjs} +0 -0
- /package/{esm2015/directives/for/index.js → esm2020/directives/for/index.mjs} +0 -0
- /package/{esm2015/directives/for/taiga-ui-cdk-directives-for.js → esm2020/directives/for/taiga-ui-cdk-directives-for.mjs} +0 -0
- /package/{esm2015/directives/for-async/index.js → esm2020/directives/for-async/index.mjs} +0 -0
- /package/{esm2015/directives/for-async/taiga-ui-cdk-directives-for-async.js → esm2020/directives/for-async/taiga-ui-cdk-directives-for-async.mjs} +0 -0
- /package/{esm2015/directives/high-dpi/index.js → esm2020/directives/high-dpi/index.mjs} +0 -0
- /package/{esm2015/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.js → esm2020/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.mjs} +0 -0
- /package/{esm2015/directives/hovered/index.js → esm2020/directives/hovered/index.mjs} +0 -0
- /package/{esm2015/directives/hovered/taiga-ui-cdk-directives-hovered.js → esm2020/directives/hovered/taiga-ui-cdk-directives-hovered.mjs} +0 -0
- /package/{esm2015/directives/item/index.js → esm2020/directives/item/index.mjs} +0 -0
- /package/{esm2015/directives/item/taiga-ui-cdk-directives-item.js → esm2020/directives/item/taiga-ui-cdk-directives-item.mjs} +0 -0
- /package/{esm2015/directives/let/index.js → esm2020/directives/let/index.mjs} +0 -0
- /package/{esm2015/directives/let/let-context.js → esm2020/directives/let/let-context.mjs} +0 -0
- /package/{esm2015/directives/let/taiga-ui-cdk-directives-let.js → esm2020/directives/let/taiga-ui-cdk-directives-let.mjs} +0 -0
- /package/{esm2015/directives/media/index.js → esm2020/directives/media/index.mjs} +0 -0
- /package/{esm2015/directives/media/taiga-ui-cdk-directives-media.js → esm2020/directives/media/taiga-ui-cdk-directives-media.mjs} +0 -0
- /package/{esm2015/directives/obscured/index.js → esm2020/directives/obscured/index.mjs} +0 -0
- /package/{esm2015/directives/obscured/taiga-ui-cdk-directives-obscured.js → esm2020/directives/obscured/taiga-ui-cdk-directives-obscured.mjs} +0 -0
- /package/{esm2015/directives/overscroll/index.js → esm2020/directives/overscroll/index.mjs} +0 -0
- /package/{esm2015/directives/overscroll/taiga-ui-cdk-directives-overscroll.js → esm2020/directives/overscroll/taiga-ui-cdk-directives-overscroll.mjs} +0 -0
- /package/{esm2015/directives/pan/index.js → esm2020/directives/pan/index.mjs} +0 -0
- /package/{esm2015/directives/pan/taiga-ui-cdk-directives-pan.js → esm2020/directives/pan/taiga-ui-cdk-directives-pan.mjs} +0 -0
- /package/{esm2015/directives/platform/index.js → esm2020/directives/platform/index.mjs} +0 -0
- /package/{esm2015/directives/platform/taiga-ui-cdk-directives-platform.js → esm2020/directives/platform/taiga-ui-cdk-directives-platform.mjs} +0 -0
- /package/{esm2015/directives/portal/index.js → esm2020/directives/portal/index.mjs} +0 -0
- /package/{esm2015/directives/portal/taiga-ui-cdk-directives-portal.js → esm2020/directives/portal/taiga-ui-cdk-directives-portal.mjs} +0 -0
- /package/{esm2015/directives/pressed/index.js → esm2020/directives/pressed/index.mjs} +0 -0
- /package/{esm2015/directives/pressed/taiga-ui-cdk-directives-pressed.js → esm2020/directives/pressed/taiga-ui-cdk-directives-pressed.mjs} +0 -0
- /package/{esm2015/directives/prevent-default/index.js → esm2020/directives/prevent-default/index.mjs} +0 -0
- /package/{esm2015/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.js → esm2020/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.mjs} +0 -0
- /package/{esm2015/directives/repeat-times/index.js → esm2020/directives/repeat-times/index.mjs} +0 -0
- /package/{esm2015/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.js → esm2020/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.mjs} +0 -0
- /package/{esm2015/directives/resize/index.js → esm2020/directives/resize/index.mjs} +0 -0
- /package/{esm2015/directives/resize/taiga-ui-cdk-directives-resize.js → esm2020/directives/resize/taiga-ui-cdk-directives-resize.mjs} +0 -0
- /package/{esm2015/directives/resizer/index.js → esm2020/directives/resizer/index.mjs} +0 -0
- /package/{esm2015/directives/resizer/taiga-ui-cdk-directives-resizer.js → esm2020/directives/resizer/taiga-ui-cdk-directives-resizer.mjs} +0 -0
- /package/{esm2015/directives/swipe/index.js → esm2020/directives/swipe/index.mjs} +0 -0
- /package/{esm2015/directives/swipe/taiga-ui-cdk-directives-swipe.js → esm2020/directives/swipe/taiga-ui-cdk-directives-swipe.mjs} +0 -0
- /package/{esm2015/directives/taiga-ui-cdk-directives.js → esm2020/directives/taiga-ui-cdk-directives.mjs} +0 -0
- /package/{esm2015/directives/validator/index.js → esm2020/directives/validator/index.mjs} +0 -0
- /package/{esm2015/directives/validator/taiga-ui-cdk-directives-validator.js → esm2020/directives/validator/taiga-ui-cdk-directives-validator.mjs} +0 -0
- /package/{esm2015/directives/value-changes/index.js → esm2020/directives/value-changes/index.mjs} +0 -0
- /package/{esm2015/directives/value-changes/taiga-ui-cdk-directives-value-changes.js → esm2020/directives/value-changes/taiga-ui-cdk-directives-value-changes.mjs} +0 -0
- /package/{esm2015/directives/zoom/index.js → esm2020/directives/zoom/index.mjs} +0 -0
- /package/{esm2015/directives/zoom/taiga-ui-cdk-directives-zoom.js → esm2020/directives/zoom/taiga-ui-cdk-directives-zoom.mjs} +0 -0
- /package/{esm2015/enums/day-of-week.js → esm2020/enums/day-of-week.mjs} +0 -0
- /package/{esm2015/enums/index.js → esm2020/enums/index.mjs} +0 -0
- /package/{esm2015/enums/month-number.js → esm2020/enums/month-number.mjs} +0 -0
- /package/{esm2015/enums/taiga-ui-cdk-enums.js → esm2020/enums/taiga-ui-cdk-enums.mjs} +0 -0
- /package/{esm2015/exceptions/computed-document.exception.js → esm2020/exceptions/computed-document.exception.mjs} +0 -0
- /package/{esm2015/exceptions/document-selection.exception.js → esm2020/exceptions/document-selection.exception.mjs} +0 -0
- /package/{esm2015/exceptions/index.js → esm2020/exceptions/index.mjs} +0 -0
- /package/{esm2015/exceptions/invalid-day.exception.js → esm2020/exceptions/invalid-day.exception.mjs} +0 -0
- /package/{esm2015/exceptions/invalid-month.exception.js → esm2020/exceptions/invalid-month.exception.mjs} +0 -0
- /package/{esm2015/exceptions/invalid-year.exception.js → esm2020/exceptions/invalid-year.exception.mjs} +0 -0
- /package/{esm2015/exceptions/no-host.exception.js → esm2020/exceptions/no-host.exception.mjs} +0 -0
- /package/{esm2015/exceptions/owner-document.exception.js → esm2020/exceptions/owner-document.exception.mjs} +0 -0
- /package/{esm2015/exceptions/pure.exception.js → esm2020/exceptions/pure.exception.mjs} +0 -0
- /package/{esm2015/exceptions/table-sort-key.exception.js → esm2020/exceptions/table-sort-key.exception.mjs} +0 -0
- /package/{esm2015/exceptions/taiga-ui-cdk-exceptions.js → esm2020/exceptions/taiga-ui-cdk-exceptions.mjs} +0 -0
- /package/{esm2015/exceptions/ts-parser.exception.js → esm2020/exceptions/ts-parser.exception.mjs} +0 -0
- /package/{esm2015/exceptions/value-changes.exception.js → esm2020/exceptions/value-changes.exception.mjs} +0 -0
- /package/{esm2015/exceptions/value-present.exception.js → esm2020/exceptions/value-present.exception.mjs} +0 -0
- /package/{esm2015/exceptions/xml-parsing.exception.js → esm2020/exceptions/xml-parsing.exception.mjs} +0 -0
- /package/{esm2015/index.js → esm2020/index.mjs} +0 -0
- /package/{esm2015/interfaces/alert-context.js → esm2020/interfaces/alert-context.mjs} +0 -0
- /package/{esm2015/interfaces/aria-dialog-context.js → esm2020/interfaces/aria-dialog-context.mjs} +0 -0
- /package/{esm2015/interfaces/base-dialog-context.js → esm2020/interfaces/base-dialog-context.mjs} +0 -0
- /package/{esm2015/interfaces/base-dialog.js → esm2020/interfaces/base-dialog.mjs} +0 -0
- /package/{esm2015/interfaces/context-with-implicit.js → esm2020/interfaces/context-with-implicit.mjs} +0 -0
- /package/{esm2015/interfaces/control-value-transformer.js → esm2020/interfaces/control-value-transformer.mjs} +0 -0
- /package/{esm2015/interfaces/day-like.js → esm2020/interfaces/day-like.mjs} +0 -0
- /package/{esm2015/interfaces/focusable-element-accessor.js → esm2020/interfaces/focusable-element-accessor.mjs} +0 -0
- /package/{esm2015/interfaces/index.js → esm2020/interfaces/index.mjs} +0 -0
- /package/{esm2015/interfaces/month-like.js → esm2020/interfaces/month-like.mjs} +0 -0
- /package/{esm2015/interfaces/safe-html.js → esm2020/interfaces/safe-html.mjs} +0 -0
- /package/{esm2015/interfaces/swipe.js → esm2020/interfaces/swipe.mjs} +0 -0
- /package/{esm2015/interfaces/taiga-ui-cdk-interfaces.js → esm2020/interfaces/taiga-ui-cdk-interfaces.mjs} +0 -0
- /package/{esm2015/interfaces/time-like.js → esm2020/interfaces/time-like.mjs} +0 -0
- /package/{esm2015/interfaces/year-like.js → esm2020/interfaces/year-like.mjs} +0 -0
- /package/{esm2015/interfaces/zoom.js → esm2020/interfaces/zoom.mjs} +0 -0
- /package/{esm2015/observables/index.js → esm2020/observables/index.mjs} +0 -0
- /package/{esm2015/observables/mouse-drag-finish-from.js → esm2020/observables/mouse-drag-finish-from.mjs} +0 -0
- /package/{esm2015/observables/scroll-from.js → esm2020/observables/scroll-from.mjs} +0 -0
- /package/{esm2015/observables/taiga-ui-cdk-observables.js → esm2020/observables/taiga-ui-cdk-observables.mjs} +0 -0
- /package/{esm2015/observables/typed-from-event.js → esm2020/observables/typed-from-event.mjs} +0 -0
- /package/{esm2015/observables/zone-free.js → esm2020/observables/zone-free.mjs} +0 -0
- /package/{esm2015/pipes/filter/index.js → esm2020/pipes/filter/index.mjs} +0 -0
- /package/{esm2015/pipes/filter/taiga-ui-cdk-pipes-filter.js → esm2020/pipes/filter/taiga-ui-cdk-pipes-filter.mjs} +0 -0
- /package/{esm2015/pipes/index.js → esm2020/pipes/index.mjs} +0 -0
- /package/{esm2015/pipes/is-present/index.js → esm2020/pipes/is-present/index.mjs} +0 -0
- /package/{esm2015/pipes/is-present/taiga-ui-cdk-pipes-is-present.js → esm2020/pipes/is-present/taiga-ui-cdk-pipes-is-present.mjs} +0 -0
- /package/{esm2015/pipes/keys/index.js → esm2020/pipes/keys/index.mjs} +0 -0
- /package/{esm2015/pipes/keys/taiga-ui-cdk-pipes-keys.js → esm2020/pipes/keys/taiga-ui-cdk-pipes-keys.mjs} +0 -0
- /package/{esm2015/pipes/mapper/index.js → esm2020/pipes/mapper/index.mjs} +0 -0
- /package/{esm2015/pipes/mapper/taiga-ui-cdk-pipes-mapper.js → esm2020/pipes/mapper/taiga-ui-cdk-pipes-mapper.mjs} +0 -0
- /package/{esm2015/pipes/replace/index.js → esm2020/pipes/replace/index.mjs} +0 -0
- /package/{esm2015/pipes/replace/taiga-ui-cdk-pipes-replace.js → esm2020/pipes/replace/taiga-ui-cdk-pipes-replace.mjs} +0 -0
- /package/{esm2015/pipes/taiga-ui-cdk-pipes.js → esm2020/pipes/taiga-ui-cdk-pipes.mjs} +0 -0
- /package/{esm2015/services/index.js → esm2020/services/index.mjs} +0 -0
- /package/{esm2015/services/taiga-ui-cdk-services.js → esm2020/services/taiga-ui-cdk-services.mjs} +0 -0
- /package/{esm2015/taiga-ui-cdk.js → esm2020/taiga-ui-cdk.mjs} +0 -0
- /package/{esm2015/tokens/alerts.js → esm2020/tokens/alerts.mjs} +0 -0
- /package/{esm2015/tokens/default-renderer.js → esm2020/tokens/default-renderer.mjs} +0 -0
- /package/{esm2015/tokens/dialogs.js → esm2020/tokens/dialogs.mjs} +0 -0
- /package/{esm2015/tokens/focusable-item-accessor.js → esm2020/tokens/focusable-item-accessor.mjs} +0 -0
- /package/{esm2015/tokens/index.js → esm2020/tokens/index.mjs} +0 -0
- /package/{esm2015/tokens/is-android.js → esm2020/tokens/is-android.mjs} +0 -0
- /package/{esm2015/tokens/is-apple.js → esm2020/tokens/is-apple.mjs} +0 -0
- /package/{esm2015/tokens/is-chromium.js → esm2020/tokens/is-chromium.mjs} +0 -0
- /package/{esm2015/tokens/is-cypress.js → esm2020/tokens/is-cypress.mjs} +0 -0
- /package/{esm2015/tokens/is-e2e.js → esm2020/tokens/is-e2e.mjs} +0 -0
- /package/{esm2015/tokens/is-ios.js → esm2020/tokens/is-ios.mjs} +0 -0
- /package/{esm2015/tokens/is-mobile.js → esm2020/tokens/is-mobile.mjs} +0 -0
- /package/{esm2015/tokens/is-playwright.js → esm2020/tokens/is-playwright.mjs} +0 -0
- /package/{esm2015/tokens/is-stackblitz.js → esm2020/tokens/is-stackblitz.mjs} +0 -0
- /package/{esm2015/tokens/platform.js → esm2020/tokens/platform.mjs} +0 -0
- /package/{esm2015/tokens/range.js → esm2020/tokens/range.mjs} +0 -0
- /package/{esm2015/tokens/scroll-ref.js → esm2020/tokens/scroll-ref.mjs} +0 -0
- /package/{esm2015/tokens/swipe-options.js → esm2020/tokens/swipe-options.mjs} +0 -0
- /package/{esm2015/tokens/taiga-ui-cdk-tokens.js → esm2020/tokens/taiga-ui-cdk-tokens.mjs} +0 -0
- /package/{esm2015/tokens/take-only-trusted-events.js → esm2020/tokens/take-only-trusted-events.mjs} +0 -0
- /package/{esm2015/tokens/touch-supported.js → esm2020/tokens/touch-supported.mjs} +0 -0
- /package/{esm2015/tokens/zoom-options.js → esm2020/tokens/zoom-options.mjs} +0 -0
- /package/{esm2015/types/autocomplete.js → esm2020/types/autocomplete.mjs} +0 -0
- /package/{esm2015/types/date-mode.js → esm2020/types/date-mode.mjs} +0 -0
- /package/{esm2015/types/deep-partial.js → esm2020/types/deep-partial.mjs} +0 -0
- /package/{esm2015/types/dialog.js → esm2020/types/dialog.mjs} +0 -0
- /package/{esm2015/types/event-with.js → esm2020/types/event-with.mjs} +0 -0
- /package/{esm2015/types/handler.js → esm2020/types/handler.mjs} +0 -0
- /package/{esm2015/types/index.js → esm2020/types/index.mjs} +0 -0
- /package/{esm2015/types/injection-token-type.js → esm2020/types/injection-token-type.mjs} +0 -0
- /package/{esm2015/types/input-mode.js → esm2020/types/input-mode.mjs} +0 -0
- /package/{esm2015/types/input-type.js → esm2020/types/input-type.mjs} +0 -0
- /package/{esm2015/types/mapper.js → esm2020/types/mapper.mjs} +0 -0
- /package/{esm2015/types/matcher.js → esm2020/types/matcher.mjs} +0 -0
- /package/{esm2015/types/overscroll-mode.js → esm2020/types/overscroll-mode.mjs} +0 -0
- /package/{esm2015/types/platform.js → esm2020/types/platform.mjs} +0 -0
- /package/{esm2015/types/rounding.js → esm2020/types/rounding.mjs} +0 -0
- /package/{esm2015/types/taiga-ui-cdk-types.js → esm2020/types/taiga-ui-cdk-types.mjs} +0 -0
- /package/{esm2015/types/time-mode.js → esm2020/types/time-mode.mjs} +0 -0
- /package/{esm2015/types/values-of.js → esm2020/types/values-of.mjs} +0 -0
- /package/{esm2015/utils/browser/index.js → esm2020/utils/browser/index.mjs} +0 -0
- /package/{esm2015/utils/browser/is-edge-older-than.js → esm2020/utils/browser/is-edge-older-than.mjs} +0 -0
- /package/{esm2015/utils/browser/is-edge.js → esm2020/utils/browser/is-edge.mjs} +0 -0
- /package/{esm2015/utils/browser/is-firefox.js → esm2020/utils/browser/is-firefox.mjs} +0 -0
- /package/{esm2015/utils/browser/taiga-ui-cdk-utils-browser.js → esm2020/utils/browser/taiga-ui-cdk-utils-browser.mjs} +0 -0
- /package/{esm2015/utils/color/hex-to-rgb.js → esm2020/utils/color/hex-to-rgb.mjs} +0 -0
- /package/{esm2015/utils/color/hsv-to-rgb.js → esm2020/utils/color/hsv-to-rgb.mjs} +0 -0
- /package/{esm2015/utils/color/index.js → esm2020/utils/color/index.mjs} +0 -0
- /package/{esm2015/utils/color/parse-color.js → esm2020/utils/color/parse-color.mjs} +0 -0
- /package/{esm2015/utils/color/rgb-to-hex.js → esm2020/utils/color/rgb-to-hex.mjs} +0 -0
- /package/{esm2015/utils/color/rgb-to-hsv.js → esm2020/utils/color/rgb-to-hsv.mjs} +0 -0
- /package/{esm2015/utils/color/taiga-ui-cdk-utils-color.js → esm2020/utils/color/taiga-ui-cdk-utils-color.mjs} +0 -0
- /package/{esm2015/utils/dom/can-scroll.js → esm2020/utils/dom/can-scroll.mjs} +0 -0
- /package/{esm2015/utils/dom/element-checks.js → esm2020/utils/dom/element-checks.mjs} +0 -0
- /package/{esm2015/utils/dom/get-actual-target.js → esm2020/utils/dom/get-actual-target.mjs} +0 -0
- /package/{esm2015/utils/dom/get-clipboard-data-text.js → esm2020/utils/dom/get-clipboard-data-text.mjs} +0 -0
- /package/{esm2015/utils/dom/get-document-or-shadow-root.js → esm2020/utils/dom/get-document-or-shadow-root.mjs} +0 -0
- /package/{esm2015/utils/dom/get-element-offset.js → esm2020/utils/dom/get-element-offset.mjs} +0 -0
- /package/{esm2015/utils/dom/get-scroll-parent.js → esm2020/utils/dom/get-scroll-parent.mjs} +0 -0
- /package/{esm2015/utils/dom/index.js → esm2020/utils/dom/index.mjs} +0 -0
- /package/{esm2015/utils/dom/is-current-target.js → esm2020/utils/dom/is-current-target.mjs} +0 -0
- /package/{esm2015/utils/dom/is-element-editable.js → esm2020/utils/dom/is-element-editable.mjs} +0 -0
- /package/{esm2015/utils/dom/is-inside-iframe.js → esm2020/utils/dom/is-inside-iframe.mjs} +0 -0
- /package/{esm2015/utils/dom/taiga-ui-cdk-utils-dom.js → esm2020/utils/dom/taiga-ui-cdk-utils-dom.mjs} +0 -0
- /package/{esm2015/utils/focus/blur-native-focused.js → esm2020/utils/focus/blur-native-focused.mjs} +0 -0
- /package/{esm2015/utils/focus/get-closest-focusable.js → esm2020/utils/focus/get-closest-focusable.mjs} +0 -0
- /package/{esm2015/utils/focus/index.js → esm2020/utils/focus/index.mjs} +0 -0
- /package/{esm2015/utils/focus/is-native-focused-in.js → esm2020/utils/focus/is-native-focused-in.mjs} +0 -0
- /package/{esm2015/utils/focus/is-native-keyboard-focusable.js → esm2020/utils/focus/is-native-keyboard-focusable.mjs} +0 -0
- /package/{esm2015/utils/focus/is-native-mouse-focusable.js → esm2020/utils/focus/is-native-mouse-focusable.mjs} +0 -0
- /package/{esm2015/utils/focus/move-focus.js → esm2020/utils/focus/move-focus.mjs} +0 -0
- /package/{esm2015/utils/focus/set-native-mouse-focused.js → esm2020/utils/focus/set-native-mouse-focused.mjs} +0 -0
- /package/{esm2015/utils/focus/taiga-ui-cdk-utils-focus.js → esm2020/utils/focus/taiga-ui-cdk-utils-focus.mjs} +0 -0
- /package/{esm2015/utils/format/index.js → esm2020/utils/format/index.mjs} +0 -0
- /package/{esm2015/utils/format/px.js → esm2020/utils/format/px.mjs} +0 -0
- /package/{esm2015/utils/format/taiga-ui-cdk-utils-format.js → esm2020/utils/format/taiga-ui-cdk-utils-format.mjs} +0 -0
- /package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
- /package/{esm2015/utils/math/clamp.js → esm2020/utils/math/clamp.mjs} +0 -0
- /package/{esm2015/utils/math/in-range.js → esm2020/utils/math/in-range.mjs} +0 -0
- /package/{esm2015/utils/math/index.js → esm2020/utils/math/index.mjs} +0 -0
- /package/{esm2015/utils/math/normalize-to-int-number.js → esm2020/utils/math/normalize-to-int-number.mjs} +0 -0
- /package/{esm2015/utils/math/quantize.js → esm2020/utils/math/quantize.mjs} +0 -0
- /package/{esm2015/utils/math/round-with.js → esm2020/utils/math/round-with.mjs} +0 -0
- /package/{esm2015/utils/math/round.js → esm2020/utils/math/round.mjs} +0 -0
- /package/{esm2015/utils/math/sum.js → esm2020/utils/math/sum.mjs} +0 -0
- /package/{esm2015/utils/math/taiga-ui-cdk-utils-math.js → esm2020/utils/math/taiga-ui-cdk-utils-math.mjs} +0 -0
- /package/{esm2015/utils/math/to-int.js → esm2020/utils/math/to-int.mjs} +0 -0
- /package/{esm2015/utils/math/to-integer.js → esm2020/utils/math/to-integer.mjs} +0 -0
- /package/{esm2015/utils/math/to-radians.js → esm2020/utils/math/to-radians.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/array-remove.js → esm2020/utils/miscellaneous/array-remove.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/array-shallow-equals.js → esm2020/utils/miscellaneous/array-shallow-equals.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/array-toggle.js → esm2020/utils/miscellaneous/array-toggle.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/clean-object.js → esm2020/utils/miscellaneous/clean-object.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/create-options.js → esm2020/utils/miscellaneous/create-options.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/create-token.js → esm2020/utils/miscellaneous/create-token.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/default-sort.js → esm2020/utils/miscellaneous/default-sort.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/distance-between-touches.js → esm2020/utils/miscellaneous/distance-between-touches.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/ease-in-out-quad.js → esm2020/utils/miscellaneous/ease-in-out-quad.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/flat-length.js → esm2020/utils/miscellaneous/flat-length.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/get-original-array-from-query-list.js → esm2020/utils/miscellaneous/get-original-array-from-query-list.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/get-swipe-direction.js → esm2020/utils/miscellaneous/get-swipe-direction.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/index.js → esm2020/utils/miscellaneous/index.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/is-falsy.js → esm2020/utils/miscellaneous/is-falsy.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/is-present.js → esm2020/utils/miscellaneous/is-present.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/is-valid-url.js → esm2020/utils/miscellaneous/is-valid-url.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/mark-control-as-touched-and-validate.js → esm2020/utils/miscellaneous/mark-control-as-touched-and-validate.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/nullable-same.js → esm2020/utils/miscellaneous/nullable-same.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.js → esm2020/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/uniq-by.js → esm2020/utils/miscellaneous/uniq-by.mjs} +0 -0
- /package/{esm2015/utils/os/index.js → esm2020/utils/os/index.mjs} +0 -0
- /package/{esm2015/utils/os/is-apple-platform.js → esm2020/utils/os/is-apple-platform.mjs} +0 -0
- /package/{esm2015/utils/os/is-apple.js → esm2020/utils/os/is-apple.mjs} +0 -0
- /package/{esm2015/utils/os/is-ios.js → esm2020/utils/os/is-ios.mjs} +0 -0
- /package/{esm2015/utils/os/taiga-ui-cdk-utils-os.js → esm2020/utils/os/taiga-ui-cdk-utils-os.mjs} +0 -0
- /package/{esm2015/utils/svg/index.js → esm2020/utils/svg/index.mjs} +0 -0
- /package/{esm2015/utils/svg/taiga-ui-cdk-utils-svg.js → esm2020/utils/svg/taiga-ui-cdk-utils-svg.mjs} +0 -0
- /package/{esm2015/utils/taiga-ui-cdk-utils.js → esm2020/utils/taiga-ui-cdk-utils.mjs} +0 -0
@@ -1,169 +0,0 @@
|
|
1
|
-
import { Directive, ElementRef, Inject, NgZone, Optional, Renderer2, Self, } from '@angular/core';
|
2
|
-
import { WINDOW } from '@ng-web-apis/common';
|
3
|
-
import { TUI_FOCUSABLE_ITEM_ACCESSOR } from '@taiga-ui/cdk/tokens';
|
4
|
-
import { tuiIsPresent, tuiPx } from '@taiga-ui/cdk/utils';
|
5
|
-
import { AbstractTuiAutofocusHandler } from './abstract.handler';
|
6
|
-
import * as i0 from "@angular/core";
|
7
|
-
const TEXTFIELD_ATTRS = [
|
8
|
-
`type`,
|
9
|
-
`inputMode`,
|
10
|
-
`autocomplete`,
|
11
|
-
`accept`,
|
12
|
-
`min`,
|
13
|
-
`max`,
|
14
|
-
`step`,
|
15
|
-
`pattern`,
|
16
|
-
`size`,
|
17
|
-
`maxlength`,
|
18
|
-
];
|
19
|
-
export class TuiIosAutofocusHandler extends AbstractTuiAutofocusHandler {
|
20
|
-
constructor(focusable, el, renderer, zone, win) {
|
21
|
-
super(focusable, el);
|
22
|
-
this.renderer = renderer;
|
23
|
-
this.zone = zone;
|
24
|
-
this.win = win;
|
25
|
-
this.patchCssStyles();
|
26
|
-
}
|
27
|
-
setFocus() {
|
28
|
-
if (this.isTextFieldElement) {
|
29
|
-
this.zone.runOutsideAngular(() => this.iosWebkitAutofocus());
|
30
|
-
}
|
31
|
-
else {
|
32
|
-
this.element.focus({ preventScroll: true });
|
33
|
-
}
|
34
|
-
}
|
35
|
-
iosWebkitAutofocus() {
|
36
|
-
var _a;
|
37
|
-
const fakeInput = this.makeFakeInput();
|
38
|
-
const duration = this.getDurationTimeBeforeFocus();
|
39
|
-
let fakeFocusTimeoutId = 0;
|
40
|
-
let elementFocusTimeoutId = 0;
|
41
|
-
const blurHandler = () => fakeInput.focus({ preventScroll: true });
|
42
|
-
const focusHandler = () => {
|
43
|
-
clearTimeout(fakeFocusTimeoutId);
|
44
|
-
fakeFocusTimeoutId = this.win.setTimeout(() => {
|
45
|
-
clearTimeout(elementFocusTimeoutId);
|
46
|
-
fakeInput.removeEventListener(`blur`, blurHandler);
|
47
|
-
fakeInput.removeEventListener(`focus`, focusHandler);
|
48
|
-
elementFocusTimeoutId = this.win.setTimeout(() => {
|
49
|
-
this.element.focus({ preventScroll: false });
|
50
|
-
fakeInput.remove();
|
51
|
-
}, duration);
|
52
|
-
});
|
53
|
-
};
|
54
|
-
fakeInput.addEventListener(`blur`, blurHandler, { once: true });
|
55
|
-
fakeInput.addEventListener(`focus`, focusHandler);
|
56
|
-
if (this.insideDialog()) {
|
57
|
-
this.win.document.body.appendChild(fakeInput);
|
58
|
-
}
|
59
|
-
else {
|
60
|
-
(_a = this.element.parentElement) === null || _a === void 0 ? void 0 : _a.appendChild(fakeInput);
|
61
|
-
}
|
62
|
-
fakeInput.focus({ preventScroll: true });
|
63
|
-
}
|
64
|
-
/**
|
65
|
-
* @note:
|
66
|
-
* emulate textfield position in layout with cursor
|
67
|
-
* before focus to real textfield element
|
68
|
-
*
|
69
|
-
* required note:
|
70
|
-
* [fakeInput.readOnly = true] ~
|
71
|
-
* don't use {readOnly: true} value, it's doesn't work for emulate autofill
|
72
|
-
*
|
73
|
-
* [fakeInput.style.opacity = 0] ~
|
74
|
-
* don't use {opacity: 0}, sometimes it's doesn't work for emulate real input
|
75
|
-
*
|
76
|
-
* [fakeInput.style.fontSize = 16px] ~
|
77
|
-
* disable possible auto zoom
|
78
|
-
*
|
79
|
-
* [fakeInput.style.top/left] ~
|
80
|
-
* emulate position cursor before focus to real textfield element
|
81
|
-
*/
|
82
|
-
makeFakeInput() {
|
83
|
-
const fakeInput = this.renderer.createElement(`input`);
|
84
|
-
const rect = this.element.getBoundingClientRect();
|
85
|
-
this.patchFakeInputFromFocusableElement(fakeInput);
|
86
|
-
fakeInput.style.height = tuiPx(rect.height);
|
87
|
-
fakeInput.style.width = tuiPx(rect.width / 2);
|
88
|
-
fakeInput.style.position = `fixed`;
|
89
|
-
fakeInput.style.zIndex = `-99999999`;
|
90
|
-
fakeInput.style.caretColor = `transparent`;
|
91
|
-
fakeInput.style.border = `none`;
|
92
|
-
fakeInput.style.outline = `none`;
|
93
|
-
fakeInput.style.color = `transparent`;
|
94
|
-
fakeInput.style.background = `transparent`;
|
95
|
-
fakeInput.style.cursor = `none`;
|
96
|
-
fakeInput.style.fontSize = tuiPx(16);
|
97
|
-
fakeInput.style.top = tuiPx(rect.top);
|
98
|
-
fakeInput.style.left = tuiPx(rect.left);
|
99
|
-
return fakeInput;
|
100
|
-
}
|
101
|
-
getDurationTimeBeforeFocus() {
|
102
|
-
return (parseFloat(this.win
|
103
|
-
.getComputedStyle(this.element)
|
104
|
-
.getPropertyValue(`--tui-duration`)) || 0);
|
105
|
-
}
|
106
|
-
/**
|
107
|
-
* @note:
|
108
|
-
* unfortunately, in older versions of iOS
|
109
|
-
* there is a bug that the fake input cursor
|
110
|
-
* will move along with the dialog animation
|
111
|
-
* and then that dialog will be shaking
|
112
|
-
*/
|
113
|
-
insideDialog() {
|
114
|
-
return !!this.element.closest(`tui-dialog`);
|
115
|
-
}
|
116
|
-
/**
|
117
|
-
* @note:
|
118
|
-
* This is necessary so that the viewport isn't recalculated
|
119
|
-
* and then the dialogs don't shake.
|
120
|
-
*
|
121
|
-
* Also, we need to fixed height viewport,
|
122
|
-
* so that when focusing the dialogs don't shake
|
123
|
-
*/
|
124
|
-
patchCssStyles() {
|
125
|
-
[this.win.document.documentElement, this.win.document.body].forEach(element => {
|
126
|
-
element.style.setProperty(`overflow`, `auto`);
|
127
|
-
element.style.setProperty(`height`, `100%`);
|
128
|
-
});
|
129
|
-
}
|
130
|
-
/**
|
131
|
-
* @note:
|
132
|
-
* inherit basic attributes values from real input
|
133
|
-
* for help iOS detect what do you want see on keyboard,
|
134
|
-
* for example [inputMode=numeric, autocomplete=cc-number]
|
135
|
-
*/
|
136
|
-
patchFakeInputFromFocusableElement(fakeInput) {
|
137
|
-
TEXTFIELD_ATTRS.forEach(attr => {
|
138
|
-
const value = this.element.getAttribute(attr);
|
139
|
-
if (tuiIsPresent(value)) {
|
140
|
-
fakeInput.setAttribute(attr, value);
|
141
|
-
}
|
142
|
-
});
|
143
|
-
}
|
144
|
-
}
|
145
|
-
TuiIosAutofocusHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiIosAutofocusHandler, deps: [{ token: TUI_FOCUSABLE_ITEM_ACCESSOR, optional: true, self: true }, { token: ElementRef }, { token: Renderer2 }, { token: NgZone }, { token: WINDOW }], target: i0.ɵɵFactoryTarget.Directive });
|
146
|
-
TuiIosAutofocusHandler.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiIosAutofocusHandler, usesInheritance: true, ngImport: i0 });
|
147
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiIosAutofocusHandler, decorators: [{
|
148
|
-
type: Directive
|
149
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
150
|
-
type: Optional
|
151
|
-
}, {
|
152
|
-
type: Self
|
153
|
-
}, {
|
154
|
-
type: Inject,
|
155
|
-
args: [TUI_FOCUSABLE_ITEM_ACCESSOR]
|
156
|
-
}] }, { type: i0.ElementRef, decorators: [{
|
157
|
-
type: Inject,
|
158
|
-
args: [ElementRef]
|
159
|
-
}] }, { type: i0.Renderer2, decorators: [{
|
160
|
-
type: Inject,
|
161
|
-
args: [Renderer2]
|
162
|
-
}] }, { type: i0.NgZone, decorators: [{
|
163
|
-
type: Inject,
|
164
|
-
args: [NgZone]
|
165
|
-
}] }, { type: Window, decorators: [{
|
166
|
-
type: Inject,
|
167
|
-
args: [WINDOW]
|
168
|
-
}] }]; } });
|
169
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW9zLmhhbmRsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9hdXRvLWZvY3VzL2hhbmRsZXJzL2lvcy5oYW5kbGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBQ1QsVUFBVSxFQUNWLE1BQU0sRUFDTixNQUFNLEVBQ04sUUFBUSxFQUNSLFNBQVMsRUFDVCxJQUFJLEdBQ1AsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLE1BQU0sRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRTNDLE9BQU8sRUFBQywyQkFBMkIsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQ2pFLE9BQU8sRUFBQyxZQUFZLEVBQUUsS0FBSyxFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFFeEQsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sb0JBQW9CLENBQUM7O0FBRS9ELE1BQU0sZUFBZSxHQUFHO0lBQ3BCLE1BQU07SUFDTixXQUFXO0lBQ1gsY0FBYztJQUNkLFFBQVE7SUFDUixLQUFLO0lBQ0wsS0FBSztJQUNMLE1BQU07SUFDTixTQUFTO0lBQ1QsTUFBTTtJQUNOLFdBQVc7Q0FDTCxDQUFDO0FBR1gsTUFBTSxPQUFPLHNCQUF1QixTQUFRLDJCQUEyQjtJQUNuRSxZQUlJLFNBQTZDLEVBQ3pCLEVBQTJCLEVBQ1gsUUFBbUIsRUFDdEIsSUFBWSxFQUNaLEdBQVc7UUFFNUMsS0FBSyxDQUFDLFNBQVMsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUplLGFBQVEsR0FBUixRQUFRLENBQVc7UUFDdEIsU0FBSSxHQUFKLElBQUksQ0FBUTtRQUNaLFFBQUcsR0FBSCxHQUFHLENBQVE7UUFHNUMsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFFRCxRQUFRO1FBQ0osSUFBSSxJQUFJLENBQUMsa0JBQWtCLEVBQUU7WUFDekIsSUFBSSxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQyxDQUFDO1NBQ2hFO2FBQU07WUFDSCxJQUFJLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxFQUFDLGFBQWEsRUFBRSxJQUFJLEVBQUMsQ0FBQyxDQUFDO1NBQzdDO0lBQ0wsQ0FBQztJQUVPLGtCQUFrQjs7UUFDdEIsTUFBTSxTQUFTLEdBQXFCLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztRQUN6RCxNQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsMEJBQTBCLEVBQUUsQ0FBQztRQUNuRCxJQUFJLGtCQUFrQixHQUFHLENBQUMsQ0FBQztRQUMzQixJQUFJLHFCQUFxQixHQUFHLENBQUMsQ0FBQztRQUU5QixNQUFNLFdBQVcsR0FBRyxHQUFTLEVBQUUsQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLEVBQUMsYUFBYSxFQUFFLElBQUksRUFBQyxDQUFDLENBQUM7UUFDdkUsTUFBTSxZQUFZLEdBQUcsR0FBUyxFQUFFO1lBQzVCLFlBQVksQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO1lBRWpDLGtCQUFrQixHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLEdBQUcsRUFBRTtnQkFDMUMsWUFBWSxDQUFDLHFCQUFxQixDQUFDLENBQUM7Z0JBRXBDLFNBQVMsQ0FBQyxtQkFBbUIsQ0FBQyxNQUFNLEVBQUUsV0FBVyxDQUFDLENBQUM7Z0JBQ25ELFNBQVMsQ0FBQyxtQkFBbUIsQ0FBQyxPQUFPLEVBQUUsWUFBWSxDQUFDLENBQUM7Z0JBRXJELHFCQUFxQixHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLEdBQUcsRUFBRTtvQkFDN0MsSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsRUFBQyxhQUFhLEVBQUUsS0FBSyxFQUFDLENBQUMsQ0FBQztvQkFDM0MsU0FBUyxDQUFDLE1BQU0sRUFBRSxDQUFDO2dCQUN2QixDQUFDLEVBQUUsUUFBUSxDQUFDLENBQUM7WUFDakIsQ0FBQyxDQUFDLENBQUM7UUFDUCxDQUFDLENBQUM7UUFFRixTQUFTLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxFQUFFLFdBQVcsRUFBRSxFQUFDLElBQUksRUFBRSxJQUFJLEVBQUMsQ0FBQyxDQUFDO1FBQzlELFNBQVMsQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLEVBQUUsWUFBWSxDQUFDLENBQUM7UUFFbEQsSUFBSSxJQUFJLENBQUMsWUFBWSxFQUFFLEVBQUU7WUFDckIsSUFBSSxDQUFDLEdBQUcsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxTQUFTLENBQUMsQ0FBQztTQUNqRDthQUFNO1lBQ0gsTUFBQSxJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsMENBQUUsV0FBVyxDQUFDLFNBQVMsQ0FBQyxDQUFDO1NBQ3REO1FBRUQsU0FBUyxDQUFDLEtBQUssQ0FBQyxFQUFDLGFBQWEsRUFBRSxJQUFJLEVBQUMsQ0FBQyxDQUFDO0lBQzNDLENBQUM7SUFFRDs7Ozs7Ozs7Ozs7Ozs7Ozs7T0FpQkc7SUFDSyxhQUFhO1FBQ2pCLE1BQU0sU0FBUyxHQUFxQixJQUFJLENBQUMsUUFBUSxDQUFDLGFBQWEsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUN6RSxNQUFNLElBQUksR0FBWSxJQUFJLENBQUMsT0FBTyxDQUFDLHFCQUFxQixFQUFFLENBQUM7UUFFM0QsSUFBSSxDQUFDLGtDQUFrQyxDQUFDLFNBQVMsQ0FBQyxDQUFDO1FBRW5ELFNBQVMsQ0FBQyxLQUFLLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDNUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDLENBQUM7UUFDOUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxRQUFRLEdBQUcsT0FBTyxDQUFDO1FBQ25DLFNBQVMsQ0FBQyxLQUFLLENBQUMsTUFBTSxHQUFHLFdBQVcsQ0FBQztRQUNyQyxTQUFTLENBQUMsS0FBSyxDQUFDLFVBQVUsR0FBRyxhQUFhLENBQUM7UUFDM0MsU0FBUyxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDO1FBQ2hDLFNBQVMsQ0FBQyxLQUFLLENBQUMsT0FBTyxHQUFHLE1BQU0sQ0FBQztRQUNqQyxTQUFTLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxhQUFhLENBQUM7UUFDdEMsU0FBUyxDQUFDLEtBQUssQ0FBQyxVQUFVLEdBQUcsYUFBYSxDQUFDO1FBQzNDLFNBQVMsQ0FBQyxLQUFLLENBQUMsTUFBTSxHQUFHLE1BQU0sQ0FBQztRQUNoQyxTQUFTLENBQUMsS0FBSyxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDckMsU0FBUyxDQUFDLEtBQUssQ0FBQyxHQUFHLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztRQUN0QyxTQUFTLENBQUMsS0FBSyxDQUFDLElBQUksR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRXhDLE9BQU8sU0FBUyxDQUFDO0lBQ3JCLENBQUM7SUFFTywwQkFBMEI7UUFDOUIsT0FBTyxDQUNILFVBQVUsQ0FDTixJQUFJLENBQUMsR0FBRzthQUNILGdCQUFnQixDQUFDLElBQUksQ0FBQyxPQUFPLENBQUM7YUFDOUIsZ0JBQWdCLENBQUMsZ0JBQWdCLENBQUMsQ0FDMUMsSUFBSSxDQUFDLENBQ1QsQ0FBQztJQUNOLENBQUM7SUFFRDs7Ozs7O09BTUc7SUFDSyxZQUFZO1FBQ2hCLE9BQU8sQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxDQUFDO0lBQ2hELENBQUM7SUFFRDs7Ozs7OztPQU9HO0lBQ0ssY0FBYztRQUNsQixDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsUUFBUSxDQUFDLGVBQWUsRUFBRSxJQUFJLENBQUMsR0FBRyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLEVBQUU7WUFDMUUsT0FBTyxDQUFDLEtBQUssQ0FBQyxXQUFXLENBQUMsVUFBVSxFQUFFLE1BQU0sQ0FBQyxDQUFDO1lBQzlDLE9BQU8sQ0FBQyxLQUFLLENBQUMsV0FBVyxDQUFDLFFBQVEsRUFBRSxNQUFNLENBQUMsQ0FBQztRQUNoRCxDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7SUFFRDs7Ozs7T0FLRztJQUNLLGtDQUFrQyxDQUFDLFNBQTJCO1FBQ2xFLGVBQWUsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLEVBQUU7WUFDM0IsTUFBTSxLQUFLLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7WUFFOUMsSUFBSSxZQUFZLENBQUMsS0FBSyxDQUFDLEVBQUU7Z0JBQ3JCLFNBQVMsQ0FBQyxZQUFZLENBQUMsSUFBSSxFQUFFLEtBQUssQ0FBQyxDQUFDO2FBQ3ZDO1FBQ0wsQ0FBQyxDQUFDLENBQUM7SUFDUCxDQUFDOztvSEFySlEsc0JBQXNCLGtCQUluQiwyQkFBMkIseUNBRTNCLFVBQVUsYUFDVixTQUFTLGFBQ1QsTUFBTSxhQUNOLE1BQU07d0dBVFQsc0JBQXNCOzRGQUF0QixzQkFBc0I7a0JBRGxDLFNBQVM7OzBCQUdELFFBQVE7OzBCQUNSLElBQUk7OzBCQUNKLE1BQU07MkJBQUMsMkJBQTJCOzswQkFFbEMsTUFBTTsyQkFBQyxVQUFVOzswQkFDakIsTUFBTTsyQkFBQyxTQUFTOzswQkFDaEIsTUFBTTsyQkFBQyxNQUFNOzhCQUN3QixNQUFNOzBCQUEzQyxNQUFNOzJCQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIERpcmVjdGl2ZSxcbiAgICBFbGVtZW50UmVmLFxuICAgIEluamVjdCxcbiAgICBOZ1pvbmUsXG4gICAgT3B0aW9uYWwsXG4gICAgUmVuZGVyZXIyLFxuICAgIFNlbGYsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtXSU5ET1d9IGZyb20gJ0BuZy13ZWItYXBpcy9jb21tb24nO1xuaW1wb3J0IHtUdWlGb2N1c2FibGVFbGVtZW50QWNjZXNzb3J9IGZyb20gJ0B0YWlnYS11aS9jZGsvaW50ZXJmYWNlcyc7XG5pbXBvcnQge1RVSV9GT0NVU0FCTEVfSVRFTV9BQ0NFU1NPUn0gZnJvbSAnQHRhaWdhLXVpL2Nkay90b2tlbnMnO1xuaW1wb3J0IHt0dWlJc1ByZXNlbnQsIHR1aVB4fSBmcm9tICdAdGFpZ2EtdWkvY2RrL3V0aWxzJztcblxuaW1wb3J0IHtBYnN0cmFjdFR1aUF1dG9mb2N1c0hhbmRsZXJ9IGZyb20gJy4vYWJzdHJhY3QuaGFuZGxlcic7XG5cbmNvbnN0IFRFWFRGSUVMRF9BVFRSUyA9IFtcbiAgICBgdHlwZWAsXG4gICAgYGlucHV0TW9kZWAsXG4gICAgYGF1dG9jb21wbGV0ZWAsXG4gICAgYGFjY2VwdGAsXG4gICAgYG1pbmAsXG4gICAgYG1heGAsXG4gICAgYHN0ZXBgLFxuICAgIGBwYXR0ZXJuYCxcbiAgICBgc2l6ZWAsXG4gICAgYG1heGxlbmd0aGAsXG5dIGFzIGNvbnN0O1xuXG5ARGlyZWN0aXZlKClcbmV4cG9ydCBjbGFzcyBUdWlJb3NBdXRvZm9jdXNIYW5kbGVyIGV4dGVuZHMgQWJzdHJhY3RUdWlBdXRvZm9jdXNIYW5kbGVyIHtcbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgQE9wdGlvbmFsKClcbiAgICAgICAgQFNlbGYoKVxuICAgICAgICBASW5qZWN0KFRVSV9GT0NVU0FCTEVfSVRFTV9BQ0NFU1NPUilcbiAgICAgICAgZm9jdXNhYmxlOiBUdWlGb2N1c2FibGVFbGVtZW50QWNjZXNzb3IgfCBudWxsLFxuICAgICAgICBASW5qZWN0KEVsZW1lbnRSZWYpIGVsOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50PixcbiAgICAgICAgQEluamVjdChSZW5kZXJlcjIpIHByaXZhdGUgcmVhZG9ubHkgcmVuZGVyZXI6IFJlbmRlcmVyMixcbiAgICAgICAgQEluamVjdChOZ1pvbmUpIHByaXZhdGUgcmVhZG9ubHkgem9uZTogTmdab25lLFxuICAgICAgICBASW5qZWN0KFdJTkRPVykgcHJpdmF0ZSByZWFkb25seSB3aW46IFdpbmRvdyxcbiAgICApIHtcbiAgICAgICAgc3VwZXIoZm9jdXNhYmxlLCBlbCk7XG4gICAgICAgIHRoaXMucGF0Y2hDc3NTdHlsZXMoKTtcbiAgICB9XG5cbiAgICBzZXRGb2N1cygpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMuaXNUZXh0RmllbGRFbGVtZW50KSB7XG4gICAgICAgICAgICB0aGlzLnpvbmUucnVuT3V0c2lkZUFuZ3VsYXIoKCkgPT4gdGhpcy5pb3NXZWJraXRBdXRvZm9jdXMoKSk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICB0aGlzLmVsZW1lbnQuZm9jdXMoe3ByZXZlbnRTY3JvbGw6IHRydWV9KTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIHByaXZhdGUgaW9zV2Via2l0QXV0b2ZvY3VzKCk6IHZvaWQge1xuICAgICAgICBjb25zdCBmYWtlSW5wdXQ6IEhUTUxJbnB1dEVsZW1lbnQgPSB0aGlzLm1ha2VGYWtlSW5wdXQoKTtcbiAgICAgICAgY29uc3QgZHVyYXRpb24gPSB0aGlzLmdldER1cmF0aW9uVGltZUJlZm9yZUZvY3VzKCk7XG4gICAgICAgIGxldCBmYWtlRm9jdXNUaW1lb3V0SWQgPSAwO1xuICAgICAgICBsZXQgZWxlbWVudEZvY3VzVGltZW91dElkID0gMDtcblxuICAgICAgICBjb25zdCBibHVySGFuZGxlciA9ICgpOiB2b2lkID0+IGZha2VJbnB1dC5mb2N1cyh7cHJldmVudFNjcm9sbDogdHJ1ZX0pO1xuICAgICAgICBjb25zdCBmb2N1c0hhbmRsZXIgPSAoKTogdm9pZCA9PiB7XG4gICAgICAgICAgICBjbGVhclRpbWVvdXQoZmFrZUZvY3VzVGltZW91dElkKTtcblxuICAgICAgICAgICAgZmFrZUZvY3VzVGltZW91dElkID0gdGhpcy53aW4uc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgY2xlYXJUaW1lb3V0KGVsZW1lbnRGb2N1c1RpbWVvdXRJZCk7XG5cbiAgICAgICAgICAgICAgICBmYWtlSW5wdXQucmVtb3ZlRXZlbnRMaXN0ZW5lcihgYmx1cmAsIGJsdXJIYW5kbGVyKTtcbiAgICAgICAgICAgICAgICBmYWtlSW5wdXQucmVtb3ZlRXZlbnRMaXN0ZW5lcihgZm9jdXNgLCBmb2N1c0hhbmRsZXIpO1xuXG4gICAgICAgICAgICAgICAgZWxlbWVudEZvY3VzVGltZW91dElkID0gdGhpcy53aW4uc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5mb2N1cyh7cHJldmVudFNjcm9sbDogZmFsc2V9KTtcbiAgICAgICAgICAgICAgICAgICAgZmFrZUlucHV0LnJlbW92ZSgpO1xuICAgICAgICAgICAgICAgIH0sIGR1cmF0aW9uKTtcbiAgICAgICAgICAgIH0pO1xuICAgICAgICB9O1xuXG4gICAgICAgIGZha2VJbnB1dC5hZGRFdmVudExpc3RlbmVyKGBibHVyYCwgYmx1ckhhbmRsZXIsIHtvbmNlOiB0cnVlfSk7XG4gICAgICAgIGZha2VJbnB1dC5hZGRFdmVudExpc3RlbmVyKGBmb2N1c2AsIGZvY3VzSGFuZGxlcik7XG5cbiAgICAgICAgaWYgKHRoaXMuaW5zaWRlRGlhbG9nKCkpIHtcbiAgICAgICAgICAgIHRoaXMud2luLmRvY3VtZW50LmJvZHkuYXBwZW5kQ2hpbGQoZmFrZUlucHV0KTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMuZWxlbWVudC5wYXJlbnRFbGVtZW50Py5hcHBlbmRDaGlsZChmYWtlSW5wdXQpO1xuICAgICAgICB9XG5cbiAgICAgICAgZmFrZUlucHV0LmZvY3VzKHtwcmV2ZW50U2Nyb2xsOiB0cnVlfSk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogQG5vdGU6XG4gICAgICogZW11bGF0ZSB0ZXh0ZmllbGQgcG9zaXRpb24gaW4gbGF5b3V0IHdpdGggY3Vyc29yXG4gICAgICogYmVmb3JlIGZvY3VzIHRvIHJlYWwgdGV4dGZpZWxkIGVsZW1lbnRcbiAgICAgKlxuICAgICAqIHJlcXVpcmVkIG5vdGU6XG4gICAgICogW2Zha2VJbnB1dC5yZWFkT25seSA9IHRydWVdIH5cbiAgICAgKiBkb24ndCB1c2Uge3JlYWRPbmx5OiB0cnVlfSB2YWx1ZSwgaXQncyBkb2Vzbid0IHdvcmsgZm9yIGVtdWxhdGUgYXV0b2ZpbGxcbiAgICAgKlxuICAgICAqIFtmYWtlSW5wdXQuc3R5bGUub3BhY2l0eSA9IDBdIH5cbiAgICAgKiBkb24ndCB1c2Uge29wYWNpdHk6IDB9LCBzb21ldGltZXMgaXQncyBkb2Vzbid0IHdvcmsgZm9yIGVtdWxhdGUgcmVhbCBpbnB1dFxuICAgICAqXG4gICAgICogW2Zha2VJbnB1dC5zdHlsZS5mb250U2l6ZSA9IDE2cHhdIH5cbiAgICAgKiBkaXNhYmxlIHBvc3NpYmxlIGF1dG8gem9vbVxuICAgICAqXG4gICAgICogW2Zha2VJbnB1dC5zdHlsZS50b3AvbGVmdF0gflxuICAgICAqIGVtdWxhdGUgcG9zaXRpb24gY3Vyc29yIGJlZm9yZSBmb2N1cyB0byByZWFsIHRleHRmaWVsZCBlbGVtZW50XG4gICAgICovXG4gICAgcHJpdmF0ZSBtYWtlRmFrZUlucHV0KCk6IEhUTUxJbnB1dEVsZW1lbnQge1xuICAgICAgICBjb25zdCBmYWtlSW5wdXQ6IEhUTUxJbnB1dEVsZW1lbnQgPSB0aGlzLnJlbmRlcmVyLmNyZWF0ZUVsZW1lbnQoYGlucHV0YCk7XG4gICAgICAgIGNvbnN0IHJlY3Q6IERPTVJlY3QgPSB0aGlzLmVsZW1lbnQuZ2V0Qm91bmRpbmdDbGllbnRSZWN0KCk7XG5cbiAgICAgICAgdGhpcy5wYXRjaEZha2VJbnB1dEZyb21Gb2N1c2FibGVFbGVtZW50KGZha2VJbnB1dCk7XG5cbiAgICAgICAgZmFrZUlucHV0LnN0eWxlLmhlaWdodCA9IHR1aVB4KHJlY3QuaGVpZ2h0KTtcbiAgICAgICAgZmFrZUlucHV0LnN0eWxlLndpZHRoID0gdHVpUHgocmVjdC53aWR0aCAvIDIpO1xuICAgICAgICBmYWtlSW5wdXQuc3R5bGUucG9zaXRpb24gPSBgZml4ZWRgO1xuICAgICAgICBmYWtlSW5wdXQuc3R5bGUuekluZGV4ID0gYC05OTk5OTk5OWA7XG4gICAgICAgIGZha2VJbnB1dC5zdHlsZS5jYXJldENvbG9yID0gYHRyYW5zcGFyZW50YDtcbiAgICAgICAgZmFrZUlucHV0LnN0eWxlLmJvcmRlciA9IGBub25lYDtcbiAgICAgICAgZmFrZUlucHV0LnN0eWxlLm91dGxpbmUgPSBgbm9uZWA7XG4gICAgICAgIGZha2VJbnB1dC5zdHlsZS5jb2xvciA9IGB0cmFuc3BhcmVudGA7XG4gICAgICAgIGZha2VJbnB1dC5zdHlsZS5iYWNrZ3JvdW5kID0gYHRyYW5zcGFyZW50YDtcbiAgICAgICAgZmFrZUlucHV0LnN0eWxlLmN1cnNvciA9IGBub25lYDtcbiAgICAgICAgZmFrZUlucHV0LnN0eWxlLmZvbnRTaXplID0gdHVpUHgoMTYpO1xuICAgICAgICBmYWtlSW5wdXQuc3R5bGUudG9wID0gdHVpUHgocmVjdC50b3ApO1xuICAgICAgICBmYWtlSW5wdXQuc3R5bGUubGVmdCA9IHR1aVB4KHJlY3QubGVmdCk7XG5cbiAgICAgICAgcmV0dXJuIGZha2VJbnB1dDtcbiAgICB9XG5cbiAgICBwcml2YXRlIGdldER1cmF0aW9uVGltZUJlZm9yZUZvY3VzKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiAoXG4gICAgICAgICAgICBwYXJzZUZsb2F0KFxuICAgICAgICAgICAgICAgIHRoaXMud2luXG4gICAgICAgICAgICAgICAgICAgIC5nZXRDb21wdXRlZFN0eWxlKHRoaXMuZWxlbWVudClcbiAgICAgICAgICAgICAgICAgICAgLmdldFByb3BlcnR5VmFsdWUoYC0tdHVpLWR1cmF0aW9uYCksXG4gICAgICAgICAgICApIHx8IDBcbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBAbm90ZTpcbiAgICAgKiB1bmZvcnR1bmF0ZWx5LCBpbiBvbGRlciB2ZXJzaW9ucyBvZiBpT1NcbiAgICAgKiB0aGVyZSBpcyBhIGJ1ZyB0aGF0IHRoZSBmYWtlIGlucHV0IGN1cnNvclxuICAgICAqIHdpbGwgbW92ZSBhbG9uZyB3aXRoIHRoZSBkaWFsb2cgYW5pbWF0aW9uXG4gICAgICogYW5kIHRoZW4gdGhhdCBkaWFsb2cgd2lsbCBiZSBzaGFraW5nXG4gICAgICovXG4gICAgcHJpdmF0ZSBpbnNpZGVEaWFsb2coKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiAhIXRoaXMuZWxlbWVudC5jbG9zZXN0KGB0dWktZGlhbG9nYCk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogQG5vdGU6XG4gICAgICogVGhpcyBpcyBuZWNlc3Nhcnkgc28gdGhhdCB0aGUgdmlld3BvcnQgaXNuJ3QgcmVjYWxjdWxhdGVkXG4gICAgICogYW5kIHRoZW4gdGhlIGRpYWxvZ3MgZG9uJ3Qgc2hha2UuXG4gICAgICpcbiAgICAgKiBBbHNvLCB3ZSBuZWVkIHRvIGZpeGVkIGhlaWdodCB2aWV3cG9ydCxcbiAgICAgKiBzbyB0aGF0IHdoZW4gZm9jdXNpbmcgdGhlIGRpYWxvZ3MgZG9uJ3Qgc2hha2VcbiAgICAgKi9cbiAgICBwcml2YXRlIHBhdGNoQ3NzU3R5bGVzKCk6IHZvaWQge1xuICAgICAgICBbdGhpcy53aW4uZG9jdW1lbnQuZG9jdW1lbnRFbGVtZW50LCB0aGlzLndpbi5kb2N1bWVudC5ib2R5XS5mb3JFYWNoKGVsZW1lbnQgPT4ge1xuICAgICAgICAgICAgZWxlbWVudC5zdHlsZS5zZXRQcm9wZXJ0eShgb3ZlcmZsb3dgLCBgYXV0b2ApO1xuICAgICAgICAgICAgZWxlbWVudC5zdHlsZS5zZXRQcm9wZXJ0eShgaGVpZ2h0YCwgYDEwMCVgKTtcbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogQG5vdGU6XG4gICAgICogaW5oZXJpdCBiYXNpYyBhdHRyaWJ1dGVzIHZhbHVlcyBmcm9tIHJlYWwgaW5wdXRcbiAgICAgKiBmb3IgaGVscCBpT1MgZGV0ZWN0IHdoYXQgZG8geW91IHdhbnQgc2VlIG9uIGtleWJvYXJkLFxuICAgICAqIGZvciBleGFtcGxlIFtpbnB1dE1vZGU9bnVtZXJpYywgYXV0b2NvbXBsZXRlPWNjLW51bWJlcl1cbiAgICAgKi9cbiAgICBwcml2YXRlIHBhdGNoRmFrZUlucHV0RnJvbUZvY3VzYWJsZUVsZW1lbnQoZmFrZUlucHV0OiBIVE1MSW5wdXRFbGVtZW50KTogdm9pZCB7XG4gICAgICAgIFRFWFRGSUVMRF9BVFRSUy5mb3JFYWNoKGF0dHIgPT4ge1xuICAgICAgICAgICAgY29uc3QgdmFsdWUgPSB0aGlzLmVsZW1lbnQuZ2V0QXR0cmlidXRlKGF0dHIpO1xuXG4gICAgICAgICAgICBpZiAodHVpSXNQcmVzZW50KHZhbHVlKSkge1xuICAgICAgICAgICAgICAgIGZha2VJbnB1dC5zZXRBdHRyaWJ1dGUoYXR0ciwgdmFsdWUpO1xuICAgICAgICAgICAgfVxuICAgICAgICB9KTtcbiAgICB9XG59XG4iXX0=
|
@@ -1,28 +0,0 @@
|
|
1
|
-
import { Directive, ElementRef, Inject, Optional, Self } from '@angular/core';
|
2
|
-
import { TUI_FOCUSABLE_ITEM_ACCESSOR } from '@taiga-ui/cdk/tokens';
|
3
|
-
import { AbstractTuiAutofocusHandler } from './abstract.handler';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
export class TuiSynchronousAutofocusHandler extends AbstractTuiAutofocusHandler {
|
6
|
-
constructor(focusable, el) {
|
7
|
-
super(focusable, el);
|
8
|
-
}
|
9
|
-
setFocus() {
|
10
|
-
this.element.focus({ preventScroll: true });
|
11
|
-
}
|
12
|
-
}
|
13
|
-
TuiSynchronousAutofocusHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiSynchronousAutofocusHandler, deps: [{ token: TUI_FOCUSABLE_ITEM_ACCESSOR, optional: true, self: true }, { token: ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
14
|
-
TuiSynchronousAutofocusHandler.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiSynchronousAutofocusHandler, usesInheritance: true, ngImport: i0 });
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiSynchronousAutofocusHandler, decorators: [{
|
16
|
-
type: Directive
|
17
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
18
|
-
type: Optional
|
19
|
-
}, {
|
20
|
-
type: Self
|
21
|
-
}, {
|
22
|
-
type: Inject,
|
23
|
-
args: [TUI_FOCUSABLE_ITEM_ACCESSOR]
|
24
|
-
}] }, { type: i0.ElementRef, decorators: [{
|
25
|
-
type: Inject,
|
26
|
-
args: [ElementRef]
|
27
|
-
}] }]; } });
|
28
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3luYy5oYW5kbGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2RpcmVjdGl2ZXMvYXV0by1mb2N1cy9oYW5kbGVycy9zeW5jLmhhbmRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFNUUsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sc0JBQXNCLENBQUM7QUFFakUsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sb0JBQW9CLENBQUM7O0FBRy9ELE1BQU0sT0FBTyw4QkFBK0IsU0FBUSwyQkFBMkI7SUFDM0UsWUFJSSxTQUE2QyxFQUN6QixFQUEyQjtRQUUvQyxLQUFLLENBQUMsU0FBUyxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQ3pCLENBQUM7SUFFRCxRQUFRO1FBQ0osSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsRUFBQyxhQUFhLEVBQUUsSUFBSSxFQUFDLENBQUMsQ0FBQztJQUM5QyxDQUFDOzs0SEFiUSw4QkFBOEIsa0JBSTNCLDJCQUEyQix5Q0FFM0IsVUFBVTtnSEFOYiw4QkFBOEI7NEZBQTlCLDhCQUE4QjtrQkFEMUMsU0FBUzs7MEJBR0QsUUFBUTs7MEJBQ1IsSUFBSTs7MEJBQ0osTUFBTTsyQkFBQywyQkFBMkI7OzBCQUVsQyxNQUFNOzJCQUFDLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgRWxlbWVudFJlZiwgSW5qZWN0LCBPcHRpb25hbCwgU2VsZn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1R1aUZvY3VzYWJsZUVsZW1lbnRBY2Nlc3Nvcn0gZnJvbSAnQHRhaWdhLXVpL2Nkay9pbnRlcmZhY2VzJztcbmltcG9ydCB7VFVJX0ZPQ1VTQUJMRV9JVEVNX0FDQ0VTU09SfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3Rva2Vucyc7XG5cbmltcG9ydCB7QWJzdHJhY3RUdWlBdXRvZm9jdXNIYW5kbGVyfSBmcm9tICcuL2Fic3RyYWN0LmhhbmRsZXInO1xuXG5ARGlyZWN0aXZlKClcbmV4cG9ydCBjbGFzcyBUdWlTeW5jaHJvbm91c0F1dG9mb2N1c0hhbmRsZXIgZXh0ZW5kcyBBYnN0cmFjdFR1aUF1dG9mb2N1c0hhbmRsZXIge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBAT3B0aW9uYWwoKVxuICAgICAgICBAU2VsZigpXG4gICAgICAgIEBJbmplY3QoVFVJX0ZPQ1VTQUJMRV9JVEVNX0FDQ0VTU09SKVxuICAgICAgICBmb2N1c2FibGU6IFR1aUZvY3VzYWJsZUVsZW1lbnRBY2Nlc3NvciB8IG51bGwsXG4gICAgICAgIEBJbmplY3QoRWxlbWVudFJlZikgZWw6IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+LFxuICAgICkge1xuICAgICAgICBzdXBlcihmb2N1c2FibGUsIGVsKTtcbiAgICB9XG5cbiAgICBzZXRGb2N1cygpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5lbGVtZW50LmZvY3VzKHtwcmV2ZW50U2Nyb2xsOiB0cnVlfSk7XG4gICAgfVxufVxuIl19
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
export class TuiAutofilledStyleComponent {
|
4
|
-
}
|
5
|
-
TuiAutofilledStyleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAutofilledStyleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
6
|
-
TuiAutofilledStyleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TuiAutofilledStyleComponent, selector: "ng-component", host: { classAttribute: "tui-autofilled-styles" }, ngImport: i0, template: '', isInline: true, styles: [".tui-autofill input,input.tui-autofill{transition:box-shadow .01s}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAutofilledStyleComponent, decorators: [{
|
8
|
-
type: Component,
|
9
|
-
args: [{
|
10
|
-
host: {
|
11
|
-
class: 'tui-autofilled-styles',
|
12
|
-
},
|
13
|
-
template: '',
|
14
|
-
styleUrls: ['./autofilled.style.less'],
|
15
|
-
encapsulation: ViewEncapsulation.None,
|
16
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
17
|
-
}]
|
18
|
-
}] });
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0b2ZpbGxlZC1zdHlsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9hdXRvZmlsbGVkL2F1dG9maWxsZWQtc3R5bGUuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQUMsTUFBTSxlQUFlLENBQUM7O0FBV3BGLE1BQU0sT0FBTywyQkFBMkI7O3lIQUEzQiwyQkFBMkI7NkdBQTNCLDJCQUEyQix1R0FMMUIsRUFBRTs0RkFLSCwyQkFBMkI7a0JBVHZDLFNBQVM7bUJBQUM7b0JBQ1AsSUFBSSxFQUFFO3dCQUNGLEtBQUssRUFBRSx1QkFBdUI7cUJBQ2pDO29CQUNELFFBQVEsRUFBRSxFQUFFO29CQUNaLFNBQVMsRUFBRSxDQUFDLHlCQUF5QixDQUFDO29CQUN0QyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07aUJBQ2xEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIGhvc3Q6IHtcbiAgICAgICAgY2xhc3M6ICd0dWktYXV0b2ZpbGxlZC1zdHlsZXMnLFxuICAgIH0sXG4gICAgdGVtcGxhdGU6ICcnLFxuICAgIHN0eWxlVXJsczogWycuL2F1dG9maWxsZWQuc3R5bGUubGVzcyddLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFR1aUF1dG9maWxsZWRTdHlsZUNvbXBvbmVudCB7fVxuIl19
|
@@ -1,41 +0,0 @@
|
|
1
|
-
import { Directive, EventEmitter, HostBinding, HostListener, Inject, Output, } from '@angular/core';
|
2
|
-
import { TuiDirectiveStylesService } from '@taiga-ui/cdk/services';
|
3
|
-
import { TuiAutofilledStyleComponent } from './autofilled-style.component';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
import * as i1 from "@taiga-ui/cdk/services";
|
6
|
-
export class TuiAutofilledDirective {
|
7
|
-
constructor(directiveStyles) {
|
8
|
-
this.autofilled = false;
|
9
|
-
this.tuiAutofilledChange = new EventEmitter();
|
10
|
-
directiveStyles.addComponent(TuiAutofilledStyleComponent);
|
11
|
-
}
|
12
|
-
transitionStartHandler({ propertyName, target }) {
|
13
|
-
var _a;
|
14
|
-
const matchedAutofill = propertyName.includes('box-shadow') && ((_a = target) === null || _a === void 0 ? void 0 : _a.matches('input'));
|
15
|
-
if (matchedAutofill) {
|
16
|
-
this.autofilled = !this.autofilled;
|
17
|
-
this.tuiAutofilledChange.emit(this.autofilled);
|
18
|
-
}
|
19
|
-
}
|
20
|
-
}
|
21
|
-
TuiAutofilledDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAutofilledDirective, deps: [{ token: TuiDirectiveStylesService }], target: i0.ɵɵFactoryTarget.Directive });
|
22
|
-
TuiAutofilledDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiAutofilledDirective, selector: "[tuiAutofilledChange]", outputs: { tuiAutofilledChange: "tuiAutofilledChange" }, host: { listeners: { "transitionstart": "transitionStartHandler($event)" }, properties: { "class._autofilled": "this.autofilled" }, classAttribute: "tui-autofill" }, ngImport: i0 });
|
23
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAutofilledDirective, decorators: [{
|
24
|
-
type: Directive,
|
25
|
-
args: [{
|
26
|
-
selector: '[tuiAutofilledChange]',
|
27
|
-
host: { class: 'tui-autofill' },
|
28
|
-
}]
|
29
|
-
}], ctorParameters: function () { return [{ type: i1.TuiDirectiveStylesService, decorators: [{
|
30
|
-
type: Inject,
|
31
|
-
args: [TuiDirectiveStylesService]
|
32
|
-
}] }]; }, propDecorators: { autofilled: [{
|
33
|
-
type: HostBinding,
|
34
|
-
args: ['class._autofilled']
|
35
|
-
}], tuiAutofilledChange: [{
|
36
|
-
type: Output
|
37
|
-
}], transitionStartHandler: [{
|
38
|
-
type: HostListener,
|
39
|
-
args: ['transitionstart', ['$event']]
|
40
|
-
}] } });
|
41
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0b2ZpbGxlZC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9hdXRvZmlsbGVkL2F1dG9maWxsZWQuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBQ1QsWUFBWSxFQUNaLFdBQVcsRUFDWCxZQUFZLEVBQ1osTUFBTSxFQUNOLE1BQU0sR0FDVCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUMseUJBQXlCLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUVqRSxPQUFPLEVBQUMsMkJBQTJCLEVBQUMsTUFBTSw4QkFBOEIsQ0FBQzs7O0FBTXpFLE1BQU0sT0FBTyxzQkFBc0I7SUFPL0IsWUFDdUMsZUFBMEM7UUFOakYsZUFBVSxHQUFHLEtBQUssQ0FBQztRQUdWLHdCQUFtQixHQUFHLElBQUksWUFBWSxFQUFXLENBQUM7UUFLdkQsZUFBZSxDQUFDLFlBQVksQ0FBQywyQkFBMkIsQ0FBQyxDQUFDO0lBQzlELENBQUM7SUFHRCxzQkFBc0IsQ0FBQyxFQUFDLFlBQVksRUFBRSxNQUFNLEVBQWtCOztRQUMxRCxNQUFNLGVBQWUsR0FDakIsWUFBWSxDQUFDLFFBQVEsQ0FBQyxZQUFZLENBQUMsS0FBSSxNQUFDLE1BQWtCLDBDQUFFLE9BQU8sQ0FBQyxPQUFPLENBQUMsQ0FBQSxDQUFDO1FBRWpGLElBQUksZUFBZSxFQUFFO1lBQ2pCLElBQUksQ0FBQyxVQUFVLEdBQUcsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDO1lBQ25DLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1NBQ2xEO0lBQ0wsQ0FBQzs7b0hBdEJRLHNCQUFzQixrQkFRbkIseUJBQXlCO3dHQVI1QixzQkFBc0I7NEZBQXRCLHNCQUFzQjtrQkFKbEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsdUJBQXVCO29CQUNqQyxJQUFJLEVBQUUsRUFBQyxLQUFLLEVBQUUsY0FBYyxFQUFDO2lCQUNoQzs7MEJBU1EsTUFBTTsyQkFBQyx5QkFBeUI7NENBTnJDLFVBQVU7c0JBRFQsV0FBVzt1QkFBQyxtQkFBbUI7Z0JBSXZCLG1CQUFtQjtzQkFEM0IsTUFBTTtnQkFVUCxzQkFBc0I7c0JBRHJCLFlBQVk7dUJBQUMsaUJBQWlCLEVBQUUsQ0FBQyxRQUFRLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIERpcmVjdGl2ZSxcbiAgICBFdmVudEVtaXR0ZXIsXG4gICAgSG9zdEJpbmRpbmcsXG4gICAgSG9zdExpc3RlbmVyLFxuICAgIEluamVjdCxcbiAgICBPdXRwdXQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUdWlEaXJlY3RpdmVTdHlsZXNTZXJ2aWNlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3NlcnZpY2VzJztcblxuaW1wb3J0IHtUdWlBdXRvZmlsbGVkU3R5bGVDb21wb25lbnR9IGZyb20gJy4vYXV0b2ZpbGxlZC1zdHlsZS5jb21wb25lbnQnO1xuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlBdXRvZmlsbGVkQ2hhbmdlXScsXG4gICAgaG9zdDoge2NsYXNzOiAndHVpLWF1dG9maWxsJ30sXG59KVxuZXhwb3J0IGNsYXNzIFR1aUF1dG9maWxsZWREaXJlY3RpdmUge1xuICAgIEBIb3N0QmluZGluZygnY2xhc3MuX2F1dG9maWxsZWQnKVxuICAgIGF1dG9maWxsZWQgPSBmYWxzZTtcblxuICAgIEBPdXRwdXQoKVxuICAgIHJlYWRvbmx5IHR1aUF1dG9maWxsZWRDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgQEluamVjdChUdWlEaXJlY3RpdmVTdHlsZXNTZXJ2aWNlKSBkaXJlY3RpdmVTdHlsZXM6IFR1aURpcmVjdGl2ZVN0eWxlc1NlcnZpY2UsXG4gICAgKSB7XG4gICAgICAgIGRpcmVjdGl2ZVN0eWxlcy5hZGRDb21wb25lbnQoVHVpQXV0b2ZpbGxlZFN0eWxlQ29tcG9uZW50KTtcbiAgICB9XG5cbiAgICBASG9zdExpc3RlbmVyKCd0cmFuc2l0aW9uc3RhcnQnLCBbJyRldmVudCddKVxuICAgIHRyYW5zaXRpb25TdGFydEhhbmRsZXIoe3Byb3BlcnR5TmFtZSwgdGFyZ2V0fTogVHJhbnNpdGlvbkV2ZW50KTogdm9pZCB7XG4gICAgICAgIGNvbnN0IG1hdGNoZWRBdXRvZmlsbCA9XG4gICAgICAgICAgICBwcm9wZXJ0eU5hbWUuaW5jbHVkZXMoJ2JveC1zaGFkb3cnKSAmJiAodGFyZ2V0IGFzIEVsZW1lbnQpPy5tYXRjaGVzKCdpbnB1dCcpO1xuXG4gICAgICAgIGlmIChtYXRjaGVkQXV0b2ZpbGwpIHtcbiAgICAgICAgICAgIHRoaXMuYXV0b2ZpbGxlZCA9ICF0aGlzLmF1dG9maWxsZWQ7XG4gICAgICAgICAgICB0aGlzLnR1aUF1dG9maWxsZWRDaGFuZ2UuZW1pdCh0aGlzLmF1dG9maWxsZWQpO1xuICAgICAgICB9XG4gICAgfVxufVxuIl19
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { TuiAutofilledDirective } from './autofilled.directive';
|
3
|
-
import { TuiAutofilledStyleComponent } from './autofilled-style.component';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
export class TuiAutofilledModule {
|
6
|
-
}
|
7
|
-
TuiAutofilledModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAutofilledModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
8
|
-
TuiAutofilledModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAutofilledModule, declarations: [TuiAutofilledDirective, TuiAutofilledStyleComponent], exports: [TuiAutofilledDirective] });
|
9
|
-
TuiAutofilledModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAutofilledModule });
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAutofilledModule, decorators: [{
|
11
|
-
type: NgModule,
|
12
|
-
args: [{
|
13
|
-
declarations: [TuiAutofilledDirective, TuiAutofilledStyleComponent],
|
14
|
-
exports: [TuiAutofilledDirective],
|
15
|
-
}]
|
16
|
-
}] });
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0b2ZpbGxlZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9hdXRvZmlsbGVkL2F1dG9maWxsZWQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLHNCQUFzQixFQUFDLE1BQU0sd0JBQXdCLENBQUM7QUFDOUQsT0FBTyxFQUFDLDJCQUEyQixFQUFDLE1BQU0sOEJBQThCLENBQUM7O0FBTXpFLE1BQU0sT0FBTyxtQkFBbUI7O2lIQUFuQixtQkFBbUI7a0hBQW5CLG1CQUFtQixpQkFIYixzQkFBc0IsRUFBRSwyQkFBMkIsYUFDeEQsc0JBQXNCO2tIQUV2QixtQkFBbUI7NEZBQW5CLG1CQUFtQjtrQkFKL0IsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyxzQkFBc0IsRUFBRSwyQkFBMkIsQ0FBQztvQkFDbkUsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7aUJBQ3BDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpQXV0b2ZpbGxlZERpcmVjdGl2ZX0gZnJvbSAnLi9hdXRvZmlsbGVkLmRpcmVjdGl2ZSc7XG5pbXBvcnQge1R1aUF1dG9maWxsZWRTdHlsZUNvbXBvbmVudH0gZnJvbSAnLi9hdXRvZmlsbGVkLXN0eWxlLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpQXV0b2ZpbGxlZERpcmVjdGl2ZSwgVHVpQXV0b2ZpbGxlZFN0eWxlQ29tcG9uZW50XSxcbiAgICBleHBvcnRzOiBbVHVpQXV0b2ZpbGxlZERpcmVjdGl2ZV0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aUF1dG9maWxsZWRNb2R1bGUge31cbiJdfQ==
|
@@ -1,46 +0,0 @@
|
|
1
|
-
import { Directive, EventEmitter, HostBinding, HostListener, Input, Output, } from '@angular/core';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
export class TuiCheckedDirective {
|
4
|
-
constructor() {
|
5
|
-
this.indeterminate = false;
|
6
|
-
this.checked = false;
|
7
|
-
this.tuiCheckedChange = new EventEmitter();
|
8
|
-
}
|
9
|
-
get isChecked() {
|
10
|
-
return this.checked;
|
11
|
-
}
|
12
|
-
get isIndeterminate() {
|
13
|
-
return this.indeterminate;
|
14
|
-
}
|
15
|
-
set tuiChecked(checked) {
|
16
|
-
this.checked = checked || false;
|
17
|
-
this.indeterminate = checked === null;
|
18
|
-
}
|
19
|
-
onChange({ checked }) {
|
20
|
-
this.checked = checked;
|
21
|
-
this.indeterminate = false;
|
22
|
-
this.tuiCheckedChange.emit(checked);
|
23
|
-
}
|
24
|
-
}
|
25
|
-
TuiCheckedDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCheckedDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
26
|
-
TuiCheckedDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiCheckedDirective, selector: "input[tuiChecked], input[tuiCheckedChange]", inputs: { tuiChecked: "tuiChecked" }, outputs: { tuiCheckedChange: "tuiCheckedChange" }, host: { listeners: { "change": "onChange($event.target)" }, properties: { "checked": "this.isChecked", "indeterminate": "this.isIndeterminate" } }, ngImport: i0 });
|
27
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCheckedDirective, decorators: [{
|
28
|
-
type: Directive,
|
29
|
-
args: [{
|
30
|
-
selector: 'input[tuiChecked], input[tuiCheckedChange]',
|
31
|
-
}]
|
32
|
-
}], propDecorators: { isChecked: [{
|
33
|
-
type: HostBinding,
|
34
|
-
args: ['checked']
|
35
|
-
}], isIndeterminate: [{
|
36
|
-
type: HostBinding,
|
37
|
-
args: ['indeterminate']
|
38
|
-
}], tuiChecked: [{
|
39
|
-
type: Input
|
40
|
-
}], tuiCheckedChange: [{
|
41
|
-
type: Output
|
42
|
-
}], onChange: [{
|
43
|
-
type: HostListener,
|
44
|
-
args: ['change', ['$event.target']]
|
45
|
-
}] } });
|
46
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tlZC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9jaGVja2VkL2NoZWNrZWQuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBQ1QsWUFBWSxFQUNaLFdBQVcsRUFDWCxZQUFZLEVBQ1osS0FBSyxFQUNMLE1BQU0sR0FDVCxNQUFNLGVBQWUsQ0FBQzs7QUFLdkIsTUFBTSxPQUFPLG1CQUFtQjtJQUhoQztRQUlZLGtCQUFhLEdBQUcsS0FBSyxDQUFDO1FBQ3RCLFlBQU8sR0FBRyxLQUFLLENBQUM7UUFtQmYscUJBQWdCLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztLQVEzRDtJQXpCRyxJQUNJLFNBQVM7UUFDVCxPQUFPLElBQUksQ0FBQyxPQUFPLENBQUM7SUFDeEIsQ0FBQztJQUVELElBQ0ksZUFBZTtRQUNmLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQztJQUM5QixDQUFDO0lBRUQsSUFDSSxVQUFVLENBQUMsT0FBdUI7UUFDbEMsSUFBSSxDQUFDLE9BQU8sR0FBRyxPQUFPLElBQUksS0FBSyxDQUFDO1FBQ2hDLElBQUksQ0FBQyxhQUFhLEdBQUcsT0FBTyxLQUFLLElBQUksQ0FBQztJQUMxQyxDQUFDO0lBTUQsUUFBUSxDQUFDLEVBQUMsT0FBTyxFQUFtQjtRQUNoQyxJQUFJLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQztRQUN2QixJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQztRQUMzQixJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ3hDLENBQUM7O2lIQTVCUSxtQkFBbUI7cUdBQW5CLG1CQUFtQjs0RkFBbkIsbUJBQW1CO2tCQUgvQixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSw0Q0FBNEM7aUJBQ3pEOzhCQU1PLFNBQVM7c0JBRFosV0FBVzt1QkFBQyxTQUFTO2dCQU1sQixlQUFlO3NCQURsQixXQUFXO3VCQUFDLGVBQWU7Z0JBTXhCLFVBQVU7c0JBRGIsS0FBSztnQkFPRyxnQkFBZ0I7c0JBRHhCLE1BQU07Z0JBSVAsUUFBUTtzQkFEUCxZQUFZO3VCQUFDLFFBQVEsRUFBRSxDQUFDLGVBQWUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gICAgRGlyZWN0aXZlLFxuICAgIEV2ZW50RW1pdHRlcixcbiAgICBIb3N0QmluZGluZyxcbiAgICBIb3N0TGlzdGVuZXIsXG4gICAgSW5wdXQsXG4gICAgT3V0cHV0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdpbnB1dFt0dWlDaGVja2VkXSwgaW5wdXRbdHVpQ2hlY2tlZENoYW5nZV0nLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlDaGVja2VkRGlyZWN0aXZlIHtcbiAgICBwcml2YXRlIGluZGV0ZXJtaW5hdGUgPSBmYWxzZTtcbiAgICBwcml2YXRlIGNoZWNrZWQgPSBmYWxzZTtcblxuICAgIEBIb3N0QmluZGluZygnY2hlY2tlZCcpXG4gICAgZ2V0IGlzQ2hlY2tlZCgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuY2hlY2tlZDtcbiAgICB9XG5cbiAgICBASG9zdEJpbmRpbmcoJ2luZGV0ZXJtaW5hdGUnKVxuICAgIGdldCBpc0luZGV0ZXJtaW5hdGUoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLmluZGV0ZXJtaW5hdGU7XG4gICAgfVxuXG4gICAgQElucHV0KClcbiAgICBzZXQgdHVpQ2hlY2tlZChjaGVja2VkOiBib29sZWFuIHwgbnVsbCkge1xuICAgICAgICB0aGlzLmNoZWNrZWQgPSBjaGVja2VkIHx8IGZhbHNlO1xuICAgICAgICB0aGlzLmluZGV0ZXJtaW5hdGUgPSBjaGVja2VkID09PSBudWxsO1xuICAgIH1cblxuICAgIEBPdXRwdXQoKVxuICAgIHJlYWRvbmx5IHR1aUNoZWNrZWRDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG5cbiAgICBASG9zdExpc3RlbmVyKCdjaGFuZ2UnLCBbJyRldmVudC50YXJnZXQnXSlcbiAgICBvbkNoYW5nZSh7Y2hlY2tlZH06IEhUTUxJbnB1dEVsZW1lbnQpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jaGVja2VkID0gY2hlY2tlZDtcbiAgICAgICAgdGhpcy5pbmRldGVybWluYXRlID0gZmFsc2U7XG4gICAgICAgIHRoaXMudHVpQ2hlY2tlZENoYW5nZS5lbWl0KGNoZWNrZWQpO1xuICAgIH1cbn1cbiJdfQ==
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { TuiCheckedDirective } from './checked.directive';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class TuiCheckedModule {
|
5
|
-
}
|
6
|
-
TuiCheckedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCheckedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
TuiCheckedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCheckedModule, declarations: [TuiCheckedDirective], exports: [TuiCheckedDirective] });
|
8
|
-
TuiCheckedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCheckedModule });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCheckedModule, decorators: [{
|
10
|
-
type: NgModule,
|
11
|
-
args: [{
|
12
|
-
declarations: [TuiCheckedDirective],
|
13
|
-
exports: [TuiCheckedDirective],
|
14
|
-
}]
|
15
|
-
}] });
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tlZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9jaGVja2VkL2NoZWNrZWQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLG1CQUFtQixFQUFDLE1BQU0scUJBQXFCLENBQUM7O0FBTXhELE1BQU0sT0FBTyxnQkFBZ0I7OzhHQUFoQixnQkFBZ0I7K0dBQWhCLGdCQUFnQixpQkFIVixtQkFBbUIsYUFDeEIsbUJBQW1COytHQUVwQixnQkFBZ0I7NEZBQWhCLGdCQUFnQjtrQkFKNUIsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztvQkFDbkMsT0FBTyxFQUFFLENBQUMsbUJBQW1CLENBQUM7aUJBQ2pDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpQ2hlY2tlZERpcmVjdGl2ZX0gZnJvbSAnLi9jaGVja2VkLmRpcmVjdGl2ZSc7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpQ2hlY2tlZERpcmVjdGl2ZV0sXG4gICAgZXhwb3J0czogW1R1aUNoZWNrZWREaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlDaGVja2VkTW9kdWxlIHt9XG4iXX0=
|
@@ -1,39 +0,0 @@
|
|
1
|
-
import { DOCUMENT } from '@angular/common';
|
2
|
-
import { Directive, ElementRef, Inject, NgZone, Output } from '@angular/core';
|
3
|
-
import { tuiZoneOptimized } from '@taiga-ui/cdk/observables';
|
4
|
-
import { tuiContainsOrAfter, tuiGetActualTarget } from '@taiga-ui/cdk/utils';
|
5
|
-
import { fromEvent } from 'rxjs';
|
6
|
-
import { filter, map } from 'rxjs/operators';
|
7
|
-
import * as i0 from "@angular/core";
|
8
|
-
export class TuiClickOutsideDirective {
|
9
|
-
constructor(zone, doc, el) {
|
10
|
-
this.zone = zone;
|
11
|
-
this.doc = doc;
|
12
|
-
this.el = el;
|
13
|
-
this.tuiClickOutside = fromEvent(this.doc, 'mouseup').pipe(map(tuiGetActualTarget), filter(target => this.isOutside(target)), tuiZoneOptimized(this.zone));
|
14
|
-
}
|
15
|
-
isOutside(target) {
|
16
|
-
return (target === this.el.nativeElement ||
|
17
|
-
!tuiContainsOrAfter(this.el.nativeElement, target));
|
18
|
-
}
|
19
|
-
}
|
20
|
-
TuiClickOutsideDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiClickOutsideDirective, deps: [{ token: NgZone }, { token: DOCUMENT }, { token: ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
21
|
-
TuiClickOutsideDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiClickOutsideDirective, selector: "[tuiClickOutside]", outputs: { tuiClickOutside: "tuiClickOutside" }, ngImport: i0 });
|
22
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiClickOutsideDirective, decorators: [{
|
23
|
-
type: Directive,
|
24
|
-
args: [{
|
25
|
-
selector: '[tuiClickOutside]',
|
26
|
-
}]
|
27
|
-
}], ctorParameters: function () { return [{ type: i0.NgZone, decorators: [{
|
28
|
-
type: Inject,
|
29
|
-
args: [NgZone]
|
30
|
-
}] }, { type: Document, decorators: [{
|
31
|
-
type: Inject,
|
32
|
-
args: [DOCUMENT]
|
33
|
-
}] }, { type: i0.ElementRef, decorators: [{
|
34
|
-
type: Inject,
|
35
|
-
args: [ElementRef]
|
36
|
-
}] }]; }, propDecorators: { tuiClickOutside: [{
|
37
|
-
type: Output
|
38
|
-
}] } });
|
39
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpY2stb3V0c2lkZS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9jbGljay1vdXRzaWRlL2NsaWNrLW91dHNpZGUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUN6QyxPQUFPLEVBQUMsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUM1RSxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSwyQkFBMkIsQ0FBQztBQUMzRCxPQUFPLEVBQUMsa0JBQWtCLEVBQUUsa0JBQWtCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUMzRSxPQUFPLEVBQUMsU0FBUyxFQUFhLE1BQU0sTUFBTSxDQUFDO0FBQzNDLE9BQU8sRUFBQyxNQUFNLEVBQUUsR0FBRyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7O0FBSzNDLE1BQU0sT0FBTyx3QkFBd0I7SUFRakMsWUFDcUMsSUFBWSxFQUNWLEdBQWEsRUFDWCxFQUEyQjtRQUYvQixTQUFJLEdBQUosSUFBSSxDQUFRO1FBQ1YsUUFBRyxHQUFILEdBQUcsQ0FBVTtRQUNYLE9BQUUsR0FBRixFQUFFLENBQXlCO1FBVDNELG9CQUFlLEdBQXdCLFNBQVMsQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFLFNBQVMsQ0FBQyxDQUFDLElBQUksQ0FDL0UsR0FBRyxDQUFDLGtCQUFrQixDQUFDLEVBQ3ZCLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUMsRUFDeEMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUM5QixDQUFDO0lBTUMsQ0FBQztJQUVJLFNBQVMsQ0FBQyxNQUFZO1FBQzFCLE9BQU8sQ0FDSCxNQUFNLEtBQUssSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhO1lBQ2hDLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLEVBQUUsTUFBTSxDQUFDLENBQ3JELENBQUM7SUFDTixDQUFDOztzSEFuQlEsd0JBQXdCLGtCQVNyQixNQUFNLGFBQ04sUUFBUSxhQUNSLFVBQVU7MEdBWGIsd0JBQXdCOzRGQUF4Qix3QkFBd0I7a0JBSHBDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLG1CQUFtQjtpQkFDaEM7OzBCQVVRLE1BQU07MkJBQUMsTUFBTTs4QkFDMEIsUUFBUTswQkFBL0MsTUFBTTsyQkFBQyxRQUFROzswQkFDZixNQUFNOzJCQUFDLFVBQVU7NENBVGIsZUFBZTtzQkFEdkIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RE9DVU1FTlR9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge0RpcmVjdGl2ZSwgRWxlbWVudFJlZiwgSW5qZWN0LCBOZ1pvbmUsIE91dHB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge3R1aVpvbmVPcHRpbWl6ZWR9IGZyb20gJ0B0YWlnYS11aS9jZGsvb2JzZXJ2YWJsZXMnO1xuaW1wb3J0IHt0dWlDb250YWluc09yQWZ0ZXIsIHR1aUdldEFjdHVhbFRhcmdldH0gZnJvbSAnQHRhaWdhLXVpL2Nkay91dGlscyc7XG5pbXBvcnQge2Zyb21FdmVudCwgT2JzZXJ2YWJsZX0gZnJvbSAncnhqcyc7XG5pbXBvcnQge2ZpbHRlciwgbWFwfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3R1aUNsaWNrT3V0c2lkZV0nLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlDbGlja091dHNpZGVEaXJlY3RpdmUge1xuICAgIEBPdXRwdXQoKVxuICAgIHJlYWRvbmx5IHR1aUNsaWNrT3V0c2lkZTogT2JzZXJ2YWJsZTx1bmtub3duPiA9IGZyb21FdmVudCh0aGlzLmRvYywgJ21vdXNldXAnKS5waXBlKFxuICAgICAgICBtYXAodHVpR2V0QWN0dWFsVGFyZ2V0KSxcbiAgICAgICAgZmlsdGVyKHRhcmdldCA9PiB0aGlzLmlzT3V0c2lkZSh0YXJnZXQpKSxcbiAgICAgICAgdHVpWm9uZU9wdGltaXplZCh0aGlzLnpvbmUpLFxuICAgICk7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgQEluamVjdChOZ1pvbmUpIHByaXZhdGUgcmVhZG9ubHkgem9uZTogTmdab25lLFxuICAgICAgICBASW5qZWN0KERPQ1VNRU5UKSBwcml2YXRlIHJlYWRvbmx5IGRvYzogRG9jdW1lbnQsXG4gICAgICAgIEBJbmplY3QoRWxlbWVudFJlZikgcHJpdmF0ZSByZWFkb25seSBlbDogRWxlbWVudFJlZjxIVE1MRWxlbWVudD4sXG4gICAgKSB7fVxuXG4gICAgcHJpdmF0ZSBpc091dHNpZGUodGFyZ2V0OiBOb2RlKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiAoXG4gICAgICAgICAgICB0YXJnZXQgPT09IHRoaXMuZWwubmF0aXZlRWxlbWVudCB8fFxuICAgICAgICAgICAgIXR1aUNvbnRhaW5zT3JBZnRlcih0aGlzLmVsLm5hdGl2ZUVsZW1lbnQsIHRhcmdldClcbiAgICAgICAgKTtcbiAgICB9XG59XG4iXX0=
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { TuiClickOutsideDirective } from './click-outside.directive';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class TuiClickOutsideModule {
|
5
|
-
}
|
6
|
-
TuiClickOutsideModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiClickOutsideModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
TuiClickOutsideModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiClickOutsideModule, declarations: [TuiClickOutsideDirective], exports: [TuiClickOutsideDirective] });
|
8
|
-
TuiClickOutsideModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiClickOutsideModule });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiClickOutsideModule, decorators: [{
|
10
|
-
type: NgModule,
|
11
|
-
args: [{
|
12
|
-
declarations: [TuiClickOutsideDirective],
|
13
|
-
exports: [TuiClickOutsideDirective],
|
14
|
-
}]
|
15
|
-
}] });
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpY2stb3V0c2lkZS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9jbGljay1vdXRzaWRlL2NsaWNrLW91dHNpZGUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLHdCQUF3QixFQUFDLE1BQU0sMkJBQTJCLENBQUM7O0FBTW5FLE1BQU0sT0FBTyxxQkFBcUI7O21IQUFyQixxQkFBcUI7b0hBQXJCLHFCQUFxQixpQkFIZix3QkFBd0IsYUFDN0Isd0JBQXdCO29IQUV6QixxQkFBcUI7NEZBQXJCLHFCQUFxQjtrQkFKakMsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyx3QkFBd0IsQ0FBQztvQkFDeEMsT0FBTyxFQUFFLENBQUMsd0JBQXdCLENBQUM7aUJBQ3RDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpQ2xpY2tPdXRzaWRlRGlyZWN0aXZlfSBmcm9tICcuL2NsaWNrLW91dHNpZGUuZGlyZWN0aXZlJztcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtUdWlDbGlja091dHNpZGVEaXJlY3RpdmVdLFxuICAgIGV4cG9ydHM6IFtUdWlDbGlja091dHNpZGVEaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlDbGlja091dHNpZGVNb2R1bGUge31cbiJdfQ==
|
@@ -1,25 +0,0 @@
|
|
1
|
-
import { Directive, Inject } from '@angular/core';
|
2
|
-
import { NgControl } from '@angular/forms';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
import * as i1 from "@angular/forms";
|
5
|
-
export class TuiControlDirective {
|
6
|
-
constructor(ngControl) {
|
7
|
-
this.ngControl = ngControl;
|
8
|
-
}
|
9
|
-
get control() {
|
10
|
-
return this.ngControl.control;
|
11
|
-
}
|
12
|
-
}
|
13
|
-
TuiControlDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiControlDirective, deps: [{ token: NgControl }], target: i0.ɵɵFactoryTarget.Directive });
|
14
|
-
TuiControlDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiControlDirective, selector: "[tuiControl]", exportAs: ["ngControl"], ngImport: i0 });
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiControlDirective, decorators: [{
|
16
|
-
type: Directive,
|
17
|
-
args: [{
|
18
|
-
selector: '[tuiControl]',
|
19
|
-
exportAs: 'ngControl',
|
20
|
-
}]
|
21
|
-
}], ctorParameters: function () { return [{ type: i1.NgControl, decorators: [{
|
22
|
-
type: Inject,
|
23
|
-
args: [NgControl]
|
24
|
-
}] }]; } });
|
25
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udHJvbC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9jb250cm9sL2NvbnRyb2wuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsTUFBTSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ2hELE9BQU8sRUFBa0IsU0FBUyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7OztBQU0xRCxNQUFNLE9BQU8sbUJBQW1CO0lBQzVCLFlBQWdELFNBQW9CO1FBQXBCLGNBQVMsR0FBVCxTQUFTLENBQVc7SUFBRyxDQUFDO0lBRXhFLElBQUksT0FBTztRQUNQLE9BQU8sSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFRLENBQUM7SUFDbkMsQ0FBQzs7aUhBTFEsbUJBQW1CLGtCQUNSLFNBQVM7cUdBRHBCLG1CQUFtQjs0RkFBbkIsbUJBQW1CO2tCQUovQixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxjQUFjO29CQUN4QixRQUFRLEVBQUUsV0FBVztpQkFDeEI7OzBCQUVnQixNQUFNOzJCQUFDLFNBQVMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgSW5qZWN0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RDb250cm9sLCBOZ0NvbnRyb2x9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbdHVpQ29udHJvbF0nLFxuICAgIGV4cG9ydEFzOiAnbmdDb250cm9sJyxcbn0pXG5leHBvcnQgY2xhc3MgVHVpQ29udHJvbERpcmVjdGl2ZSB7XG4gICAgY29uc3RydWN0b3IoQEluamVjdChOZ0NvbnRyb2wpIHByaXZhdGUgcmVhZG9ubHkgbmdDb250cm9sOiBOZ0NvbnRyb2wpIHt9XG5cbiAgICBnZXQgY29udHJvbCgpOiBBYnN0cmFjdENvbnRyb2wge1xuICAgICAgICByZXR1cm4gdGhpcy5uZ0NvbnRyb2wuY29udHJvbCE7XG4gICAgfVxufVxuIl19
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { TuiControlDirective } from './control.directive';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class TuiControlModule {
|
5
|
-
}
|
6
|
-
TuiControlModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiControlModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
TuiControlModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiControlModule, declarations: [TuiControlDirective], exports: [TuiControlDirective] });
|
8
|
-
TuiControlModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiControlModule });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiControlModule, decorators: [{
|
10
|
-
type: NgModule,
|
11
|
-
args: [{
|
12
|
-
declarations: [TuiControlDirective],
|
13
|
-
exports: [TuiControlDirective],
|
14
|
-
}]
|
15
|
-
}] });
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udHJvbC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9jb250cm9sL2NvbnRyb2wubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLG1CQUFtQixFQUFDLE1BQU0scUJBQXFCLENBQUM7O0FBTXhELE1BQU0sT0FBTyxnQkFBZ0I7OzhHQUFoQixnQkFBZ0I7K0dBQWhCLGdCQUFnQixpQkFIVixtQkFBbUIsYUFDeEIsbUJBQW1COytHQUVwQixnQkFBZ0I7NEZBQWhCLGdCQUFnQjtrQkFKNUIsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztvQkFDbkMsT0FBTyxFQUFFLENBQUMsbUJBQW1CLENBQUM7aUJBQ2pDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpQ29udHJvbERpcmVjdGl2ZX0gZnJvbSAnLi9jb250cm9sLmRpcmVjdGl2ZSc7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpQ29udHJvbERpcmVjdGl2ZV0sXG4gICAgZXhwb3J0czogW1R1aUNvbnRyb2xEaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlDb250cm9sTW9kdWxlIHt9XG4iXX0=
|
@@ -1,35 +0,0 @@
|
|
1
|
-
import { Directive, HostListener, Inject, Input } from '@angular/core';
|
2
|
-
import { WINDOW } from '@ng-web-apis/common';
|
3
|
-
import { tuiGetSelectedText } from '@taiga-ui/cdk/utils';
|
4
|
-
import { identity } from 'rxjs';
|
5
|
-
import * as i0 from "@angular/core";
|
6
|
-
export class TuiCopyProcessorDirective {
|
7
|
-
constructor(win) {
|
8
|
-
this.win = win;
|
9
|
-
this.tuiCopyProcessor = identity;
|
10
|
-
}
|
11
|
-
onCopy(event) {
|
12
|
-
var _a;
|
13
|
-
const text = tuiGetSelectedText(this.win);
|
14
|
-
if (text) {
|
15
|
-
(_a = event.clipboardData) === null || _a === void 0 ? void 0 : _a.setData('text/plain', this.tuiCopyProcessor(text));
|
16
|
-
}
|
17
|
-
}
|
18
|
-
}
|
19
|
-
TuiCopyProcessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCopyProcessorDirective, deps: [{ token: WINDOW }], target: i0.ɵɵFactoryTarget.Directive });
|
20
|
-
TuiCopyProcessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiCopyProcessorDirective, selector: "[tuiCopyProcessor]", inputs: { tuiCopyProcessor: "tuiCopyProcessor" }, host: { listeners: { "copy.prevent": "onCopy($event)" } }, ngImport: i0 });
|
21
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCopyProcessorDirective, decorators: [{
|
22
|
-
type: Directive,
|
23
|
-
args: [{
|
24
|
-
selector: '[tuiCopyProcessor]',
|
25
|
-
}]
|
26
|
-
}], ctorParameters: function () { return [{ type: Window, decorators: [{
|
27
|
-
type: Inject,
|
28
|
-
args: [WINDOW]
|
29
|
-
}] }]; }, propDecorators: { tuiCopyProcessor: [{
|
30
|
-
type: Input
|
31
|
-
}], onCopy: [{
|
32
|
-
type: HostListener,
|
33
|
-
args: ['copy.prevent', ['$event']]
|
34
|
-
}] } });
|
35
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29weS1wcm9jZXNzb3IuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2RpcmVjdGl2ZXMvY29weS1wcm9jZXNzb3IvY29weS1wcm9jZXNzb3IuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsWUFBWSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDckUsT0FBTyxFQUFDLE1BQU0sRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRTNDLE9BQU8sRUFBQyxrQkFBa0IsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQ3ZELE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxNQUFNLENBQUM7O0FBSzlCLE1BQU0sT0FBTyx5QkFBeUI7SUFJbEMsWUFBNkMsR0FBVztRQUFYLFFBQUcsR0FBSCxHQUFHLENBQVE7UUFGeEQscUJBQWdCLEdBQTZCLFFBQVEsQ0FBQztJQUVLLENBQUM7SUFHNUQsTUFBTSxDQUFDLEtBQXFCOztRQUN4QixNQUFNLElBQUksR0FBRyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7UUFFMUMsSUFBSSxJQUFJLEVBQUU7WUFDTixNQUFBLEtBQUssQ0FBQyxhQUFhLDBDQUFFLE9BQU8sQ0FBQyxZQUFZLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxDQUFDLENBQUM7U0FDM0U7SUFDTCxDQUFDOzt1SEFiUSx5QkFBeUIsa0JBSWQsTUFBTTsyR0FKakIseUJBQXlCOzRGQUF6Qix5QkFBeUI7a0JBSHJDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLG9CQUFvQjtpQkFDakM7MERBS3FELE1BQU07MEJBQTNDLE1BQU07MkJBQUMsTUFBTTs0Q0FGMUIsZ0JBQWdCO3NCQURmLEtBQUs7Z0JBTU4sTUFBTTtzQkFETCxZQUFZO3VCQUFDLGNBQWMsRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBIb3N0TGlzdGVuZXIsIEluamVjdCwgSW5wdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtXSU5ET1d9IGZyb20gJ0BuZy13ZWItYXBpcy9jb21tb24nO1xuaW1wb3J0IHtUdWlTdHJpbmdIYW5kbGVyfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3R5cGVzJztcbmltcG9ydCB7dHVpR2V0U2VsZWN0ZWRUZXh0fSBmcm9tICdAdGFpZ2EtdWkvY2RrL3V0aWxzJztcbmltcG9ydCB7aWRlbnRpdHl9IGZyb20gJ3J4anMnO1xuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlDb3B5UHJvY2Vzc29yXScsXG59KVxuZXhwb3J0IGNsYXNzIFR1aUNvcHlQcm9jZXNzb3JEaXJlY3RpdmUge1xuICAgIEBJbnB1dCgpXG4gICAgdHVpQ29weVByb2Nlc3NvcjogVHVpU3RyaW5nSGFuZGxlcjxzdHJpbmc+ID0gaWRlbnRpdHk7XG5cbiAgICBjb25zdHJ1Y3RvcihASW5qZWN0KFdJTkRPVykgcHJpdmF0ZSByZWFkb25seSB3aW46IFdpbmRvdykge31cblxuICAgIEBIb3N0TGlzdGVuZXIoJ2NvcHkucHJldmVudCcsIFsnJGV2ZW50J10pXG4gICAgb25Db3B5KGV2ZW50OiBDbGlwYm9hcmRFdmVudCk6IHZvaWQge1xuICAgICAgICBjb25zdCB0ZXh0ID0gdHVpR2V0U2VsZWN0ZWRUZXh0KHRoaXMud2luKTtcblxuICAgICAgICBpZiAodGV4dCkge1xuICAgICAgICAgICAgZXZlbnQuY2xpcGJvYXJkRGF0YT8uc2V0RGF0YSgndGV4dC9wbGFpbicsIHRoaXMudHVpQ29weVByb2Nlc3Nvcih0ZXh0KSk7XG4gICAgICAgIH1cbiAgICB9XG59XG4iXX0=
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { TuiCopyProcessorDirective } from './copy-processor.directive';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class TuiCopyProcessorModule {
|
5
|
-
}
|
6
|
-
TuiCopyProcessorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCopyProcessorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
TuiCopyProcessorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCopyProcessorModule, declarations: [TuiCopyProcessorDirective], exports: [TuiCopyProcessorDirective] });
|
8
|
-
TuiCopyProcessorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCopyProcessorModule });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiCopyProcessorModule, decorators: [{
|
10
|
-
type: NgModule,
|
11
|
-
args: [{
|
12
|
-
declarations: [TuiCopyProcessorDirective],
|
13
|
-
exports: [TuiCopyProcessorDirective],
|
14
|
-
}]
|
15
|
-
}] });
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29weS1wcm9jZXNzb3IubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2RpcmVjdGl2ZXMvY29weS1wcm9jZXNzb3IvY29weS1wcm9jZXNzb3IubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLHlCQUF5QixFQUFDLE1BQU0sNEJBQTRCLENBQUM7O0FBTXJFLE1BQU0sT0FBTyxzQkFBc0I7O29IQUF0QixzQkFBc0I7cUhBQXRCLHNCQUFzQixpQkFIaEIseUJBQXlCLGFBQzlCLHlCQUF5QjtxSEFFMUIsc0JBQXNCOzRGQUF0QixzQkFBc0I7a0JBSmxDLFFBQVE7bUJBQUM7b0JBQ04sWUFBWSxFQUFFLENBQUMseUJBQXlCLENBQUM7b0JBQ3pDLE9BQU8sRUFBRSxDQUFDLHlCQUF5QixDQUFDO2lCQUN2QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQge1R1aUNvcHlQcm9jZXNzb3JEaXJlY3RpdmV9IGZyb20gJy4vY29weS1wcm9jZXNzb3IuZGlyZWN0aXZlJztcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtUdWlDb3B5UHJvY2Vzc29yRGlyZWN0aXZlXSxcbiAgICBleHBvcnRzOiBbVHVpQ29weVByb2Nlc3NvckRpcmVjdGl2ZV0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aUNvcHlQcm9jZXNzb3JNb2R1bGUge31cbiJdfQ==
|
@@ -1,37 +0,0 @@
|
|
1
|
-
import { Directive, ElementRef, Inject, Output } from '@angular/core';
|
2
|
-
import { tuiDragAndDropFrom, TuiDragStage } from '@taiga-ui/cdk/observables';
|
3
|
-
import { filter, map } from 'rxjs/operators';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
/**
|
6
|
-
* @deprecated not used anywhere
|
7
|
-
*/
|
8
|
-
export class TuiDragDirective {
|
9
|
-
constructor(el) {
|
10
|
-
this.el = el;
|
11
|
-
this.dragAndDropFrom$ = tuiDragAndDropFrom(this.el.nativeElement);
|
12
|
-
this.start = this.dragAndDropFrom$.pipe(filter(({ stage }) => stage === TuiDragStage.Start), map(({ event }) => event));
|
13
|
-
this.continues = this.dragAndDropFrom$.pipe(filter(({ stage }) => stage === TuiDragStage.Continues), map(({ event }) => event));
|
14
|
-
this.end = this.dragAndDropFrom$.pipe(filter(({ stage }) => stage === TuiDragStage.End), map(({ event }) => event));
|
15
|
-
}
|
16
|
-
}
|
17
|
-
TuiDragDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDragDirective, deps: [{ token: ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
18
|
-
TuiDragDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiDragDirective, selector: "[tuiDragStart], [tuiDragContinues], [tuiDragEnd]", outputs: { start: "tuiDragStart", continues: "tuiDragContinues", end: "tuiDragEnd" }, ngImport: i0 });
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDragDirective, decorators: [{
|
20
|
-
type: Directive,
|
21
|
-
args: [{
|
22
|
-
selector: '[tuiDragStart], [tuiDragContinues], [tuiDragEnd]',
|
23
|
-
}]
|
24
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef, decorators: [{
|
25
|
-
type: Inject,
|
26
|
-
args: [ElementRef]
|
27
|
-
}] }]; }, propDecorators: { start: [{
|
28
|
-
type: Output,
|
29
|
-
args: ['tuiDragStart']
|
30
|
-
}], continues: [{
|
31
|
-
type: Output,
|
32
|
-
args: ['tuiDragContinues']
|
33
|
-
}], end: [{
|
34
|
-
type: Output,
|
35
|
-
args: ['tuiDragEnd']
|
36
|
-
}] } });
|
37
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhZy5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9kcmFnL2RyYWcuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDcEUsT0FBTyxFQUFDLGtCQUFrQixFQUFFLFlBQVksRUFBQyxNQUFNLDJCQUEyQixDQUFDO0FBRTNFLE9BQU8sRUFBQyxNQUFNLEVBQUUsR0FBRyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7O0FBRTNDOztHQUVHO0FBSUgsTUFBTSxPQUFPLGdCQUFnQjtJQXVCekIsWUFBaUQsRUFBdUI7UUFBdkIsT0FBRSxHQUFGLEVBQUUsQ0FBcUI7UUF0QnZELHFCQUFnQixHQUFHLGtCQUFrQixDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxDQUFDLENBQUM7UUFJckUsVUFBSyxHQUEyQixJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUMvRCxNQUFNLENBQUMsQ0FBQyxFQUFDLEtBQUssRUFBQyxFQUFFLEVBQUUsQ0FBQyxLQUFLLEtBQUssWUFBWSxDQUFDLEtBQUssQ0FBQyxFQUNqRCxHQUFHLENBQUMsQ0FBQyxFQUFDLEtBQUssRUFBQyxFQUFFLEVBQUUsQ0FBQyxLQUFLLENBQUMsQ0FDMUIsQ0FBQztRQUdPLGNBQVMsR0FBMkIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FDbkUsTUFBTSxDQUFDLENBQUMsRUFBQyxLQUFLLEVBQUMsRUFBRSxFQUFFLENBQUMsS0FBSyxLQUFLLFlBQVksQ0FBQyxTQUFTLENBQUMsRUFDckQsR0FBRyxDQUFDLENBQUMsRUFBQyxLQUFLLEVBQUMsRUFBRSxFQUFFLENBQUMsS0FBSyxDQUFDLENBQzFCLENBQUM7UUFJTyxRQUFHLEdBQTJCLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQzdELE1BQU0sQ0FBQyxDQUFDLEVBQUMsS0FBSyxFQUFDLEVBQUUsRUFBRSxDQUFDLEtBQUssS0FBSyxZQUFZLENBQUMsR0FBRyxDQUFDLEVBQy9DLEdBQUcsQ0FBQyxDQUFDLEVBQUMsS0FBSyxFQUFDLEVBQUUsRUFBRSxDQUFDLEtBQUssQ0FBQyxDQUMxQixDQUFDO0lBRXlFLENBQUM7OzhHQXZCbkUsZ0JBQWdCLGtCQXVCTCxVQUFVO2tHQXZCckIsZ0JBQWdCOzRGQUFoQixnQkFBZ0I7a0JBSDVCLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLGtEQUFrRDtpQkFDL0Q7OzBCQXdCZ0IsTUFBTTsyQkFBQyxVQUFVOzRDQWxCckIsS0FBSztzQkFGYixNQUFNO3VCQUFDLGNBQWM7Z0JBUWIsU0FBUztzQkFEakIsTUFBTTt1QkFBQyxrQkFBa0I7Z0JBUWpCLEdBQUc7c0JBRlgsTUFBTTt1QkFBQyxZQUFZIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIEluamVjdCwgT3V0cHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7dHVpRHJhZ0FuZERyb3BGcm9tLCBUdWlEcmFnU3RhZ2V9IGZyb20gJ0B0YWlnYS11aS9jZGsvb2JzZXJ2YWJsZXMnO1xuaW1wb3J0IHtPYnNlcnZhYmxlfSBmcm9tICdyeGpzJztcbmltcG9ydCB7ZmlsdGVyLCBtYXB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcblxuLyoqXG4gKiBAZGVwcmVjYXRlZCBub3QgdXNlZCBhbnl3aGVyZVxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlEcmFnU3RhcnRdLCBbdHVpRHJhZ0NvbnRpbnVlc10sIFt0dWlEcmFnRW5kXScsXG59KVxuZXhwb3J0IGNsYXNzIFR1aURyYWdEaXJlY3RpdmUge1xuICAgIHByaXZhdGUgcmVhZG9ubHkgZHJhZ0FuZERyb3BGcm9tJCA9IHR1aURyYWdBbmREcm9wRnJvbSh0aGlzLmVsLm5hdGl2ZUVsZW1lbnQpO1xuXG4gICAgQE91dHB1dCgndHVpRHJhZ1N0YXJ0JylcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L25vLW91dHB1dC1uYXRpdmVcbiAgICByZWFkb25seSBzdGFydDogT2JzZXJ2YWJsZTxNb3VzZUV2ZW50PiA9IHRoaXMuZHJhZ0FuZERyb3BGcm9tJC5waXBlKFxuICAgICAgICBmaWx0ZXIoKHtzdGFnZX0pID0+IHN0YWdlID09PSBUdWlEcmFnU3RhZ2UuU3RhcnQpLFxuICAgICAgICBtYXAoKHtldmVudH0pID0+IGV2ZW50KSxcbiAgICApO1xuXG4gICAgQE91dHB1dCgndHVpRHJhZ0NvbnRpbnVlcycpXG4gICAgcmVhZG9ubHkgY29udGludWVzOiBPYnNlcnZhYmxlPE1vdXNlRXZlbnQ+ID0gdGhpcy5kcmFnQW5kRHJvcEZyb20kLnBpcGUoXG4gICAgICAgIGZpbHRlcigoe3N0YWdlfSkgPT4gc3RhZ2UgPT09IFR1aURyYWdTdGFnZS5Db250aW51ZXMpLFxuICAgICAgICBtYXAoKHtldmVudH0pID0+IGV2ZW50KSxcbiAgICApO1xuXG4gICAgQE91dHB1dCgndHVpRHJhZ0VuZCcpXG4gICAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1vdXRwdXQtbmF0aXZlXG4gICAgcmVhZG9ubHkgZW5kOiBPYnNlcnZhYmxlPE1vdXNlRXZlbnQ+ID0gdGhpcy5kcmFnQW5kRHJvcEZyb20kLnBpcGUoXG4gICAgICAgIGZpbHRlcigoe3N0YWdlfSkgPT4gc3RhZ2UgPT09IFR1aURyYWdTdGFnZS5FbmQpLFxuICAgICAgICBtYXAoKHtldmVudH0pID0+IGV2ZW50KSxcbiAgICApO1xuXG4gICAgY29uc3RydWN0b3IoQEluamVjdChFbGVtZW50UmVmKSBwcml2YXRlIHJlYWRvbmx5IGVsOiBFbGVtZW50UmVmPEVsZW1lbnQ+KSB7fVxufVxuIl19
|