@taiga-ui/cdk 3.58.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
@@ -0,0 +1,102 @@
|
|
1
|
+
import { Directive, ElementRef, HostBinding, Inject, Input, NgZone, Self, } from '@angular/core';
|
2
|
+
import { tuiTypedFromEvent, tuiZonefree } from '@taiga-ui/cdk/observables';
|
3
|
+
import { TuiDestroyService } from '@taiga-ui/cdk/services';
|
4
|
+
import { tuiCanScroll, tuiGetScrollParent, tuiIsElement } from '@taiga-ui/cdk/utils/dom';
|
5
|
+
import { filter, switchMap, takeUntil, tap } from 'rxjs';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
import * as i1 from "rxjs";
|
8
|
+
/**
|
9
|
+
* Directive to isolate scrolling, i.e. prevent body scroll behind modal dialog
|
10
|
+
*/
|
11
|
+
export class TuiOverscrollDirective {
|
12
|
+
constructor({ nativeElement }, zone, destroy$) {
|
13
|
+
this.mode = 'scroll';
|
14
|
+
tuiTypedFromEvent(nativeElement, 'wheel', { passive: false })
|
15
|
+
.pipe(filter(() => this.enabled), tuiZonefree(zone), takeUntil(destroy$))
|
16
|
+
.subscribe(event => {
|
17
|
+
this.processEvent(event, !!event.deltaY, event.deltaY ? event.deltaY < 0 : event.deltaX < 0);
|
18
|
+
});
|
19
|
+
tuiTypedFromEvent(nativeElement, 'touchstart', { passive: true })
|
20
|
+
.pipe(switchMap(({ touches }) => {
|
21
|
+
let { clientX, clientY } = touches[0];
|
22
|
+
let deltaX = 0;
|
23
|
+
let deltaY = 0;
|
24
|
+
let vertical;
|
25
|
+
return tuiTypedFromEvent(nativeElement, 'touchmove', {
|
26
|
+
passive: false,
|
27
|
+
}).pipe(filter(() => this.enabled), tap(event => {
|
28
|
+
// We have to have it in tap instead of subscribe due to variables in closure
|
29
|
+
const changedTouch = event.changedTouches[0];
|
30
|
+
deltaX = clientX - changedTouch.clientX;
|
31
|
+
deltaY = clientY - changedTouch.clientY;
|
32
|
+
clientX = changedTouch.clientX;
|
33
|
+
clientY = changedTouch.clientY;
|
34
|
+
if (vertical === undefined) {
|
35
|
+
vertical = Math.abs(deltaY) > Math.abs(deltaX);
|
36
|
+
}
|
37
|
+
this.processEvent(event, vertical, vertical ? deltaY < 0 : deltaX < 0);
|
38
|
+
}));
|
39
|
+
}), tuiZonefree(zone), takeUntil(destroy$))
|
40
|
+
.subscribe();
|
41
|
+
}
|
42
|
+
get enabled() {
|
43
|
+
return this.mode !== 'none';
|
44
|
+
}
|
45
|
+
get overscrollBehavior() {
|
46
|
+
return this.enabled ? 'contain' : null;
|
47
|
+
}
|
48
|
+
processEvent(event, vertical, negative) {
|
49
|
+
const { target, currentTarget, cancelable } = event;
|
50
|
+
if (!cancelable ||
|
51
|
+
!tuiIsElement(target) ||
|
52
|
+
target?.type === 'range') {
|
53
|
+
return;
|
54
|
+
}
|
55
|
+
// This is all what's needed in Chrome/Firefox thanks to CSS overscroll-behavior
|
56
|
+
if (this.mode === 'all' &&
|
57
|
+
((vertical && !currentTarget.contains(tuiGetScrollParent(target))) ||
|
58
|
+
(!vertical && !currentTarget.contains(tuiGetScrollParent(target, false))))) {
|
59
|
+
event.preventDefault();
|
60
|
+
return;
|
61
|
+
}
|
62
|
+
// This is Safari/IE/Edge fallback
|
63
|
+
if (vertical &&
|
64
|
+
((negative && !tuiCanScroll(target, currentTarget, true, false)) ||
|
65
|
+
(!negative && !tuiCanScroll(target, currentTarget, true, true)))) {
|
66
|
+
event.preventDefault();
|
67
|
+
return;
|
68
|
+
}
|
69
|
+
if (!vertical &&
|
70
|
+
((negative && !tuiCanScroll(target, currentTarget, false, false)) ||
|
71
|
+
(!negative && !tuiCanScroll(target, currentTarget, false, true)))) {
|
72
|
+
event.preventDefault();
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|
76
|
+
TuiOverscrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiOverscrollDirective, deps: [{ token: ElementRef }, { token: NgZone }, { token: TuiDestroyService, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
77
|
+
TuiOverscrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiOverscrollDirective, selector: "[tuiOverscroll]", inputs: { mode: ["tuiOverscroll", "mode"] }, host: { properties: { "style.overscrollBehavior": "this.overscrollBehavior" } }, providers: [TuiDestroyService], ngImport: i0 });
|
78
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiOverscrollDirective, decorators: [{
|
79
|
+
type: Directive,
|
80
|
+
args: [{
|
81
|
+
selector: '[tuiOverscroll]',
|
82
|
+
providers: [TuiDestroyService],
|
83
|
+
}]
|
84
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef, decorators: [{
|
85
|
+
type: Inject,
|
86
|
+
args: [ElementRef]
|
87
|
+
}] }, { type: i0.NgZone, decorators: [{
|
88
|
+
type: Inject,
|
89
|
+
args: [NgZone]
|
90
|
+
}] }, { type: i1.Observable, decorators: [{
|
91
|
+
type: Self
|
92
|
+
}, {
|
93
|
+
type: Inject,
|
94
|
+
args: [TuiDestroyService]
|
95
|
+
}] }]; }, propDecorators: { mode: [{
|
96
|
+
type: Input,
|
97
|
+
args: ['tuiOverscroll']
|
98
|
+
}], overscrollBehavior: [{
|
99
|
+
type: HostBinding,
|
100
|
+
args: ['style.overscrollBehavior']
|
101
|
+
}] } });
|
102
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3ZlcnNjcm9sbC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9vdmVyc2Nyb2xsL292ZXJzY3JvbGwuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBQ1QsVUFBVSxFQUNWLFdBQVcsRUFDWCxNQUFNLEVBQ04sS0FBSyxFQUNMLE1BQU0sRUFDTixJQUFJLEdBQ1AsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLGlCQUFpQixFQUFFLFdBQVcsRUFBQyxNQUFNLDJCQUEyQixDQUFDO0FBQ3pFLE9BQU8sRUFBQyxpQkFBaUIsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBRXpELE9BQU8sRUFBQyxZQUFZLEVBQUUsa0JBQWtCLEVBQUUsWUFBWSxFQUFDLE1BQU0seUJBQXlCLENBQUM7QUFDdkYsT0FBTyxFQUFDLE1BQU0sRUFBYyxTQUFTLEVBQUUsU0FBUyxFQUFFLEdBQUcsRUFBQyxNQUFNLE1BQU0sQ0FBQzs7O0FBRW5FOztHQUVHO0FBS0gsTUFBTSxPQUFPLHNCQUFzQjtJQUkvQixZQUN3QixFQUFDLGFBQWEsRUFBMEIsRUFDNUMsSUFBWSxFQUNPLFFBQTBCO1FBTGpFLFNBQUksR0FBMkIsUUFBUSxDQUFDO1FBT3BDLGlCQUFpQixDQUFDLGFBQWEsRUFBRSxPQUFPLEVBQUUsRUFBQyxPQUFPLEVBQUUsS0FBSyxFQUFDLENBQUM7YUFDdEQsSUFBSSxDQUNELE1BQU0sQ0FBQyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLEVBQzFCLFdBQVcsQ0FBQyxJQUFJLENBQUMsRUFDakIsU0FBUyxDQUFDLFFBQVEsQ0FBQyxDQUN0QjthQUNBLFNBQVMsQ0FBQyxLQUFLLENBQUMsRUFBRTtZQUNmLElBQUksQ0FBQyxZQUFZLENBQ2IsS0FBSyxFQUNMLENBQUMsQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUNkLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FDckQsQ0FBQztRQUNOLENBQUMsQ0FBQyxDQUFDO1FBRVAsaUJBQWlCLENBQUMsYUFBYSxFQUFFLFlBQVksRUFBRSxFQUFDLE9BQU8sRUFBRSxJQUFJLEVBQUMsQ0FBQzthQUMxRCxJQUFJLENBQ0QsU0FBUyxDQUFDLENBQUMsRUFBQyxPQUFPLEVBQUMsRUFBRSxFQUFFO1lBQ3BCLElBQUksRUFBQyxPQUFPLEVBQUUsT0FBTyxFQUFDLEdBQUcsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ3BDLElBQUksTUFBTSxHQUFHLENBQUMsQ0FBQztZQUNmLElBQUksTUFBTSxHQUFHLENBQUMsQ0FBQztZQUNmLElBQUksUUFBaUIsQ0FBQztZQUV0QixPQUFPLGlCQUFpQixDQUFDLGFBQWEsRUFBRSxXQUFXLEVBQUU7Z0JBQ2pELE9BQU8sRUFBRSxLQUFLO2FBQ2pCLENBQUMsQ0FBQyxJQUFJLENBQ0gsTUFBTSxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsRUFDMUIsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFFO2dCQUNSLDZFQUE2RTtnQkFDN0UsTUFBTSxZQUFZLEdBQUcsS0FBSyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFFN0MsTUFBTSxHQUFHLE9BQU8sR0FBRyxZQUFZLENBQUMsT0FBTyxDQUFDO2dCQUN4QyxNQUFNLEdBQUcsT0FBTyxHQUFHLFlBQVksQ0FBQyxPQUFPLENBQUM7Z0JBQ3hDLE9BQU8sR0FBRyxZQUFZLENBQUMsT0FBTyxDQUFDO2dCQUMvQixPQUFPLEdBQUcsWUFBWSxDQUFDLE9BQU8sQ0FBQztnQkFFL0IsSUFBSSxRQUFRLEtBQUssU0FBUyxFQUFFO29CQUN4QixRQUFRLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDO2lCQUNsRDtnQkFFRCxJQUFJLENBQUMsWUFBWSxDQUNiLEtBQUssRUFDTCxRQUFRLEVBQ1IsUUFBUSxDQUFDLENBQUMsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUNyQyxDQUFDO1lBQ04sQ0FBQyxDQUFDLENBQ0wsQ0FBQztRQUNOLENBQUMsQ0FBQyxFQUNGLFdBQVcsQ0FBQyxJQUFJLENBQUMsRUFDakIsU0FBUyxDQUFDLFFBQVEsQ0FBQyxDQUN0QjthQUNBLFNBQVMsRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFRCxJQUFJLE9BQU87UUFDUCxPQUFPLElBQUksQ0FBQyxJQUFJLEtBQUssTUFBTSxDQUFDO0lBQ2hDLENBQUM7SUFFRCxJQUNJLGtCQUFrQjtRQUNsQixPQUFPLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO0lBQzNDLENBQUM7SUFFTyxZQUFZLENBQ2hCLEtBQXVDLEVBQ3ZDLFFBQWlCLEVBQ2pCLFFBQWlCO1FBRWpCLE1BQU0sRUFBQyxNQUFNLEVBQUUsYUFBYSxFQUFFLFVBQVUsRUFBQyxHQUFHLEtBQUssQ0FBQztRQUVsRCxJQUNJLENBQUMsVUFBVTtZQUNYLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQztZQUNwQixNQUEyQixFQUFFLElBQUksS0FBSyxPQUFPLEVBQ2hEO1lBQ0UsT0FBTztTQUNWO1FBRUQsZ0ZBQWdGO1FBQ2hGLElBQ0ksSUFBSSxDQUFDLElBQUksS0FBSyxLQUFLO1lBQ25CLENBQUMsQ0FBQyxRQUFRLElBQUksQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7Z0JBQzlELENBQUMsQ0FBQyxRQUFRLElBQUksQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLGtCQUFrQixDQUFDLE1BQU0sRUFBRSxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFDaEY7WUFDRSxLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7WUFFdkIsT0FBTztTQUNWO1FBRUQsa0NBQWtDO1FBQ2xDLElBQ0ksUUFBUTtZQUNSLENBQUMsQ0FBQyxRQUFRLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxFQUFFLGFBQWEsRUFBRSxJQUFJLEVBQUUsS0FBSyxDQUFDLENBQUM7Z0JBQzVELENBQUMsQ0FBQyxRQUFRLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxFQUFFLGFBQWEsRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUN0RTtZQUNFLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUV2QixPQUFPO1NBQ1Y7UUFFRCxJQUNJLENBQUMsUUFBUTtZQUNULENBQUMsQ0FBQyxRQUFRLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxFQUFFLGFBQWEsRUFBRSxLQUFLLEVBQUUsS0FBSyxDQUFDLENBQUM7Z0JBQzdELENBQUMsQ0FBQyxRQUFRLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxFQUFFLGFBQWEsRUFBRSxLQUFLLEVBQUUsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUN2RTtZQUNFLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztTQUMxQjtJQUNMLENBQUM7O29IQW5IUSxzQkFBc0Isa0JBS25CLFVBQVUsYUFDVixNQUFNLGFBQ0UsaUJBQWlCO3dHQVA1QixzQkFBc0Isd0tBRnBCLENBQUMsaUJBQWlCLENBQUM7NEZBRXJCLHNCQUFzQjtrQkFKbEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsaUJBQWlCO29CQUMzQixTQUFTLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBQztpQkFDakM7OzBCQU1RLE1BQU07MkJBQUMsVUFBVTs7MEJBQ2pCLE1BQU07MkJBQUMsTUFBTTs7MEJBQ2IsSUFBSTs7MEJBQUksTUFBTTsyQkFBQyxpQkFBaUI7NENBTHJDLElBQUk7c0JBREgsS0FBSzt1QkFBQyxlQUFlO2dCQWtFbEIsa0JBQWtCO3NCQURyQixXQUFXO3VCQUFDLDBCQUEwQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gICAgRGlyZWN0aXZlLFxuICAgIEVsZW1lbnRSZWYsXG4gICAgSG9zdEJpbmRpbmcsXG4gICAgSW5qZWN0LFxuICAgIElucHV0LFxuICAgIE5nWm9uZSxcbiAgICBTZWxmLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7dHVpVHlwZWRGcm9tRXZlbnQsIHR1aVpvbmVmcmVlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL29ic2VydmFibGVzJztcbmltcG9ydCB7VHVpRGVzdHJveVNlcnZpY2V9IGZyb20gJ0B0YWlnYS11aS9jZGsvc2VydmljZXMnO1xuaW1wb3J0IHtUdWlFdmVudFdpdGgsIFR1aU92ZXJzY3JvbGxNb2RlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3R5cGVzJztcbmltcG9ydCB7dHVpQ2FuU2Nyb2xsLCB0dWlHZXRTY3JvbGxQYXJlbnQsIHR1aUlzRWxlbWVudH0gZnJvbSAnQHRhaWdhLXVpL2Nkay91dGlscy9kb20nO1xuaW1wb3J0IHtmaWx0ZXIsIE9ic2VydmFibGUsIHN3aXRjaE1hcCwgdGFrZVVudGlsLCB0YXB9IGZyb20gJ3J4anMnO1xuXG4vKipcbiAqIERpcmVjdGl2ZSB0byBpc29sYXRlIHNjcm9sbGluZywgaS5lLiBwcmV2ZW50IGJvZHkgc2Nyb2xsIGJlaGluZCBtb2RhbCBkaWFsb2dcbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbdHVpT3ZlcnNjcm9sbF0nLFxuICAgIHByb3ZpZGVyczogW1R1aURlc3Ryb3lTZXJ2aWNlXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpT3ZlcnNjcm9sbERpcmVjdGl2ZSB7XG4gICAgQElucHV0KCd0dWlPdmVyc2Nyb2xsJylcbiAgICBtb2RlOiBUdWlPdmVyc2Nyb2xsTW9kZSB8ICcnID0gJ3Njcm9sbCc7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgQEluamVjdChFbGVtZW50UmVmKSB7bmF0aXZlRWxlbWVudH06IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+LFxuICAgICAgICBASW5qZWN0KE5nWm9uZSkgem9uZTogTmdab25lLFxuICAgICAgICBAU2VsZigpIEBJbmplY3QoVHVpRGVzdHJveVNlcnZpY2UpIGRlc3Ryb3kkOiBPYnNlcnZhYmxlPHZvaWQ+LFxuICAgICkge1xuICAgICAgICB0dWlUeXBlZEZyb21FdmVudChuYXRpdmVFbGVtZW50LCAnd2hlZWwnLCB7cGFzc2l2ZTogZmFsc2V9KVxuICAgICAgICAgICAgLnBpcGUoXG4gICAgICAgICAgICAgICAgZmlsdGVyKCgpID0+IHRoaXMuZW5hYmxlZCksXG4gICAgICAgICAgICAgICAgdHVpWm9uZWZyZWUoem9uZSksXG4gICAgICAgICAgICAgICAgdGFrZVVudGlsKGRlc3Ryb3kkKSxcbiAgICAgICAgICAgIClcbiAgICAgICAgICAgIC5zdWJzY3JpYmUoZXZlbnQgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMucHJvY2Vzc0V2ZW50KFxuICAgICAgICAgICAgICAgICAgICBldmVudCxcbiAgICAgICAgICAgICAgICAgICAgISFldmVudC5kZWx0YVksXG4gICAgICAgICAgICAgICAgICAgIGV2ZW50LmRlbHRhWSA/IGV2ZW50LmRlbHRhWSA8IDAgOiBldmVudC5kZWx0YVggPCAwLFxuICAgICAgICAgICAgICAgICk7XG4gICAgICAgICAgICB9KTtcblxuICAgICAgICB0dWlUeXBlZEZyb21FdmVudChuYXRpdmVFbGVtZW50LCAndG91Y2hzdGFydCcsIHtwYXNzaXZlOiB0cnVlfSlcbiAgICAgICAgICAgIC5waXBlKFxuICAgICAgICAgICAgICAgIHN3aXRjaE1hcCgoe3RvdWNoZXN9KSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIGxldCB7Y2xpZW50WCwgY2xpZW50WX0gPSB0b3VjaGVzWzBdO1xuICAgICAgICAgICAgICAgICAgICBsZXQgZGVsdGFYID0gMDtcbiAgICAgICAgICAgICAgICAgICAgbGV0IGRlbHRhWSA9IDA7XG4gICAgICAgICAgICAgICAgICAgIGxldCB2ZXJ0aWNhbDogYm9vbGVhbjtcblxuICAgICAgICAgICAgICAgICAgICByZXR1cm4gdHVpVHlwZWRGcm9tRXZlbnQobmF0aXZlRWxlbWVudCwgJ3RvdWNobW92ZScsIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHBhc3NpdmU6IGZhbHNlLFxuICAgICAgICAgICAgICAgICAgICB9KS5waXBlKFxuICAgICAgICAgICAgICAgICAgICAgICAgZmlsdGVyKCgpID0+IHRoaXMuZW5hYmxlZCksXG4gICAgICAgICAgICAgICAgICAgICAgICB0YXAoZXZlbnQgPT4ge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIC8vIFdlIGhhdmUgdG8gaGF2ZSBpdCBpbiB0YXAgaW5zdGVhZCBvZiBzdWJzY3JpYmUgZHVlIHRvIHZhcmlhYmxlcyBpbiBjbG9zdXJlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY29uc3QgY2hhbmdlZFRvdWNoID0gZXZlbnQuY2hhbmdlZFRvdWNoZXNbMF07XG5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBkZWx0YVggPSBjbGllbnRYIC0gY2hhbmdlZFRvdWNoLmNsaWVudFg7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgZGVsdGFZID0gY2xpZW50WSAtIGNoYW5nZWRUb3VjaC5jbGllbnRZO1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsaWVudFggPSBjaGFuZ2VkVG91Y2guY2xpZW50WDtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbGllbnRZID0gY2hhbmdlZFRvdWNoLmNsaWVudFk7XG5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBpZiAodmVydGljYWwgPT09IHVuZGVmaW5lZCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB2ZXJ0aWNhbCA9IE1hdGguYWJzKGRlbHRhWSkgPiBNYXRoLmFicyhkZWx0YVgpO1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMucHJvY2Vzc0V2ZW50KFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBldmVudCxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdmVydGljYWwsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHZlcnRpY2FsID8gZGVsdGFZIDwgMCA6IGRlbHRhWCA8IDAsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgICAgICAgICApO1xuICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgICAgIHR1aVpvbmVmcmVlKHpvbmUpLFxuICAgICAgICAgICAgICAgIHRha2VVbnRpbChkZXN0cm95JCksXG4gICAgICAgICAgICApXG4gICAgICAgICAgICAuc3Vic2NyaWJlKCk7XG4gICAgfVxuXG4gICAgZ2V0IGVuYWJsZWQoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLm1vZGUgIT09ICdub25lJztcbiAgICB9XG5cbiAgICBASG9zdEJpbmRpbmcoJ3N0eWxlLm92ZXJzY3JvbGxCZWhhdmlvcicpXG4gICAgZ2V0IG92ZXJzY3JvbGxCZWhhdmlvcigpOiAnY29udGFpbicgfCBudWxsIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuZW5hYmxlZCA/ICdjb250YWluJyA6IG51bGw7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBwcm9jZXNzRXZlbnQoXG4gICAgICAgIGV2ZW50OiBUdWlFdmVudFdpdGg8RXZlbnQsIEhUTUxFbGVtZW50PixcbiAgICAgICAgdmVydGljYWw6IGJvb2xlYW4sXG4gICAgICAgIG5lZ2F0aXZlOiBib29sZWFuLFxuICAgICk6IHZvaWQge1xuICAgICAgICBjb25zdCB7dGFyZ2V0LCBjdXJyZW50VGFyZ2V0LCBjYW5jZWxhYmxlfSA9IGV2ZW50O1xuXG4gICAgICAgIGlmIChcbiAgICAgICAgICAgICFjYW5jZWxhYmxlIHx8XG4gICAgICAgICAgICAhdHVpSXNFbGVtZW50KHRhcmdldCkgfHxcbiAgICAgICAgICAgICh0YXJnZXQgYXMgSFRNTElucHV0RWxlbWVudCk/LnR5cGUgPT09ICdyYW5nZSdcbiAgICAgICAgKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cblxuICAgICAgICAvLyBUaGlzIGlzIGFsbCB3aGF0J3MgbmVlZGVkIGluIENocm9tZS9GaXJlZm94IHRoYW5rcyB0byBDU1Mgb3ZlcnNjcm9sbC1iZWhhdmlvclxuICAgICAgICBpZiAoXG4gICAgICAgICAgICB0aGlzLm1vZGUgPT09ICdhbGwnICYmXG4gICAgICAgICAgICAoKHZlcnRpY2FsICYmICFjdXJyZW50VGFyZ2V0LmNvbnRhaW5zKHR1aUdldFNjcm9sbFBhcmVudCh0YXJnZXQpKSkgfHxcbiAgICAgICAgICAgICAgICAoIXZlcnRpY2FsICYmICFjdXJyZW50VGFyZ2V0LmNvbnRhaW5zKHR1aUdldFNjcm9sbFBhcmVudCh0YXJnZXQsIGZhbHNlKSkpKVxuICAgICAgICApIHtcbiAgICAgICAgICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG5cbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuXG4gICAgICAgIC8vIFRoaXMgaXMgU2FmYXJpL0lFL0VkZ2UgZmFsbGJhY2tcbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgdmVydGljYWwgJiZcbiAgICAgICAgICAgICgobmVnYXRpdmUgJiYgIXR1aUNhblNjcm9sbCh0YXJnZXQsIGN1cnJlbnRUYXJnZXQsIHRydWUsIGZhbHNlKSkgfHxcbiAgICAgICAgICAgICAgICAoIW5lZ2F0aXZlICYmICF0dWlDYW5TY3JvbGwodGFyZ2V0LCBjdXJyZW50VGFyZ2V0LCB0cnVlLCB0cnVlKSkpXG4gICAgICAgICkge1xuICAgICAgICAgICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcblxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgIXZlcnRpY2FsICYmXG4gICAgICAgICAgICAoKG5lZ2F0aXZlICYmICF0dWlDYW5TY3JvbGwodGFyZ2V0LCBjdXJyZW50VGFyZ2V0LCBmYWxzZSwgZmFsc2UpKSB8fFxuICAgICAgICAgICAgICAgICghbmVnYXRpdmUgJiYgIXR1aUNhblNjcm9sbCh0YXJnZXQsIGN1cnJlbnRUYXJnZXQsIGZhbHNlLCB0cnVlKSkpXG4gICAgICAgICkge1xuICAgICAgICAgICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcbiAgICAgICAgfVxuICAgIH1cbn1cbiJdfQ==
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { TuiOverscrollDirective } from './overscroll.directive';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export class TuiOverscrollModule {
|
5
|
+
}
|
6
|
+
TuiOverscrollModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiOverscrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
+
TuiOverscrollModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiOverscrollModule, declarations: [TuiOverscrollDirective], exports: [TuiOverscrollDirective] });
|
8
|
+
TuiOverscrollModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiOverscrollModule });
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiOverscrollModule, decorators: [{
|
10
|
+
type: NgModule,
|
11
|
+
args: [{
|
12
|
+
declarations: [TuiOverscrollDirective],
|
13
|
+
exports: [TuiOverscrollDirective],
|
14
|
+
}]
|
15
|
+
}] });
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3ZlcnNjcm9sbC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9vdmVyc2Nyb2xsL292ZXJzY3JvbGwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLHNCQUFzQixFQUFDLE1BQU0sd0JBQXdCLENBQUM7O0FBTTlELE1BQU0sT0FBTyxtQkFBbUI7O2lIQUFuQixtQkFBbUI7a0hBQW5CLG1CQUFtQixpQkFIYixzQkFBc0IsYUFDM0Isc0JBQXNCO2tIQUV2QixtQkFBbUI7NEZBQW5CLG1CQUFtQjtrQkFKL0IsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztvQkFDdEMsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7aUJBQ3BDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpT3ZlcnNjcm9sbERpcmVjdGl2ZX0gZnJvbSAnLi9vdmVyc2Nyb2xsLmRpcmVjdGl2ZSc7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpT3ZlcnNjcm9sbERpcmVjdGl2ZV0sXG4gICAgZXhwb3J0czogW1R1aU92ZXJzY3JvbGxEaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlPdmVyc2Nyb2xsTW9kdWxlIHt9XG4iXX0=
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { Directive, Inject } from '@angular/core';
|
2
|
+
import { TuiPanService } from '@taiga-ui/cdk/services';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
import * as i1 from "rxjs";
|
5
|
+
export class TuiPanDirective {
|
6
|
+
constructor(tuiPan) {
|
7
|
+
this.tuiPan = tuiPan;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
TuiPanDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPanDirective, deps: [{ token: TuiPanService }], target: i0.ɵɵFactoryTarget.Directive });
|
11
|
+
TuiPanDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiPanDirective, selector: "[tuiPan]", outputs: { tuiPan: "tuiPan" }, providers: [TuiPanService], ngImport: i0 });
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPanDirective, decorators: [{
|
13
|
+
type: Directive,
|
14
|
+
args: [{
|
15
|
+
selector: '[tuiPan]',
|
16
|
+
outputs: ['tuiPan'],
|
17
|
+
providers: [TuiPanService],
|
18
|
+
}]
|
19
|
+
}], ctorParameters: function () { return [{ type: i1.Observable, decorators: [{
|
20
|
+
type: Inject,
|
21
|
+
args: [TuiPanService]
|
22
|
+
}] }]; } });
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFuLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3Bhbi9wYW4uZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsTUFBTSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ2hELE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQzs7O0FBUXJELE1BQU0sT0FBTyxlQUFlO0lBQ3hCLFlBQ29DLE1BQTZDO1FBQTdDLFdBQU0sR0FBTixNQUFNLENBQXVDO0lBQzlFLENBQUM7OzZHQUhLLGVBQWUsa0JBRVosYUFBYTtpR0FGaEIsZUFBZSxrRUFGYixDQUFDLGFBQWEsQ0FBQzs0RkFFakIsZUFBZTtrQkFMM0IsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsVUFBVTtvQkFDcEIsT0FBTyxFQUFFLENBQUMsUUFBUSxDQUFDO29CQUNuQixTQUFTLEVBQUUsQ0FBQyxhQUFhLENBQUM7aUJBQzdCOzswQkFHUSxNQUFNOzJCQUFDLGFBQWEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgSW5qZWN0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VHVpUGFuU2VydmljZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay9zZXJ2aWNlcyc7XG5pbXBvcnQge09ic2VydmFibGV9IGZyb20gJ3J4anMnO1xuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlQYW5dJyxcbiAgICBvdXRwdXRzOiBbJ3R1aVBhbiddLFxuICAgIHByb3ZpZGVyczogW1R1aVBhblNlcnZpY2VdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlQYW5EaXJlY3RpdmUge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBASW5qZWN0KFR1aVBhblNlcnZpY2UpIHJlYWRvbmx5IHR1aVBhbjogT2JzZXJ2YWJsZTxyZWFkb25seSBbbnVtYmVyLCBudW1iZXJdPixcbiAgICApIHt9XG59XG4iXX0=
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { TuiPanDirective } from './pan.directive';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
/**
|
5
|
+
* @experimental
|
6
|
+
*/
|
7
|
+
export class TuiPanModule {
|
8
|
+
}
|
9
|
+
TuiPanModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPanModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
10
|
+
TuiPanModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiPanModule, declarations: [TuiPanDirective], exports: [TuiPanDirective] });
|
11
|
+
TuiPanModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPanModule });
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPanModule, decorators: [{
|
13
|
+
type: NgModule,
|
14
|
+
args: [{
|
15
|
+
declarations: [TuiPanDirective],
|
16
|
+
exports: [TuiPanDirective],
|
17
|
+
}]
|
18
|
+
}] });
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFuLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3Bhbi9wYW4ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLGVBQWUsRUFBQyxNQUFNLGlCQUFpQixDQUFDOztBQUVoRDs7R0FFRztBQUtILE1BQU0sT0FBTyxZQUFZOzswR0FBWixZQUFZOzJHQUFaLFlBQVksaUJBSE4sZUFBZSxhQUNwQixlQUFlOzJHQUVoQixZQUFZOzRGQUFaLFlBQVk7a0JBSnhCLFFBQVE7bUJBQUM7b0JBQ04sWUFBWSxFQUFFLENBQUMsZUFBZSxDQUFDO29CQUMvQixPQUFPLEVBQUUsQ0FBQyxlQUFlLENBQUM7aUJBQzdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpUGFuRGlyZWN0aXZlfSBmcm9tICcuL3Bhbi5kaXJlY3RpdmUnO1xuXG4vKipcbiAqIEBleHBlcmltZW50YWxcbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtUdWlQYW5EaXJlY3RpdmVdLFxuICAgIGV4cG9ydHM6IFtUdWlQYW5EaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlQYW5Nb2R1bGUge31cbiJdfQ==
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import { Directive, HostBinding, Input } from '@angular/core';
|
2
|
+
import { TUI_PLATFORM, tuiPlatformFactory } from '@taiga-ui/cdk/tokens';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export class TuiPlatformDirective {
|
5
|
+
constructor() {
|
6
|
+
this.tuiPlatform = '';
|
7
|
+
}
|
8
|
+
}
|
9
|
+
TuiPlatformDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPlatformDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
10
|
+
TuiPlatformDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiPlatformDirective, selector: "[tuiPlatform]", inputs: { tuiPlatform: "tuiPlatform" }, host: { properties: { "attr.data-platform": "this.tuiPlatform" } }, providers: [
|
11
|
+
{
|
12
|
+
provide: TUI_PLATFORM,
|
13
|
+
deps: [TuiPlatformDirective],
|
14
|
+
useFactory: ({ tuiPlatform }) => tuiPlatform || tuiPlatformFactory(),
|
15
|
+
},
|
16
|
+
], ngImport: i0 });
|
17
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPlatformDirective, decorators: [{
|
18
|
+
type: Directive,
|
19
|
+
args: [{
|
20
|
+
selector: '[tuiPlatform]',
|
21
|
+
providers: [
|
22
|
+
{
|
23
|
+
provide: TUI_PLATFORM,
|
24
|
+
deps: [TuiPlatformDirective],
|
25
|
+
useFactory: ({ tuiPlatform }) => tuiPlatform || tuiPlatformFactory(),
|
26
|
+
},
|
27
|
+
],
|
28
|
+
}]
|
29
|
+
}], propDecorators: { tuiPlatform: [{
|
30
|
+
type: Input
|
31
|
+
}, {
|
32
|
+
type: HostBinding,
|
33
|
+
args: ['attr.data-platform']
|
34
|
+
}] } });
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGZvcm0uZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2RpcmVjdGl2ZXMvcGxhdGZvcm0vcGxhdGZvcm0uZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUM1RCxPQUFPLEVBQUMsWUFBWSxFQUFFLGtCQUFrQixFQUFDLE1BQU0sc0JBQXNCLENBQUM7O0FBY3RFLE1BQU0sT0FBTyxvQkFBb0I7SUFYakM7UUFjSSxnQkFBVyxHQUFxQixFQUFFLENBQUM7S0FDdEM7O2tIQUpZLG9CQUFvQjtzR0FBcEIsb0JBQW9CLG9KQVRsQjtRQUNQO1lBQ0ksT0FBTyxFQUFFLFlBQVk7WUFDckIsSUFBSSxFQUFFLENBQUMsb0JBQW9CLENBQUM7WUFDNUIsVUFBVSxFQUFFLENBQUMsRUFBQyxXQUFXLEVBQXVCLEVBQUUsRUFBRSxDQUNoRCxXQUFXLElBQUksa0JBQWtCLEVBQUU7U0FDMUM7S0FDSjs0RkFFUSxvQkFBb0I7a0JBWGhDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLGVBQWU7b0JBQ3pCLFNBQVMsRUFBRTt3QkFDUDs0QkFDSSxPQUFPLEVBQUUsWUFBWTs0QkFDckIsSUFBSSxFQUFFLHNCQUFzQjs0QkFDNUIsVUFBVSxFQUFFLENBQUMsRUFBQyxXQUFXLEVBQXVCLEVBQUUsRUFBRSxDQUNoRCxXQUFXLElBQUksa0JBQWtCLEVBQUU7eUJBQzFDO3FCQUNKO2lCQUNKOzhCQUlHLFdBQVc7c0JBRlYsS0FBSzs7c0JBQ0wsV0FBVzt1QkFBQyxvQkFBb0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgSG9zdEJpbmRpbmcsIElucHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VFVJX1BMQVRGT1JNLCB0dWlQbGF0Zm9ybUZhY3Rvcnl9IGZyb20gJ0B0YWlnYS11aS9jZGsvdG9rZW5zJztcbmltcG9ydCB7VHVpUGxhdGZvcm19IGZyb20gJ0B0YWlnYS11aS9jZGsvdHlwZXMnO1xuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlQbGF0Zm9ybV0nLFxuICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7XG4gICAgICAgICAgICBwcm92aWRlOiBUVUlfUExBVEZPUk0sXG4gICAgICAgICAgICBkZXBzOiBbVHVpUGxhdGZvcm1EaXJlY3RpdmVdLFxuICAgICAgICAgICAgdXNlRmFjdG9yeTogKHt0dWlQbGF0Zm9ybX06IFR1aVBsYXRmb3JtRGlyZWN0aXZlKSA9PlxuICAgICAgICAgICAgICAgIHR1aVBsYXRmb3JtIHx8IHR1aVBsYXRmb3JtRmFjdG9yeSgpLFxuICAgICAgICB9LFxuICAgIF0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVBsYXRmb3JtRGlyZWN0aXZlIHtcbiAgICBASW5wdXQoKVxuICAgIEBIb3N0QmluZGluZygnYXR0ci5kYXRhLXBsYXRmb3JtJylcbiAgICB0dWlQbGF0Zm9ybTogVHVpUGxhdGZvcm0gfCAnJyA9ICcnO1xufVxuIl19
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { TuiPlatformDirective } from './platform.directive';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export class TuiPlatformModule {
|
5
|
+
}
|
6
|
+
TuiPlatformModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPlatformModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
+
TuiPlatformModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiPlatformModule, declarations: [TuiPlatformDirective], exports: [TuiPlatformDirective] });
|
8
|
+
TuiPlatformModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPlatformModule });
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPlatformModule, decorators: [{
|
10
|
+
type: NgModule,
|
11
|
+
args: [{
|
12
|
+
declarations: [TuiPlatformDirective],
|
13
|
+
exports: [TuiPlatformDirective],
|
14
|
+
}]
|
15
|
+
}] });
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGZvcm0ubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2RpcmVjdGl2ZXMvcGxhdGZvcm0vcGxhdGZvcm0ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sc0JBQXNCLENBQUM7O0FBTTFELE1BQU0sT0FBTyxpQkFBaUI7OytHQUFqQixpQkFBaUI7Z0hBQWpCLGlCQUFpQixpQkFIWCxvQkFBb0IsYUFDekIsb0JBQW9CO2dIQUVyQixpQkFBaUI7NEZBQWpCLGlCQUFpQjtrQkFKN0IsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQztvQkFDcEMsT0FBTyxFQUFFLENBQUMsb0JBQW9CLENBQUM7aUJBQ2xDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpUGxhdGZvcm1EaXJlY3RpdmV9IGZyb20gJy4vcGxhdGZvcm0uZGlyZWN0aXZlJztcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtUdWlQbGF0Zm9ybURpcmVjdGl2ZV0sXG4gICAgZXhwb3J0czogW1R1aVBsYXRmb3JtRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpUGxhdGZvcm1Nb2R1bGUge31cbiJdfQ==
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import { Directive, Inject, Input, TemplateRef, } from '@angular/core';
|
2
|
+
import { TuiDropdownPortalService } from '@taiga-ui/cdk/components/dropdown-host';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
import * as i1 from "@taiga-ui/cdk/components/dropdown-host";
|
5
|
+
export class TuiPortalDirective {
|
6
|
+
set tuiPortal(show) {
|
7
|
+
this.viewRef?.destroy();
|
8
|
+
if (show) {
|
9
|
+
this.viewRef = this.portalService.addTemplate(this.templateRef);
|
10
|
+
}
|
11
|
+
}
|
12
|
+
constructor(templateRef, portalService) {
|
13
|
+
this.templateRef = templateRef;
|
14
|
+
this.portalService = portalService;
|
15
|
+
}
|
16
|
+
ngOnDestroy() {
|
17
|
+
this.viewRef?.destroy();
|
18
|
+
}
|
19
|
+
}
|
20
|
+
TuiPortalDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPortalDirective, deps: [{ token: TemplateRef }, { token: TuiDropdownPortalService }], target: i0.ɵɵFactoryTarget.Directive });
|
21
|
+
TuiPortalDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiPortalDirective, selector: "[tuiPortal]", inputs: { tuiPortal: "tuiPortal" }, ngImport: i0 });
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPortalDirective, decorators: [{
|
23
|
+
type: Directive,
|
24
|
+
args: [{
|
25
|
+
selector: '[tuiPortal]',
|
26
|
+
}]
|
27
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
28
|
+
type: Inject,
|
29
|
+
args: [TemplateRef]
|
30
|
+
}] }, { type: i1.TuiDropdownPortalService, decorators: [{
|
31
|
+
type: Inject,
|
32
|
+
args: [TuiDropdownPortalService]
|
33
|
+
}] }]; }, propDecorators: { tuiPortal: [{
|
34
|
+
type: Input
|
35
|
+
}] } });
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9ydGFsLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3BvcnRhbC9wb3J0YWwuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCxTQUFTLEVBRVQsTUFBTSxFQUNOLEtBQUssRUFFTCxXQUFXLEdBQ2QsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLHdCQUF3QixFQUFDLE1BQU0sd0NBQXdDLENBQUM7OztBQUtoRixNQUFNLE9BQU8sa0JBQWtCO0lBRzNCLElBQ0ksU0FBUyxDQUFDLElBQWE7UUFDdkIsSUFBSSxDQUFDLE9BQU8sRUFBRSxPQUFPLEVBQUUsQ0FBQztRQUV4QixJQUFJLElBQUksRUFBRTtZQUNOLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDO1NBQ25FO0lBQ0wsQ0FBQztJQUVELFlBRXFCLFdBQWlELEVBRWpELGFBQXVDO1FBRnZDLGdCQUFXLEdBQVgsV0FBVyxDQUFzQztRQUVqRCxrQkFBYSxHQUFiLGFBQWEsQ0FBMEI7SUFDekQsQ0FBQztJQUVKLFdBQVc7UUFDUCxJQUFJLENBQUMsT0FBTyxFQUFFLE9BQU8sRUFBRSxDQUFDO0lBQzVCLENBQUM7O2dIQXJCUSxrQkFBa0Isa0JBYWYsV0FBVyxhQUVYLHdCQUF3QjtvR0FmM0Isa0JBQWtCOzRGQUFsQixrQkFBa0I7a0JBSDlCLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLGFBQWE7aUJBQzFCOzswQkFjUSxNQUFNOzJCQUFDLFdBQVc7OzBCQUVsQixNQUFNOzJCQUFDLHdCQUF3Qjs0Q0FYaEMsU0FBUztzQkFEWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgICBEaXJlY3RpdmUsXG4gICAgRW1iZWRkZWRWaWV3UmVmLFxuICAgIEluamVjdCxcbiAgICBJbnB1dCxcbiAgICBPbkRlc3Ryb3ksXG4gICAgVGVtcGxhdGVSZWYsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUdWlEcm9wZG93blBvcnRhbFNlcnZpY2V9IGZyb20gJ0B0YWlnYS11aS9jZGsvY29tcG9uZW50cy9kcm9wZG93bi1ob3N0JztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbdHVpUG9ydGFsXScsXG59KVxuZXhwb3J0IGNsYXNzIFR1aVBvcnRhbERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uRGVzdHJveSB7XG4gICAgcHJpdmF0ZSB2aWV3UmVmPzogRW1iZWRkZWRWaWV3UmVmPHVua25vd24+O1xuXG4gICAgQElucHV0KClcbiAgICBzZXQgdHVpUG9ydGFsKHNob3c6IGJvb2xlYW4pIHtcbiAgICAgICAgdGhpcy52aWV3UmVmPy5kZXN0cm95KCk7XG5cbiAgICAgICAgaWYgKHNob3cpIHtcbiAgICAgICAgICAgIHRoaXMudmlld1JlZiA9IHRoaXMucG9ydGFsU2VydmljZS5hZGRUZW1wbGF0ZSh0aGlzLnRlbXBsYXRlUmVmKTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBASW5qZWN0KFRlbXBsYXRlUmVmKVxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IHRlbXBsYXRlUmVmOiBUZW1wbGF0ZVJlZjxSZWNvcmQ8c3RyaW5nLCB1bmtub3duPj4sXG4gICAgICAgIEBJbmplY3QoVHVpRHJvcGRvd25Qb3J0YWxTZXJ2aWNlKVxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IHBvcnRhbFNlcnZpY2U6IFR1aURyb3Bkb3duUG9ydGFsU2VydmljZSxcbiAgICApIHt9XG5cbiAgICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy52aWV3UmVmPy5kZXN0cm95KCk7XG4gICAgfVxufVxuIl19
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { TuiPortalDirective } from './portal.directive';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export class TuiPortalModule {
|
5
|
+
}
|
6
|
+
TuiPortalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPortalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
+
TuiPortalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiPortalModule, declarations: [TuiPortalDirective], exports: [TuiPortalDirective] });
|
8
|
+
TuiPortalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPortalModule });
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPortalModule, decorators: [{
|
10
|
+
type: NgModule,
|
11
|
+
args: [{
|
12
|
+
declarations: [TuiPortalDirective],
|
13
|
+
exports: [TuiPortalDirective],
|
14
|
+
}]
|
15
|
+
}] });
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9ydGFsLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3BvcnRhbC9wb3J0YWwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0sb0JBQW9CLENBQUM7O0FBTXRELE1BQU0sT0FBTyxlQUFlOzs2R0FBZixlQUFlOzhHQUFmLGVBQWUsaUJBSFQsa0JBQWtCLGFBQ3ZCLGtCQUFrQjs4R0FFbkIsZUFBZTs0RkFBZixlQUFlO2tCQUozQixRQUFRO21CQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLGtCQUFrQixDQUFDO29CQUNsQyxPQUFPLEVBQUUsQ0FBQyxrQkFBa0IsQ0FBQztpQkFDaEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHtUdWlQb3J0YWxEaXJlY3RpdmV9IGZyb20gJy4vcG9ydGFsLmRpcmVjdGl2ZSc7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpUG9ydGFsRGlyZWN0aXZlXSxcbiAgICBleHBvcnRzOiBbVHVpUG9ydGFsRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpUG9ydGFsTW9kdWxlIHt9XG4iXX0=
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { Directive, ElementRef, Inject, Output } from '@angular/core';
|
2
|
+
import { tuiPressedObservable } from '@taiga-ui/cdk/observables';
|
3
|
+
import { TUI_TAKE_ONLY_TRUSTED_EVENTS } from '@taiga-ui/cdk/tokens';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export class TuiPressedDirective {
|
6
|
+
constructor(el, takeOnlyTrustedEvents) {
|
7
|
+
this.el = el;
|
8
|
+
this.takeOnlyTrustedEvents = takeOnlyTrustedEvents;
|
9
|
+
this.tuiPressedChange = tuiPressedObservable(this.el.nativeElement, {
|
10
|
+
onlyTrusted: this.takeOnlyTrustedEvents,
|
11
|
+
});
|
12
|
+
}
|
13
|
+
}
|
14
|
+
TuiPressedDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPressedDirective, deps: [{ token: ElementRef }, { token: TUI_TAKE_ONLY_TRUSTED_EVENTS }], target: i0.ɵɵFactoryTarget.Directive });
|
15
|
+
TuiPressedDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiPressedDirective, selector: "[tuiPressedChange]", outputs: { tuiPressedChange: "tuiPressedChange" }, ngImport: i0 });
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPressedDirective, decorators: [{
|
17
|
+
type: Directive,
|
18
|
+
args: [{
|
19
|
+
selector: '[tuiPressedChange]',
|
20
|
+
}]
|
21
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef, decorators: [{
|
22
|
+
type: Inject,
|
23
|
+
args: [ElementRef]
|
24
|
+
}] }, { type: undefined, decorators: [{
|
25
|
+
type: Inject,
|
26
|
+
args: [TUI_TAKE_ONLY_TRUSTED_EVENTS]
|
27
|
+
}] }]; }, propDecorators: { tuiPressedChange: [{
|
28
|
+
type: Output
|
29
|
+
}] } });
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJlc3NlZC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9wcmVzc2VkL3ByZXNzZWQuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDcEUsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sMkJBQTJCLENBQUM7QUFDL0QsT0FBTyxFQUFDLDRCQUE0QixFQUFDLE1BQU0sc0JBQXNCLENBQUM7O0FBS2xFLE1BQU0sT0FBTyxtQkFBbUI7SUFNNUIsWUFDeUMsRUFBdUIsRUFFM0MscUJBQThCO1FBRlYsT0FBRSxHQUFGLEVBQUUsQ0FBcUI7UUFFM0MsMEJBQXFCLEdBQXJCLHFCQUFxQixDQUFTO1FBUDFDLHFCQUFnQixHQUFHLG9CQUFvQixDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxFQUFFO1lBQ3BFLFdBQVcsRUFBRSxJQUFJLENBQUMscUJBQXFCO1NBQzFDLENBQUMsQ0FBQztJQU1BLENBQUM7O2lIQVZLLG1CQUFtQixrQkFPaEIsVUFBVSxhQUNWLDRCQUE0QjtxR0FSL0IsbUJBQW1COzRGQUFuQixtQkFBbUI7a0JBSC9CLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLG9CQUFvQjtpQkFDakM7OzBCQVFRLE1BQU07MkJBQUMsVUFBVTs7MEJBQ2pCLE1BQU07MkJBQUMsNEJBQTRCOzRDQU4vQixnQkFBZ0I7c0JBRHhCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgRWxlbWVudFJlZiwgSW5qZWN0LCBPdXRwdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHt0dWlQcmVzc2VkT2JzZXJ2YWJsZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay9vYnNlcnZhYmxlcyc7XG5pbXBvcnQge1RVSV9UQUtFX09OTFlfVFJVU1RFRF9FVkVOVFN9IGZyb20gJ0B0YWlnYS11aS9jZGsvdG9rZW5zJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbdHVpUHJlc3NlZENoYW5nZV0nLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlQcmVzc2VkRGlyZWN0aXZlIHtcbiAgICBAT3V0cHV0KClcbiAgICByZWFkb25seSB0dWlQcmVzc2VkQ2hhbmdlID0gdHVpUHJlc3NlZE9ic2VydmFibGUodGhpcy5lbC5uYXRpdmVFbGVtZW50LCB7XG4gICAgICAgIG9ubHlUcnVzdGVkOiB0aGlzLnRha2VPbmx5VHJ1c3RlZEV2ZW50cyxcbiAgICB9KTtcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBASW5qZWN0KEVsZW1lbnRSZWYpIHByaXZhdGUgcmVhZG9ubHkgZWw6IEVsZW1lbnRSZWY8RWxlbWVudD4sXG4gICAgICAgIEBJbmplY3QoVFVJX1RBS0VfT05MWV9UUlVTVEVEX0VWRU5UUylcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSB0YWtlT25seVRydXN0ZWRFdmVudHM6IGJvb2xlYW4sXG4gICAgKSB7fVxufVxuIl19
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { TuiPressedDirective } from './pressed.directive';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export class TuiPressedModule {
|
5
|
+
}
|
6
|
+
TuiPressedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPressedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
+
TuiPressedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiPressedModule, declarations: [TuiPressedDirective], exports: [TuiPressedDirective] });
|
8
|
+
TuiPressedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPressedModule });
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPressedModule, decorators: [{
|
10
|
+
type: NgModule,
|
11
|
+
args: [{
|
12
|
+
declarations: [TuiPressedDirective],
|
13
|
+
exports: [TuiPressedDirective],
|
14
|
+
}]
|
15
|
+
}] });
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJlc3NlZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9wcmVzc2VkL3ByZXNzZWQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLG1CQUFtQixFQUFDLE1BQU0scUJBQXFCLENBQUM7O0FBTXhELE1BQU0sT0FBTyxnQkFBZ0I7OzhHQUFoQixnQkFBZ0I7K0dBQWhCLGdCQUFnQixpQkFIVixtQkFBbUIsYUFDeEIsbUJBQW1COytHQUVwQixnQkFBZ0I7NEZBQWhCLGdCQUFnQjtrQkFKNUIsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztvQkFDbkMsT0FBTyxFQUFFLENBQUMsbUJBQW1CLENBQUM7aUJBQ2pDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpUHJlc3NlZERpcmVjdGl2ZX0gZnJvbSAnLi9wcmVzc2VkLmRpcmVjdGl2ZSc7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpUHJlc3NlZERpcmVjdGl2ZV0sXG4gICAgZXhwb3J0czogW1R1aVByZXNzZWREaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlQcmVzc2VkTW9kdWxlIHt9XG4iXX0=
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import { Directive, ElementRef, Inject, Input, NgZone, Self } from '@angular/core';
|
2
|
+
import { tuiPreventDefault, tuiZonefree } from '@taiga-ui/cdk/observables';
|
3
|
+
import { TuiDestroyService } from '@taiga-ui/cdk/services';
|
4
|
+
import { fromEvent, takeUntil } from 'rxjs';
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
import * as i1 from "rxjs";
|
7
|
+
/**
|
8
|
+
* @description:
|
9
|
+
* Simple prevent default on event directive when you do not need anything
|
10
|
+
* else on event and do not want to trigger change detection
|
11
|
+
*/
|
12
|
+
export class TuiPreventDefaultDirective {
|
13
|
+
constructor(el, zone, destroy$) {
|
14
|
+
this.el = el;
|
15
|
+
this.zone = zone;
|
16
|
+
this.destroy$ = destroy$;
|
17
|
+
this.eventName = '';
|
18
|
+
}
|
19
|
+
ngOnInit() {
|
20
|
+
fromEvent(this.el.nativeElement, this.eventName, { passive: false })
|
21
|
+
.pipe(tuiZonefree(this.zone), tuiPreventDefault(), takeUntil(this.destroy$))
|
22
|
+
.subscribe();
|
23
|
+
}
|
24
|
+
}
|
25
|
+
TuiPreventDefaultDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPreventDefaultDirective, deps: [{ token: ElementRef }, { token: NgZone }, { token: TuiDestroyService, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
26
|
+
TuiPreventDefaultDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiPreventDefaultDirective, selector: "[tuiPreventDefault]", inputs: { eventName: ["tuiPreventDefault", "eventName"] }, providers: [TuiDestroyService], ngImport: i0 });
|
27
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPreventDefaultDirective, decorators: [{
|
28
|
+
type: Directive,
|
29
|
+
args: [{
|
30
|
+
selector: '[tuiPreventDefault]',
|
31
|
+
providers: [TuiDestroyService],
|
32
|
+
}]
|
33
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef, decorators: [{
|
34
|
+
type: Inject,
|
35
|
+
args: [ElementRef]
|
36
|
+
}] }, { type: i0.NgZone, decorators: [{
|
37
|
+
type: Inject,
|
38
|
+
args: [NgZone]
|
39
|
+
}] }, { type: i1.Observable, decorators: [{
|
40
|
+
type: Self
|
41
|
+
}, {
|
42
|
+
type: Inject,
|
43
|
+
args: [TuiDestroyService]
|
44
|
+
}] }]; }, propDecorators: { eventName: [{
|
45
|
+
type: Input,
|
46
|
+
args: ['tuiPreventDefault']
|
47
|
+
}] } });
|
48
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJldmVudC1kZWZhdWx0LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3ByZXZlbnQtZGVmYXVsdC9wcmV2ZW50LWRlZmF1bHQuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFVLElBQUksRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN6RixPQUFPLEVBQUMsaUJBQWlCLEVBQUUsV0FBVyxFQUFDLE1BQU0sMkJBQTJCLENBQUM7QUFDekUsT0FBTyxFQUFDLGlCQUFpQixFQUFDLE1BQU0sd0JBQXdCLENBQUM7QUFDekQsT0FBTyxFQUFDLFNBQVMsRUFBYyxTQUFTLEVBQUMsTUFBTSxNQUFNLENBQUM7OztBQUV0RDs7OztHQUlHO0FBS0gsTUFBTSxPQUFPLDBCQUEwQjtJQUluQyxZQUN5QyxFQUEyQixFQUMvQixJQUFZLEVBQ08sUUFBMEI7UUFGekMsT0FBRSxHQUFGLEVBQUUsQ0FBeUI7UUFDL0IsU0FBSSxHQUFKLElBQUksQ0FBUTtRQUNPLGFBQVEsR0FBUixRQUFRLENBQWtCO1FBTGxGLGNBQVMsR0FBRyxFQUFFLENBQUM7SUFNWixDQUFDO0lBRUosUUFBUTtRQUNKLFNBQVMsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsRUFBRSxJQUFJLENBQUMsU0FBUyxFQUFFLEVBQUMsT0FBTyxFQUFFLEtBQUssRUFBQyxDQUFDO2FBQzdELElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLGlCQUFpQixFQUFFLEVBQUUsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUMzRSxTQUFTLEVBQUUsQ0FBQztJQUNyQixDQUFDOzt3SEFkUSwwQkFBMEIsa0JBS3ZCLFVBQVUsYUFDVixNQUFNLGFBQ0UsaUJBQWlCOzRHQVA1QiwwQkFBMEIseUdBRnhCLENBQUMsaUJBQWlCLENBQUM7NEZBRXJCLDBCQUEwQjtrQkFKdEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUscUJBQXFCO29CQUMvQixTQUFTLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBQztpQkFDakM7OzBCQU1RLE1BQU07MkJBQUMsVUFBVTs7MEJBQ2pCLE1BQU07MkJBQUMsTUFBTTs7MEJBQ2IsSUFBSTs7MEJBQUksTUFBTTsyQkFBQyxpQkFBaUI7NENBTHJDLFNBQVM7c0JBRFIsS0FBSzt1QkFBQyxtQkFBbUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgRWxlbWVudFJlZiwgSW5qZWN0LCBJbnB1dCwgTmdab25lLCBPbkluaXQsIFNlbGZ9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHt0dWlQcmV2ZW50RGVmYXVsdCwgdHVpWm9uZWZyZWV9IGZyb20gJ0B0YWlnYS11aS9jZGsvb2JzZXJ2YWJsZXMnO1xuaW1wb3J0IHtUdWlEZXN0cm95U2VydmljZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay9zZXJ2aWNlcyc7XG5pbXBvcnQge2Zyb21FdmVudCwgT2JzZXJ2YWJsZSwgdGFrZVVudGlsfSBmcm9tICdyeGpzJztcblxuLyoqXG4gKiBAZGVzY3JpcHRpb246XG4gKiBTaW1wbGUgcHJldmVudCBkZWZhdWx0IG9uIGV2ZW50IGRpcmVjdGl2ZSB3aGVuIHlvdSBkbyBub3QgbmVlZCBhbnl0aGluZ1xuICogZWxzZSBvbiBldmVudCBhbmQgZG8gbm90IHdhbnQgdG8gdHJpZ2dlciBjaGFuZ2UgZGV0ZWN0aW9uXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3R1aVByZXZlbnREZWZhdWx0XScsXG4gICAgcHJvdmlkZXJzOiBbVHVpRGVzdHJveVNlcnZpY2VdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlQcmV2ZW50RGVmYXVsdERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gICAgQElucHV0KCd0dWlQcmV2ZW50RGVmYXVsdCcpXG4gICAgZXZlbnROYW1lID0gJyc7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgQEluamVjdChFbGVtZW50UmVmKSBwcml2YXRlIHJlYWRvbmx5IGVsOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50PixcbiAgICAgICAgQEluamVjdChOZ1pvbmUpIHByaXZhdGUgcmVhZG9ubHkgem9uZTogTmdab25lLFxuICAgICAgICBAU2VsZigpIEBJbmplY3QoVHVpRGVzdHJveVNlcnZpY2UpIHByaXZhdGUgcmVhZG9ubHkgZGVzdHJveSQ6IE9ic2VydmFibGU8dm9pZD4sXG4gICAgKSB7fVxuXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIGZyb21FdmVudCh0aGlzLmVsLm5hdGl2ZUVsZW1lbnQsIHRoaXMuZXZlbnROYW1lLCB7cGFzc2l2ZTogZmFsc2V9KVxuICAgICAgICAgICAgLnBpcGUodHVpWm9uZWZyZWUodGhpcy56b25lKSwgdHVpUHJldmVudERlZmF1bHQoKSwgdGFrZVVudGlsKHRoaXMuZGVzdHJveSQpKVxuICAgICAgICAgICAgLnN1YnNjcmliZSgpO1xuICAgIH1cbn1cbiJdfQ==
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { TuiPreventDefaultDirective } from './prevent-default.directive';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
/**
|
5
|
+
* @deprecated Use (event.prevent.silent)=(0) instead.
|
6
|
+
*/
|
7
|
+
export class TuiPreventDefaultModule {
|
8
|
+
}
|
9
|
+
TuiPreventDefaultModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPreventDefaultModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
10
|
+
TuiPreventDefaultModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiPreventDefaultModule, declarations: [TuiPreventDefaultDirective], exports: [TuiPreventDefaultDirective] });
|
11
|
+
TuiPreventDefaultModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPreventDefaultModule });
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiPreventDefaultModule, decorators: [{
|
13
|
+
type: NgModule,
|
14
|
+
args: [{
|
15
|
+
declarations: [TuiPreventDefaultDirective],
|
16
|
+
exports: [TuiPreventDefaultDirective],
|
17
|
+
}]
|
18
|
+
}] });
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJldmVudC1kZWZhdWx0Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3ByZXZlbnQtZGVmYXVsdC9wcmV2ZW50LWRlZmF1bHQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLDBCQUEwQixFQUFDLE1BQU0sNkJBQTZCLENBQUM7O0FBRXZFOztHQUVHO0FBS0gsTUFBTSxPQUFPLHVCQUF1Qjs7cUhBQXZCLHVCQUF1QjtzSEFBdkIsdUJBQXVCLGlCQUhqQiwwQkFBMEIsYUFDL0IsMEJBQTBCO3NIQUUzQix1QkFBdUI7NEZBQXZCLHVCQUF1QjtrQkFKbkMsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQywwQkFBMEIsQ0FBQztvQkFDMUMsT0FBTyxFQUFFLENBQUMsMEJBQTBCLENBQUM7aUJBQ3hDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpUHJldmVudERlZmF1bHREaXJlY3RpdmV9IGZyb20gJy4vcHJldmVudC1kZWZhdWx0LmRpcmVjdGl2ZSc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQgVXNlIChldmVudC5wcmV2ZW50LnNpbGVudCk9KDApIGluc3RlYWQuXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpUHJldmVudERlZmF1bHREaXJlY3RpdmVdLFxuICAgIGV4cG9ydHM6IFtUdWlQcmV2ZW50RGVmYXVsdERpcmVjdGl2ZV0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVByZXZlbnREZWZhdWx0TW9kdWxlIHt9XG4iXX0=
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import { Directive, Inject, Input, TemplateRef, ViewContainerRef } from '@angular/core';
|
2
|
+
import { tuiClamp } from '@taiga-ui/cdk/utils/math';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
const MAX_VALUE = 0x10000;
|
5
|
+
export class TuiRepeatTimesContext {
|
6
|
+
constructor($implicit) {
|
7
|
+
this.$implicit = $implicit;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
/**
|
11
|
+
* Directive similar to ngFor but using a number of repetitions rather than an array
|
12
|
+
*
|
13
|
+
* {@link TuiRepeatTimesDirective.tuiRepeatTimesOf requested number of times}.
|
14
|
+
* {@link TuiRepeatTimesContext context} for every instance of the template inherits outer context and stores
|
15
|
+
* {@link TuiRepeatTimesContext.$implicit index} of a template instance.
|
16
|
+
*/
|
17
|
+
export class TuiRepeatTimesDirective {
|
18
|
+
set tuiRepeatTimesOf(count) {
|
19
|
+
const safeCount = Math.floor(tuiClamp(count, 0, MAX_VALUE));
|
20
|
+
const { length } = this.viewContainer;
|
21
|
+
if (count < length) {
|
22
|
+
this.removeContainers(length - count);
|
23
|
+
}
|
24
|
+
else {
|
25
|
+
this.addContainers(safeCount);
|
26
|
+
}
|
27
|
+
}
|
28
|
+
constructor(viewContainer, templateRef) {
|
29
|
+
this.viewContainer = viewContainer;
|
30
|
+
this.templateRef = templateRef;
|
31
|
+
}
|
32
|
+
addContainers(count) {
|
33
|
+
for (let index = this.viewContainer.length; index < count; index++) {
|
34
|
+
this.viewContainer.createEmbeddedView(this.templateRef, new TuiRepeatTimesContext(index));
|
35
|
+
}
|
36
|
+
}
|
37
|
+
removeContainers(amount) {
|
38
|
+
for (let index = 0; index < amount; index++) {
|
39
|
+
this.viewContainer.remove();
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
TuiRepeatTimesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiRepeatTimesDirective, deps: [{ token: ViewContainerRef }, { token: TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
44
|
+
TuiRepeatTimesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiRepeatTimesDirective, selector: "[tuiRepeatTimes][tuiRepeatTimesOf]", inputs: { tuiRepeatTimesOf: "tuiRepeatTimesOf" }, ngImport: i0 });
|
45
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiRepeatTimesDirective, decorators: [{
|
46
|
+
type: Directive,
|
47
|
+
args: [{
|
48
|
+
selector: '[tuiRepeatTimes][tuiRepeatTimesOf]',
|
49
|
+
}]
|
50
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef, decorators: [{
|
51
|
+
type: Inject,
|
52
|
+
args: [ViewContainerRef]
|
53
|
+
}] }, { type: i0.TemplateRef, decorators: [{
|
54
|
+
type: Inject,
|
55
|
+
args: [TemplateRef]
|
56
|
+
}] }]; }, propDecorators: { tuiRepeatTimesOf: [{
|
57
|
+
type: Input
|
58
|
+
}] } });
|
59
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwZWF0LXRpbWVzLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3JlcGVhdC10aW1lcy9yZXBlYXQtdGltZXMuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdEYsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLDBCQUEwQixDQUFDOztBQUVsRCxNQUFNLFNBQVMsR0FBRyxPQUFPLENBQUM7QUFFMUIsTUFBTSxPQUFPLHFCQUFxQjtJQUM5QixZQUFxQixTQUFpQjtRQUFqQixjQUFTLEdBQVQsU0FBUyxDQUFRO0lBQUcsQ0FBQztDQUM3QztBQUVEOzs7Ozs7R0FNRztBQUlILE1BQU0sT0FBTyx1QkFBdUI7SUFDaEMsSUFDSSxnQkFBZ0IsQ0FBQyxLQUFhO1FBQzlCLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLEtBQUssRUFBRSxDQUFDLEVBQUUsU0FBUyxDQUFDLENBQUMsQ0FBQztRQUU1RCxNQUFNLEVBQUMsTUFBTSxFQUFDLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQztRQUVwQyxJQUFJLEtBQUssR0FBRyxNQUFNLEVBQUU7WUFDaEIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE1BQU0sR0FBRyxLQUFLLENBQUMsQ0FBQztTQUN6QzthQUFNO1lBQ0gsSUFBSSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsQ0FBQztTQUNqQztJQUNMLENBQUM7SUFFRCxZQUVxQixhQUErQixFQUUvQixXQUErQztRQUYvQyxrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFFL0IsZ0JBQVcsR0FBWCxXQUFXLENBQW9DO0lBQ2pFLENBQUM7SUFFSSxhQUFhLENBQUMsS0FBYTtRQUMvQixLQUFLLElBQUksS0FBSyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsTUFBTSxFQUFFLEtBQUssR0FBRyxLQUFLLEVBQUUsS0FBSyxFQUFFLEVBQUU7WUFDaEUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FDakMsSUFBSSxDQUFDLFdBQVcsRUFDaEIsSUFBSSxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FDbkMsQ0FBQztTQUNMO0lBQ0wsQ0FBQztJQUVPLGdCQUFnQixDQUFDLE1BQWM7UUFDbkMsS0FBSyxJQUFJLEtBQUssR0FBRyxDQUFDLEVBQUUsS0FBSyxHQUFHLE1BQU0sRUFBRSxLQUFLLEVBQUUsRUFBRTtZQUN6QyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sRUFBRSxDQUFDO1NBQy9CO0lBQ0wsQ0FBQzs7cUhBbENRLHVCQUF1QixrQkFlcEIsZ0JBQWdCLGFBRWhCLFdBQVc7eUdBakJkLHVCQUF1Qjs0RkFBdkIsdUJBQXVCO2tCQUhuQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxvQ0FBb0M7aUJBQ2pEOzswQkFnQlEsTUFBTTsyQkFBQyxnQkFBZ0I7OzBCQUV2QixNQUFNOzJCQUFDLFdBQVc7NENBZm5CLGdCQUFnQjtzQkFEbkIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBJbmplY3QsIElucHV0LCBUZW1wbGF0ZVJlZiwgVmlld0NvbnRhaW5lclJlZn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1R1aUNvbnRleHRXaXRoSW1wbGljaXR9IGZyb20gJ0B0YWlnYS11aS9jZGsvaW50ZXJmYWNlcyc7XG5pbXBvcnQge3R1aUNsYW1wfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3V0aWxzL21hdGgnO1xuXG5jb25zdCBNQVhfVkFMVUUgPSAweDEwMDAwO1xuXG5leHBvcnQgY2xhc3MgVHVpUmVwZWF0VGltZXNDb250ZXh0IGltcGxlbWVudHMgVHVpQ29udGV4dFdpdGhJbXBsaWNpdDxudW1iZXI+IHtcbiAgICBjb25zdHJ1Y3RvcihyZWFkb25seSAkaW1wbGljaXQ6IG51bWJlcikge31cbn1cblxuLyoqXG4gKiBEaXJlY3RpdmUgc2ltaWxhciB0byBuZ0ZvciBidXQgdXNpbmcgYSBudW1iZXIgb2YgcmVwZXRpdGlvbnMgcmF0aGVyIHRoYW4gYW4gYXJyYXlcbiAqXG4gKiB7QGxpbmsgVHVpUmVwZWF0VGltZXNEaXJlY3RpdmUudHVpUmVwZWF0VGltZXNPZiByZXF1ZXN0ZWQgbnVtYmVyIG9mIHRpbWVzfS5cbiAqIHtAbGluayBUdWlSZXBlYXRUaW1lc0NvbnRleHQgY29udGV4dH0gZm9yIGV2ZXJ5IGluc3RhbmNlIG9mIHRoZSB0ZW1wbGF0ZSBpbmhlcml0cyBvdXRlciBjb250ZXh0IGFuZCBzdG9yZXNcbiAqIHtAbGluayBUdWlSZXBlYXRUaW1lc0NvbnRleHQuJGltcGxpY2l0IGluZGV4fSBvZiBhIHRlbXBsYXRlIGluc3RhbmNlLlxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0dWlSZXBlYXRUaW1lc11bdHVpUmVwZWF0VGltZXNPZl0nLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlSZXBlYXRUaW1lc0RpcmVjdGl2ZSB7XG4gICAgQElucHV0KClcbiAgICBzZXQgdHVpUmVwZWF0VGltZXNPZihjb3VudDogbnVtYmVyKSB7XG4gICAgICAgIGNvbnN0IHNhZmVDb3VudCA9IE1hdGguZmxvb3IodHVpQ2xhbXAoY291bnQsIDAsIE1BWF9WQUxVRSkpO1xuXG4gICAgICAgIGNvbnN0IHtsZW5ndGh9ID0gdGhpcy52aWV3Q29udGFpbmVyO1xuXG4gICAgICAgIGlmIChjb3VudCA8IGxlbmd0aCkge1xuICAgICAgICAgICAgdGhpcy5yZW1vdmVDb250YWluZXJzKGxlbmd0aCAtIGNvdW50KTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMuYWRkQ29udGFpbmVycyhzYWZlQ291bnQpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIEBJbmplY3QoVmlld0NvbnRhaW5lclJlZilcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSB2aWV3Q29udGFpbmVyOiBWaWV3Q29udGFpbmVyUmVmLFxuICAgICAgICBASW5qZWN0KFRlbXBsYXRlUmVmKVxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IHRlbXBsYXRlUmVmOiBUZW1wbGF0ZVJlZjxUdWlSZXBlYXRUaW1lc0NvbnRleHQ+LFxuICAgICkge31cblxuICAgIHByaXZhdGUgYWRkQ29udGFpbmVycyhjb3VudDogbnVtYmVyKTogdm9pZCB7XG4gICAgICAgIGZvciAobGV0IGluZGV4ID0gdGhpcy52aWV3Q29udGFpbmVyLmxlbmd0aDsgaW5kZXggPCBjb3VudDsgaW5kZXgrKykge1xuICAgICAgICAgICAgdGhpcy52aWV3Q29udGFpbmVyLmNyZWF0ZUVtYmVkZGVkVmlldzxUdWlSZXBlYXRUaW1lc0NvbnRleHQ+KFxuICAgICAgICAgICAgICAgIHRoaXMudGVtcGxhdGVSZWYsXG4gICAgICAgICAgICAgICAgbmV3IFR1aVJlcGVhdFRpbWVzQ29udGV4dChpbmRleCksXG4gICAgICAgICAgICApO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJpdmF0ZSByZW1vdmVDb250YWluZXJzKGFtb3VudDogbnVtYmVyKTogdm9pZCB7XG4gICAgICAgIGZvciAobGV0IGluZGV4ID0gMDsgaW5kZXggPCBhbW91bnQ7IGluZGV4KyspIHtcbiAgICAgICAgICAgIHRoaXMudmlld0NvbnRhaW5lci5yZW1vdmUoKTtcbiAgICAgICAgfVxuICAgIH1cbn1cbiJdfQ==
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { TuiRepeatTimesDirective } from './repeat-times.directive';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export class TuiRepeatTimesModule {
|
5
|
+
}
|
6
|
+
TuiRepeatTimesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiRepeatTimesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
+
TuiRepeatTimesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiRepeatTimesModule, declarations: [TuiRepeatTimesDirective], exports: [TuiRepeatTimesDirective] });
|
8
|
+
TuiRepeatTimesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiRepeatTimesModule });
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiRepeatTimesModule, decorators: [{
|
10
|
+
type: NgModule,
|
11
|
+
args: [{
|
12
|
+
declarations: [TuiRepeatTimesDirective],
|
13
|
+
exports: [TuiRepeatTimesDirective],
|
14
|
+
}]
|
15
|
+
}] });
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwZWF0LXRpbWVzLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3JlcGVhdC10aW1lcy9yZXBlYXQtdGltZXMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLHVCQUF1QixFQUFDLE1BQU0sMEJBQTBCLENBQUM7O0FBTWpFLE1BQU0sT0FBTyxvQkFBb0I7O2tIQUFwQixvQkFBb0I7bUhBQXBCLG9CQUFvQixpQkFIZCx1QkFBdUIsYUFDNUIsdUJBQXVCO21IQUV4QixvQkFBb0I7NEZBQXBCLG9CQUFvQjtrQkFKaEMsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyx1QkFBdUIsQ0FBQztvQkFDdkMsT0FBTyxFQUFFLENBQUMsdUJBQXVCLENBQUM7aUJBQ3JDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpUmVwZWF0VGltZXNEaXJlY3RpdmV9IGZyb20gJy4vcmVwZWF0LXRpbWVzLmRpcmVjdGl2ZSc7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpUmVwZWF0VGltZXNEaXJlY3RpdmVdLFxuICAgIGV4cG9ydHM6IFtUdWlSZXBlYXRUaW1lc0RpcmVjdGl2ZV0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVJlcGVhdFRpbWVzTW9kdWxlIHt9XG4iXX0=
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { Directive, Inject } from '@angular/core';
|
2
|
+
import { TuiDestroyService, TuiResizeService } from '@taiga-ui/cdk/services';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
import * as i1 from "rxjs";
|
5
|
+
export class TuiResizeDirective {
|
6
|
+
constructor(tuiResize) {
|
7
|
+
this.tuiResize = tuiResize;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
TuiResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiResizeDirective, deps: [{ token: TuiResizeService }], target: i0.ɵɵFactoryTarget.Directive });
|
11
|
+
TuiResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiResizeDirective, selector: "[tuiResize]", outputs: { tuiResize: "tuiResize" }, providers: [TuiDestroyService, TuiResizeService], ngImport: i0 });
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiResizeDirective, decorators: [{
|
13
|
+
type: Directive,
|
14
|
+
args: [{
|
15
|
+
selector: '[tuiResize]',
|
16
|
+
outputs: ['tuiResize'],
|
17
|
+
providers: [TuiDestroyService, TuiResizeService],
|
18
|
+
}]
|
19
|
+
}], ctorParameters: function () { return [{ type: i1.Observable, decorators: [{
|
20
|
+
type: Inject,
|
21
|
+
args: [TuiResizeService]
|
22
|
+
}] }]; } });
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzaXplLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3Jlc2l6ZS9yZXNpemUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsTUFBTSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ2hELE9BQU8sRUFBQyxpQkFBaUIsRUFBRSxnQkFBZ0IsRUFBQyxNQUFNLHdCQUF3QixDQUFDOzs7QUFRM0UsTUFBTSxPQUFPLGtCQUFrQjtJQUMzQixZQUVhLFNBQXFEO1FBQXJELGNBQVMsR0FBVCxTQUFTLENBQTRDO0lBQy9ELENBQUM7O2dIQUpLLGtCQUFrQixrQkFFZixnQkFBZ0I7b0dBRm5CLGtCQUFrQiwyRUFGaEIsQ0FBQyxpQkFBaUIsRUFBRSxnQkFBZ0IsQ0FBQzs0RkFFdkMsa0JBQWtCO2tCQUw5QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxhQUFhO29CQUN2QixPQUFPLEVBQUUsQ0FBQyxXQUFXLENBQUM7b0JBQ3RCLFNBQVMsRUFBRSxDQUFDLGlCQUFpQixFQUFFLGdCQUFnQixDQUFDO2lCQUNuRDs7MEJBR1EsTUFBTTsyQkFBQyxnQkFBZ0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgSW5qZWN0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VHVpRGVzdHJveVNlcnZpY2UsIFR1aVJlc2l6ZVNlcnZpY2V9IGZyb20gJ0B0YWlnYS11aS9jZGsvc2VydmljZXMnO1xuaW1wb3J0IHtPYnNlcnZhYmxlfSBmcm9tICdyeGpzJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbdHVpUmVzaXplXScsXG4gICAgb3V0cHV0czogWyd0dWlSZXNpemUnXSxcbiAgICBwcm92aWRlcnM6IFtUdWlEZXN0cm95U2VydmljZSwgVHVpUmVzaXplU2VydmljZV0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aVJlc2l6ZURpcmVjdGl2ZSB7XG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIEBJbmplY3QoVHVpUmVzaXplU2VydmljZSlcbiAgICAgICAgcmVhZG9ubHkgdHVpUmVzaXplOiBPYnNlcnZhYmxlPHJlYWRvbmx5IFJlc2l6ZU9ic2VydmVyRW50cnlbXT4sXG4gICAgKSB7fVxufVxuIl19
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { TuiResizeDirective } from './resize.directive';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
/**
|
5
|
+
* @experimental
|
6
|
+
*/
|
7
|
+
export class TuiResizeModule {
|
8
|
+
}
|
9
|
+
TuiResizeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiResizeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
10
|
+
TuiResizeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiResizeModule, declarations: [TuiResizeDirective], exports: [TuiResizeDirective] });
|
11
|
+
TuiResizeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiResizeModule });
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiResizeModule, decorators: [{
|
13
|
+
type: NgModule,
|
14
|
+
args: [{
|
15
|
+
declarations: [TuiResizeDirective],
|
16
|
+
exports: [TuiResizeDirective],
|
17
|
+
}]
|
18
|
+
}] });
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzaXplLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9kaXJlY3RpdmVzL3Jlc2l6ZS9yZXNpemUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLGtCQUFrQixFQUFDLE1BQU0sb0JBQW9CLENBQUM7O0FBRXREOztHQUVHO0FBS0gsTUFBTSxPQUFPLGVBQWU7OzZHQUFmLGVBQWU7OEdBQWYsZUFBZSxpQkFIVCxrQkFBa0IsYUFDdkIsa0JBQWtCOzhHQUVuQixlQUFlOzRGQUFmLGVBQWU7a0JBSjNCLFFBQVE7bUJBQUM7b0JBQ04sWUFBWSxFQUFFLENBQUMsa0JBQWtCLENBQUM7b0JBQ2xDLE9BQU8sRUFBRSxDQUFDLGtCQUFrQixDQUFDO2lCQUNoQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQge1R1aVJlc2l6ZURpcmVjdGl2ZX0gZnJvbSAnLi9yZXNpemUuZGlyZWN0aXZlJztcblxuLyoqXG4gKiBAZXhwZXJpbWVudGFsXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbVHVpUmVzaXplRGlyZWN0aXZlXSxcbiAgICBleHBvcnRzOiBbVHVpUmVzaXplRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpUmVzaXplTW9kdWxlIHt9XG4iXX0=
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { Directive } from '@angular/core';
|
2
|
+
import { TuiElementDirective } from '@taiga-ui/cdk/directives/element';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export class TuiResizeableDirective extends TuiElementDirective {
|
5
|
+
}
|
6
|
+
TuiResizeableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiResizeableDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
7
|
+
TuiResizeableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TuiResizeableDirective, selector: "[tuiResizeable]", usesInheritance: true, ngImport: i0 });
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiResizeableDirective, decorators: [{
|
9
|
+
type: Directive,
|
10
|
+
args: [{
|
11
|
+
selector: '[tuiResizeable]',
|
12
|
+
}]
|
13
|
+
}] });
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzaXplYWJsZS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvZGlyZWN0aXZlcy9yZXNpemVyL3Jlc2l6ZWFibGUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDeEMsT0FBTyxFQUFDLG1CQUFtQixFQUFDLE1BQU0sa0NBQWtDLENBQUM7O0FBS3JFLE1BQU0sT0FBTyxzQkFBdUIsU0FBUSxtQkFBbUI7O29IQUFsRCxzQkFBc0I7d0dBQXRCLHNCQUFzQjs0RkFBdEIsc0JBQXNCO2tCQUhsQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxpQkFBaUI7aUJBQzlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEaXJlY3RpdmV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUdWlFbGVtZW50RGlyZWN0aXZlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL2RpcmVjdGl2ZXMvZWxlbWVudCc7XG5cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3R1aVJlc2l6ZWFibGVdJyxcbn0pXG5leHBvcnQgY2xhc3MgVHVpUmVzaXplYWJsZURpcmVjdGl2ZSBleHRlbmRzIFR1aUVsZW1lbnREaXJlY3RpdmUge31cbiJdfQ==
|