@taiga-ui/cdk 3.57.0 → 3.59.0-canary.10da730
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/abstract/control.d.ts +1 -1
- package/abstract/controller.d.ts +1 -1
- package/abstract/dialog.directive.d.ts +1 -1
- package/abstract/interactive.d.ts +1 -1
- package/abstract/multiple-control.d.ts +1 -1
- package/abstract/nullable-control.d.ts +1 -1
- package/abstract/portal-host.d.ts +1 -1
- package/abstract/theme-switcher.d.ts +1 -1
- package/components/alert-host/alert-host.component.d.ts +1 -1
- package/components/dialog-host/dialog-host.component.d.ts +1 -1
- package/components/dropdown-host/dropdown-host.component.d.ts +1 -1
- package/components/scroll-controls/scroll-controls.component.d.ts +1 -1
- package/components/scroll-controls/scroll-ref.directive.d.ts +1 -1
- package/components/scroll-controls/scrollbar.directive.d.ts +1 -1
- package/constants/version.d.ts +1 -1
- package/constants/version.js +1 -1
- package/directives/active-zone/active-zone.directive.d.ts +1 -1
- package/directives/auto-focus/autofocus.directive.d.ts +1 -1
- package/directives/auto-focus/handlers/abstract.handler.d.ts +1 -1
- package/directives/auto-focus/handlers/default.handler.d.ts +1 -1
- package/directives/auto-focus/handlers/ios.handler.d.ts +1 -1
- package/directives/auto-focus/handlers/sync.handler.d.ts +1 -1
- package/directives/autofilled/autofilled-style.component.d.ts +1 -1
- package/directives/autofilled/autofilled.directive.d.ts +1 -1
- package/directives/checked/checked.directive.d.ts +1 -1
- package/directives/click-outside/click-outside.directive.d.ts +1 -1
- package/directives/control/control.directive.d.ts +1 -1
- package/directives/copy-processor/copy-processor.directive.d.ts +1 -1
- package/directives/drag/drag.directive.d.ts +1 -1
- package/directives/droppable/droppable.directive.d.ts +1 -1
- package/directives/element/element.directive.d.ts +1 -1
- package/directives/focus-trap/focus-trap.directive.d.ts +1 -1
- package/directives/focus-visible/focus-visible.directive.d.ts +1 -1
- package/directives/focusable/focusable.directive.d.ts +1 -1
- package/directives/focused/focused.directive.d.ts +1 -1
- package/directives/for/for.directive.d.ts +1 -1
- package/directives/for-async/for-async.directive.d.ts +1 -1
- package/directives/high-dpi/high-dpi.directive.d.ts +1 -1
- package/directives/hovered/hovered.directive.d.ts +1 -1
- package/directives/index.d.ts +1 -0
- package/directives/item/item.directive.d.ts +1 -1
- package/directives/let/let.directive.d.ts +1 -1
- package/directives/media/media.directive.d.ts +1 -1
- package/directives/native-validator/index.d.ts +1 -0
- package/directives/native-validator/native-validator.directive.d.ts +12 -0
- package/directives/obscured/obscured.directive.d.ts +1 -1
- package/directives/overscroll/overscroll.directive.d.ts +1 -1
- package/directives/pan/pan.directive.d.ts +1 -1
- package/directives/platform/platform.directive.d.ts +1 -1
- package/directives/portal/portal.directive.d.ts +1 -1
- package/directives/pressed/pressed.directive.d.ts +1 -1
- package/directives/prevent-default/prevent-default.directive.d.ts +1 -1
- package/directives/repeat-times/repeat-times.directive.d.ts +1 -1
- package/directives/resize/resize.directive.d.ts +1 -1
- package/directives/resizer/resizeable.directive.d.ts +1 -1
- package/directives/resizer/resizer.directive.d.ts +1 -1
- package/directives/swipe/swipe.directive.d.ts +1 -1
- package/directives/validator/validator.directive.d.ts +1 -1
- package/directives/value-changes/value-changes.directive.d.ts +1 -1
- package/directives/zoom/zoom.directive.d.ts +1 -1
- package/esm2020/abstract/control.mjs +188 -0
- package/esm2020/abstract/controller.mjs +17 -0
- package/esm2020/abstract/dialog.directive.mjs +35 -0
- package/esm2020/abstract/dialog.service.mjs +43 -0
- package/esm2020/abstract/interactive.mjs +84 -0
- package/esm2020/abstract/multiple-control.mjs +17 -0
- package/esm2020/abstract/nullable-control.mjs +14 -0
- package/esm2020/abstract/portal-host.mjs +50 -0
- package/esm2020/abstract/portal-service.mjs +39 -0
- package/esm2020/abstract/theme-switcher.mjs +45 -0
- package/esm2020/coercion/coerce-boolean-property.mjs +8 -0
- package/esm2020/components/alert-host/alert-host.component.mjs +60 -0
- package/esm2020/components/alert-host/alert-host.module.mjs +19 -0
- package/esm2020/components/dialog-host/dialog-host.component.mjs +127 -0
- package/esm2020/components/dialog-host/dialog-host.module.mjs +38 -0
- package/esm2020/components/dropdown-host/dropdown-host.component.mjs +24 -0
- package/esm2020/components/dropdown-host/dropdown-host.module.mjs +16 -0
- package/esm2020/components/dropdown-host/dropdown-portal.service.mjs +17 -0
- package/esm2020/components/scroll-controls/scroll-controls.component.mjs +40 -0
- package/esm2020/components/scroll-controls/scroll-controls.module.mjs +26 -0
- package/esm2020/components/scroll-controls/scroll-ref.directive.mjs +26 -0
- package/esm2020/components/scroll-controls/scrollbar.directive.mjs +132 -0
- package/esm2020/constants/empty.mjs +26 -0
- package/esm2020/constants/version.mjs +2 -0
- package/esm2020/directives/active-zone/active-zone.directive.mjs +77 -0
- package/esm2020/directives/active-zone/active-zone.module.mjs +16 -0
- package/esm2020/directives/auto-focus/autofocus.directive.mjs +54 -0
- package/esm2020/directives/auto-focus/autofocus.module.mjs +16 -0
- package/esm2020/directives/auto-focus/handlers/abstract.handler.mjs +20 -0
- package/esm2020/directives/auto-focus/handlers/default.handler.mjs +43 -0
- package/esm2020/directives/auto-focus/handlers/ios.handler.mjs +168 -0
- package/esm2020/directives/auto-focus/handlers/sync.handler.mjs +28 -0
- package/esm2020/directives/autofilled/autofilled-style.component.mjs +13 -0
- package/esm2020/directives/autofilled/autofilled.directive.mjs +40 -0
- package/esm2020/directives/autofilled/autofilled.module.mjs +17 -0
- package/esm2020/directives/checked/checked.directive.mjs +46 -0
- package/esm2020/directives/checked/checked.module.mjs +16 -0
- package/esm2020/directives/click-outside/click-outside.directive.mjs +38 -0
- package/esm2020/directives/click-outside/click-outside.module.mjs +16 -0
- package/esm2020/directives/control/control.directive.mjs +25 -0
- package/esm2020/directives/control/control.module.mjs +16 -0
- package/esm2020/directives/copy-processor/copy-processor.directive.mjs +34 -0
- package/esm2020/directives/copy-processor/copy-processor.module.mjs +16 -0
- package/esm2020/directives/drag/drag.directive.mjs +37 -0
- package/esm2020/directives/drag/drag.module.mjs +19 -0
- package/esm2020/directives/droppable/droppable.directive.mjs +39 -0
- package/esm2020/directives/droppable/droppable.module.mjs +16 -0
- package/esm2020/directives/element/element.directive.mjs +34 -0
- package/esm2020/directives/element/element.module.mjs +16 -0
- package/esm2020/directives/focus-trap/focus-trap.directive.mjs +77 -0
- package/esm2020/directives/focus-trap/focus-trap.module.mjs +16 -0
- package/esm2020/directives/focus-visible/focus-visible.directive.mjs +28 -0
- package/esm2020/directives/focus-visible/focus-visible.module.mjs +16 -0
- package/esm2020/directives/focusable/focusable.directive.mjs +31 -0
- package/esm2020/directives/focusable/focusable.module.mjs +16 -0
- package/esm2020/directives/focused/focused.directive.mjs +32 -0
- package/esm2020/directives/focused/focused.module.mjs +16 -0
- package/esm2020/directives/for/for.directive.mjs +35 -0
- package/esm2020/directives/for/for.module.mjs +16 -0
- package/esm2020/directives/for-async/for-async.directive.mjs +59 -0
- package/esm2020/directives/for-async/for-async.module.mjs +20 -0
- package/esm2020/directives/high-dpi/high-dpi.directive.mjs +31 -0
- package/esm2020/directives/high-dpi/high-dpi.module.mjs +16 -0
- package/esm2020/directives/hovered/hovered.directive.mjs +23 -0
- package/esm2020/directives/hovered/hovered.module.mjs +16 -0
- package/esm2020/directives/hovered/hovered.service.mjs +33 -0
- package/esm2020/directives/index.mjs +37 -0
- package/esm2020/directives/item/item.directive.mjs +16 -0
- package/esm2020/directives/item/item.module.mjs +16 -0
- package/esm2020/directives/let/let.directive.mjs +38 -0
- package/esm2020/directives/let/let.module.mjs +16 -0
- package/esm2020/directives/media/media.directive.mjs +109 -0
- package/esm2020/directives/media/media.module.mjs +16 -0
- package/esm2020/directives/native-validator/index.mjs +2 -0
- package/esm2020/directives/native-validator/native-validator.directive.mjs +46 -0
- package/esm2020/directives/native-validator/taiga-ui-cdk-directives-native-validator.mjs +5 -0
- package/esm2020/directives/obscured/obscured.directive.mjs +48 -0
- package/esm2020/directives/obscured/obscured.module.mjs +16 -0
- package/esm2020/directives/overscroll/overscroll.directive.mjs +102 -0
- package/esm2020/directives/overscroll/overscroll.module.mjs +16 -0
- package/esm2020/directives/pan/pan.directive.mjs +23 -0
- package/esm2020/directives/pan/pan.module.mjs +19 -0
- package/esm2020/directives/platform/platform.directive.mjs +35 -0
- package/esm2020/directives/platform/platform.module.mjs +16 -0
- package/esm2020/directives/portal/portal.directive.mjs +36 -0
- package/esm2020/directives/portal/portal.module.mjs +16 -0
- package/esm2020/directives/pressed/pressed.directive.mjs +30 -0
- package/esm2020/directives/pressed/pressed.module.mjs +16 -0
- package/esm2020/directives/prevent-default/prevent-default.directive.mjs +48 -0
- package/esm2020/directives/prevent-default/prevent-default.module.mjs +19 -0
- package/esm2020/directives/repeat-times/repeat-times.directive.mjs +59 -0
- package/esm2020/directives/repeat-times/repeat-times.module.mjs +16 -0
- package/esm2020/directives/resize/resize.directive.mjs +23 -0
- package/esm2020/directives/resize/resize.module.mjs +19 -0
- package/esm2020/directives/resizer/resizeable.directive.mjs +14 -0
- package/esm2020/directives/resizer/resizer.directive.mjs +106 -0
- package/esm2020/directives/resizer/resizer.module.mjs +17 -0
- package/esm2020/directives/swipe/swipe.directive.mjs +23 -0
- package/esm2020/directives/swipe/swipe.module.mjs +19 -0
- package/esm2020/directives/validator/validator.directive.mjs +47 -0
- package/esm2020/directives/validator/validator.module.mjs +16 -0
- package/esm2020/directives/value-changes/value-changes.directive.mjs +37 -0
- package/esm2020/directives/value-changes/value-changes.module.mjs +16 -0
- package/esm2020/directives/zoom/zoom.directive.mjs +26 -0
- package/esm2020/directives/zoom/zoom.module.mjs +19 -0
- package/esm2020/observables/control-value.mjs +14 -0
- package/esm2020/observables/drag-and-drop-from.mjs +27 -0
- package/esm2020/observables/focus-visible-observable.mjs +30 -0
- package/esm2020/observables/if-map.mjs +5 -0
- package/esm2020/observables/is-alive.mjs +9 -0
- package/esm2020/observables/is-observed.mjs +6 -0
- package/esm2020/observables/items-query-list-observable.mjs +13 -0
- package/esm2020/observables/must-be-present.mjs +12 -0
- package/esm2020/observables/pressed-observable.mjs +13 -0
- package/esm2020/observables/prevent-default.mjs +5 -0
- package/esm2020/observables/stop-propagation.mjs +7 -0
- package/esm2020/observables/watch.mjs +7 -0
- package/esm2020/pipes/filter/filter.module.mjs +16 -0
- package/esm2020/pipes/filter/filter.pipe.mjs +14 -0
- package/esm2020/pipes/is-present/is-present.module.mjs +16 -0
- package/esm2020/pipes/is-present/is-present.pipe.mjs +15 -0
- package/esm2020/pipes/keys/keys.module.mjs +16 -0
- package/esm2020/pipes/keys/keys.pipe.mjs +14 -0
- package/esm2020/pipes/mapper/mapper.module.mjs +16 -0
- package/esm2020/pipes/mapper/mapper.pipe.mjs +14 -0
- package/esm2020/pipes/replace/replace.module.mjs +16 -0
- package/esm2020/pipes/replace/replace.pipe.mjs +16 -0
- package/esm2020/services/destroy.service.mjs +26 -0
- package/esm2020/services/directive-styles.service.mjs +32 -0
- package/esm2020/services/focus-visible.service.mjs +34 -0
- package/esm2020/services/id.service.mjs +21 -0
- package/esm2020/services/obscured.service.mjs +53 -0
- package/esm2020/services/pan.service.mjs +34 -0
- package/esm2020/services/parents-scroll.service.mjs +36 -0
- package/esm2020/services/resize.service.mjs +47 -0
- package/esm2020/services/scroll.service.mjs +58 -0
- package/esm2020/services/static-request.service.mjs +49 -0
- package/esm2020/services/swipe.service.mjs +50 -0
- package/esm2020/services/zoom.service.mjs +53 -0
- package/esm2020/tokens/active-element.mjs +60 -0
- package/esm2020/tokens/base-href.mjs +5 -0
- package/esm2020/tokens/ensure-base-href.mjs +16 -0
- package/esm2020/tokens/fonts-ready.mjs +7 -0
- package/esm2020/tokens/is-firefox.mjs +9 -0
- package/esm2020/tokens/is-webkit.mjs +9 -0
- package/esm2020/tokens/removed-element.mjs +19 -0
- package/esm2020/tokens/window-height.mjs +9 -0
- package/esm2020/tokens/window-size.mjs +28 -0
- package/esm2020/utils/browser/is-safari.mjs +10 -0
- package/esm2020/utils/color/hex-to-rgba.mjs +30 -0
- package/esm2020/utils/color/rgba-to-hex.mjs +26 -0
- package/esm2020/utils/dom/contains-or-after.mjs +10 -0
- package/esm2020/utils/dom/get-element-obscurers.mjs +43 -0
- package/esm2020/utils/dom/get-selected-text.mjs +15 -0
- package/esm2020/utils/dom/is-node-in.mjs +14 -0
- package/esm2020/utils/dom/point-to-client-rect.mjs +19 -0
- package/esm2020/utils/dom/retarget-boundary-crossing.mjs +16 -0
- package/esm2020/utils/focus/get-native-focused.mjs +16 -0
- package/esm2020/utils/focus/is-native-focused.mjs +15 -0
- package/esm2020/utils/miscellaneous/is-number.mjs +4 -0
- package/esm2020/utils/miscellaneous/is-object.mjs +4 -0
- package/esm2020/utils/miscellaneous/is-string.mjs +4 -0
- package/esm2020/utils/miscellaneous/object-from-entries.mjs +12 -0
- package/esm2020/utils/miscellaneous/provide-options.mjs +12 -0
- package/esm2020/utils/svg/svg-linear-gradient-processor.mjs +64 -0
- package/fesm2015/taiga-ui-cdk-abstract.mjs +523 -0
- package/fesm2015/taiga-ui-cdk-abstract.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-classes.mjs +29 -0
- package/fesm2015/taiga-ui-cdk-classes.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-coercion.mjs +14 -0
- package/fesm2015/taiga-ui-cdk-coercion.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components-alert-host.mjs +85 -0
- package/fesm2015/taiga-ui-cdk-components-alert-host.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components-dialog-host.mjs +170 -0
- package/fesm2015/taiga-ui-cdk-components-dialog-host.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components-dropdown-host.mjs +57 -0
- package/fesm2015/taiga-ui-cdk-components-dropdown-host.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components-scroll-controls.mjs +218 -0
- package/fesm2015/taiga-ui-cdk-components-scroll-controls.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-components.mjs +9 -0
- package/fesm2015/taiga-ui-cdk-components.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-constants.mjs +237 -0
- package/fesm2015/taiga-ui-cdk-constants.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-date-time.mjs +821 -0
- package/fesm2015/taiga-ui-cdk-date-time.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-decorators.mjs +193 -0
- package/fesm2015/taiga-ui-cdk-decorators.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-active-zone.mjs +102 -0
- package/fesm2015/taiga-ui-cdk-directives-active-zone.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-auto-focus.mjs +355 -0
- package/fesm2015/taiga-ui-cdk-directives-auto-focus.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-autofilled.mjs +72 -0
- package/fesm2015/taiga-ui-cdk-directives-autofilled.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-checked.mjs +66 -0
- package/fesm2015/taiga-ui-cdk-directives-checked.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-click-outside.mjs +60 -0
- package/fesm2015/taiga-ui-cdk-directives-click-outside.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-control.mjs +47 -0
- package/fesm2015/taiga-ui-cdk-directives-control.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-copy-processor.mjs +57 -0
- package/fesm2015/taiga-ui-cdk-directives-copy-processor.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-drag.mjs +62 -0
- package/fesm2015/taiga-ui-cdk-directives-drag.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-droppable.mjs +61 -0
- package/fesm2015/taiga-ui-cdk-directives-droppable.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-element.mjs +56 -0
- package/fesm2015/taiga-ui-cdk-directives-element.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-focus-trap.mjs +99 -0
- package/fesm2015/taiga-ui-cdk-directives-focus-trap.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-focus-visible.mjs +50 -0
- package/fesm2015/taiga-ui-cdk-directives-focus-visible.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-focusable.mjs +51 -0
- package/fesm2015/taiga-ui-cdk-directives-focusable.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-focused.mjs +54 -0
- package/fesm2015/taiga-ui-cdk-directives-focused.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-for-async.mjs +86 -0
- package/fesm2015/taiga-ui-cdk-directives-for-async.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-for.mjs +58 -0
- package/fesm2015/taiga-ui-cdk-directives-for.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-high-dpi.mjs +53 -0
- package/fesm2015/taiga-ui-cdk-directives-high-dpi.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-hovered.mjs +77 -0
- package/fesm2015/taiga-ui-cdk-directives-hovered.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-item.mjs +36 -0
- package/fesm2015/taiga-ui-cdk-directives-item.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-let.mjs +74 -0
- package/fesm2015/taiga-ui-cdk-directives-let.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-media.mjs +131 -0
- package/fesm2015/taiga-ui-cdk-directives-media.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-native-validator.mjs +54 -0
- package/fesm2015/taiga-ui-cdk-directives-native-validator.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-obscured.mjs +70 -0
- package/fesm2015/taiga-ui-cdk-directives-obscured.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-overscroll.mjs +124 -0
- package/fesm2015/taiga-ui-cdk-directives-overscroll.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-pan.mjs +48 -0
- package/fesm2015/taiga-ui-cdk-directives-pan.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-platform.mjs +55 -0
- package/fesm2015/taiga-ui-cdk-directives-platform.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-portal.mjs +60 -0
- package/fesm2015/taiga-ui-cdk-directives-portal.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-pressed.mjs +52 -0
- package/fesm2015/taiga-ui-cdk-directives-pressed.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-prevent-default.mjs +73 -0
- package/fesm2015/taiga-ui-cdk-directives-prevent-default.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-repeat-times.mjs +81 -0
- package/fesm2015/taiga-ui-cdk-directives-repeat-times.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-resize.mjs +48 -0
- package/fesm2015/taiga-ui-cdk-directives-resize.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-resizer.mjs +139 -0
- package/fesm2015/taiga-ui-cdk-directives-resizer.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-swipe.mjs +48 -0
- package/fesm2015/taiga-ui-cdk-directives-swipe.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-validator.mjs +67 -0
- package/fesm2015/taiga-ui-cdk-directives-validator.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-value-changes.mjs +60 -0
- package/fesm2015/taiga-ui-cdk-directives-value-changes.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives-zoom.mjs +51 -0
- package/fesm2015/taiga-ui-cdk-directives-zoom.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives.mjs +41 -0
- package/fesm2015/taiga-ui-cdk-directives.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-enums.mjs +37 -0
- package/fesm2015/taiga-ui-cdk-enums.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-exceptions.mjs +84 -0
- package/fesm2015/taiga-ui-cdk-exceptions.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-interfaces.mjs +4 -0
- package/fesm2015/taiga-ui-cdk-interfaces.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-observables.mjs +171 -0
- package/fesm2015/taiga-ui-cdk-observables.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-filter.mjs +34 -0
- package/fesm2015/taiga-ui-cdk-pipes-filter.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-is-present.mjs +35 -0
- package/fesm2015/taiga-ui-cdk-pipes-is-present.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-keys.mjs +34 -0
- package/fesm2015/taiga-ui-cdk-pipes-keys.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-mapper.mjs +34 -0
- package/fesm2015/taiga-ui-cdk-pipes-mapper.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes-replace.mjs +37 -0
- package/fesm2015/taiga-ui-cdk-pipes-replace.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-pipes.mjs +10 -0
- package/fesm2015/taiga-ui-cdk-pipes.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-services.mjs +468 -0
- package/fesm2015/taiga-ui-cdk-services.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-tokens.mjs +286 -0
- package/fesm2015/taiga-ui-cdk-tokens.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-types.mjs +4 -0
- package/fesm2015/taiga-ui-cdk-types.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-browser.mjs +31 -0
- package/fesm2015/taiga-ui-cdk-utils-browser.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-color.mjs +125 -0
- package/fesm2015/taiga-ui-cdk-utils-color.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-dom.mjs +259 -0
- package/fesm2015/taiga-ui-cdk-utils-dom.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-focus.mjs +171 -0
- package/fesm2015/taiga-ui-cdk-utils-focus.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-format.mjs +16 -0
- package/fesm2015/taiga-ui-cdk-utils-format.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-math.mjs +135 -0
- package/fesm2015/taiga-ui-cdk-utils-math.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-miscellaneous.mjs +184 -0
- package/fesm2015/taiga-ui-cdk-utils-miscellaneous.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-os.mjs +31 -0
- package/fesm2015/taiga-ui-cdk-utils-os.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils-svg.mjs +72 -0
- package/fesm2015/taiga-ui-cdk-utils-svg.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk-utils.mjs +14 -0
- package/fesm2015/taiga-ui-cdk-utils.mjs.map +1 -0
- package/fesm2015/taiga-ui-cdk.mjs +22 -0
- package/fesm2015/taiga-ui-cdk.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-abstract.mjs +513 -0
- package/fesm2020/taiga-ui-cdk-abstract.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-classes.mjs +29 -0
- package/fesm2020/taiga-ui-cdk-classes.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-coercion.mjs +14 -0
- package/fesm2020/taiga-ui-cdk-coercion.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components-alert-host.mjs +83 -0
- package/fesm2020/taiga-ui-cdk-components-alert-host.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components-dialog-host.mjs +168 -0
- package/fesm2020/taiga-ui-cdk-components-dialog-host.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components-dropdown-host.mjs +57 -0
- package/fesm2020/taiga-ui-cdk-components-dropdown-host.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components-scroll-controls.mjs +214 -0
- package/fesm2020/taiga-ui-cdk-components-scroll-controls.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-components.mjs +9 -0
- package/fesm2020/taiga-ui-cdk-components.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-constants.mjs +240 -0
- package/fesm2020/taiga-ui-cdk-constants.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-date-time.mjs +821 -0
- package/fesm2020/taiga-ui-cdk-date-time.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-decorators.mjs +193 -0
- package/fesm2020/taiga-ui-cdk-decorators.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-active-zone.mjs +97 -0
- package/fesm2020/taiga-ui-cdk-directives-active-zone.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-auto-focus.mjs +345 -0
- package/fesm2020/taiga-ui-cdk-directives-auto-focus.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-autofilled.mjs +70 -0
- package/fesm2020/taiga-ui-cdk-directives-autofilled.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-checked.mjs +66 -0
- package/fesm2020/taiga-ui-cdk-directives-checked.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-click-outside.mjs +58 -0
- package/fesm2020/taiga-ui-cdk-directives-click-outside.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-control.mjs +45 -0
- package/fesm2020/taiga-ui-cdk-directives-control.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-copy-processor.mjs +54 -0
- package/fesm2020/taiga-ui-cdk-directives-copy-processor.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-drag.mjs +60 -0
- package/fesm2020/taiga-ui-cdk-directives-drag.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-droppable.mjs +59 -0
- package/fesm2020/taiga-ui-cdk-directives-droppable.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-element.mjs +54 -0
- package/fesm2020/taiga-ui-cdk-directives-element.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-focus-trap.mjs +97 -0
- package/fesm2020/taiga-ui-cdk-directives-focus-trap.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-focus-visible.mjs +48 -0
- package/fesm2020/taiga-ui-cdk-directives-focus-visible.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-focusable.mjs +51 -0
- package/fesm2020/taiga-ui-cdk-directives-focusable.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-focused.mjs +52 -0
- package/fesm2020/taiga-ui-cdk-directives-focused.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-for-async.mjs +83 -0
- package/fesm2020/taiga-ui-cdk-directives-for-async.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-for.mjs +55 -0
- package/fesm2020/taiga-ui-cdk-directives-for.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-high-dpi.mjs +51 -0
- package/fesm2020/taiga-ui-cdk-directives-high-dpi.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-hovered.mjs +73 -0
- package/fesm2020/taiga-ui-cdk-directives-hovered.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-item.mjs +36 -0
- package/fesm2020/taiga-ui-cdk-directives-item.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-let.mjs +72 -0
- package/fesm2020/taiga-ui-cdk-directives-let.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-media.mjs +129 -0
- package/fesm2020/taiga-ui-cdk-directives-media.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-native-validator.mjs +53 -0
- package/fesm2020/taiga-ui-cdk-directives-native-validator.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-obscured.mjs +68 -0
- package/fesm2020/taiga-ui-cdk-directives-obscured.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-overscroll.mjs +122 -0
- package/fesm2020/taiga-ui-cdk-directives-overscroll.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-pan.mjs +46 -0
- package/fesm2020/taiga-ui-cdk-directives-pan.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-platform.mjs +55 -0
- package/fesm2020/taiga-ui-cdk-directives-platform.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-portal.mjs +56 -0
- package/fesm2020/taiga-ui-cdk-directives-portal.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-pressed.mjs +50 -0
- package/fesm2020/taiga-ui-cdk-directives-pressed.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-prevent-default.mjs +71 -0
- package/fesm2020/taiga-ui-cdk-directives-prevent-default.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-repeat-times.mjs +79 -0
- package/fesm2020/taiga-ui-cdk-directives-repeat-times.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-resize.mjs +46 -0
- package/fesm2020/taiga-ui-cdk-directives-resize.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-resizer.mjs +137 -0
- package/fesm2020/taiga-ui-cdk-directives-resizer.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-swipe.mjs +46 -0
- package/fesm2020/taiga-ui-cdk-directives-swipe.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-validator.mjs +67 -0
- package/fesm2020/taiga-ui-cdk-directives-validator.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-value-changes.mjs +57 -0
- package/fesm2020/taiga-ui-cdk-directives-value-changes.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives-zoom.mjs +49 -0
- package/fesm2020/taiga-ui-cdk-directives-zoom.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-directives.mjs +41 -0
- package/fesm2020/taiga-ui-cdk-directives.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-enums.mjs +37 -0
- package/fesm2020/taiga-ui-cdk-enums.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-exceptions.mjs +84 -0
- package/fesm2020/taiga-ui-cdk-exceptions.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-interfaces.mjs +4 -0
- package/fesm2020/taiga-ui-cdk-interfaces.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-observables.mjs +170 -0
- package/fesm2020/taiga-ui-cdk-observables.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-filter.mjs +34 -0
- package/fesm2020/taiga-ui-cdk-pipes-filter.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-is-present.mjs +35 -0
- package/fesm2020/taiga-ui-cdk-pipes-is-present.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-keys.mjs +34 -0
- package/fesm2020/taiga-ui-cdk-pipes-keys.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-mapper.mjs +34 -0
- package/fesm2020/taiga-ui-cdk-pipes-mapper.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes-replace.mjs +36 -0
- package/fesm2020/taiga-ui-cdk-pipes-replace.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-pipes.mjs +10 -0
- package/fesm2020/taiga-ui-cdk-pipes.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-services.mjs +446 -0
- package/fesm2020/taiga-ui-cdk-services.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-tokens.mjs +283 -0
- package/fesm2020/taiga-ui-cdk-tokens.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-types.mjs +4 -0
- package/fesm2020/taiga-ui-cdk-types.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-browser.mjs +30 -0
- package/fesm2020/taiga-ui-cdk-utils-browser.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-color.mjs +124 -0
- package/fesm2020/taiga-ui-cdk-utils-color.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-dom.mjs +260 -0
- package/fesm2020/taiga-ui-cdk-utils-dom.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-focus.mjs +171 -0
- package/fesm2020/taiga-ui-cdk-utils-focus.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-format.mjs +16 -0
- package/fesm2020/taiga-ui-cdk-utils-format.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-math.mjs +135 -0
- package/fesm2020/taiga-ui-cdk-utils-math.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-miscellaneous.mjs +187 -0
- package/fesm2020/taiga-ui-cdk-utils-miscellaneous.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-os.mjs +31 -0
- package/fesm2020/taiga-ui-cdk-utils-os.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils-svg.mjs +71 -0
- package/fesm2020/taiga-ui-cdk-utils-svg.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk-utils.mjs +14 -0
- package/fesm2020/taiga-ui-cdk-utils.mjs.map +1 -0
- package/fesm2020/taiga-ui-cdk.mjs +22 -0
- package/fesm2020/taiga-ui-cdk.mjs.map +1 -0
- package/interfaces/alert-context.d.ts +1 -1
- package/interfaces/safe-html.d.ts +1 -1
- package/interfaces/swipe.d.ts +1 -1
- package/package.json +650 -69
- package/pipes/filter/filter.pipe.d.ts +1 -1
- package/pipes/is-present/is-present.pipe.d.ts +1 -1
- package/pipes/keys/keys.pipe.d.ts +1 -1
- package/pipes/mapper/mapper.pipe.d.ts +1 -1
- package/pipes/replace/replace.pipe.d.ts +1 -1
- package/schematics/ng-add/index.js +9 -9
- package/schematics/ng-add/setup-project.js +5 -5
- package/schematics/ng-add/steps/add-taiga-icons.js +3 -3
- package/schematics/ng-add/steps/add-taiga-modules.js +18 -18
- package/schematics/ng-add/steps/add-taiga-styles.js +1 -1
- package/schematics/ng-add/steps/wrap-with-tui-root.js +8 -8
- package/schematics/ng-update/interfaces/asset.d.ts +1 -1
- package/schematics/ng-update/interfaces/template-resource.d.ts +1 -1
- package/schematics/ng-update/steps/icons/replace-imports.js +5 -5
- package/schematics/ng-update/steps/remove-module.js +4 -4
- package/schematics/ng-update/steps/rename-types.js +6 -6
- package/schematics/ng-update/steps/replace-deep-import.js +4 -4
- package/schematics/ng-update/steps/replace-enums.js +4 -4
- package/schematics/ng-update/steps/replace-identifier.js +5 -5
- package/schematics/ng-update/steps/replace-services.js +6 -6
- package/schematics/ng-update/steps/show-warnings.js +1 -1
- package/schematics/ng-update/utils/get-file-system.js +2 -2
- package/schematics/ng-update/utils/replace-text.js +1 -1
- package/schematics/ng-update/utils/templates/remove-inputs.js +4 -4
- package/schematics/ng-update/utils/templates/replace-attr-values.js +3 -3
- package/schematics/ng-update/utils/templates/replace-attrs-by-directives.js +1 -1
- package/schematics/ng-update/utils/templates/replace-attrs.js +4 -4
- package/schematics/ng-update/utils/templates/replace-tags.js +4 -4
- package/schematics/ng-update/utils/templates/template-comments.js +4 -4
- package/schematics/ng-update/v3/constants/templates.js +3 -3
- package/schematics/ng-update/v3/index.js +27 -29
- package/schematics/ng-update/v3/steps/migrate-date-time.js +12 -12
- package/schematics/ng-update/v3/steps/migrate-polymorpheus.js +8 -8
- package/schematics/ng-update/v3/steps/migrate-progress.js +9 -9
- package/schematics/ng-update/v3/steps/migrate-sliders/index.js +6 -6
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.js +11 -11
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.js +13 -13
- package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.js +7 -7
- package/schematics/ng-update/v3/steps/migrate-templates.js +36 -36
- package/schematics/ng-update/v3/steps/migrate-textfield-controller.js +6 -6
- package/schematics/ng-update/v3/steps/miscellaneous.js +5 -5
- package/schematics/ng-update/v3/steps/replace-functions.js +17 -17
- package/schematics/ng-update/v3/steps/replace-styles.js +1 -1
- package/schematics/ng-update/v3-30/index.js +8 -8
- package/schematics/ng-update/v3-35/index.js +8 -8
- package/schematics/ng-update/v3-36/index.js +9 -9
- package/schematics/ng-update/v3-40/index.js +14 -14
- package/schematics/ng-update/v3-5/index.js +4 -4
- package/schematics/ng-update/v3-5/steps/migrate-expand-templates.js +9 -9
- package/schematics/ng-update/v4/index.js +10 -10
- package/schematics/ng-update/v4/steps/migrate-templates.js +5 -5
- package/schematics/ng-update/v4/steps/restore-tui-mapper.js +5 -5
- package/schematics/ng-update/v4/steps/restore-tui-matcher.js +5 -5
- package/schematics/ng-update/v4/steps/templates/migrate-avatar.js +4 -4
- package/schematics/ng-update/v4/steps/templates/migrate-badge.js +3 -3
- package/schematics/ng-update/v4/steps/templates/toggles/migrate-checkbox.js +7 -7
- package/schematics/ng-update/v4/steps/templates/toggles/migrate-radio.js +7 -7
- package/schematics/ng-update/v4/steps/templates/toggles/migrate-toggle.js +7 -7
- package/schematics/utils/add-import-to-closest-module.js +7 -7
- package/schematics/utils/add-import-to-component.js +1 -1
- package/schematics/utils/add-unique-import.js +4 -4
- package/schematics/utils/angular/ng-component.js +1 -1
- package/schematics/utils/angular/ng-module.js +2 -2
- package/schematics/utils/angular-json-manipulations.js +6 -6
- package/schematics/utils/create-angular-json.js +4 -2
- package/schematics/utils/get-component-from-identifier.js +2 -2
- package/schematics/utils/get-named-import-references.js +2 -2
- package/schematics/utils/get-projects.js +1 -3
- package/schematics/utils/get-standalone-bootstrap-function.js +1 -1
- package/schematics/utils/progress.js +3 -3
- package/schematics/utils/push-to-array-property.js +0 -1
- package/schematics/utils/templates/elements.js +1 -1
- package/schematics/utils/templates/get-component-templates.js +1 -1
- package/schematics/utils/templates/ng-component-input-manipulations.js +12 -12
- package/tokens/window-size.d.ts +1 -1
- package/types/autocomplete.d.ts +1 -1
- package/types/date-mode.d.ts +1 -1
- package/types/deep-partial.d.ts +1 -1
- package/types/dialog.d.ts +1 -1
- package/types/event-with.d.ts +1 -1
- package/types/handler.d.ts +4 -4
- package/types/injection-token-type.d.ts +1 -1
- package/types/input-mode.d.ts +1 -1
- package/types/input-type.d.ts +1 -1
- package/types/mapper.d.ts +2 -2
- package/types/matcher.d.ts +4 -4
- package/types/overscroll-mode.d.ts +1 -1
- package/types/platform.d.ts +1 -1
- package/types/rounding.d.ts +1 -1
- package/types/time-mode.d.ts +1 -1
- package/types/values-of.d.ts +1 -1
- package/utils/miscellaneous/is-string.js +0 -1
- package/abstract/package.json +0 -10
- package/abstract/taiga-ui-cdk-abstract.d.ts +0 -5
- package/bundles/taiga-ui-cdk-abstract.umd.js +0 -997
- package/bundles/taiga-ui-cdk-abstract.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-classes.umd.js +0 -40
- package/bundles/taiga-ui-cdk-classes.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-coercion.umd.js +0 -26
- package/bundles/taiga-ui-cdk-coercion.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components-alert-host.umd.js +0 -122
- package/bundles/taiga-ui-cdk-components-alert-host.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components-dialog-host.umd.js +0 -522
- package/bundles/taiga-ui-cdk-components-dialog-host.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components-dropdown-host.umd.js +0 -422
- package/bundles/taiga-ui-cdk-components-dropdown-host.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components-scroll-controls.umd.js +0 -609
- package/bundles/taiga-ui-cdk-components-scroll-controls.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-components.umd.js +0 -39
- package/bundles/taiga-ui-cdk-components.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-constants.umd.js +0 -278
- package/bundles/taiga-ui-cdk-constants.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-date-time.umd.js +0 -1242
- package/bundles/taiga-ui-cdk-date-time.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-decorators.umd.js +0 -545
- package/bundles/taiga-ui-cdk-decorators.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-active-zone.umd.js +0 -451
- package/bundles/taiga-ui-cdk-directives-active-zone.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-auto-focus.umd.js +0 -728
- package/bundles/taiga-ui-cdk-directives-auto-focus.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-autofilled.umd.js +0 -115
- package/bundles/taiga-ui-cdk-directives-autofilled.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-checked.umd.js +0 -111
- package/bundles/taiga-ui-cdk-directives-checked.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-click-outside.umd.js +0 -89
- package/bundles/taiga-ui-cdk-directives-click-outside.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-control.umd.js +0 -82
- package/bundles/taiga-ui-cdk-directives-control.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-copy-processor.umd.js +0 -86
- package/bundles/taiga-ui-cdk-directives-copy-processor.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-drag.umd.js +0 -110
- package/bundles/taiga-ui-cdk-directives-drag.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-droppable.umd.js +0 -93
- package/bundles/taiga-ui-cdk-directives-droppable.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-element.umd.js +0 -89
- package/bundles/taiga-ui-cdk-directives-element.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-focus-trap.umd.js +0 -130
- package/bundles/taiga-ui-cdk-directives-focus-trap.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-focus-visible.umd.js +0 -81
- package/bundles/taiga-ui-cdk-directives-focus-visible.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-focusable.umd.js +0 -87
- package/bundles/taiga-ui-cdk-directives-focusable.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-focused.umd.js +0 -84
- package/bundles/taiga-ui-cdk-directives-focused.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-for-async.umd.js +0 -443
- package/bundles/taiga-ui-cdk-directives-for-async.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-for.umd.js +0 -90
- package/bundles/taiga-ui-cdk-directives-for.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-high-dpi.umd.js +0 -85
- package/bundles/taiga-ui-cdk-directives-high-dpi.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-hovered.umd.js +0 -428
- package/bundles/taiga-ui-cdk-directives-hovered.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-item.umd.js +0 -70
- package/bundles/taiga-ui-cdk-directives-item.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-let.umd.js +0 -116
- package/bundles/taiga-ui-cdk-directives-let.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-media.umd.js +0 -175
- package/bundles/taiga-ui-cdk-directives-media.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-obscured.umd.js +0 -102
- package/bundles/taiga-ui-cdk-directives-obscured.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-overscroll.umd.js +0 -164
- package/bundles/taiga-ui-cdk-directives-overscroll.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-pan.umd.js +0 -79
- package/bundles/taiga-ui-cdk-directives-pan.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-platform.umd.js +0 -92
- package/bundles/taiga-ui-cdk-directives-platform.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-portal.umd.js +0 -95
- package/bundles/taiga-ui-cdk-directives-portal.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-pressed.umd.js +0 -82
- package/bundles/taiga-ui-cdk-directives-pressed.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-prevent-default.umd.js +0 -102
- package/bundles/taiga-ui-cdk-directives-prevent-default.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-repeat-times.umd.js +0 -118
- package/bundles/taiga-ui-cdk-directives-repeat-times.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-resize.umd.js +0 -79
- package/bundles/taiga-ui-cdk-directives-resize.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-resizer.umd.js +0 -500
- package/bundles/taiga-ui-cdk-directives-resizer.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-swipe.umd.js +0 -79
- package/bundles/taiga-ui-cdk-directives-swipe.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-validator.umd.js +0 -97
- package/bundles/taiga-ui-cdk-directives-validator.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-value-changes.umd.js +0 -90
- package/bundles/taiga-ui-cdk-directives-value-changes.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives-zoom.umd.js +0 -82
- package/bundles/taiga-ui-cdk-directives-zoom.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-directives.umd.js +0 -225
- package/bundles/taiga-ui-cdk-directives.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-enums.umd.js +0 -45
- package/bundles/taiga-ui-cdk-enums.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-exceptions.umd.js +0 -450
- package/bundles/taiga-ui-cdk-exceptions.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-interfaces.umd.js +0 -11
- package/bundles/taiga-ui-cdk-interfaces.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-observables.umd.js +0 -201
- package/bundles/taiga-ui-cdk-observables.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-filter.umd.js +0 -390
- package/bundles/taiga-ui-cdk-pipes-filter.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-is-present.umd.js +0 -68
- package/bundles/taiga-ui-cdk-pipes-is-present.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-keys.umd.js +0 -68
- package/bundles/taiga-ui-cdk-pipes-keys.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-mapper.umd.js +0 -390
- package/bundles/taiga-ui-cdk-pipes-mapper.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes-replace.umd.js +0 -71
- package/bundles/taiga-ui-cdk-pipes-replace.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-pipes.umd.js +0 -45
- package/bundles/taiga-ui-cdk-pipes.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-services.umd.js +0 -865
- package/bundles/taiga-ui-cdk-services.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-tokens.umd.js +0 -656
- package/bundles/taiga-ui-cdk-tokens.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-types.umd.js +0 -11
- package/bundles/taiga-ui-cdk-types.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-browser.umd.js +0 -45
- package/bundles/taiga-ui-cdk-utils-browser.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-color.umd.js +0 -462
- package/bundles/taiga-ui-cdk-utils-color.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-dom.umd.js +0 -291
- package/bundles/taiga-ui-cdk-utils-dom.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-focus.umd.js +0 -190
- package/bundles/taiga-ui-cdk-utils-focus.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-format.umd.js +0 -24
- package/bundles/taiga-ui-cdk-utils-format.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-math.umd.js +0 -164
- package/bundles/taiga-ui-cdk-utils-math.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-miscellaneous.umd.js +0 -539
- package/bundles/taiga-ui-cdk-utils-miscellaneous.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-os.umd.js +0 -43
- package/bundles/taiga-ui-cdk-utils-os.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils-svg.umd.js +0 -82
- package/bundles/taiga-ui-cdk-utils-svg.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk-utils.umd.js +0 -69
- package/bundles/taiga-ui-cdk-utils.umd.js.map +0 -1
- package/bundles/taiga-ui-cdk.umd.js +0 -117
- package/bundles/taiga-ui-cdk.umd.js.map +0 -1
- package/classes/package.json +0 -10
- package/classes/taiga-ui-cdk-classes.d.ts +0 -5
- package/coercion/package.json +0 -10
- package/coercion/taiga-ui-cdk-coercion.d.ts +0 -5
- package/components/alert-host/package.json +0 -10
- package/components/alert-host/taiga-ui-cdk-components-alert-host.d.ts +0 -5
- package/components/dialog-host/package.json +0 -10
- package/components/dialog-host/taiga-ui-cdk-components-dialog-host.d.ts +0 -5
- package/components/dropdown-host/package.json +0 -10
- package/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.d.ts +0 -5
- package/components/package.json +0 -10
- package/components/scroll-controls/package.json +0 -10
- package/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.d.ts +0 -5
- package/components/taiga-ui-cdk-components.d.ts +0 -5
- package/constants/package.json +0 -10
- package/constants/taiga-ui-cdk-constants.d.ts +0 -5
- package/date-time/package.json +0 -10
- package/date-time/taiga-ui-cdk-date-time.d.ts +0 -5
- package/decorators/package.json +0 -10
- package/decorators/taiga-ui-cdk-decorators.d.ts +0 -5
- package/directives/active-zone/package.json +0 -10
- package/directives/active-zone/taiga-ui-cdk-directives-active-zone.d.ts +0 -5
- package/directives/auto-focus/package.json +0 -10
- package/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.d.ts +0 -5
- package/directives/autofilled/package.json +0 -10
- package/directives/autofilled/taiga-ui-cdk-directives-autofilled.d.ts +0 -5
- package/directives/checked/package.json +0 -10
- package/directives/checked/taiga-ui-cdk-directives-checked.d.ts +0 -5
- package/directives/click-outside/package.json +0 -10
- package/directives/click-outside/taiga-ui-cdk-directives-click-outside.d.ts +0 -5
- package/directives/control/package.json +0 -10
- package/directives/control/taiga-ui-cdk-directives-control.d.ts +0 -5
- package/directives/copy-processor/package.json +0 -10
- package/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.d.ts +0 -5
- package/directives/drag/package.json +0 -10
- package/directives/drag/taiga-ui-cdk-directives-drag.d.ts +0 -5
- package/directives/droppable/package.json +0 -10
- package/directives/droppable/taiga-ui-cdk-directives-droppable.d.ts +0 -5
- package/directives/element/package.json +0 -10
- package/directives/element/taiga-ui-cdk-directives-element.d.ts +0 -5
- package/directives/focus-trap/package.json +0 -10
- package/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.d.ts +0 -5
- package/directives/focus-visible/package.json +0 -10
- package/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.d.ts +0 -5
- package/directives/focusable/package.json +0 -10
- package/directives/focusable/taiga-ui-cdk-directives-focusable.d.ts +0 -5
- package/directives/focused/package.json +0 -10
- package/directives/focused/taiga-ui-cdk-directives-focused.d.ts +0 -5
- package/directives/for/package.json +0 -10
- package/directives/for/taiga-ui-cdk-directives-for.d.ts +0 -5
- package/directives/for-async/package.json +0 -10
- package/directives/for-async/taiga-ui-cdk-directives-for-async.d.ts +0 -5
- package/directives/high-dpi/package.json +0 -10
- package/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.d.ts +0 -5
- package/directives/hovered/package.json +0 -10
- package/directives/hovered/taiga-ui-cdk-directives-hovered.d.ts +0 -5
- package/directives/item/package.json +0 -10
- package/directives/item/taiga-ui-cdk-directives-item.d.ts +0 -5
- package/directives/let/package.json +0 -10
- package/directives/let/taiga-ui-cdk-directives-let.d.ts +0 -5
- package/directives/media/package.json +0 -10
- package/directives/media/taiga-ui-cdk-directives-media.d.ts +0 -5
- package/directives/obscured/package.json +0 -10
- package/directives/obscured/taiga-ui-cdk-directives-obscured.d.ts +0 -5
- package/directives/overscroll/package.json +0 -10
- package/directives/overscroll/taiga-ui-cdk-directives-overscroll.d.ts +0 -5
- package/directives/package.json +0 -10
- package/directives/pan/package.json +0 -10
- package/directives/pan/taiga-ui-cdk-directives-pan.d.ts +0 -5
- package/directives/platform/package.json +0 -10
- package/directives/platform/taiga-ui-cdk-directives-platform.d.ts +0 -5
- package/directives/portal/package.json +0 -10
- package/directives/portal/taiga-ui-cdk-directives-portal.d.ts +0 -5
- package/directives/pressed/package.json +0 -10
- package/directives/pressed/taiga-ui-cdk-directives-pressed.d.ts +0 -5
- package/directives/prevent-default/package.json +0 -10
- package/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.d.ts +0 -5
- package/directives/repeat-times/package.json +0 -10
- package/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.d.ts +0 -5
- package/directives/resize/package.json +0 -10
- package/directives/resize/taiga-ui-cdk-directives-resize.d.ts +0 -5
- package/directives/resizer/package.json +0 -10
- package/directives/resizer/taiga-ui-cdk-directives-resizer.d.ts +0 -5
- package/directives/swipe/package.json +0 -10
- package/directives/swipe/taiga-ui-cdk-directives-swipe.d.ts +0 -5
- package/directives/taiga-ui-cdk-directives.d.ts +0 -5
- package/directives/validator/package.json +0 -10
- package/directives/validator/taiga-ui-cdk-directives-validator.d.ts +0 -5
- package/directives/value-changes/package.json +0 -10
- package/directives/value-changes/taiga-ui-cdk-directives-value-changes.d.ts +0 -5
- package/directives/zoom/package.json +0 -10
- package/directives/zoom/taiga-ui-cdk-directives-zoom.d.ts +0 -5
- package/enums/package.json +0 -10
- package/enums/taiga-ui-cdk-enums.d.ts +0 -5
- package/esm2015/abstract/control.js +0 -194
- package/esm2015/abstract/controller.js +0 -17
- package/esm2015/abstract/dialog.directive.js +0 -36
- package/esm2015/abstract/dialog.service.js +0 -35
- package/esm2015/abstract/interactive.js +0 -86
- package/esm2015/abstract/multiple-control.js +0 -17
- package/esm2015/abstract/nullable-control.js +0 -14
- package/esm2015/abstract/portal-host.js +0 -50
- package/esm2015/abstract/portal-service.js +0 -39
- package/esm2015/abstract/theme-switcher.js +0 -46
- package/esm2015/coercion/coerce-boolean-property.js +0 -10
- package/esm2015/components/alert-host/alert-host.component.js +0 -71
- package/esm2015/components/alert-host/alert-host.module.js +0 -19
- package/esm2015/components/dialog-host/dialog-host.component.js +0 -137
- package/esm2015/components/dialog-host/dialog-host.module.js +0 -40
- package/esm2015/components/dropdown-host/dropdown-host.component.js +0 -30
- package/esm2015/components/dropdown-host/dropdown-host.module.js +0 -16
- package/esm2015/components/dropdown-host/dropdown-portal.service.js +0 -17
- package/esm2015/components/scroll-controls/scroll-controls.component.js +0 -45
- package/esm2015/components/scroll-controls/scroll-controls.module.js +0 -26
- package/esm2015/components/scroll-controls/scroll-ref.directive.js +0 -26
- package/esm2015/components/scroll-controls/scrollbar.directive.js +0 -133
- package/esm2015/constants/empty.js +0 -23
- package/esm2015/constants/version.js +0 -2
- package/esm2015/directives/active-zone/active-zone.directive.js +0 -80
- package/esm2015/directives/active-zone/active-zone.module.js +0 -16
- package/esm2015/directives/auto-focus/autofocus.directive.js +0 -55
- package/esm2015/directives/auto-focus/autofocus.module.js +0 -16
- package/esm2015/directives/auto-focus/handlers/abstract.handler.js +0 -21
- package/esm2015/directives/auto-focus/handlers/default.handler.js +0 -44
- package/esm2015/directives/auto-focus/handlers/ios.handler.js +0 -169
- package/esm2015/directives/auto-focus/handlers/sync.handler.js +0 -28
- package/esm2015/directives/autofilled/autofilled-style.component.js +0 -19
- package/esm2015/directives/autofilled/autofilled.directive.js +0 -41
- package/esm2015/directives/autofilled/autofilled.module.js +0 -17
- package/esm2015/directives/checked/checked.directive.js +0 -46
- package/esm2015/directives/checked/checked.module.js +0 -16
- package/esm2015/directives/click-outside/click-outside.directive.js +0 -39
- package/esm2015/directives/click-outside/click-outside.module.js +0 -16
- package/esm2015/directives/control/control.directive.js +0 -25
- package/esm2015/directives/control/control.module.js +0 -16
- package/esm2015/directives/copy-processor/copy-processor.directive.js +0 -35
- package/esm2015/directives/copy-processor/copy-processor.module.js +0 -16
- package/esm2015/directives/drag/drag.directive.js +0 -37
- package/esm2015/directives/drag/drag.module.js +0 -19
- package/esm2015/directives/droppable/droppable.directive.js +0 -40
- package/esm2015/directives/droppable/droppable.module.js +0 -16
- package/esm2015/directives/element/element.directive.js +0 -34
- package/esm2015/directives/element/element.module.js +0 -16
- package/esm2015/directives/focus-trap/focus-trap.directive.js +0 -77
- package/esm2015/directives/focus-trap/focus-trap.module.js +0 -16
- package/esm2015/directives/focus-visible/focus-visible.directive.js +0 -28
- package/esm2015/directives/focus-visible/focus-visible.module.js +0 -16
- package/esm2015/directives/focusable/focusable.directive.js +0 -31
- package/esm2015/directives/focusable/focusable.module.js +0 -16
- package/esm2015/directives/focused/focused.directive.js +0 -33
- package/esm2015/directives/focused/focused.module.js +0 -16
- package/esm2015/directives/for/for.directive.js +0 -36
- package/esm2015/directives/for/for.module.js +0 -16
- package/esm2015/directives/for-async/for-async.directive.js +0 -61
- package/esm2015/directives/for-async/for-async.module.js +0 -20
- package/esm2015/directives/high-dpi/high-dpi.directive.js +0 -31
- package/esm2015/directives/high-dpi/high-dpi.module.js +0 -16
- package/esm2015/directives/hovered/hovered.directive.js +0 -23
- package/esm2015/directives/hovered/hovered.module.js +0 -16
- package/esm2015/directives/hovered/hovered.service.js +0 -34
- package/esm2015/directives/index.js +0 -36
- package/esm2015/directives/item/item.directive.js +0 -16
- package/esm2015/directives/item/item.module.js +0 -16
- package/esm2015/directives/let/let.directive.js +0 -38
- package/esm2015/directives/let/let.module.js +0 -16
- package/esm2015/directives/media/media.directive.js +0 -109
- package/esm2015/directives/media/media.module.js +0 -16
- package/esm2015/directives/obscured/obscured.directive.js +0 -49
- package/esm2015/directives/obscured/obscured.module.js +0 -16
- package/esm2015/directives/overscroll/overscroll.directive.js +0 -103
- package/esm2015/directives/overscroll/overscroll.module.js +0 -16
- package/esm2015/directives/pan/pan.directive.js +0 -23
- package/esm2015/directives/pan/pan.module.js +0 -19
- package/esm2015/directives/platform/platform.directive.js +0 -35
- package/esm2015/directives/platform/platform.module.js +0 -16
- package/esm2015/directives/portal/portal.directive.js +0 -38
- package/esm2015/directives/portal/portal.module.js +0 -16
- package/esm2015/directives/pressed/pressed.directive.js +0 -30
- package/esm2015/directives/pressed/pressed.module.js +0 -16
- package/esm2015/directives/prevent-default/prevent-default.directive.js +0 -49
- package/esm2015/directives/prevent-default/prevent-default.module.js +0 -19
- package/esm2015/directives/repeat-times/repeat-times.directive.js +0 -59
- package/esm2015/directives/repeat-times/repeat-times.module.js +0 -16
- package/esm2015/directives/resize/resize.directive.js +0 -23
- package/esm2015/directives/resize/resize.module.js +0 -19
- package/esm2015/directives/resizer/resizeable.directive.js +0 -14
- package/esm2015/directives/resizer/resizer.directive.js +0 -106
- package/esm2015/directives/resizer/resizer.module.js +0 -17
- package/esm2015/directives/swipe/swipe.directive.js +0 -23
- package/esm2015/directives/swipe/swipe.module.js +0 -19
- package/esm2015/directives/validator/validator.directive.js +0 -47
- package/esm2015/directives/validator/validator.module.js +0 -16
- package/esm2015/directives/value-changes/value-changes.directive.js +0 -39
- package/esm2015/directives/value-changes/value-changes.module.js +0 -16
- package/esm2015/directives/zoom/zoom.directive.js +0 -26
- package/esm2015/directives/zoom/zoom.module.js +0 -19
- package/esm2015/observables/control-value.js +0 -15
- package/esm2015/observables/drag-and-drop-from.js +0 -28
- package/esm2015/observables/focus-visible-observable.js +0 -31
- package/esm2015/observables/if-map.js +0 -6
- package/esm2015/observables/is-alive.js +0 -10
- package/esm2015/observables/is-observed.js +0 -7
- package/esm2015/observables/items-query-list-observable.js +0 -13
- package/esm2015/observables/must-be-present.js +0 -12
- package/esm2015/observables/pressed-observable.js +0 -13
- package/esm2015/observables/prevent-default.js +0 -5
- package/esm2015/observables/stop-propagation.js +0 -7
- package/esm2015/observables/watch.js +0 -7
- package/esm2015/pipes/filter/filter.module.js +0 -16
- package/esm2015/pipes/filter/filter.pipe.js +0 -14
- package/esm2015/pipes/is-present/is-present.module.js +0 -16
- package/esm2015/pipes/is-present/is-present.pipe.js +0 -15
- package/esm2015/pipes/keys/keys.module.js +0 -16
- package/esm2015/pipes/keys/keys.pipe.js +0 -14
- package/esm2015/pipes/mapper/mapper.module.js +0 -16
- package/esm2015/pipes/mapper/mapper.pipe.js +0 -14
- package/esm2015/pipes/replace/replace.module.js +0 -16
- package/esm2015/pipes/replace/replace.pipe.js +0 -17
- package/esm2015/services/destroy.service.js +0 -26
- package/esm2015/services/directive-styles.service.js +0 -32
- package/esm2015/services/focus-visible.service.js +0 -35
- package/esm2015/services/id.service.js +0 -21
- package/esm2015/services/obscured.service.js +0 -54
- package/esm2015/services/pan.service.js +0 -35
- package/esm2015/services/parents-scroll.service.js +0 -36
- package/esm2015/services/resize.service.js +0 -47
- package/esm2015/services/scroll.service.js +0 -60
- package/esm2015/services/static-request.service.js +0 -51
- package/esm2015/services/swipe.service.js +0 -51
- package/esm2015/services/zoom.service.js +0 -54
- package/esm2015/tokens/active-element.js +0 -61
- package/esm2015/tokens/base-href.js +0 -5
- package/esm2015/tokens/ensure-base-href.js +0 -17
- package/esm2015/tokens/fonts-ready.js +0 -11
- package/esm2015/tokens/is-firefox.js +0 -11
- package/esm2015/tokens/is-webkit.js +0 -11
- package/esm2015/tokens/removed-element.js +0 -20
- package/esm2015/tokens/window-height.js +0 -9
- package/esm2015/tokens/window-size.js +0 -23
- package/esm2015/utils/browser/is-safari.js +0 -11
- package/esm2015/utils/color/hex-to-rgba.js +0 -31
- package/esm2015/utils/color/rgba-to-hex.js +0 -26
- package/esm2015/utils/dom/contains-or-after.js +0 -10
- package/esm2015/utils/dom/get-element-obscurers.js +0 -43
- package/esm2015/utils/dom/get-selected-text.js +0 -16
- package/esm2015/utils/dom/is-node-in.js +0 -15
- package/esm2015/utils/dom/point-to-client-rect.js +0 -16
- package/esm2015/utils/dom/retarget-boundary-crossing.js +0 -16
- package/esm2015/utils/focus/get-native-focused.js +0 -16
- package/esm2015/utils/focus/is-native-focused.js +0 -15
- package/esm2015/utils/miscellaneous/is-number.js +0 -5
- package/esm2015/utils/miscellaneous/is-object.js +0 -5
- package/esm2015/utils/miscellaneous/is-string.js +0 -5
- package/esm2015/utils/miscellaneous/object-from-entries.js +0 -12
- package/esm2015/utils/miscellaneous/provide-options.js +0 -9
- package/esm2015/utils/svg/svg-linear-gradient-processor.js +0 -65
- package/exceptions/package.json +0 -10
- package/exceptions/taiga-ui-cdk-exceptions.d.ts +0 -5
- package/fesm2015/taiga-ui-cdk-abstract.js +0 -514
- package/fesm2015/taiga-ui-cdk-abstract.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-classes.js +0 -29
- package/fesm2015/taiga-ui-cdk-classes.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-coercion.js +0 -16
- package/fesm2015/taiga-ui-cdk-coercion.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components-alert-host.js +0 -94
- package/fesm2015/taiga-ui-cdk-components-alert-host.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components-dialog-host.js +0 -180
- package/fesm2015/taiga-ui-cdk-components-dialog-host.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components-dropdown-host.js +0 -63
- package/fesm2015/taiga-ui-cdk-components-dropdown-host.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components-scroll-controls.js +0 -220
- package/fesm2015/taiga-ui-cdk-components-scroll-controls.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-components.js +0 -9
- package/fesm2015/taiga-ui-cdk-components.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-constants.js +0 -237
- package/fesm2015/taiga-ui-cdk-constants.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-date-time.js +0 -821
- package/fesm2015/taiga-ui-cdk-date-time.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-decorators.js +0 -193
- package/fesm2015/taiga-ui-cdk-decorators.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-active-zone.js +0 -100
- package/fesm2015/taiga-ui-cdk-directives-active-zone.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-auto-focus.js +0 -348
- package/fesm2015/taiga-ui-cdk-directives-auto-focus.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-autofilled.js +0 -77
- package/fesm2015/taiga-ui-cdk-directives-autofilled.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-checked.js +0 -66
- package/fesm2015/taiga-ui-cdk-directives-checked.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-click-outside.js +0 -59
- package/fesm2015/taiga-ui-cdk-directives-click-outside.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-control.js +0 -45
- package/fesm2015/taiga-ui-cdk-directives-control.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-copy-processor.js +0 -55
- package/fesm2015/taiga-ui-cdk-directives-copy-processor.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-drag.js +0 -60
- package/fesm2015/taiga-ui-cdk-directives-drag.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-droppable.js +0 -60
- package/fesm2015/taiga-ui-cdk-directives-droppable.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-element.js +0 -54
- package/fesm2015/taiga-ui-cdk-directives-element.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-focus-trap.js +0 -97
- package/fesm2015/taiga-ui-cdk-directives-focus-trap.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-focus-visible.js +0 -48
- package/fesm2015/taiga-ui-cdk-directives-focus-visible.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-focusable.js +0 -51
- package/fesm2015/taiga-ui-cdk-directives-focusable.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-focused.js +0 -53
- package/fesm2015/taiga-ui-cdk-directives-focused.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-for-async.js +0 -85
- package/fesm2015/taiga-ui-cdk-directives-for-async.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-for.js +0 -56
- package/fesm2015/taiga-ui-cdk-directives-for.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-high-dpi.js +0 -51
- package/fesm2015/taiga-ui-cdk-directives-high-dpi.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-hovered.js +0 -74
- package/fesm2015/taiga-ui-cdk-directives-hovered.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-item.js +0 -36
- package/fesm2015/taiga-ui-cdk-directives-item.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-let.js +0 -72
- package/fesm2015/taiga-ui-cdk-directives-let.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-media.js +0 -129
- package/fesm2015/taiga-ui-cdk-directives-media.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-obscured.js +0 -69
- package/fesm2015/taiga-ui-cdk-directives-obscured.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-overscroll.js +0 -123
- package/fesm2015/taiga-ui-cdk-directives-overscroll.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-pan.js +0 -46
- package/fesm2015/taiga-ui-cdk-directives-pan.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-platform.js +0 -55
- package/fesm2015/taiga-ui-cdk-directives-platform.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-portal.js +0 -58
- package/fesm2015/taiga-ui-cdk-directives-portal.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-pressed.js +0 -50
- package/fesm2015/taiga-ui-cdk-directives-pressed.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-prevent-default.js +0 -72
- package/fesm2015/taiga-ui-cdk-directives-prevent-default.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-repeat-times.js +0 -79
- package/fesm2015/taiga-ui-cdk-directives-repeat-times.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-resize.js +0 -46
- package/fesm2015/taiga-ui-cdk-directives-resize.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-resizer.js +0 -137
- package/fesm2015/taiga-ui-cdk-directives-resizer.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-swipe.js +0 -46
- package/fesm2015/taiga-ui-cdk-directives-swipe.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-validator.js +0 -67
- package/fesm2015/taiga-ui-cdk-directives-validator.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-value-changes.js +0 -59
- package/fesm2015/taiga-ui-cdk-directives-value-changes.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives-zoom.js +0 -49
- package/fesm2015/taiga-ui-cdk-directives-zoom.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-directives.js +0 -40
- package/fesm2015/taiga-ui-cdk-directives.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-enums.js +0 -37
- package/fesm2015/taiga-ui-cdk-enums.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-exceptions.js +0 -84
- package/fesm2015/taiga-ui-cdk-exceptions.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-interfaces.js +0 -4
- package/fesm2015/taiga-ui-cdk-interfaces.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-observables.js +0 -172
- package/fesm2015/taiga-ui-cdk-observables.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-filter.js +0 -34
- package/fesm2015/taiga-ui-cdk-pipes-filter.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-is-present.js +0 -35
- package/fesm2015/taiga-ui-cdk-pipes-is-present.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-keys.js +0 -34
- package/fesm2015/taiga-ui-cdk-pipes-keys.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-mapper.js +0 -34
- package/fesm2015/taiga-ui-cdk-pipes-mapper.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes-replace.js +0 -37
- package/fesm2015/taiga-ui-cdk-pipes-replace.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-pipes.js +0 -10
- package/fesm2015/taiga-ui-cdk-pipes.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-services.js +0 -449
- package/fesm2015/taiga-ui-cdk-services.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-tokens.js +0 -287
- package/fesm2015/taiga-ui-cdk-tokens.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-types.js +0 -4
- package/fesm2015/taiga-ui-cdk-types.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-browser.js +0 -31
- package/fesm2015/taiga-ui-cdk-utils-browser.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-color.js +0 -125
- package/fesm2015/taiga-ui-cdk-utils-color.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-dom.js +0 -259
- package/fesm2015/taiga-ui-cdk-utils-dom.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-focus.js +0 -171
- package/fesm2015/taiga-ui-cdk-utils-focus.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-format.js +0 -16
- package/fesm2015/taiga-ui-cdk-utils-format.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-math.js +0 -135
- package/fesm2015/taiga-ui-cdk-utils-math.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-miscellaneous.js +0 -187
- package/fesm2015/taiga-ui-cdk-utils-miscellaneous.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-os.js +0 -31
- package/fesm2015/taiga-ui-cdk-utils-os.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils-svg.js +0 -72
- package/fesm2015/taiga-ui-cdk-utils-svg.js.map +0 -1
- package/fesm2015/taiga-ui-cdk-utils.js +0 -14
- package/fesm2015/taiga-ui-cdk-utils.js.map +0 -1
- package/fesm2015/taiga-ui-cdk.js +0 -22
- package/fesm2015/taiga-ui-cdk.js.map +0 -1
- package/interfaces/package.json +0 -10
- package/interfaces/taiga-ui-cdk-interfaces.d.ts +0 -5
- package/observables/package.json +0 -10
- package/observables/taiga-ui-cdk-observables.d.ts +0 -5
- package/pipes/filter/package.json +0 -10
- package/pipes/filter/taiga-ui-cdk-pipes-filter.d.ts +0 -5
- package/pipes/is-present/package.json +0 -10
- package/pipes/is-present/taiga-ui-cdk-pipes-is-present.d.ts +0 -5
- package/pipes/keys/package.json +0 -10
- package/pipes/keys/taiga-ui-cdk-pipes-keys.d.ts +0 -5
- package/pipes/mapper/package.json +0 -10
- package/pipes/mapper/taiga-ui-cdk-pipes-mapper.d.ts +0 -5
- package/pipes/package.json +0 -10
- package/pipes/replace/package.json +0 -10
- package/pipes/replace/taiga-ui-cdk-pipes-replace.d.ts +0 -5
- package/pipes/taiga-ui-cdk-pipes.d.ts +0 -5
- package/services/package.json +0 -10
- package/services/taiga-ui-cdk-services.d.ts +0 -5
- package/taiga-ui-cdk.d.ts +0 -5
- package/tokens/package.json +0 -10
- package/tokens/taiga-ui-cdk-tokens.d.ts +0 -5
- package/types/package.json +0 -10
- package/types/taiga-ui-cdk-types.d.ts +0 -5
- package/utils/browser/package.json +0 -10
- package/utils/browser/taiga-ui-cdk-utils-browser.d.ts +0 -5
- package/utils/color/package.json +0 -10
- package/utils/color/taiga-ui-cdk-utils-color.d.ts +0 -5
- package/utils/dom/package.json +0 -10
- package/utils/dom/taiga-ui-cdk-utils-dom.d.ts +0 -5
- package/utils/focus/package.json +0 -10
- package/utils/focus/taiga-ui-cdk-utils-focus.d.ts +0 -5
- package/utils/format/package.json +0 -10
- package/utils/format/taiga-ui-cdk-utils-format.d.ts +0 -5
- package/utils/math/package.json +0 -10
- package/utils/math/taiga-ui-cdk-utils-math.d.ts +0 -5
- package/utils/miscellaneous/package.json +0 -10
- package/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.d.ts +0 -5
- package/utils/os/package.json +0 -10
- package/utils/os/taiga-ui-cdk-utils-os.d.ts +0 -5
- package/utils/package.json +0 -10
- package/utils/svg/package.json +0 -10
- package/utils/svg/taiga-ui-cdk-utils-svg.d.ts +0 -5
- package/utils/taiga-ui-cdk-utils.d.ts +0 -5
- /package/{esm2015/abstract/index.js → esm2020/abstract/index.mjs} +0 -0
- /package/{esm2015/abstract/taiga-ui-cdk-abstract.js → esm2020/abstract/taiga-ui-cdk-abstract.mjs} +0 -0
- /package/{esm2015/abstract/value-transformer.js → esm2020/abstract/value-transformer.mjs} +0 -0
- /package/{esm2015/classes/assert.js → esm2020/classes/assert.mjs} +0 -0
- /package/{esm2015/classes/index.js → esm2020/classes/index.mjs} +0 -0
- /package/{esm2015/classes/taiga-ui-cdk-classes.js → esm2020/classes/taiga-ui-cdk-classes.mjs} +0 -0
- /package/{esm2015/classes/validation-error.js → esm2020/classes/validation-error.mjs} +0 -0
- /package/{esm2015/coercion/index.js → esm2020/coercion/index.mjs} +0 -0
- /package/{esm2015/coercion/taiga-ui-cdk-coercion.js → esm2020/coercion/taiga-ui-cdk-coercion.mjs} +0 -0
- /package/{esm2015/components/alert-host/index.js → esm2020/components/alert-host/index.mjs} +0 -0
- /package/{esm2015/components/alert-host/taiga-ui-cdk-components-alert-host.js → esm2020/components/alert-host/taiga-ui-cdk-components-alert-host.mjs} +0 -0
- /package/{esm2015/components/dialog-host/index.js → esm2020/components/dialog-host/index.mjs} +0 -0
- /package/{esm2015/components/dialog-host/taiga-ui-cdk-components-dialog-host.js → esm2020/components/dialog-host/taiga-ui-cdk-components-dialog-host.mjs} +0 -0
- /package/{esm2015/components/dropdown-host/index.js → esm2020/components/dropdown-host/index.mjs} +0 -0
- /package/{esm2015/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.js → esm2020/components/dropdown-host/taiga-ui-cdk-components-dropdown-host.mjs} +0 -0
- /package/{esm2015/components/index.js → esm2020/components/index.mjs} +0 -0
- /package/{esm2015/components/scroll-controls/index.js → esm2020/components/scroll-controls/index.mjs} +0 -0
- /package/{esm2015/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.js → esm2020/components/scroll-controls/taiga-ui-cdk-components-scroll-controls.mjs} +0 -0
- /package/{esm2015/components/taiga-ui-cdk-components.js → esm2020/components/taiga-ui-cdk-components.mjs} +0 -0
- /package/{esm2015/constants/always-false-handler.js → esm2020/constants/always-false-handler.mjs} +0 -0
- /package/{esm2015/constants/always-true-handler.js → esm2020/constants/always-true-handler.mjs} +0 -0
- /package/{esm2015/constants/browser.js → esm2020/constants/browser.mjs} +0 -0
- /package/{esm2015/constants/index.js → esm2020/constants/index.mjs} +0 -0
- /package/{esm2015/constants/matcher.js → esm2020/constants/matcher.mjs} +0 -0
- /package/{esm2015/constants/parent-animation.js → esm2020/constants/parent-animation.mjs} +0 -0
- /package/{esm2015/constants/polling-time.js → esm2020/constants/polling-time.mjs} +0 -0
- /package/{esm2015/constants/stringify.js → esm2020/constants/stringify.mjs} +0 -0
- /package/{esm2015/constants/svg-node-filter.js → esm2020/constants/svg-node-filter.mjs} +0 -0
- /package/{esm2015/constants/taiga-ui-cdk-constants.js → esm2020/constants/taiga-ui-cdk-constants.mjs} +0 -0
- /package/{esm2015/constants/unicode-chars.js → esm2020/constants/unicode-chars.mjs} +0 -0
- /package/{esm2015/constants/used-icons.js → esm2020/constants/used-icons.mjs} +0 -0
- /package/{esm2015/date-time/date-clamp.js → esm2020/date-time/date-clamp.mjs} +0 -0
- /package/{esm2015/date-time/date-fillers.js → esm2020/date-time/date-fillers.mjs} +0 -0
- /package/{esm2015/date-time/date-format.js → esm2020/date-time/date-format.mjs} +0 -0
- /package/{esm2015/date-time/date-separator.js → esm2020/date-time/date-separator.mjs} +0 -0
- /package/{esm2015/date-time/date-time.js → esm2020/date-time/date-time.mjs} +0 -0
- /package/{esm2015/date-time/day-range.js → esm2020/date-time/day-range.mjs} +0 -0
- /package/{esm2015/date-time/day.js → esm2020/date-time/day.mjs} +0 -0
- /package/{esm2015/date-time/days.const.js → esm2020/date-time/days.const.mjs} +0 -0
- /package/{esm2015/date-time/index.js → esm2020/date-time/index.mjs} +0 -0
- /package/{esm2015/date-time/month-range.js → esm2020/date-time/month-range.mjs} +0 -0
- /package/{esm2015/date-time/month.js → esm2020/date-time/month.mjs} +0 -0
- /package/{esm2015/date-time/taiga-ui-cdk-date-time.js → esm2020/date-time/taiga-ui-cdk-date-time.mjs} +0 -0
- /package/{esm2015/date-time/time.js → esm2020/date-time/time.mjs} +0 -0
- /package/{esm2015/date-time/year.js → esm2020/date-time/year.mjs} +0 -0
- /package/{esm2015/decorators/debounce.js → esm2020/decorators/debounce.mjs} +0 -0
- /package/{esm2015/decorators/default-prop.js → esm2020/decorators/default-prop.mjs} +0 -0
- /package/{esm2015/decorators/index.js → esm2020/decorators/index.mjs} +0 -0
- /package/{esm2015/decorators/pure.js → esm2020/decorators/pure.mjs} +0 -0
- /package/{esm2015/decorators/required-setter.js → esm2020/decorators/required-setter.mjs} +0 -0
- /package/{esm2015/decorators/taiga-ui-cdk-decorators.js → esm2020/decorators/taiga-ui-cdk-decorators.mjs} +0 -0
- /package/{esm2015/directives/active-zone/index.js → esm2020/directives/active-zone/index.mjs} +0 -0
- /package/{esm2015/directives/active-zone/taiga-ui-cdk-directives-active-zone.js → esm2020/directives/active-zone/taiga-ui-cdk-directives-active-zone.mjs} +0 -0
- /package/{esm2015/directives/auto-focus/autofocus.options.js → esm2020/directives/auto-focus/autofocus.options.mjs} +0 -0
- /package/{esm2015/directives/auto-focus/index.js → esm2020/directives/auto-focus/index.mjs} +0 -0
- /package/{esm2015/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.js → esm2020/directives/auto-focus/taiga-ui-cdk-directives-auto-focus.mjs} +0 -0
- /package/{esm2015/directives/autofilled/index.js → esm2020/directives/autofilled/index.mjs} +0 -0
- /package/{esm2015/directives/autofilled/taiga-ui-cdk-directives-autofilled.js → esm2020/directives/autofilled/taiga-ui-cdk-directives-autofilled.mjs} +0 -0
- /package/{esm2015/directives/checked/index.js → esm2020/directives/checked/index.mjs} +0 -0
- /package/{esm2015/directives/checked/taiga-ui-cdk-directives-checked.js → esm2020/directives/checked/taiga-ui-cdk-directives-checked.mjs} +0 -0
- /package/{esm2015/directives/click-outside/index.js → esm2020/directives/click-outside/index.mjs} +0 -0
- /package/{esm2015/directives/click-outside/taiga-ui-cdk-directives-click-outside.js → esm2020/directives/click-outside/taiga-ui-cdk-directives-click-outside.mjs} +0 -0
- /package/{esm2015/directives/control/index.js → esm2020/directives/control/index.mjs} +0 -0
- /package/{esm2015/directives/control/taiga-ui-cdk-directives-control.js → esm2020/directives/control/taiga-ui-cdk-directives-control.mjs} +0 -0
- /package/{esm2015/directives/copy-processor/index.js → esm2020/directives/copy-processor/index.mjs} +0 -0
- /package/{esm2015/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.js → esm2020/directives/copy-processor/taiga-ui-cdk-directives-copy-processor.mjs} +0 -0
- /package/{esm2015/directives/drag/index.js → esm2020/directives/drag/index.mjs} +0 -0
- /package/{esm2015/directives/drag/taiga-ui-cdk-directives-drag.js → esm2020/directives/drag/taiga-ui-cdk-directives-drag.mjs} +0 -0
- /package/{esm2015/directives/droppable/index.js → esm2020/directives/droppable/index.mjs} +0 -0
- /package/{esm2015/directives/droppable/taiga-ui-cdk-directives-droppable.js → esm2020/directives/droppable/taiga-ui-cdk-directives-droppable.mjs} +0 -0
- /package/{esm2015/directives/element/index.js → esm2020/directives/element/index.mjs} +0 -0
- /package/{esm2015/directives/element/taiga-ui-cdk-directives-element.js → esm2020/directives/element/taiga-ui-cdk-directives-element.mjs} +0 -0
- /package/{esm2015/directives/focus-trap/index.js → esm2020/directives/focus-trap/index.mjs} +0 -0
- /package/{esm2015/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.js → esm2020/directives/focus-trap/taiga-ui-cdk-directives-focus-trap.mjs} +0 -0
- /package/{esm2015/directives/focus-visible/index.js → esm2020/directives/focus-visible/index.mjs} +0 -0
- /package/{esm2015/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.js → esm2020/directives/focus-visible/taiga-ui-cdk-directives-focus-visible.mjs} +0 -0
- /package/{esm2015/directives/focusable/index.js → esm2020/directives/focusable/index.mjs} +0 -0
- /package/{esm2015/directives/focusable/taiga-ui-cdk-directives-focusable.js → esm2020/directives/focusable/taiga-ui-cdk-directives-focusable.mjs} +0 -0
- /package/{esm2015/directives/focused/index.js → esm2020/directives/focused/index.mjs} +0 -0
- /package/{esm2015/directives/focused/taiga-ui-cdk-directives-focused.js → esm2020/directives/focused/taiga-ui-cdk-directives-focused.mjs} +0 -0
- /package/{esm2015/directives/for/index.js → esm2020/directives/for/index.mjs} +0 -0
- /package/{esm2015/directives/for/taiga-ui-cdk-directives-for.js → esm2020/directives/for/taiga-ui-cdk-directives-for.mjs} +0 -0
- /package/{esm2015/directives/for-async/index.js → esm2020/directives/for-async/index.mjs} +0 -0
- /package/{esm2015/directives/for-async/taiga-ui-cdk-directives-for-async.js → esm2020/directives/for-async/taiga-ui-cdk-directives-for-async.mjs} +0 -0
- /package/{esm2015/directives/high-dpi/index.js → esm2020/directives/high-dpi/index.mjs} +0 -0
- /package/{esm2015/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.js → esm2020/directives/high-dpi/taiga-ui-cdk-directives-high-dpi.mjs} +0 -0
- /package/{esm2015/directives/hovered/index.js → esm2020/directives/hovered/index.mjs} +0 -0
- /package/{esm2015/directives/hovered/taiga-ui-cdk-directives-hovered.js → esm2020/directives/hovered/taiga-ui-cdk-directives-hovered.mjs} +0 -0
- /package/{esm2015/directives/item/index.js → esm2020/directives/item/index.mjs} +0 -0
- /package/{esm2015/directives/item/taiga-ui-cdk-directives-item.js → esm2020/directives/item/taiga-ui-cdk-directives-item.mjs} +0 -0
- /package/{esm2015/directives/let/index.js → esm2020/directives/let/index.mjs} +0 -0
- /package/{esm2015/directives/let/let-context.js → esm2020/directives/let/let-context.mjs} +0 -0
- /package/{esm2015/directives/let/taiga-ui-cdk-directives-let.js → esm2020/directives/let/taiga-ui-cdk-directives-let.mjs} +0 -0
- /package/{esm2015/directives/media/index.js → esm2020/directives/media/index.mjs} +0 -0
- /package/{esm2015/directives/media/taiga-ui-cdk-directives-media.js → esm2020/directives/media/taiga-ui-cdk-directives-media.mjs} +0 -0
- /package/{esm2015/directives/obscured/index.js → esm2020/directives/obscured/index.mjs} +0 -0
- /package/{esm2015/directives/obscured/taiga-ui-cdk-directives-obscured.js → esm2020/directives/obscured/taiga-ui-cdk-directives-obscured.mjs} +0 -0
- /package/{esm2015/directives/overscroll/index.js → esm2020/directives/overscroll/index.mjs} +0 -0
- /package/{esm2015/directives/overscroll/taiga-ui-cdk-directives-overscroll.js → esm2020/directives/overscroll/taiga-ui-cdk-directives-overscroll.mjs} +0 -0
- /package/{esm2015/directives/pan/index.js → esm2020/directives/pan/index.mjs} +0 -0
- /package/{esm2015/directives/pan/taiga-ui-cdk-directives-pan.js → esm2020/directives/pan/taiga-ui-cdk-directives-pan.mjs} +0 -0
- /package/{esm2015/directives/platform/index.js → esm2020/directives/platform/index.mjs} +0 -0
- /package/{esm2015/directives/platform/taiga-ui-cdk-directives-platform.js → esm2020/directives/platform/taiga-ui-cdk-directives-platform.mjs} +0 -0
- /package/{esm2015/directives/portal/index.js → esm2020/directives/portal/index.mjs} +0 -0
- /package/{esm2015/directives/portal/taiga-ui-cdk-directives-portal.js → esm2020/directives/portal/taiga-ui-cdk-directives-portal.mjs} +0 -0
- /package/{esm2015/directives/pressed/index.js → esm2020/directives/pressed/index.mjs} +0 -0
- /package/{esm2015/directives/pressed/taiga-ui-cdk-directives-pressed.js → esm2020/directives/pressed/taiga-ui-cdk-directives-pressed.mjs} +0 -0
- /package/{esm2015/directives/prevent-default/index.js → esm2020/directives/prevent-default/index.mjs} +0 -0
- /package/{esm2015/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.js → esm2020/directives/prevent-default/taiga-ui-cdk-directives-prevent-default.mjs} +0 -0
- /package/{esm2015/directives/repeat-times/index.js → esm2020/directives/repeat-times/index.mjs} +0 -0
- /package/{esm2015/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.js → esm2020/directives/repeat-times/taiga-ui-cdk-directives-repeat-times.mjs} +0 -0
- /package/{esm2015/directives/resize/index.js → esm2020/directives/resize/index.mjs} +0 -0
- /package/{esm2015/directives/resize/taiga-ui-cdk-directives-resize.js → esm2020/directives/resize/taiga-ui-cdk-directives-resize.mjs} +0 -0
- /package/{esm2015/directives/resizer/index.js → esm2020/directives/resizer/index.mjs} +0 -0
- /package/{esm2015/directives/resizer/taiga-ui-cdk-directives-resizer.js → esm2020/directives/resizer/taiga-ui-cdk-directives-resizer.mjs} +0 -0
- /package/{esm2015/directives/swipe/index.js → esm2020/directives/swipe/index.mjs} +0 -0
- /package/{esm2015/directives/swipe/taiga-ui-cdk-directives-swipe.js → esm2020/directives/swipe/taiga-ui-cdk-directives-swipe.mjs} +0 -0
- /package/{esm2015/directives/taiga-ui-cdk-directives.js → esm2020/directives/taiga-ui-cdk-directives.mjs} +0 -0
- /package/{esm2015/directives/validator/index.js → esm2020/directives/validator/index.mjs} +0 -0
- /package/{esm2015/directives/validator/taiga-ui-cdk-directives-validator.js → esm2020/directives/validator/taiga-ui-cdk-directives-validator.mjs} +0 -0
- /package/{esm2015/directives/value-changes/index.js → esm2020/directives/value-changes/index.mjs} +0 -0
- /package/{esm2015/directives/value-changes/taiga-ui-cdk-directives-value-changes.js → esm2020/directives/value-changes/taiga-ui-cdk-directives-value-changes.mjs} +0 -0
- /package/{esm2015/directives/zoom/index.js → esm2020/directives/zoom/index.mjs} +0 -0
- /package/{esm2015/directives/zoom/taiga-ui-cdk-directives-zoom.js → esm2020/directives/zoom/taiga-ui-cdk-directives-zoom.mjs} +0 -0
- /package/{esm2015/enums/day-of-week.js → esm2020/enums/day-of-week.mjs} +0 -0
- /package/{esm2015/enums/index.js → esm2020/enums/index.mjs} +0 -0
- /package/{esm2015/enums/month-number.js → esm2020/enums/month-number.mjs} +0 -0
- /package/{esm2015/enums/taiga-ui-cdk-enums.js → esm2020/enums/taiga-ui-cdk-enums.mjs} +0 -0
- /package/{esm2015/exceptions/computed-document.exception.js → esm2020/exceptions/computed-document.exception.mjs} +0 -0
- /package/{esm2015/exceptions/document-selection.exception.js → esm2020/exceptions/document-selection.exception.mjs} +0 -0
- /package/{esm2015/exceptions/index.js → esm2020/exceptions/index.mjs} +0 -0
- /package/{esm2015/exceptions/invalid-day.exception.js → esm2020/exceptions/invalid-day.exception.mjs} +0 -0
- /package/{esm2015/exceptions/invalid-month.exception.js → esm2020/exceptions/invalid-month.exception.mjs} +0 -0
- /package/{esm2015/exceptions/invalid-year.exception.js → esm2020/exceptions/invalid-year.exception.mjs} +0 -0
- /package/{esm2015/exceptions/no-host.exception.js → esm2020/exceptions/no-host.exception.mjs} +0 -0
- /package/{esm2015/exceptions/owner-document.exception.js → esm2020/exceptions/owner-document.exception.mjs} +0 -0
- /package/{esm2015/exceptions/pure.exception.js → esm2020/exceptions/pure.exception.mjs} +0 -0
- /package/{esm2015/exceptions/table-sort-key.exception.js → esm2020/exceptions/table-sort-key.exception.mjs} +0 -0
- /package/{esm2015/exceptions/taiga-ui-cdk-exceptions.js → esm2020/exceptions/taiga-ui-cdk-exceptions.mjs} +0 -0
- /package/{esm2015/exceptions/ts-parser.exception.js → esm2020/exceptions/ts-parser.exception.mjs} +0 -0
- /package/{esm2015/exceptions/value-changes.exception.js → esm2020/exceptions/value-changes.exception.mjs} +0 -0
- /package/{esm2015/exceptions/value-present.exception.js → esm2020/exceptions/value-present.exception.mjs} +0 -0
- /package/{esm2015/exceptions/xml-parsing.exception.js → esm2020/exceptions/xml-parsing.exception.mjs} +0 -0
- /package/{esm2015/index.js → esm2020/index.mjs} +0 -0
- /package/{esm2015/interfaces/alert-context.js → esm2020/interfaces/alert-context.mjs} +0 -0
- /package/{esm2015/interfaces/aria-dialog-context.js → esm2020/interfaces/aria-dialog-context.mjs} +0 -0
- /package/{esm2015/interfaces/base-dialog-context.js → esm2020/interfaces/base-dialog-context.mjs} +0 -0
- /package/{esm2015/interfaces/base-dialog.js → esm2020/interfaces/base-dialog.mjs} +0 -0
- /package/{esm2015/interfaces/context-with-implicit.js → esm2020/interfaces/context-with-implicit.mjs} +0 -0
- /package/{esm2015/interfaces/control-value-transformer.js → esm2020/interfaces/control-value-transformer.mjs} +0 -0
- /package/{esm2015/interfaces/day-like.js → esm2020/interfaces/day-like.mjs} +0 -0
- /package/{esm2015/interfaces/focusable-element-accessor.js → esm2020/interfaces/focusable-element-accessor.mjs} +0 -0
- /package/{esm2015/interfaces/index.js → esm2020/interfaces/index.mjs} +0 -0
- /package/{esm2015/interfaces/month-like.js → esm2020/interfaces/month-like.mjs} +0 -0
- /package/{esm2015/interfaces/safe-html.js → esm2020/interfaces/safe-html.mjs} +0 -0
- /package/{esm2015/interfaces/swipe.js → esm2020/interfaces/swipe.mjs} +0 -0
- /package/{esm2015/interfaces/taiga-ui-cdk-interfaces.js → esm2020/interfaces/taiga-ui-cdk-interfaces.mjs} +0 -0
- /package/{esm2015/interfaces/time-like.js → esm2020/interfaces/time-like.mjs} +0 -0
- /package/{esm2015/interfaces/year-like.js → esm2020/interfaces/year-like.mjs} +0 -0
- /package/{esm2015/interfaces/zoom.js → esm2020/interfaces/zoom.mjs} +0 -0
- /package/{esm2015/observables/index.js → esm2020/observables/index.mjs} +0 -0
- /package/{esm2015/observables/mouse-drag-finish-from.js → esm2020/observables/mouse-drag-finish-from.mjs} +0 -0
- /package/{esm2015/observables/scroll-from.js → esm2020/observables/scroll-from.mjs} +0 -0
- /package/{esm2015/observables/taiga-ui-cdk-observables.js → esm2020/observables/taiga-ui-cdk-observables.mjs} +0 -0
- /package/{esm2015/observables/typed-from-event.js → esm2020/observables/typed-from-event.mjs} +0 -0
- /package/{esm2015/observables/zone-free.js → esm2020/observables/zone-free.mjs} +0 -0
- /package/{esm2015/pipes/filter/index.js → esm2020/pipes/filter/index.mjs} +0 -0
- /package/{esm2015/pipes/filter/taiga-ui-cdk-pipes-filter.js → esm2020/pipes/filter/taiga-ui-cdk-pipes-filter.mjs} +0 -0
- /package/{esm2015/pipes/index.js → esm2020/pipes/index.mjs} +0 -0
- /package/{esm2015/pipes/is-present/index.js → esm2020/pipes/is-present/index.mjs} +0 -0
- /package/{esm2015/pipes/is-present/taiga-ui-cdk-pipes-is-present.js → esm2020/pipes/is-present/taiga-ui-cdk-pipes-is-present.mjs} +0 -0
- /package/{esm2015/pipes/keys/index.js → esm2020/pipes/keys/index.mjs} +0 -0
- /package/{esm2015/pipes/keys/taiga-ui-cdk-pipes-keys.js → esm2020/pipes/keys/taiga-ui-cdk-pipes-keys.mjs} +0 -0
- /package/{esm2015/pipes/mapper/index.js → esm2020/pipes/mapper/index.mjs} +0 -0
- /package/{esm2015/pipes/mapper/taiga-ui-cdk-pipes-mapper.js → esm2020/pipes/mapper/taiga-ui-cdk-pipes-mapper.mjs} +0 -0
- /package/{esm2015/pipes/replace/index.js → esm2020/pipes/replace/index.mjs} +0 -0
- /package/{esm2015/pipes/replace/taiga-ui-cdk-pipes-replace.js → esm2020/pipes/replace/taiga-ui-cdk-pipes-replace.mjs} +0 -0
- /package/{esm2015/pipes/taiga-ui-cdk-pipes.js → esm2020/pipes/taiga-ui-cdk-pipes.mjs} +0 -0
- /package/{esm2015/services/index.js → esm2020/services/index.mjs} +0 -0
- /package/{esm2015/services/taiga-ui-cdk-services.js → esm2020/services/taiga-ui-cdk-services.mjs} +0 -0
- /package/{esm2015/taiga-ui-cdk.js → esm2020/taiga-ui-cdk.mjs} +0 -0
- /package/{esm2015/tokens/alerts.js → esm2020/tokens/alerts.mjs} +0 -0
- /package/{esm2015/tokens/default-renderer.js → esm2020/tokens/default-renderer.mjs} +0 -0
- /package/{esm2015/tokens/dialogs.js → esm2020/tokens/dialogs.mjs} +0 -0
- /package/{esm2015/tokens/focusable-item-accessor.js → esm2020/tokens/focusable-item-accessor.mjs} +0 -0
- /package/{esm2015/tokens/index.js → esm2020/tokens/index.mjs} +0 -0
- /package/{esm2015/tokens/is-android.js → esm2020/tokens/is-android.mjs} +0 -0
- /package/{esm2015/tokens/is-apple.js → esm2020/tokens/is-apple.mjs} +0 -0
- /package/{esm2015/tokens/is-chromium.js → esm2020/tokens/is-chromium.mjs} +0 -0
- /package/{esm2015/tokens/is-cypress.js → esm2020/tokens/is-cypress.mjs} +0 -0
- /package/{esm2015/tokens/is-e2e.js → esm2020/tokens/is-e2e.mjs} +0 -0
- /package/{esm2015/tokens/is-ios.js → esm2020/tokens/is-ios.mjs} +0 -0
- /package/{esm2015/tokens/is-mobile.js → esm2020/tokens/is-mobile.mjs} +0 -0
- /package/{esm2015/tokens/is-playwright.js → esm2020/tokens/is-playwright.mjs} +0 -0
- /package/{esm2015/tokens/is-stackblitz.js → esm2020/tokens/is-stackblitz.mjs} +0 -0
- /package/{esm2015/tokens/platform.js → esm2020/tokens/platform.mjs} +0 -0
- /package/{esm2015/tokens/range.js → esm2020/tokens/range.mjs} +0 -0
- /package/{esm2015/tokens/scroll-ref.js → esm2020/tokens/scroll-ref.mjs} +0 -0
- /package/{esm2015/tokens/swipe-options.js → esm2020/tokens/swipe-options.mjs} +0 -0
- /package/{esm2015/tokens/taiga-ui-cdk-tokens.js → esm2020/tokens/taiga-ui-cdk-tokens.mjs} +0 -0
- /package/{esm2015/tokens/take-only-trusted-events.js → esm2020/tokens/take-only-trusted-events.mjs} +0 -0
- /package/{esm2015/tokens/touch-supported.js → esm2020/tokens/touch-supported.mjs} +0 -0
- /package/{esm2015/tokens/zoom-options.js → esm2020/tokens/zoom-options.mjs} +0 -0
- /package/{esm2015/types/autocomplete.js → esm2020/types/autocomplete.mjs} +0 -0
- /package/{esm2015/types/date-mode.js → esm2020/types/date-mode.mjs} +0 -0
- /package/{esm2015/types/deep-partial.js → esm2020/types/deep-partial.mjs} +0 -0
- /package/{esm2015/types/dialog.js → esm2020/types/dialog.mjs} +0 -0
- /package/{esm2015/types/event-with.js → esm2020/types/event-with.mjs} +0 -0
- /package/{esm2015/types/handler.js → esm2020/types/handler.mjs} +0 -0
- /package/{esm2015/types/index.js → esm2020/types/index.mjs} +0 -0
- /package/{esm2015/types/injection-token-type.js → esm2020/types/injection-token-type.mjs} +0 -0
- /package/{esm2015/types/input-mode.js → esm2020/types/input-mode.mjs} +0 -0
- /package/{esm2015/types/input-type.js → esm2020/types/input-type.mjs} +0 -0
- /package/{esm2015/types/mapper.js → esm2020/types/mapper.mjs} +0 -0
- /package/{esm2015/types/matcher.js → esm2020/types/matcher.mjs} +0 -0
- /package/{esm2015/types/overscroll-mode.js → esm2020/types/overscroll-mode.mjs} +0 -0
- /package/{esm2015/types/platform.js → esm2020/types/platform.mjs} +0 -0
- /package/{esm2015/types/rounding.js → esm2020/types/rounding.mjs} +0 -0
- /package/{esm2015/types/taiga-ui-cdk-types.js → esm2020/types/taiga-ui-cdk-types.mjs} +0 -0
- /package/{esm2015/types/time-mode.js → esm2020/types/time-mode.mjs} +0 -0
- /package/{esm2015/types/values-of.js → esm2020/types/values-of.mjs} +0 -0
- /package/{esm2015/utils/browser/index.js → esm2020/utils/browser/index.mjs} +0 -0
- /package/{esm2015/utils/browser/is-edge-older-than.js → esm2020/utils/browser/is-edge-older-than.mjs} +0 -0
- /package/{esm2015/utils/browser/is-edge.js → esm2020/utils/browser/is-edge.mjs} +0 -0
- /package/{esm2015/utils/browser/is-firefox.js → esm2020/utils/browser/is-firefox.mjs} +0 -0
- /package/{esm2015/utils/browser/taiga-ui-cdk-utils-browser.js → esm2020/utils/browser/taiga-ui-cdk-utils-browser.mjs} +0 -0
- /package/{esm2015/utils/color/hex-to-rgb.js → esm2020/utils/color/hex-to-rgb.mjs} +0 -0
- /package/{esm2015/utils/color/hsv-to-rgb.js → esm2020/utils/color/hsv-to-rgb.mjs} +0 -0
- /package/{esm2015/utils/color/index.js → esm2020/utils/color/index.mjs} +0 -0
- /package/{esm2015/utils/color/parse-color.js → esm2020/utils/color/parse-color.mjs} +0 -0
- /package/{esm2015/utils/color/rgb-to-hex.js → esm2020/utils/color/rgb-to-hex.mjs} +0 -0
- /package/{esm2015/utils/color/rgb-to-hsv.js → esm2020/utils/color/rgb-to-hsv.mjs} +0 -0
- /package/{esm2015/utils/color/taiga-ui-cdk-utils-color.js → esm2020/utils/color/taiga-ui-cdk-utils-color.mjs} +0 -0
- /package/{esm2015/utils/dom/can-scroll.js → esm2020/utils/dom/can-scroll.mjs} +0 -0
- /package/{esm2015/utils/dom/element-checks.js → esm2020/utils/dom/element-checks.mjs} +0 -0
- /package/{esm2015/utils/dom/get-actual-target.js → esm2020/utils/dom/get-actual-target.mjs} +0 -0
- /package/{esm2015/utils/dom/get-clipboard-data-text.js → esm2020/utils/dom/get-clipboard-data-text.mjs} +0 -0
- /package/{esm2015/utils/dom/get-document-or-shadow-root.js → esm2020/utils/dom/get-document-or-shadow-root.mjs} +0 -0
- /package/{esm2015/utils/dom/get-element-offset.js → esm2020/utils/dom/get-element-offset.mjs} +0 -0
- /package/{esm2015/utils/dom/get-scroll-parent.js → esm2020/utils/dom/get-scroll-parent.mjs} +0 -0
- /package/{esm2015/utils/dom/index.js → esm2020/utils/dom/index.mjs} +0 -0
- /package/{esm2015/utils/dom/is-current-target.js → esm2020/utils/dom/is-current-target.mjs} +0 -0
- /package/{esm2015/utils/dom/is-element-editable.js → esm2020/utils/dom/is-element-editable.mjs} +0 -0
- /package/{esm2015/utils/dom/is-inside-iframe.js → esm2020/utils/dom/is-inside-iframe.mjs} +0 -0
- /package/{esm2015/utils/dom/taiga-ui-cdk-utils-dom.js → esm2020/utils/dom/taiga-ui-cdk-utils-dom.mjs} +0 -0
- /package/{esm2015/utils/focus/blur-native-focused.js → esm2020/utils/focus/blur-native-focused.mjs} +0 -0
- /package/{esm2015/utils/focus/get-closest-focusable.js → esm2020/utils/focus/get-closest-focusable.mjs} +0 -0
- /package/{esm2015/utils/focus/index.js → esm2020/utils/focus/index.mjs} +0 -0
- /package/{esm2015/utils/focus/is-native-focused-in.js → esm2020/utils/focus/is-native-focused-in.mjs} +0 -0
- /package/{esm2015/utils/focus/is-native-keyboard-focusable.js → esm2020/utils/focus/is-native-keyboard-focusable.mjs} +0 -0
- /package/{esm2015/utils/focus/is-native-mouse-focusable.js → esm2020/utils/focus/is-native-mouse-focusable.mjs} +0 -0
- /package/{esm2015/utils/focus/move-focus.js → esm2020/utils/focus/move-focus.mjs} +0 -0
- /package/{esm2015/utils/focus/set-native-mouse-focused.js → esm2020/utils/focus/set-native-mouse-focused.mjs} +0 -0
- /package/{esm2015/utils/focus/taiga-ui-cdk-utils-focus.js → esm2020/utils/focus/taiga-ui-cdk-utils-focus.mjs} +0 -0
- /package/{esm2015/utils/format/index.js → esm2020/utils/format/index.mjs} +0 -0
- /package/{esm2015/utils/format/px.js → esm2020/utils/format/px.mjs} +0 -0
- /package/{esm2015/utils/format/taiga-ui-cdk-utils-format.js → esm2020/utils/format/taiga-ui-cdk-utils-format.mjs} +0 -0
- /package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
- /package/{esm2015/utils/math/clamp.js → esm2020/utils/math/clamp.mjs} +0 -0
- /package/{esm2015/utils/math/in-range.js → esm2020/utils/math/in-range.mjs} +0 -0
- /package/{esm2015/utils/math/index.js → esm2020/utils/math/index.mjs} +0 -0
- /package/{esm2015/utils/math/normalize-to-int-number.js → esm2020/utils/math/normalize-to-int-number.mjs} +0 -0
- /package/{esm2015/utils/math/quantize.js → esm2020/utils/math/quantize.mjs} +0 -0
- /package/{esm2015/utils/math/round-with.js → esm2020/utils/math/round-with.mjs} +0 -0
- /package/{esm2015/utils/math/round.js → esm2020/utils/math/round.mjs} +0 -0
- /package/{esm2015/utils/math/sum.js → esm2020/utils/math/sum.mjs} +0 -0
- /package/{esm2015/utils/math/taiga-ui-cdk-utils-math.js → esm2020/utils/math/taiga-ui-cdk-utils-math.mjs} +0 -0
- /package/{esm2015/utils/math/to-int.js → esm2020/utils/math/to-int.mjs} +0 -0
- /package/{esm2015/utils/math/to-integer.js → esm2020/utils/math/to-integer.mjs} +0 -0
- /package/{esm2015/utils/math/to-radians.js → esm2020/utils/math/to-radians.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/array-remove.js → esm2020/utils/miscellaneous/array-remove.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/array-shallow-equals.js → esm2020/utils/miscellaneous/array-shallow-equals.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/array-toggle.js → esm2020/utils/miscellaneous/array-toggle.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/clean-object.js → esm2020/utils/miscellaneous/clean-object.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/create-options.js → esm2020/utils/miscellaneous/create-options.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/create-token.js → esm2020/utils/miscellaneous/create-token.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/default-sort.js → esm2020/utils/miscellaneous/default-sort.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/distance-between-touches.js → esm2020/utils/miscellaneous/distance-between-touches.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/ease-in-out-quad.js → esm2020/utils/miscellaneous/ease-in-out-quad.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/flat-length.js → esm2020/utils/miscellaneous/flat-length.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/get-original-array-from-query-list.js → esm2020/utils/miscellaneous/get-original-array-from-query-list.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/get-swipe-direction.js → esm2020/utils/miscellaneous/get-swipe-direction.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/index.js → esm2020/utils/miscellaneous/index.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/is-falsy.js → esm2020/utils/miscellaneous/is-falsy.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/is-present.js → esm2020/utils/miscellaneous/is-present.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/is-valid-url.js → esm2020/utils/miscellaneous/is-valid-url.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/mark-control-as-touched-and-validate.js → esm2020/utils/miscellaneous/mark-control-as-touched-and-validate.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/nullable-same.js → esm2020/utils/miscellaneous/nullable-same.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.js → esm2020/utils/miscellaneous/taiga-ui-cdk-utils-miscellaneous.mjs} +0 -0
- /package/{esm2015/utils/miscellaneous/uniq-by.js → esm2020/utils/miscellaneous/uniq-by.mjs} +0 -0
- /package/{esm2015/utils/os/index.js → esm2020/utils/os/index.mjs} +0 -0
- /package/{esm2015/utils/os/is-apple-platform.js → esm2020/utils/os/is-apple-platform.mjs} +0 -0
- /package/{esm2015/utils/os/is-apple.js → esm2020/utils/os/is-apple.mjs} +0 -0
- /package/{esm2015/utils/os/is-ios.js → esm2020/utils/os/is-ios.mjs} +0 -0
- /package/{esm2015/utils/os/taiga-ui-cdk-utils-os.js → esm2020/utils/os/taiga-ui-cdk-utils-os.mjs} +0 -0
- /package/{esm2015/utils/svg/index.js → esm2020/utils/svg/index.mjs} +0 -0
- /package/{esm2015/utils/svg/taiga-ui-cdk-utils-svg.js → esm2020/utils/svg/taiga-ui-cdk-utils-svg.mjs} +0 -0
- /package/{esm2015/utils/taiga-ui-cdk-utils.js → esm2020/utils/taiga-ui-cdk-utils.mjs} +0 -0
@@ -1,10 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Coerces a data-bound value (typically a string) to a boolean.
|
3
|
-
* @example {@link https://material.angular.io/cdk/coercion/api#functions}
|
4
|
-
*/
|
5
|
-
export function tuiCoerceBooleanProperty(value) {
|
6
|
-
// If you don't mind "[object Object]" in your strings, then you will not need this rule.
|
7
|
-
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
8
|
-
return value !== null && typeof value !== `undefined` && `${value}` !== `false`;
|
9
|
-
}
|
10
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29lcmNlLWJvb2xlYW4tcHJvcGVydHkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvY29lcmNpb24vY29lcmNlLWJvb2xlYW4tcHJvcGVydHkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7OztHQUdHO0FBQ0gsTUFBTSxVQUFVLHdCQUF3QixDQUNwQyxLQUF5RTtJQUV6RSx5RkFBeUY7SUFDekYsZ0VBQWdFO0lBQ2hFLE9BQU8sS0FBSyxLQUFLLElBQUksSUFBSSxPQUFPLEtBQUssS0FBSyxXQUFXLElBQUksR0FBRyxLQUFLLEVBQUUsS0FBSyxPQUFPLENBQUM7QUFDcEYsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQ29lcmNlcyBhIGRhdGEtYm91bmQgdmFsdWUgKHR5cGljYWxseSBhIHN0cmluZykgdG8gYSBib29sZWFuLlxuICogQGV4YW1wbGUge0BsaW5rIGh0dHBzOi8vbWF0ZXJpYWwuYW5ndWxhci5pby9jZGsvY29lcmNpb24vYXBpI2Z1bmN0aW9uc31cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIHR1aUNvZXJjZUJvb2xlYW5Qcm9wZXJ0eShcbiAgICB2YWx1ZTogUmVjb3JkPHN0cmluZywgYW55PiB8IGJvb2xlYW4gfCBudW1iZXIgfCBzdHJpbmcgfCBudWxsIHwgdW5kZWZpbmVkLFxuKTogYm9vbGVhbiB7XG4gICAgLy8gSWYgeW91IGRvbid0IG1pbmQgXCJbb2JqZWN0IE9iamVjdF1cIiBpbiB5b3VyIHN0cmluZ3MsIHRoZW4geW91IHdpbGwgbm90IG5lZWQgdGhpcyBydWxlLlxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbm8tYmFzZS10by1zdHJpbmdcbiAgICByZXR1cm4gdmFsdWUgIT09IG51bGwgJiYgdHlwZW9mIHZhbHVlICE9PSBgdW5kZWZpbmVkYCAmJiBgJHt2YWx1ZX1gICE9PSBgZmFsc2VgO1xufVxuIl19
|
@@ -1,71 +0,0 @@
|
|
1
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Inject, INJECTOR, Injector, Self, ViewEncapsulation, } from '@angular/core';
|
2
|
-
import { TUI_PARENT_ANIMATION } from '@taiga-ui/cdk/constants';
|
3
|
-
import { TuiDestroyService } from '@taiga-ui/cdk/services';
|
4
|
-
import { TUI_ALERTS } from '@taiga-ui/cdk/tokens';
|
5
|
-
import { POLYMORPHEUS_CONTEXT } from '@tinkoff/ng-polymorpheus';
|
6
|
-
import { combineLatest } from 'rxjs';
|
7
|
-
import { takeUntil } from 'rxjs/operators';
|
8
|
-
import * as i0 from "@angular/core";
|
9
|
-
import * as i1 from "@angular/common";
|
10
|
-
import * as i2 from "@taiga-ui/cdk/pipes";
|
11
|
-
import * as i3 from "rxjs";
|
12
|
-
export class TuiAlertHostComponent {
|
13
|
-
constructor(allAlerts, injector, destroy$, cdr) {
|
14
|
-
this.allAlerts = allAlerts;
|
15
|
-
this.injector = injector;
|
16
|
-
this.destroy$ = destroy$;
|
17
|
-
this.cdr = cdr;
|
18
|
-
this.alerts = [];
|
19
|
-
this.trackBy = (index) => index;
|
20
|
-
this.mapper = useValue => Injector.create({
|
21
|
-
providers: [
|
22
|
-
{
|
23
|
-
provide: POLYMORPHEUS_CONTEXT,
|
24
|
-
useValue,
|
25
|
-
},
|
26
|
-
],
|
27
|
-
parent: this.injector,
|
28
|
-
});
|
29
|
-
}
|
30
|
-
ngOnInit() {
|
31
|
-
// Due to this view being parallel to app content, `markForCheck` from `async` pipe
|
32
|
-
// can happen after view was checked, so calling `detectChanges` instead
|
33
|
-
combineLatest(this.allAlerts)
|
34
|
-
.pipe(takeUntil(this.destroy$))
|
35
|
-
.subscribe(alerts => {
|
36
|
-
this.alerts = alerts;
|
37
|
-
this.cdr.detectChanges();
|
38
|
-
});
|
39
|
-
}
|
40
|
-
}
|
41
|
-
TuiAlertHostComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAlertHostComponent, deps: [{ token: TUI_ALERTS }, { token: INJECTOR }, { token: TuiDestroyService, self: true }, { token: ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
42
|
-
TuiAlertHostComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TuiAlertHostComponent, selector: "tui-alert-host", providers: [TuiDestroyService], ngImport: i0, template: "<div\n *ngFor=\"let alert of alerts; trackBy: trackBy\"\n class=\"t-wrapper\"\n @tuiParentAnimation\n>\n <ng-container\n *ngFor=\"let item of alert\"\n [ngComponentOutlet]=\"item.component.component\"\n [ngComponentOutletInjector]=\"item | tuiMapper: mapper\"\n ></ng-container>\n</div>\n", styles: ["tui-alert-host>.t-wrapper{position:fixed;top:0;left:0;display:flex;width:100%;height:100%;flex-direction:column;pointer-events:none}tui-alert-host>.t-wrapper>*{pointer-events:auto}\n"], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModuleFactory"] }], pipes: { "tuiMapper": i2.TuiMapperPipe }, animations: [TUI_PARENT_ANIMATION], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
43
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAlertHostComponent, decorators: [{
|
44
|
-
type: Component,
|
45
|
-
args: [{
|
46
|
-
selector: 'tui-alert-host',
|
47
|
-
templateUrl: './alert-host.template.html',
|
48
|
-
styleUrls: ['./alert-host.style.less'],
|
49
|
-
encapsulation: ViewEncapsulation.None,
|
50
|
-
// So that we do not force OnPush on custom alerts
|
51
|
-
// eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection
|
52
|
-
changeDetection: ChangeDetectionStrategy.Default,
|
53
|
-
providers: [TuiDestroyService],
|
54
|
-
animations: [TUI_PARENT_ANIMATION],
|
55
|
-
}]
|
56
|
-
}], ctorParameters: function () { return [{ type: Array, decorators: [{
|
57
|
-
type: Inject,
|
58
|
-
args: [TUI_ALERTS]
|
59
|
-
}] }, { type: i0.Injector, decorators: [{
|
60
|
-
type: Inject,
|
61
|
-
args: [INJECTOR]
|
62
|
-
}] }, { type: i3.Observable, decorators: [{
|
63
|
-
type: Self
|
64
|
-
}, {
|
65
|
-
type: Inject,
|
66
|
-
args: [TuiDestroyService]
|
67
|
-
}] }, { type: i0.ChangeDetectorRef, decorators: [{
|
68
|
-
type: Inject,
|
69
|
-
args: [ChangeDetectorRef]
|
70
|
-
}] }]; } });
|
71
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQtaG9zdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvY29tcG9uZW50cy9hbGVydC1ob3N0L2FsZXJ0LWhvc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2NvbXBvbmVudHMvYWxlcnQtaG9zdC9hbGVydC1ob3N0LnRlbXBsYXRlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNILHVCQUF1QixFQUN2QixpQkFBaUIsRUFDakIsU0FBUyxFQUNULE1BQU0sRUFDTixRQUFRLEVBQ1IsUUFBUSxFQUVSLElBQUksRUFFSixpQkFBaUIsR0FDcEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0seUJBQXlCLENBQUM7QUFDN0QsT0FBTyxFQUFDLGlCQUFpQixFQUFDLE1BQU0sd0JBQXdCLENBQUM7QUFDekQsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBRWhELE9BQU8sRUFBQyxvQkFBb0IsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQzlELE9BQU8sRUFBQyxhQUFhLEVBQWEsTUFBTSxNQUFNLENBQUM7QUFDL0MsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLGdCQUFnQixDQUFDOzs7OztBQWF6QyxNQUFNLE9BQU8scUJBQXFCO0lBSzlCLFlBQ3lDLFNBQTBDLEVBQzVDLFFBQWtCLEVBQ0QsUUFBMEIsRUFDbEMsR0FBc0I7UUFIN0IsY0FBUyxHQUFULFNBQVMsQ0FBaUM7UUFDNUMsYUFBUSxHQUFSLFFBQVEsQ0FBVTtRQUNELGFBQVEsR0FBUixRQUFRLENBQWtCO1FBQ2xDLFFBQUcsR0FBSCxHQUFHLENBQW1CO1FBTnRFLFdBQU0sR0FBZ0MsRUFBRSxDQUFDO1FBU2hDLFlBQU8sR0FBa0MsQ0FBQyxLQUFhLEVBQUUsRUFBRSxDQUFDLEtBQUssQ0FBQztRQWFsRSxXQUFNLEdBQXdDLFFBQVEsQ0FBQyxFQUFFLENBQzlELFFBQVEsQ0FBQyxNQUFNLENBQUM7WUFDWixTQUFTLEVBQUU7Z0JBQ1A7b0JBQ0ksT0FBTyxFQUFFLG9CQUFvQjtvQkFDN0IsUUFBUTtpQkFDWDthQUNKO1lBQ0QsTUFBTSxFQUFFLElBQUksQ0FBQyxRQUFRO1NBQ3hCLENBQUMsQ0FBQztJQXhCSixDQUFDO0lBSUosUUFBUTtRQUNKLG1GQUFtRjtRQUNuRix3RUFBd0U7UUFDeEUsYUFBYSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUM7YUFDeEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDOUIsU0FBUyxDQUFDLE1BQU0sQ0FBQyxFQUFFO1lBQ2hCLElBQUksQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDO1lBQ3JCLElBQUksQ0FBQyxHQUFHLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDN0IsQ0FBQyxDQUFDLENBQUM7SUFDWCxDQUFDOzttSEF2QlEscUJBQXFCLGtCQU1sQixVQUFVLGFBQ1YsUUFBUSxhQUNBLGlCQUFpQix5QkFDekIsaUJBQWlCO3VHQVRwQixxQkFBcUIseUNBSG5CLENBQUMsaUJBQWlCLENBQUMsMEJDNUJsQyxzVUFXQSxpakJEa0JnQixDQUFDLG9CQUFvQixDQUFDOzRGQUV6QixxQkFBcUI7a0JBWGpDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsV0FBVyxFQUFFLDRCQUE0QjtvQkFDekMsU0FBUyxFQUFFLENBQUMseUJBQXlCLENBQUM7b0JBQ3RDLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxrREFBa0Q7b0JBQ2xELHFGQUFxRjtvQkFDckYsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE9BQU87b0JBQ2hELFNBQVMsRUFBRSxDQUFDLGlCQUFpQixDQUFDO29CQUM5QixVQUFVLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQztpQkFDckM7MERBT3VELEtBQUs7MEJBQXBELE1BQU07MkJBQUMsVUFBVTs7MEJBQ2pCLE1BQU07MkJBQUMsUUFBUTs7MEJBQ2YsSUFBSTs7MEJBQUksTUFBTTsyQkFBQyxpQkFBaUI7OzBCQUNoQyxNQUFNOzJCQUFDLGlCQUFpQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gICAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gICAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICAgQ29tcG9uZW50LFxuICAgIEluamVjdCxcbiAgICBJTkpFQ1RPUixcbiAgICBJbmplY3RvcixcbiAgICBPbkluaXQsXG4gICAgU2VsZixcbiAgICBUcmFja0J5RnVuY3Rpb24sXG4gICAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUVUlfUEFSRU5UX0FOSU1BVElPTn0gZnJvbSAnQHRhaWdhLXVpL2Nkay9jb25zdGFudHMnO1xuaW1wb3J0IHtUdWlEZXN0cm95U2VydmljZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay9zZXJ2aWNlcyc7XG5pbXBvcnQge1RVSV9BTEVSVFN9IGZyb20gJ0B0YWlnYS11aS9jZGsvdG9rZW5zJztcbmltcG9ydCB7VHVpRGlhbG9nLCBUdWlUeXBlZE1hcHBlcn0gZnJvbSAnQHRhaWdhLXVpL2Nkay90eXBlcyc7XG5pbXBvcnQge1BPTFlNT1JQSEVVU19DT05URVhUfSBmcm9tICdAdGlua29mZi9uZy1wb2x5bW9ycGhldXMnO1xuaW1wb3J0IHtjb21iaW5lTGF0ZXN0LCBPYnNlcnZhYmxlfSBmcm9tICdyeGpzJztcbmltcG9ydCB7dGFrZVVudGlsfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAndHVpLWFsZXJ0LWhvc3QnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9hbGVydC1ob3N0LnRlbXBsYXRlLmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2FsZXJ0LWhvc3Quc3R5bGUubGVzcyddLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gICAgLy8gU28gdGhhdCB3ZSBkbyBub3QgZm9yY2UgT25QdXNoIG9uIGN1c3RvbSBhbGVydHNcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L3ByZWZlci1vbi1wdXNoLWNvbXBvbmVudC1jaGFuZ2UtZGV0ZWN0aW9uXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5EZWZhdWx0LFxuICAgIHByb3ZpZGVyczogW1R1aURlc3Ryb3lTZXJ2aWNlXSxcbiAgICBhbmltYXRpb25zOiBbVFVJX1BBUkVOVF9BTklNQVRJT05dLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlBbGVydEhvc3RDb21wb25lbnQ8VCBleHRlbmRzIFR1aURpYWxvZzx1bmtub3duLCB1bmtub3duPj5cbiAgICBpbXBsZW1lbnRzIE9uSW5pdFxue1xuICAgIGFsZXJ0czogUmVhZG9ubHlBcnJheTxyZWFkb25seSBUW10+ID0gW107XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgQEluamVjdChUVUlfQUxFUlRTKSBwcml2YXRlIHJlYWRvbmx5IGFsbEFsZXJ0czogQXJyYXk8T2JzZXJ2YWJsZTxyZWFkb25seSBUW10+PixcbiAgICAgICAgQEluamVjdChJTkpFQ1RPUikgcHJpdmF0ZSByZWFkb25seSBpbmplY3RvcjogSW5qZWN0b3IsXG4gICAgICAgIEBTZWxmKCkgQEluamVjdChUdWlEZXN0cm95U2VydmljZSkgcHJpdmF0ZSByZWFkb25seSBkZXN0cm95JDogT2JzZXJ2YWJsZTx2b2lkPixcbiAgICAgICAgQEluamVjdChDaGFuZ2VEZXRlY3RvclJlZikgcHJpdmF0ZSByZWFkb25seSBjZHI6IENoYW5nZURldGVjdG9yUmVmLFxuICAgICkge31cblxuICAgIHJlYWRvbmx5IHRyYWNrQnk6IFRyYWNrQnlGdW5jdGlvbjxyZWFkb25seSBUW10+ID0gKGluZGV4OiBudW1iZXIpID0+IGluZGV4O1xuXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIC8vIER1ZSB0byB0aGlzIHZpZXcgYmVpbmcgcGFyYWxsZWwgdG8gYXBwIGNvbnRlbnQsIGBtYXJrRm9yQ2hlY2tgIGZyb20gYGFzeW5jYCBwaXBlXG4gICAgICAgIC8vIGNhbiBoYXBwZW4gYWZ0ZXIgdmlldyB3YXMgY2hlY2tlZCwgc28gY2FsbGluZyBgZGV0ZWN0Q2hhbmdlc2AgaW5zdGVhZFxuICAgICAgICBjb21iaW5lTGF0ZXN0KHRoaXMuYWxsQWxlcnRzKVxuICAgICAgICAgICAgLnBpcGUodGFrZVVudGlsKHRoaXMuZGVzdHJveSQpKVxuICAgICAgICAgICAgLnN1YnNjcmliZShhbGVydHMgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMuYWxlcnRzID0gYWxlcnRzO1xuICAgICAgICAgICAgICAgIHRoaXMuY2RyLmRldGVjdENoYW5nZXMoKTtcbiAgICAgICAgICAgIH0pO1xuICAgIH1cblxuICAgIHJlYWRvbmx5IG1hcHBlcjogVHVpVHlwZWRNYXBwZXI8W3Vua25vd25dLCBJbmplY3Rvcj4gPSB1c2VWYWx1ZSA9PlxuICAgICAgICBJbmplY3Rvci5jcmVhdGUoe1xuICAgICAgICAgICAgcHJvdmlkZXJzOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBwcm92aWRlOiBQT0xZTU9SUEhFVVNfQ09OVEVYVCxcbiAgICAgICAgICAgICAgICAgICAgdXNlVmFsdWUsXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIF0sXG4gICAgICAgICAgICBwYXJlbnQ6IHRoaXMuaW5qZWN0b3IsXG4gICAgICAgIH0pO1xufVxuIiwiPGRpdlxuICAgICpuZ0Zvcj1cImxldCBhbGVydCBvZiBhbGVydHM7IHRyYWNrQnk6IHRyYWNrQnlcIlxuICAgIGNsYXNzPVwidC13cmFwcGVyXCJcbiAgICBAdHVpUGFyZW50QW5pbWF0aW9uXG4+XG4gICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAqbmdGb3I9XCJsZXQgaXRlbSBvZiBhbGVydFwiXG4gICAgICAgIFtuZ0NvbXBvbmVudE91dGxldF09XCJpdGVtLmNvbXBvbmVudC5jb21wb25lbnRcIlxuICAgICAgICBbbmdDb21wb25lbnRPdXRsZXRJbmplY3Rvcl09XCJpdGVtIHwgdHVpTWFwcGVyOiBtYXBwZXJcIlxuICAgID48L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuIl19
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
2
|
-
import { NgModule } from '@angular/core';
|
3
|
-
import { TuiMapperPipeModule } from '@taiga-ui/cdk/pipes';
|
4
|
-
import { TuiAlertHostComponent } from './alert-host.component';
|
5
|
-
import * as i0 from "@angular/core";
|
6
|
-
export class TuiAlertHostModule {
|
7
|
-
}
|
8
|
-
TuiAlertHostModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAlertHostModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
9
|
-
TuiAlertHostModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAlertHostModule, declarations: [TuiAlertHostComponent], imports: [CommonModule, TuiMapperPipeModule], exports: [TuiAlertHostComponent] });
|
10
|
-
TuiAlertHostModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAlertHostModule, imports: [[CommonModule, TuiMapperPipeModule]] });
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiAlertHostModule, decorators: [{
|
12
|
-
type: NgModule,
|
13
|
-
args: [{
|
14
|
-
imports: [CommonModule, TuiMapperPipeModule],
|
15
|
-
declarations: [TuiAlertHostComponent],
|
16
|
-
exports: [TuiAlertHostComponent],
|
17
|
-
}]
|
18
|
-
}] });
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQtaG9zdC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvY29tcG9uZW50cy9hbGVydC1ob3N0L2FsZXJ0LWhvc3QubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRXhELE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHdCQUF3QixDQUFDOztBQU83RCxNQUFNLE9BQU8sa0JBQWtCOztnSEFBbEIsa0JBQWtCO2lIQUFsQixrQkFBa0IsaUJBSFoscUJBQXFCLGFBRDFCLFlBQVksRUFBRSxtQkFBbUIsYUFFakMscUJBQXFCO2lIQUV0QixrQkFBa0IsWUFKbEIsQ0FBQyxZQUFZLEVBQUUsbUJBQW1CLENBQUM7NEZBSW5DLGtCQUFrQjtrQkFMOUIsUUFBUTttQkFBQztvQkFDTixPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsbUJBQW1CLENBQUM7b0JBQzVDLFlBQVksRUFBRSxDQUFDLHFCQUFxQixDQUFDO29CQUNyQyxPQUFPLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztpQkFDbkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtUdWlNYXBwZXJQaXBlTW9kdWxlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3BpcGVzJztcblxuaW1wb3J0IHtUdWlBbGVydEhvc3RDb21wb25lbnR9IGZyb20gJy4vYWxlcnQtaG9zdC5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIFR1aU1hcHBlclBpcGVNb2R1bGVdLFxuICAgIGRlY2xhcmF0aW9uczogW1R1aUFsZXJ0SG9zdENvbXBvbmVudF0sXG4gICAgZXhwb3J0czogW1R1aUFsZXJ0SG9zdENvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aUFsZXJ0SG9zdE1vZHVsZSB7fVxuIl19
|
@@ -1,137 +0,0 @@
|
|
1
|
-
import { animateChild, query, style, transition, trigger } from '@angular/animations';
|
2
|
-
import { DOCUMENT } from '@angular/common';
|
3
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Inject, Self, } from '@angular/core';
|
4
|
-
import { Title } from '@angular/platform-browser';
|
5
|
-
import { HISTORY } from '@ng-web-apis/common';
|
6
|
-
import { TuiDestroyService } from '@taiga-ui/cdk/services';
|
7
|
-
import { TUI_DIALOGS, TUI_IS_MOBILE } from '@taiga-ui/cdk/tokens';
|
8
|
-
import { tuiCreateToken } from '@taiga-ui/cdk/utils';
|
9
|
-
import { combineLatest, of } from 'rxjs';
|
10
|
-
import { map, takeUntil } from 'rxjs/operators';
|
11
|
-
import * as i0 from "@angular/core";
|
12
|
-
import * as i1 from "@taiga-ui/cdk/components/scroll-controls";
|
13
|
-
import * as i2 from "@angular/common";
|
14
|
-
import * as i3 from "@taiga-ui/cdk/directives";
|
15
|
-
import * as i4 from "@tinkoff/ng-polymorpheus";
|
16
|
-
import * as i5 from "rxjs";
|
17
|
-
import * as i6 from "@angular/platform-browser";
|
18
|
-
const FAKE_HISTORY_STATE = { label: 'ignoreMe' };
|
19
|
-
const isFakeHistoryState = (historyState) => (historyState === null || historyState === void 0 ? void 0 : historyState.label) === FAKE_HISTORY_STATE.label;
|
20
|
-
/**
|
21
|
-
* Is closing dialog on browser backward navigation enabled
|
22
|
-
*/
|
23
|
-
export const TUI_DIALOG_CLOSES_ON_BACK = tuiCreateToken(of(false));
|
24
|
-
export class TuiDialogHostComponent {
|
25
|
-
constructor(isMobile, isDialogClosesOnBack$, dialogsByType, historyRef, titleService, destroy$, cdr, doc) {
|
26
|
-
this.isMobile = isMobile;
|
27
|
-
this.isDialogClosesOnBack$ = isDialogClosesOnBack$;
|
28
|
-
this.dialogsByType = dialogsByType;
|
29
|
-
this.historyRef = historyRef;
|
30
|
-
this.titleService = titleService;
|
31
|
-
this.destroy$ = destroy$;
|
32
|
-
this.cdr = cdr;
|
33
|
-
this.doc = doc;
|
34
|
-
this.dialogs = [];
|
35
|
-
}
|
36
|
-
ngOnInit() {
|
37
|
-
// Due to this view being parallel to app content, `markForCheck` from `async` pipe
|
38
|
-
// can happen after view was checked, so calling `detectChanges` instead
|
39
|
-
combineLatest(this.dialogsByType)
|
40
|
-
.pipe(map(arr => []
|
41
|
-
.concat(...arr)
|
42
|
-
.sort((a, b) => a.createdAt - b.createdAt)), takeUntil(this.destroy$))
|
43
|
-
.subscribe(dialogs => {
|
44
|
-
this.dialogs = dialogs;
|
45
|
-
this.cdr.markForCheck();
|
46
|
-
this.doc.documentElement.classList.toggle('t-overscroll-none', !!dialogs.length);
|
47
|
-
});
|
48
|
-
}
|
49
|
-
closeLast(dialogs, isDialogClosesOnBack) {
|
50
|
-
if (!isDialogClosesOnBack) {
|
51
|
-
return;
|
52
|
-
}
|
53
|
-
const [last] = dialogs.slice(-1);
|
54
|
-
if (!last) {
|
55
|
-
return;
|
56
|
-
}
|
57
|
-
if (dialogs.length > 1) {
|
58
|
-
this.historyRef.pushState(FAKE_HISTORY_STATE, this.titleService.getTitle());
|
59
|
-
}
|
60
|
-
last.$implicit.complete();
|
61
|
-
}
|
62
|
-
onDialog({ propertyName }, popupOpened, isDialogClosesOnBack) {
|
63
|
-
if (!isDialogClosesOnBack || propertyName !== 'letter-spacing') {
|
64
|
-
return;
|
65
|
-
}
|
66
|
-
if (popupOpened) {
|
67
|
-
this.historyRef.pushState(FAKE_HISTORY_STATE, this.titleService.getTitle());
|
68
|
-
}
|
69
|
-
else if (isFakeHistoryState(this.historyRef.state)) {
|
70
|
-
this.historyRef.back();
|
71
|
-
}
|
72
|
-
}
|
73
|
-
}
|
74
|
-
TuiDialogHostComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDialogHostComponent, deps: [{ token: TUI_IS_MOBILE }, { token: TUI_DIALOG_CLOSES_ON_BACK }, { token: TUI_DIALOGS }, { token: HISTORY }, { token: Title }, { token: TuiDestroyService, self: true }, { token: ChangeDetectorRef }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Component });
|
75
|
-
TuiDialogHostComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TuiDialogHostComponent, selector: "tui-dialog-host", providers: [TuiDestroyService], ngImport: i0, template: "<section\n *ngFor=\"let item of dialogs\"\n aria-modal=\"true\"\n role=\"dialog\"\n tuiFocusTrap\n tuiOverscroll=\"all\"\n tuiScrollRef\n class=\"t-dialog\"\n @host\n [attr.aria-labelledby]=\"item.id\"\n>\n <ng-container *polymorpheusOutlet=\"item.component; context: item\"></ng-container>\n <tui-scroll-controls\n *ngIf=\"!isMobile\"\n class=\"t-scrollbars\"\n ></tui-scroll-controls>\n</section>\n<div\n *tuiLet=\"isDialogClosesOnBack$ | async as isDialogClosesOnBack\"\n class=\"t-overlay\"\n [class.t-overlay_visible]=\"dialogs.length\"\n (transitionend)=\"onDialog($event, !!dialogs.length, !!isDialogClosesOnBack)\"\n (window:popstate)=\"closeLast(dialogs, !!isDialogClosesOnBack)\"\n></div>\n", styles: [":host{position:fixed;left:0;bottom:0;width:100%;height:0}.t-overlay,.t-dialog{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;align-items:flex-start;outline:none;overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.t-overlay.ng-animating,.t-dialog.ng-animating{overflow:clip}.t-overlay::-webkit-scrollbar,.t-dialog::-webkit-scrollbar,.t-overlay::-webkit-scrollbar-thumb,.t-dialog::-webkit-scrollbar-thumb{background:transparent;width:0;height:0}.t-dialog{bottom:auto;height:100%}.t-overlay{height:100%;pointer-events:none;touch-action:none;opacity:0;letter-spacing:normal;transition:opacity var(--tui-duration, .3s),letter-spacing .01s;background:rgba(0,0,0,.75);-webkit-backdrop-filter:var(--tui-backdrop, none);backdrop-filter:var(--tui-backdrop, none)}.t-overlay_visible{opacity:1;letter-spacing:1px}.t-dialog:last-of-type{z-index:1}.t-scrollbars{position:fixed;top:0;left:0;right:0;bottom:0;margin:0;color:#747474}\n"], components: [{ type: i1.TuiScrollControlsComponent, selector: "tui-scroll-controls" }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3.TuiFocusTrapDirective, selector: "[tuiFocusTrap]" }, { type: i3.TuiOverscrollDirective, selector: "[tuiOverscroll]", inputs: ["tuiOverscroll"] }, { type: i1.TuiScrollRefDirective, selector: "[tuiScrollRef]" }, { type: i4.PolymorpheusOutletDirective, selector: "[polymorpheusOutlet]", inputs: ["polymorpheusOutlet", "polymorpheusOutletContext"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.TuiLetDirective, selector: "[tuiLet]", inputs: ["tuiLet"] }], pipes: { "async": i2.AsyncPipe }, animations: [
|
76
|
-
trigger('host', [
|
77
|
-
transition(':enter', [
|
78
|
-
style({ overflow: 'clip' }),
|
79
|
-
query(':scope > *', [animateChild()], { optional: true }),
|
80
|
-
]),
|
81
|
-
transition(':leave', [
|
82
|
-
style({ overflow: 'clip' }),
|
83
|
-
query(':scope > *', [animateChild()], { optional: true }),
|
84
|
-
]),
|
85
|
-
]),
|
86
|
-
], changeDetection: i0.ChangeDetectionStrategy.Default });
|
87
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDialogHostComponent, decorators: [{
|
88
|
-
type: Component,
|
89
|
-
args: [{
|
90
|
-
selector: 'tui-dialog-host',
|
91
|
-
templateUrl: './dialog-host.template.html',
|
92
|
-
styleUrls: ['./dialog-host.style.less'],
|
93
|
-
// So that we do not force OnPush on custom dialogs
|
94
|
-
// eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection
|
95
|
-
changeDetection: ChangeDetectionStrategy.Default,
|
96
|
-
providers: [TuiDestroyService],
|
97
|
-
animations: [
|
98
|
-
trigger('host', [
|
99
|
-
transition(':enter', [
|
100
|
-
style({ overflow: 'clip' }),
|
101
|
-
query(':scope > *', [animateChild()], { optional: true }),
|
102
|
-
]),
|
103
|
-
transition(':leave', [
|
104
|
-
style({ overflow: 'clip' }),
|
105
|
-
query(':scope > *', [animateChild()], { optional: true }),
|
106
|
-
]),
|
107
|
-
]),
|
108
|
-
],
|
109
|
-
}]
|
110
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
111
|
-
type: Inject,
|
112
|
-
args: [TUI_IS_MOBILE]
|
113
|
-
}] }, { type: i5.Observable, decorators: [{
|
114
|
-
type: Inject,
|
115
|
-
args: [TUI_DIALOG_CLOSES_ON_BACK]
|
116
|
-
}] }, { type: Array, decorators: [{
|
117
|
-
type: Inject,
|
118
|
-
args: [TUI_DIALOGS]
|
119
|
-
}] }, { type: History, decorators: [{
|
120
|
-
type: Inject,
|
121
|
-
args: [HISTORY]
|
122
|
-
}] }, { type: i6.Title, decorators: [{
|
123
|
-
type: Inject,
|
124
|
-
args: [Title]
|
125
|
-
}] }, { type: i5.Observable, decorators: [{
|
126
|
-
type: Self
|
127
|
-
}, {
|
128
|
-
type: Inject,
|
129
|
-
args: [TuiDestroyService]
|
130
|
-
}] }, { type: i0.ChangeDetectorRef, decorators: [{
|
131
|
-
type: Inject,
|
132
|
-
args: [ChangeDetectorRef]
|
133
|
-
}] }, { type: Document, decorators: [{
|
134
|
-
type: Inject,
|
135
|
-
args: [DOCUMENT]
|
136
|
-
}] }]; } });
|
137
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGlhbG9nLWhvc3QuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2NvbXBvbmVudHMvZGlhbG9nLWhvc3QvZGlhbG9nLWhvc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2NvbXBvbmVudHMvZGlhbG9nLWhvc3QvZGlhbG9nLWhvc3QudGVtcGxhdGUuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsWUFBWSxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLE9BQU8sRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQ3BGLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUN6QyxPQUFPLEVBQ0gsdUJBQXVCLEVBQ3ZCLGlCQUFpQixFQUNqQixTQUFTLEVBQ1QsTUFBTSxFQUVOLElBQUksR0FDUCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUMsS0FBSyxFQUFDLE1BQU0sMkJBQTJCLENBQUM7QUFDaEQsT0FBTyxFQUFDLE9BQU8sRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQzVDLE9BQU8sRUFBQyxpQkFBaUIsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQ3pELE9BQU8sRUFBQyxXQUFXLEVBQUUsYUFBYSxFQUFDLE1BQU0sc0JBQXNCLENBQUM7QUFFaEUsT0FBTyxFQUFDLGNBQWMsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQ25ELE9BQU8sRUFBQyxhQUFhLEVBQWMsRUFBRSxFQUFDLE1BQU0sTUFBTSxDQUFDO0FBQ25ELE9BQU8sRUFBQyxHQUFHLEVBQUUsU0FBUyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7Ozs7Ozs7O0FBRTlDLE1BQU0sa0JBQWtCLEdBQUcsRUFBQyxLQUFLLEVBQUUsVUFBVSxFQUFVLENBQUM7QUFFeEQsTUFBTSxrQkFBa0IsR0FBRyxDQUN2QixZQUFxQyxFQUNJLEVBQUUsQ0FDM0MsQ0FBQSxZQUFZLGFBQVosWUFBWSx1QkFBWixZQUFZLENBQUUsS0FBSyxNQUFLLGtCQUFrQixDQUFDLEtBQUssQ0FBQztBQUVyRDs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLHlCQUF5QixHQUFHLGNBQWMsQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztBQXVCbkUsTUFBTSxPQUFPLHNCQUFzQjtJQUsvQixZQUNvQyxRQUFpQixFQUV4QyxxQkFBMEMsRUFFbEMsYUFBOEMsRUFDN0IsVUFBbUIsRUFDckIsWUFBbUIsRUFDQyxRQUEwQixFQUNsQyxHQUFzQixFQUMvQixHQUFhO1FBVGhCLGFBQVEsR0FBUixRQUFRLENBQVM7UUFFeEMsMEJBQXFCLEdBQXJCLHFCQUFxQixDQUFxQjtRQUVsQyxrQkFBYSxHQUFiLGFBQWEsQ0FBaUM7UUFDN0IsZUFBVSxHQUFWLFVBQVUsQ0FBUztRQUNyQixpQkFBWSxHQUFaLFlBQVksQ0FBTztRQUNDLGFBQVEsR0FBUixRQUFRLENBQWtCO1FBQ2xDLFFBQUcsR0FBSCxHQUFHLENBQW1CO1FBQy9CLFFBQUcsR0FBSCxHQUFHLENBQVU7UUFacEQsWUFBTyxHQUFpQixFQUFFLENBQUM7SUFheEIsQ0FBQztJQUVKLFFBQVE7UUFDSixtRkFBbUY7UUFDbkYsd0VBQXdFO1FBQ3hFLGFBQWEsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDO2FBQzVCLElBQUksQ0FDRCxHQUFHLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FDTCxFQUFtQjthQUNmLE1BQU0sQ0FBQyxHQUFHLEdBQUcsQ0FBQzthQUNkLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxTQUFTLEdBQUcsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUNqRCxFQUNELFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQzNCO2FBQ0EsU0FBUyxDQUFDLE9BQU8sQ0FBQyxFQUFFO1lBQ2pCLElBQUksQ0FBQyxPQUFPLEdBQUcsT0FBTyxDQUFDO1lBQ3ZCLElBQUksQ0FBQyxHQUFHLENBQUMsWUFBWSxFQUFFLENBQUM7WUFFeEIsSUFBSSxDQUFDLEdBQUcsQ0FBQyxlQUFlLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FDckMsbUJBQW1CLEVBQ25CLENBQUMsQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUNuQixDQUFDO1FBQ04sQ0FBQyxDQUFDLENBQUM7SUFDWCxDQUFDO0lBRUQsU0FBUyxDQUFDLE9BQXFCLEVBQUUsb0JBQTZCO1FBQzFELElBQUksQ0FBQyxvQkFBb0IsRUFBRTtZQUN2QixPQUFPO1NBQ1Y7UUFFRCxNQUFNLENBQUMsSUFBSSxDQUFDLEdBQUcsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBRWpDLElBQUksQ0FBQyxJQUFJLEVBQUU7WUFDUCxPQUFPO1NBQ1Y7UUFFRCxJQUFJLE9BQU8sQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO1lBQ3BCLElBQUksQ0FBQyxVQUFVLENBQUMsU0FBUyxDQUFDLGtCQUFrQixFQUFFLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQztTQUMvRTtRQUVELElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDOUIsQ0FBQztJQUVELFFBQVEsQ0FDSixFQUFDLFlBQVksRUFBa0IsRUFDL0IsV0FBb0IsRUFDcEIsb0JBQTZCO1FBRTdCLElBQUksQ0FBQyxvQkFBb0IsSUFBSSxZQUFZLEtBQUssZ0JBQWdCLEVBQUU7WUFDNUQsT0FBTztTQUNWO1FBRUQsSUFBSSxXQUFXLEVBQUU7WUFDYixJQUFJLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsWUFBWSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUM7U0FDL0U7YUFBTSxJQUFJLGtCQUFrQixDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLEVBQUU7WUFDbEQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLEVBQUUsQ0FBQztTQUMxQjtJQUNMLENBQUM7O29IQXpFUSxzQkFBc0Isa0JBTW5CLGFBQWEsYUFDYix5QkFBeUIsYUFFekIsV0FBVyxhQUVYLE9BQU8sYUFDUCxLQUFLLGFBQ0csaUJBQWlCLHlCQUN6QixpQkFBaUIsYUFDakIsUUFBUTt3R0FmWCxzQkFBc0IsMENBZHBCLENBQUMsaUJBQWlCLENBQUMsMEJDdENsQywrdkJBd0JBLHNyRERlZ0I7UUFDUixPQUFPLENBQUMsTUFBTSxFQUFFO1lBQ1osVUFBVSxDQUFDLFFBQVEsRUFBRTtnQkFDakIsS0FBSyxDQUFDLEVBQUMsUUFBUSxFQUFFLE1BQU0sRUFBQyxDQUFDO2dCQUN6QixLQUFLLENBQUMsWUFBWSxFQUFFLENBQUMsWUFBWSxFQUFFLENBQUMsRUFBRSxFQUFDLFFBQVEsRUFBRSxJQUFJLEVBQUMsQ0FBQzthQUMxRCxDQUFDO1lBQ0YsVUFBVSxDQUFDLFFBQVEsRUFBRTtnQkFDakIsS0FBSyxDQUFDLEVBQUMsUUFBUSxFQUFFLE1BQU0sRUFBQyxDQUFDO2dCQUN6QixLQUFLLENBQUMsWUFBWSxFQUFFLENBQUMsWUFBWSxFQUFFLENBQUMsRUFBRSxFQUFDLFFBQVEsRUFBRSxJQUFJLEVBQUMsQ0FBQzthQUMxRCxDQUFDO1NBQ0wsQ0FBQztLQUNMOzRGQUVRLHNCQUFzQjtrQkFyQmxDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLGlCQUFpQjtvQkFDM0IsV0FBVyxFQUFFLDZCQUE2QjtvQkFDMUMsU0FBUyxFQUFFLENBQUMsMEJBQTBCLENBQUM7b0JBQ3ZDLG1EQUFtRDtvQkFDbkQscUZBQXFGO29CQUNyRixlQUFlLEVBQUUsdUJBQXVCLENBQUMsT0FBTztvQkFDaEQsU0FBUyxFQUFFLENBQUMsaUJBQWlCLENBQUM7b0JBQzlCLFVBQVUsRUFBRTt3QkFDUixPQUFPLENBQUMsTUFBTSxFQUFFOzRCQUNaLFVBQVUsQ0FBQyxRQUFRLEVBQUU7Z0NBQ2pCLEtBQUssQ0FBQyxFQUFDLFFBQVEsRUFBRSxNQUFNLEVBQUMsQ0FBQztnQ0FDekIsS0FBSyxDQUFDLFlBQVksRUFBRSxDQUFDLFlBQVksRUFBRSxDQUFDLEVBQUUsRUFBQyxRQUFRLEVBQUUsSUFBSSxFQUFDLENBQUM7NkJBQzFELENBQUM7NEJBQ0YsVUFBVSxDQUFDLFFBQVEsRUFBRTtnQ0FDakIsS0FBSyxDQUFDLEVBQUMsUUFBUSxFQUFFLE1BQU0sRUFBQyxDQUFDO2dDQUN6QixLQUFLLENBQUMsWUFBWSxFQUFFLENBQUMsWUFBWSxFQUFFLENBQUMsRUFBRSxFQUFDLFFBQVEsRUFBRSxJQUFJLEVBQUMsQ0FBQzs2QkFDMUQsQ0FBQzt5QkFDTCxDQUFDO3FCQUNMO2lCQUNKOzswQkFPUSxNQUFNOzJCQUFDLGFBQWE7OzBCQUNwQixNQUFNOzJCQUFDLHlCQUF5Qjs4QkFHRCxLQUFLOzBCQURwQyxNQUFNOzJCQUFDLFdBQVc7OEJBRTJCLE9BQU87MEJBQXBELE1BQU07MkJBQUMsT0FBTzs7MEJBQ2QsTUFBTTsyQkFBQyxLQUFLOzswQkFDWixJQUFJOzswQkFBSSxNQUFNOzJCQUFDLGlCQUFpQjs7MEJBQ2hDLE1BQU07MkJBQUMsaUJBQWlCOzhCQUNlLFFBQVE7MEJBQS9DLE1BQU07MkJBQUMsUUFBUSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7YW5pbWF0ZUNoaWxkLCBxdWVyeSwgc3R5bGUsIHRyYW5zaXRpb24sIHRyaWdnZXJ9IGZyb20gJ0Bhbmd1bGFyL2FuaW1hdGlvbnMnO1xuaW1wb3J0IHtET0NVTUVOVH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7XG4gICAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gICAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICAgQ29tcG9uZW50LFxuICAgIEluamVjdCxcbiAgICBPbkluaXQsXG4gICAgU2VsZixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1RpdGxlfSBmcm9tICdAYW5ndWxhci9wbGF0Zm9ybS1icm93c2VyJztcbmltcG9ydCB7SElTVE9SWX0gZnJvbSAnQG5nLXdlYi1hcGlzL2NvbW1vbic7XG5pbXBvcnQge1R1aURlc3Ryb3lTZXJ2aWNlfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3NlcnZpY2VzJztcbmltcG9ydCB7VFVJX0RJQUxPR1MsIFRVSV9JU19NT0JJTEV9IGZyb20gJ0B0YWlnYS11aS9jZGsvdG9rZW5zJztcbmltcG9ydCB7VHVpRGlhbG9nfSBmcm9tICdAdGFpZ2EtdWkvY2RrL3R5cGVzJztcbmltcG9ydCB7dHVpQ3JlYXRlVG9rZW59IGZyb20gJ0B0YWlnYS11aS9jZGsvdXRpbHMnO1xuaW1wb3J0IHtjb21iaW5lTGF0ZXN0LCBPYnNlcnZhYmxlLCBvZn0gZnJvbSAncnhqcyc7XG5pbXBvcnQge21hcCwgdGFrZVVudGlsfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbmNvbnN0IEZBS0VfSElTVE9SWV9TVEFURSA9IHtsYWJlbDogJ2lnbm9yZU1lJ30gYXMgY29uc3Q7XG5cbmNvbnN0IGlzRmFrZUhpc3RvcnlTdGF0ZSA9IChcbiAgICBoaXN0b3J5U3RhdGU6IFJlY29yZDxzdHJpbmcsIHVua25vd24+LFxuKTogaGlzdG9yeVN0YXRlIGlzIHR5cGVvZiBGQUtFX0hJU1RPUllfU1RBVEUgPT5cbiAgICBoaXN0b3J5U3RhdGU/LmxhYmVsID09PSBGQUtFX0hJU1RPUllfU1RBVEUubGFiZWw7XG5cbi8qKlxuICogSXMgY2xvc2luZyBkaWFsb2cgb24gYnJvd3NlciBiYWNrd2FyZCBuYXZpZ2F0aW9uIGVuYWJsZWRcbiAqL1xuZXhwb3J0IGNvbnN0IFRVSV9ESUFMT0dfQ0xPU0VTX09OX0JBQ0sgPSB0dWlDcmVhdGVUb2tlbihvZihmYWxzZSkpO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3R1aS1kaWFsb2ctaG9zdCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2RpYWxvZy1ob3N0LnRlbXBsYXRlLmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2RpYWxvZy1ob3N0LnN0eWxlLmxlc3MnXSxcbiAgICAvLyBTbyB0aGF0IHdlIGRvIG5vdCBmb3JjZSBPblB1c2ggb24gY3VzdG9tIGRpYWxvZ3NcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L3ByZWZlci1vbi1wdXNoLWNvbXBvbmVudC1jaGFuZ2UtZGV0ZWN0aW9uXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5EZWZhdWx0LFxuICAgIHByb3ZpZGVyczogW1R1aURlc3Ryb3lTZXJ2aWNlXSxcbiAgICBhbmltYXRpb25zOiBbXG4gICAgICAgIHRyaWdnZXIoJ2hvc3QnLCBbXG4gICAgICAgICAgICB0cmFuc2l0aW9uKCc6ZW50ZXInLCBbXG4gICAgICAgICAgICAgICAgc3R5bGUoe292ZXJmbG93OiAnY2xpcCd9KSxcbiAgICAgICAgICAgICAgICBxdWVyeSgnOnNjb3BlID4gKicsIFthbmltYXRlQ2hpbGQoKV0sIHtvcHRpb25hbDogdHJ1ZX0pLFxuICAgICAgICAgICAgXSksXG4gICAgICAgICAgICB0cmFuc2l0aW9uKCc6bGVhdmUnLCBbXG4gICAgICAgICAgICAgICAgc3R5bGUoe292ZXJmbG93OiAnY2xpcCd9KSxcbiAgICAgICAgICAgICAgICBxdWVyeSgnOnNjb3BlID4gKicsIFthbmltYXRlQ2hpbGQoKV0sIHtvcHRpb25hbDogdHJ1ZX0pLFxuICAgICAgICAgICAgXSksXG4gICAgICAgIF0pLFxuICAgIF0sXG59KVxuZXhwb3J0IGNsYXNzIFR1aURpYWxvZ0hvc3RDb21wb25lbnQ8VCBleHRlbmRzIFR1aURpYWxvZzx1bmtub3duLCB1bmtub3duPj5cbiAgICBpbXBsZW1lbnRzIE9uSW5pdFxue1xuICAgIGRpYWxvZ3M6IHJlYWRvbmx5IFRbXSA9IFtdO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIEBJbmplY3QoVFVJX0lTX01PQklMRSkgcmVhZG9ubHkgaXNNb2JpbGU6IGJvb2xlYW4sXG4gICAgICAgIEBJbmplY3QoVFVJX0RJQUxPR19DTE9TRVNfT05fQkFDSylcbiAgICAgICAgcmVhZG9ubHkgaXNEaWFsb2dDbG9zZXNPbkJhY2skOiBPYnNlcnZhYmxlPGJvb2xlYW4+LFxuICAgICAgICBASW5qZWN0KFRVSV9ESUFMT0dTKVxuICAgICAgICBwcml2YXRlIHJlYWRvbmx5IGRpYWxvZ3NCeVR5cGU6IEFycmF5PE9ic2VydmFibGU8cmVhZG9ubHkgVFtdPj4sXG4gICAgICAgIEBJbmplY3QoSElTVE9SWSkgcHJpdmF0ZSByZWFkb25seSBoaXN0b3J5UmVmOiBIaXN0b3J5LFxuICAgICAgICBASW5qZWN0KFRpdGxlKSBwcml2YXRlIHJlYWRvbmx5IHRpdGxlU2VydmljZTogVGl0bGUsXG4gICAgICAgIEBTZWxmKCkgQEluamVjdChUdWlEZXN0cm95U2VydmljZSkgcHJpdmF0ZSByZWFkb25seSBkZXN0cm95JDogT2JzZXJ2YWJsZTx2b2lkPixcbiAgICAgICAgQEluamVjdChDaGFuZ2VEZXRlY3RvclJlZikgcHJpdmF0ZSByZWFkb25seSBjZHI6IENoYW5nZURldGVjdG9yUmVmLFxuICAgICAgICBASW5qZWN0KERPQ1VNRU5UKSBwcml2YXRlIHJlYWRvbmx5IGRvYzogRG9jdW1lbnQsXG4gICAgKSB7fVxuXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIC8vIER1ZSB0byB0aGlzIHZpZXcgYmVpbmcgcGFyYWxsZWwgdG8gYXBwIGNvbnRlbnQsIGBtYXJrRm9yQ2hlY2tgIGZyb20gYGFzeW5jYCBwaXBlXG4gICAgICAgIC8vIGNhbiBoYXBwZW4gYWZ0ZXIgdmlldyB3YXMgY2hlY2tlZCwgc28gY2FsbGluZyBgZGV0ZWN0Q2hhbmdlc2AgaW5zdGVhZFxuICAgICAgICBjb21iaW5lTGF0ZXN0KHRoaXMuZGlhbG9nc0J5VHlwZSlcbiAgICAgICAgICAgIC5waXBlKFxuICAgICAgICAgICAgICAgIG1hcChhcnIgPT5cbiAgICAgICAgICAgICAgICAgICAgKFtdIGFzIHJlYWRvbmx5IFRbXSlcbiAgICAgICAgICAgICAgICAgICAgICAgIC5jb25jYXQoLi4uYXJyKVxuICAgICAgICAgICAgICAgICAgICAgICAgLnNvcnQoKGEsIGIpID0+IGEuY3JlYXRlZEF0IC0gYi5jcmVhdGVkQXQpLFxuICAgICAgICAgICAgICAgICksXG4gICAgICAgICAgICAgICAgdGFrZVVudGlsKHRoaXMuZGVzdHJveSQpLFxuICAgICAgICAgICAgKVxuICAgICAgICAgICAgLnN1YnNjcmliZShkaWFsb2dzID0+IHtcbiAgICAgICAgICAgICAgICB0aGlzLmRpYWxvZ3MgPSBkaWFsb2dzO1xuICAgICAgICAgICAgICAgIHRoaXMuY2RyLm1hcmtGb3JDaGVjaygpO1xuXG4gICAgICAgICAgICAgICAgdGhpcy5kb2MuZG9jdW1lbnRFbGVtZW50LmNsYXNzTGlzdC50b2dnbGUoXG4gICAgICAgICAgICAgICAgICAgICd0LW92ZXJzY3JvbGwtbm9uZScsXG4gICAgICAgICAgICAgICAgICAgICEhZGlhbG9ncy5sZW5ndGgsXG4gICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgIH0pO1xuICAgIH1cblxuICAgIGNsb3NlTGFzdChkaWFsb2dzOiByZWFkb25seSBUW10sIGlzRGlhbG9nQ2xvc2VzT25CYWNrOiBib29sZWFuKTogdm9pZCB7XG4gICAgICAgIGlmICghaXNEaWFsb2dDbG9zZXNPbkJhY2spIHtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuXG4gICAgICAgIGNvbnN0IFtsYXN0XSA9IGRpYWxvZ3Muc2xpY2UoLTEpO1xuXG4gICAgICAgIGlmICghbGFzdCkge1xuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKGRpYWxvZ3MubGVuZ3RoID4gMSkge1xuICAgICAgICAgICAgdGhpcy5oaXN0b3J5UmVmLnB1c2hTdGF0ZShGQUtFX0hJU1RPUllfU1RBVEUsIHRoaXMudGl0bGVTZXJ2aWNlLmdldFRpdGxlKCkpO1xuICAgICAgICB9XG5cbiAgICAgICAgbGFzdC4kaW1wbGljaXQuY29tcGxldGUoKTtcbiAgICB9XG5cbiAgICBvbkRpYWxvZyhcbiAgICAgICAge3Byb3BlcnR5TmFtZX06IFRyYW5zaXRpb25FdmVudCxcbiAgICAgICAgcG9wdXBPcGVuZWQ6IGJvb2xlYW4sXG4gICAgICAgIGlzRGlhbG9nQ2xvc2VzT25CYWNrOiBib29sZWFuLFxuICAgICk6IHZvaWQge1xuICAgICAgICBpZiAoIWlzRGlhbG9nQ2xvc2VzT25CYWNrIHx8IHByb3BlcnR5TmFtZSAhPT0gJ2xldHRlci1zcGFjaW5nJykge1xuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKHBvcHVwT3BlbmVkKSB7XG4gICAgICAgICAgICB0aGlzLmhpc3RvcnlSZWYucHVzaFN0YXRlKEZBS0VfSElTVE9SWV9TVEFURSwgdGhpcy50aXRsZVNlcnZpY2UuZ2V0VGl0bGUoKSk7XG4gICAgICAgIH0gZWxzZSBpZiAoaXNGYWtlSGlzdG9yeVN0YXRlKHRoaXMuaGlzdG9yeVJlZi5zdGF0ZSkpIHtcbiAgICAgICAgICAgIHRoaXMuaGlzdG9yeVJlZi5iYWNrKCk7XG4gICAgICAgIH1cbiAgICB9XG59XG4iLCI8c2VjdGlvblxuICAgICpuZ0Zvcj1cImxldCBpdGVtIG9mIGRpYWxvZ3NcIlxuICAgIGFyaWEtbW9kYWw9XCJ0cnVlXCJcbiAgICByb2xlPVwiZGlhbG9nXCJcbiAgICB0dWlGb2N1c1RyYXBcbiAgICB0dWlPdmVyc2Nyb2xsPVwiYWxsXCJcbiAgICB0dWlTY3JvbGxSZWZcbiAgICBjbGFzcz1cInQtZGlhbG9nXCJcbiAgICBAaG9zdFxuICAgIFthdHRyLmFyaWEtbGFiZWxsZWRieV09XCJpdGVtLmlkXCJcbj5cbiAgICA8bmctY29udGFpbmVyICpwb2x5bW9ycGhldXNPdXRsZXQ9XCJpdGVtLmNvbXBvbmVudDsgY29udGV4dDogaXRlbVwiPjwvbmctY29udGFpbmVyPlxuICAgIDx0dWktc2Nyb2xsLWNvbnRyb2xzXG4gICAgICAgICpuZ0lmPVwiIWlzTW9iaWxlXCJcbiAgICAgICAgY2xhc3M9XCJ0LXNjcm9sbGJhcnNcIlxuICAgID48L3R1aS1zY3JvbGwtY29udHJvbHM+XG48L3NlY3Rpb24+XG48ZGl2XG4gICAgKnR1aUxldD1cImlzRGlhbG9nQ2xvc2VzT25CYWNrJCB8IGFzeW5jIGFzIGlzRGlhbG9nQ2xvc2VzT25CYWNrXCJcbiAgICBjbGFzcz1cInQtb3ZlcmxheVwiXG4gICAgW2NsYXNzLnQtb3ZlcmxheV92aXNpYmxlXT1cImRpYWxvZ3MubGVuZ3RoXCJcbiAgICAodHJhbnNpdGlvbmVuZCk9XCJvbkRpYWxvZygkZXZlbnQsICEhZGlhbG9ncy5sZW5ndGgsICEhaXNEaWFsb2dDbG9zZXNPbkJhY2spXCJcbiAgICAod2luZG93OnBvcHN0YXRlKT1cImNsb3NlTGFzdChkaWFsb2dzLCAhIWlzRGlhbG9nQ2xvc2VzT25CYWNrKVwiXG4+PC9kaXY+XG4iXX0=
|
@@ -1,40 +0,0 @@
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
2
|
-
import { NgModule } from '@angular/core';
|
3
|
-
import { TuiScrollControlsModule } from '@taiga-ui/cdk/components/scroll-controls';
|
4
|
-
import { TuiFocusTrapModule, TuiLetModule, TuiOverscrollModule, } from '@taiga-ui/cdk/directives';
|
5
|
-
import { PolymorpheusModule } from '@tinkoff/ng-polymorpheus';
|
6
|
-
import { TuiDialogHostComponent } from './dialog-host.component';
|
7
|
-
import * as i0 from "@angular/core";
|
8
|
-
export class TuiDialogHostModule {
|
9
|
-
}
|
10
|
-
TuiDialogHostModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDialogHostModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
11
|
-
TuiDialogHostModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDialogHostModule, declarations: [TuiDialogHostComponent], imports: [CommonModule,
|
12
|
-
PolymorpheusModule,
|
13
|
-
TuiOverscrollModule,
|
14
|
-
TuiFocusTrapModule,
|
15
|
-
TuiLetModule,
|
16
|
-
TuiScrollControlsModule], exports: [TuiDialogHostComponent] });
|
17
|
-
TuiDialogHostModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDialogHostModule, imports: [[
|
18
|
-
CommonModule,
|
19
|
-
PolymorpheusModule,
|
20
|
-
TuiOverscrollModule,
|
21
|
-
TuiFocusTrapModule,
|
22
|
-
TuiLetModule,
|
23
|
-
TuiScrollControlsModule,
|
24
|
-
]] });
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDialogHostModule, decorators: [{
|
26
|
-
type: NgModule,
|
27
|
-
args: [{
|
28
|
-
imports: [
|
29
|
-
CommonModule,
|
30
|
-
PolymorpheusModule,
|
31
|
-
TuiOverscrollModule,
|
32
|
-
TuiFocusTrapModule,
|
33
|
-
TuiLetModule,
|
34
|
-
TuiScrollControlsModule,
|
35
|
-
],
|
36
|
-
declarations: [TuiDialogHostComponent],
|
37
|
-
exports: [TuiDialogHostComponent],
|
38
|
-
}]
|
39
|
-
}] });
|
40
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGlhbG9nLWhvc3QubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2NvbXBvbmVudHMvZGlhbG9nLWhvc3QvZGlhbG9nLWhvc3QubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyx1QkFBdUIsRUFBQyxNQUFNLDBDQUEwQyxDQUFDO0FBQ2pGLE9BQU8sRUFDSCxrQkFBa0IsRUFDbEIsWUFBWSxFQUNaLG1CQUFtQixHQUN0QixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sRUFBQyxrQkFBa0IsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBRTVELE9BQU8sRUFBQyxzQkFBc0IsRUFBQyxNQUFNLHlCQUF5QixDQUFDOztBQWMvRCxNQUFNLE9BQU8sbUJBQW1COztpSEFBbkIsbUJBQW1CO2tIQUFuQixtQkFBbUIsaUJBSGIsc0JBQXNCLGFBUGpDLFlBQVk7UUFDWixrQkFBa0I7UUFDbEIsbUJBQW1CO1FBQ25CLGtCQUFrQjtRQUNsQixZQUFZO1FBQ1osdUJBQXVCLGFBR2pCLHNCQUFzQjtrSEFFdkIsbUJBQW1CLFlBWG5CO1lBQ0wsWUFBWTtZQUNaLGtCQUFrQjtZQUNsQixtQkFBbUI7WUFDbkIsa0JBQWtCO1lBQ2xCLFlBQVk7WUFDWix1QkFBdUI7U0FDMUI7NEZBSVEsbUJBQW1CO2tCQVovQixRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRTt3QkFDTCxZQUFZO3dCQUNaLGtCQUFrQjt3QkFDbEIsbUJBQW1CO3dCQUNuQixrQkFBa0I7d0JBQ2xCLFlBQVk7d0JBQ1osdUJBQXVCO3FCQUMxQjtvQkFDRCxZQUFZLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztvQkFDdEMsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7aUJBQ3BDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge05nTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VHVpU2Nyb2xsQ29udHJvbHNNb2R1bGV9IGZyb20gJ0B0YWlnYS11aS9jZGsvY29tcG9uZW50cy9zY3JvbGwtY29udHJvbHMnO1xuaW1wb3J0IHtcbiAgICBUdWlGb2N1c1RyYXBNb2R1bGUsXG4gICAgVHVpTGV0TW9kdWxlLFxuICAgIFR1aU92ZXJzY3JvbGxNb2R1bGUsXG59IGZyb20gJ0B0YWlnYS11aS9jZGsvZGlyZWN0aXZlcyc7XG5pbXBvcnQge1BvbHltb3JwaGV1c01vZHVsZX0gZnJvbSAnQHRpbmtvZmYvbmctcG9seW1vcnBoZXVzJztcblxuaW1wb3J0IHtUdWlEaWFsb2dIb3N0Q29tcG9uZW50fSBmcm9tICcuL2RpYWxvZy1ob3N0LmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIFBvbHltb3JwaGV1c01vZHVsZSxcbiAgICAgICAgVHVpT3ZlcnNjcm9sbE1vZHVsZSxcbiAgICAgICAgVHVpRm9jdXNUcmFwTW9kdWxlLFxuICAgICAgICBUdWlMZXRNb2R1bGUsXG4gICAgICAgIFR1aVNjcm9sbENvbnRyb2xzTW9kdWxlLFxuICAgIF0sXG4gICAgZGVjbGFyYXRpb25zOiBbVHVpRGlhbG9nSG9zdENvbXBvbmVudF0sXG4gICAgZXhwb3J0czogW1R1aURpYWxvZ0hvc3RDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlEaWFsb2dIb3N0TW9kdWxlIHt9XG4iXX0=
|
@@ -1,30 +0,0 @@
|
|
1
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
2
|
-
import { AbstractTuiPortalHostComponent, AbstractTuiPortalService, } from '@taiga-ui/cdk/abstract';
|
3
|
-
import { TuiDropdownPortalService } from './dropdown-portal.service';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
/**
|
6
|
-
* Host element for dynamically created portals, for example using {@link TuiDropdownDirective}.
|
7
|
-
*/
|
8
|
-
export class TuiDropdownHostComponent extends AbstractTuiPortalHostComponent {
|
9
|
-
}
|
10
|
-
TuiDropdownHostComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownHostComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
11
|
-
TuiDropdownHostComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TuiDropdownHostComponent, selector: "tui-dropdown-host", providers: [
|
12
|
-
{ provide: AbstractTuiPortalService, useExisting: TuiDropdownPortalService },
|
13
|
-
// TODO: Remove in 4.0
|
14
|
-
{ provide: AbstractTuiPortalHostComponent, useExisting: TuiDropdownHostComponent },
|
15
|
-
], usesInheritance: true, ngImport: i0, template: "<ng-content></ng-content>\n<ng-container #viewContainer></ng-container>\n", styles: [":host{position:relative;z-index:0;display:block;height:100%}:host:before{content:\"\";display:block;overflow:hidden}.t-position-fixed-offset{position:fixed;left:0;top:0;pointer-events:none;visibility:hidden;width:100%;height:100%}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownHostComponent, decorators: [{
|
17
|
-
type: Component,
|
18
|
-
args: [{
|
19
|
-
selector: 'tui-dropdown-host',
|
20
|
-
templateUrl: './dropdown-host.template.html',
|
21
|
-
styleUrls: ['./dropdown-host.style.less'],
|
22
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
23
|
-
providers: [
|
24
|
-
{ provide: AbstractTuiPortalService, useExisting: TuiDropdownPortalService },
|
25
|
-
// TODO: Remove in 4.0
|
26
|
-
{ provide: AbstractTuiPortalHostComponent, useExisting: TuiDropdownHostComponent },
|
27
|
-
],
|
28
|
-
}]
|
29
|
-
}] });
|
30
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24taG9zdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvY29tcG9uZW50cy9kcm9wZG93bi1ob3N0L2Ryb3Bkb3duLWhvc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2NvbXBvbmVudHMvZHJvcGRvd24taG9zdC9kcm9wZG93bi1ob3N0LnRlbXBsYXRlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLHVCQUF1QixFQUFFLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNqRSxPQUFPLEVBQ0gsOEJBQThCLEVBQzlCLHdCQUF3QixHQUMzQixNQUFNLHdCQUF3QixDQUFDO0FBRWhDLE9BQU8sRUFBQyx3QkFBd0IsRUFBQyxNQUFNLDJCQUEyQixDQUFDOztBQUVuRTs7R0FFRztBQVlILE1BQU0sT0FBTyx3QkFBeUIsU0FBUSw4QkFBOEI7O3NIQUEvRCx3QkFBd0I7MEdBQXhCLHdCQUF3Qiw0Q0FOdEI7UUFDUCxFQUFDLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxXQUFXLEVBQUUsd0JBQXdCLEVBQUM7UUFDMUUsc0JBQXNCO1FBQ3RCLEVBQUMsT0FBTyxFQUFFLDhCQUE4QixFQUFFLFdBQVcsRUFBRSx3QkFBd0IsRUFBQztLQUNuRixpRENwQkwsMkVBRUE7NEZEb0JhLHdCQUF3QjtrQkFYcEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsbUJBQW1CO29CQUM3QixXQUFXLEVBQUUsK0JBQStCO29CQUM1QyxTQUFTLEVBQUUsQ0FBQyw0QkFBNEIsQ0FBQztvQkFDekMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLFNBQVMsRUFBRTt3QkFDUCxFQUFDLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxXQUFXLEVBQUUsd0JBQXdCLEVBQUM7d0JBQzFFLHNCQUFzQjt3QkFDdEIsRUFBQyxPQUFPLEVBQUUsOEJBQThCLEVBQUUsV0FBVywwQkFBMEIsRUFBQztxQkFDbkY7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtcbiAgICBBYnN0cmFjdFR1aVBvcnRhbEhvc3RDb21wb25lbnQsXG4gICAgQWJzdHJhY3RUdWlQb3J0YWxTZXJ2aWNlLFxufSBmcm9tICdAdGFpZ2EtdWkvY2RrL2Fic3RyYWN0JztcblxuaW1wb3J0IHtUdWlEcm9wZG93blBvcnRhbFNlcnZpY2V9IGZyb20gJy4vZHJvcGRvd24tcG9ydGFsLnNlcnZpY2UnO1xuXG4vKipcbiAqIEhvc3QgZWxlbWVudCBmb3IgZHluYW1pY2FsbHkgY3JlYXRlZCBwb3J0YWxzLCBmb3IgZXhhbXBsZSB1c2luZyB7QGxpbmsgVHVpRHJvcGRvd25EaXJlY3RpdmV9LlxuICovXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3R1aS1kcm9wZG93bi1ob3N0JyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vZHJvcGRvd24taG9zdC50ZW1wbGF0ZS5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9kcm9wZG93bi1ob3N0LnN0eWxlLmxlc3MnXSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAge3Byb3ZpZGU6IEFic3RyYWN0VHVpUG9ydGFsU2VydmljZSwgdXNlRXhpc3Rpbmc6IFR1aURyb3Bkb3duUG9ydGFsU2VydmljZX0sXG4gICAgICAgIC8vIFRPRE86IFJlbW92ZSBpbiA0LjBcbiAgICAgICAge3Byb3ZpZGU6IEFic3RyYWN0VHVpUG9ydGFsSG9zdENvbXBvbmVudCwgdXNlRXhpc3Rpbmc6IFR1aURyb3Bkb3duSG9zdENvbXBvbmVudH0sXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpRHJvcGRvd25Ib3N0Q29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RUdWlQb3J0YWxIb3N0Q29tcG9uZW50IHt9XG4iLCI8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG48bmctY29udGFpbmVyICN2aWV3Q29udGFpbmVyPjwvbmctY29udGFpbmVyPlxuIl19
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { NgModule } from '@angular/core';
|
2
|
-
import { TuiDropdownHostComponent } from './dropdown-host.component';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class TuiDropdownHostModule {
|
5
|
-
}
|
6
|
-
TuiDropdownHostModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownHostModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
7
|
-
TuiDropdownHostModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownHostModule, declarations: [TuiDropdownHostComponent], exports: [TuiDropdownHostComponent] });
|
8
|
-
TuiDropdownHostModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownHostModule });
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownHostModule, decorators: [{
|
10
|
-
type: NgModule,
|
11
|
-
args: [{
|
12
|
-
declarations: [TuiDropdownHostComponent],
|
13
|
-
exports: [TuiDropdownHostComponent],
|
14
|
-
}]
|
15
|
-
}] });
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24taG9zdC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvY29tcG9uZW50cy9kcm9wZG93bi1ob3N0L2Ryb3Bkb3duLWhvc3QubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLHdCQUF3QixFQUFDLE1BQU0sMkJBQTJCLENBQUM7O0FBTW5FLE1BQU0sT0FBTyxxQkFBcUI7O21IQUFyQixxQkFBcUI7b0hBQXJCLHFCQUFxQixpQkFIZix3QkFBd0IsYUFDN0Isd0JBQXdCO29IQUV6QixxQkFBcUI7NEZBQXJCLHFCQUFxQjtrQkFKakMsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyx3QkFBd0IsQ0FBQztvQkFDeEMsT0FBTyxFQUFFLENBQUMsd0JBQXdCLENBQUM7aUJBQ3RDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7VHVpRHJvcGRvd25Ib3N0Q29tcG9uZW50fSBmcm9tICcuL2Ryb3Bkb3duLWhvc3QuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtUdWlEcm9wZG93bkhvc3RDb21wb25lbnRdLFxuICAgIGV4cG9ydHM6IFtUdWlEcm9wZG93bkhvc3RDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlEcm9wZG93bkhvc3RNb2R1bGUge31cbiJdfQ==
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { Injectable } from '@angular/core';
|
2
|
-
import { AbstractTuiPortalService } from '@taiga-ui/cdk/abstract';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
/**
|
5
|
-
* Service for displaying dropdown portals
|
6
|
-
*/
|
7
|
-
export class TuiDropdownPortalService extends AbstractTuiPortalService {
|
8
|
-
}
|
9
|
-
TuiDropdownPortalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownPortalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
10
|
-
TuiDropdownPortalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownPortalService, providedIn: `root` });
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiDropdownPortalService, decorators: [{
|
12
|
-
type: Injectable,
|
13
|
-
args: [{
|
14
|
-
providedIn: `root`,
|
15
|
-
}]
|
16
|
-
}] });
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tcG9ydGFsLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvY29tcG9uZW50cy9kcm9wZG93bi1ob3N0L2Ryb3Bkb3duLXBvcnRhbC5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFDLHdCQUF3QixFQUFDLE1BQU0sd0JBQXdCLENBQUM7O0FBRWhFOztHQUVHO0FBSUgsTUFBTSxPQUFPLHdCQUF5QixTQUFRLHdCQUF3Qjs7c0hBQXpELHdCQUF3QjswSEFBeEIsd0JBQXdCLGNBRnJCLE1BQU07NEZBRVQsd0JBQXdCO2tCQUhwQyxVQUFVO21CQUFDO29CQUNSLFVBQVUsRUFBRSxNQUFNO2lCQUNyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7SW5qZWN0YWJsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0VHVpUG9ydGFsU2VydmljZX0gZnJvbSAnQHRhaWdhLXVpL2Nkay9hYnN0cmFjdCc7XG5cbi8qKlxuICogU2VydmljZSBmb3IgZGlzcGxheWluZyBkcm9wZG93biBwb3J0YWxzXG4gKi9cbkBJbmplY3RhYmxlKHtcbiAgICBwcm92aWRlZEluOiBgcm9vdGAsXG59KVxuZXhwb3J0IGNsYXNzIFR1aURyb3Bkb3duUG9ydGFsU2VydmljZSBleHRlbmRzIEFic3RyYWN0VHVpUG9ydGFsU2VydmljZSB7fVxuIl19
|
@@ -1,45 +0,0 @@
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Inject, NgZone, } from '@angular/core';
|
2
|
-
import { ANIMATION_FRAME } from '@ng-web-apis/common';
|
3
|
-
import { tuiZoneOptimized } from '@taiga-ui/cdk/observables';
|
4
|
-
import { TUI_SCROLL_REF } from '@taiga-ui/cdk/tokens';
|
5
|
-
import { distinctUntilChanged, map, startWith, throttleTime } from 'rxjs/operators';
|
6
|
-
import * as i0 from "@angular/core";
|
7
|
-
import * as i1 from "@angular/common";
|
8
|
-
import * as i2 from "./scrollbar.directive";
|
9
|
-
import * as i3 from "rxjs";
|
10
|
-
export class TuiScrollControlsComponent {
|
11
|
-
constructor(zone, scrollRef, animationFrame$) {
|
12
|
-
this.zone = zone;
|
13
|
-
this.scrollRef = scrollRef;
|
14
|
-
this.animationFrame$ = animationFrame$;
|
15
|
-
this.refresh$ = this.animationFrame$.pipe(throttleTime(300), map(() => this.scrollbars), startWith([false, false]), distinctUntilChanged((a, b) => a[0] === b[0] && a[1] === b[1]), tuiZoneOptimized(this.zone));
|
16
|
-
}
|
17
|
-
get scrollbars() {
|
18
|
-
const { clientHeight, scrollHeight, clientWidth, scrollWidth } = this.scrollRef.nativeElement;
|
19
|
-
return [
|
20
|
-
Math.ceil((clientHeight / scrollHeight) * 100) < 100,
|
21
|
-
Math.ceil((clientWidth / scrollWidth) * 100) < 100,
|
22
|
-
];
|
23
|
-
}
|
24
|
-
}
|
25
|
-
TuiScrollControlsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiScrollControlsComponent, deps: [{ token: NgZone }, { token: TUI_SCROLL_REF }, { token: ANIMATION_FRAME }], target: i0.ɵɵFactoryTarget.Component });
|
26
|
-
TuiScrollControlsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TuiScrollControlsComponent, selector: "tui-scroll-controls", ngImport: i0, template: "<ng-container *ngIf=\"refresh$ | async as bars\">\n <div\n *ngIf=\"bars[0]\"\n class=\"t-bar t-bar_vertical\"\n [class.t-bar_has-horizontal]=\"bars[1]\"\n >\n <div\n tuiScrollbar=\"vertical\"\n class=\"t-thumb\"\n ></div>\n </div>\n <div\n *ngIf=\"bars[1]\"\n class=\"t-bar t-bar_horizontal\"\n [class.t-bar_has-vertical]=\"bars[0]\"\n >\n <div\n tuiScrollbar=\"horizontal\"\n class=\"t-thumb\"\n ></div>\n </div>\n</ng-container>\n", styles: [":host{position:-webkit-sticky;position:sticky;top:0;left:0;z-index:1;min-width:calc(100% - 1px);min-height:calc(100% - 1px);max-width:calc(100% - 1px);max-height:calc(100% - 1px);float:left;-webkit-margin-end:calc(-100% + 1px);margin-inline-end:calc(-100% + 1px);pointer-events:none}.t-bar{position:absolute;right:0;bottom:0;pointer-events:auto;animation:tuiFadeIn var(--tui-duration, .3s) ease-in-out}.t-bar_vertical{top:0;width:.875rem}.t-bar_horizontal{left:0;height:.875rem}.t-bar_has-horizontal{bottom:.5rem}.t-bar_has-vertical{right:.5rem}.t-thumb{position:absolute;border-radius:6.25rem;border:.25rem solid transparent;cursor:pointer;pointer-events:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;background:currentColor;background-clip:content-box;box-sizing:border-box;transition:all var(--tui-duration, .3s) ease-in-out;transition-property:width,height,opacity;opacity:.2}.t-thumb:hover{opacity:.24}.t-thumb:active{opacity:.48}.t-bar_vertical .t-thumb{right:0;width:.75rem;min-height:1.25rem}.t-bar_vertical:hover .t-thumb,.t-bar_vertical .t-thumb:active{width:.875rem}.t-bar_horizontal .t-thumb{bottom:0;height:.75rem;min-width:1.25rem}.t-bar_horizontal:hover .t-thumb,.t-bar_horizontal .t-thumb:active{height:.875rem}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.TuiScrollbarDirective, selector: "[tuiScrollbar]", inputs: ["tuiScrollbar"] }], pipes: { "async": i1.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
27
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiScrollControlsComponent, decorators: [{
|
28
|
-
type: Component,
|
29
|
-
args: [{
|
30
|
-
selector: 'tui-scroll-controls',
|
31
|
-
templateUrl: './scroll-controls.template.html',
|
32
|
-
styleUrls: ['./scroll-controls.style.less'],
|
33
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
34
|
-
}]
|
35
|
-
}], ctorParameters: function () { return [{ type: i0.NgZone, decorators: [{
|
36
|
-
type: Inject,
|
37
|
-
args: [NgZone]
|
38
|
-
}] }, { type: i0.ElementRef, decorators: [{
|
39
|
-
type: Inject,
|
40
|
-
args: [TUI_SCROLL_REF]
|
41
|
-
}] }, { type: i3.Observable, decorators: [{
|
42
|
-
type: Inject,
|
43
|
-
args: [ANIMATION_FRAME]
|
44
|
-
}] }]; } });
|
45
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2Nyb2xsLWNvbnRyb2xzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9jb21wb25lbnRzL3Njcm9sbC1jb250cm9scy9zY3JvbGwtY29udHJvbHMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2RrL2NvbXBvbmVudHMvc2Nyb2xsLWNvbnRyb2xzL3Njcm9sbC1jb250cm9scy50ZW1wbGF0ZS5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDSCx1QkFBdUIsRUFDdkIsU0FBUyxFQUVULE1BQU0sRUFDTixNQUFNLEdBQ1QsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFDLGVBQWUsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQ3BELE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBQyxjQUFjLEVBQUMsTUFBTSxzQkFBc0IsQ0FBQztBQUVwRCxPQUFPLEVBQUMsb0JBQW9CLEVBQUUsR0FBRyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7QUFRbEYsTUFBTSxPQUFPLDBCQUEwQjtJQVNuQyxZQUNxQyxJQUFZLEVBQ0osU0FBa0MsRUFDakMsZUFBbUM7UUFGNUMsU0FBSSxHQUFKLElBQUksQ0FBUTtRQUNKLGNBQVMsR0FBVCxTQUFTLENBQXlCO1FBQ2pDLG9CQUFlLEdBQWYsZUFBZSxDQUFvQjtRQVh4RSxhQUFRLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQ3pDLFlBQVksQ0FBQyxHQUFHLENBQUMsRUFDakIsR0FBRyxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsRUFDMUIsU0FBUyxDQUFDLENBQUMsS0FBSyxFQUFFLEtBQUssQ0FBQyxDQUFDLEVBQ3pCLG9CQUFvQixDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEVBQzlELGdCQUFnQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FDOUIsQ0FBQztJQU1DLENBQUM7SUFFSixJQUFZLFVBQVU7UUFDbEIsTUFBTSxFQUFDLFlBQVksRUFBRSxZQUFZLEVBQUUsV0FBVyxFQUFFLFdBQVcsRUFBQyxHQUN4RCxJQUFJLENBQUMsU0FBUyxDQUFDLGFBQWEsQ0FBQztRQUVqQyxPQUFPO1lBQ0gsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLFlBQVksR0FBRyxZQUFZLENBQUMsR0FBRyxHQUFHLENBQUMsR0FBRyxHQUFHO1lBQ3BELElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxXQUFXLEdBQUcsV0FBVyxDQUFDLEdBQUcsR0FBRyxDQUFDLEdBQUcsR0FBRztTQUNyRCxDQUFDO0lBQ04sQ0FBQzs7d0hBdkJRLDBCQUEwQixrQkFVdkIsTUFBTSxhQUNOLGNBQWMsYUFDZCxlQUFlOzRHQVpsQiwwQkFBMEIsMkRDbkJ2QyxzakJBc0JBOzRGREhhLDBCQUEwQjtrQkFOdEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUscUJBQXFCO29CQUMvQixXQUFXLEVBQUUsaUNBQWlDO29CQUM5QyxTQUFTLEVBQUUsQ0FBQyw4QkFBOEIsQ0FBQztvQkFDM0MsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07aUJBQ2xEOzswQkFXUSxNQUFNOzJCQUFDLE1BQU07OzBCQUNiLE1BQU07MkJBQUMsY0FBYzs7MEJBQ3JCLE1BQU07MkJBQUMsZUFBZSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gICAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gICAgQ29tcG9uZW50LFxuICAgIEVsZW1lbnRSZWYsXG4gICAgSW5qZWN0LFxuICAgIE5nWm9uZSxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0FOSU1BVElPTl9GUkFNRX0gZnJvbSAnQG5nLXdlYi1hcGlzL2NvbW1vbic7XG5pbXBvcnQge3R1aVpvbmVPcHRpbWl6ZWR9IGZyb20gJ0B0YWlnYS11aS9jZGsvb2JzZXJ2YWJsZXMnO1xuaW1wb3J0IHtUVUlfU0NST0xMX1JFRn0gZnJvbSAnQHRhaWdhLXVpL2Nkay90b2tlbnMnO1xuaW1wb3J0IHtPYnNlcnZhYmxlfSBmcm9tICdyeGpzJztcbmltcG9ydCB7ZGlzdGluY3RVbnRpbENoYW5nZWQsIG1hcCwgc3RhcnRXaXRoLCB0aHJvdHRsZVRpbWV9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICd0dWktc2Nyb2xsLWNvbnRyb2xzJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vc2Nyb2xsLWNvbnRyb2xzLnRlbXBsYXRlLmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL3Njcm9sbC1jb250cm9scy5zdHlsZS5sZXNzJ10sXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFR1aVNjcm9sbENvbnRyb2xzQ29tcG9uZW50IHtcbiAgICByZWFkb25seSByZWZyZXNoJCA9IHRoaXMuYW5pbWF0aW9uRnJhbWUkLnBpcGUoXG4gICAgICAgIHRocm90dGxlVGltZSgzMDApLFxuICAgICAgICBtYXAoKCkgPT4gdGhpcy5zY3JvbGxiYXJzKSxcbiAgICAgICAgc3RhcnRXaXRoKFtmYWxzZSwgZmFsc2VdKSxcbiAgICAgICAgZGlzdGluY3RVbnRpbENoYW5nZWQoKGEsIGIpID0+IGFbMF0gPT09IGJbMF0gJiYgYVsxXSA9PT0gYlsxXSksXG4gICAgICAgIHR1aVpvbmVPcHRpbWl6ZWQodGhpcy56b25lKSxcbiAgICApO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIEBJbmplY3QoTmdab25lKSBwcml2YXRlIHJlYWRvbmx5IHpvbmU6IE5nWm9uZSxcbiAgICAgICAgQEluamVjdChUVUlfU0NST0xMX1JFRikgcHJpdmF0ZSByZWFkb25seSBzY3JvbGxSZWY6IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+LFxuICAgICAgICBASW5qZWN0KEFOSU1BVElPTl9GUkFNRSkgcHJpdmF0ZSByZWFkb25seSBhbmltYXRpb25GcmFtZSQ6IE9ic2VydmFibGU8bnVtYmVyPixcbiAgICApIHt9XG5cbiAgICBwcml2YXRlIGdldCBzY3JvbGxiYXJzKCk6IFtib29sZWFuLCBib29sZWFuXSB7XG4gICAgICAgIGNvbnN0IHtjbGllbnRIZWlnaHQsIHNjcm9sbEhlaWdodCwgY2xpZW50V2lkdGgsIHNjcm9sbFdpZHRofSA9XG4gICAgICAgICAgICB0aGlzLnNjcm9sbFJlZi5uYXRpdmVFbGVtZW50O1xuXG4gICAgICAgIHJldHVybiBbXG4gICAgICAgICAgICBNYXRoLmNlaWwoKGNsaWVudEhlaWdodCAvIHNjcm9sbEhlaWdodCkgKiAxMDApIDwgMTAwLFxuICAgICAgICAgICAgTWF0aC5jZWlsKChjbGllbnRXaWR0aCAvIHNjcm9sbFdpZHRoKSAqIDEwMCkgPCAxMDAsXG4gICAgICAgIF07XG4gICAgfVxufVxuIiwiPG5nLWNvbnRhaW5lciAqbmdJZj1cInJlZnJlc2gkIHwgYXN5bmMgYXMgYmFyc1wiPlxuICAgIDxkaXZcbiAgICAgICAgKm5nSWY9XCJiYXJzWzBdXCJcbiAgICAgICAgY2xhc3M9XCJ0LWJhciB0LWJhcl92ZXJ0aWNhbFwiXG4gICAgICAgIFtjbGFzcy50LWJhcl9oYXMtaG9yaXpvbnRhbF09XCJiYXJzWzFdXCJcbiAgICA+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICAgIHR1aVNjcm9sbGJhcj1cInZlcnRpY2FsXCJcbiAgICAgICAgICAgIGNsYXNzPVwidC10aHVtYlwiXG4gICAgICAgID48L2Rpdj5cbiAgICA8L2Rpdj5cbiAgICA8ZGl2XG4gICAgICAgICpuZ0lmPVwiYmFyc1sxXVwiXG4gICAgICAgIGNsYXNzPVwidC1iYXIgdC1iYXJfaG9yaXpvbnRhbFwiXG4gICAgICAgIFtjbGFzcy50LWJhcl9oYXMtdmVydGljYWxdPVwiYmFyc1swXVwiXG4gICAgPlxuICAgICAgICA8ZGl2XG4gICAgICAgICAgICB0dWlTY3JvbGxiYXI9XCJob3Jpem9udGFsXCJcbiAgICAgICAgICAgIGNsYXNzPVwidC10aHVtYlwiXG4gICAgICAgID48L2Rpdj5cbiAgICA8L2Rpdj5cbjwvbmctY29udGFpbmVyPlxuIl19
|
@@ -1,26 +0,0 @@
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
2
|
-
import { NgModule } from '@angular/core';
|
3
|
-
import { TuiScrollControlsComponent } from './scroll-controls.component';
|
4
|
-
import { TuiScrollRefDirective } from './scroll-ref.directive';
|
5
|
-
import { TuiScrollbarDirective } from './scrollbar.directive';
|
6
|
-
import * as i0 from "@angular/core";
|
7
|
-
export class TuiScrollControlsModule {
|
8
|
-
}
|
9
|
-
TuiScrollControlsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiScrollControlsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
10
|
-
TuiScrollControlsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiScrollControlsModule, declarations: [TuiScrollbarDirective,
|
11
|
-
TuiScrollControlsComponent,
|
12
|
-
TuiScrollRefDirective], imports: [CommonModule], exports: [TuiScrollControlsComponent, TuiScrollRefDirective] });
|
13
|
-
TuiScrollControlsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiScrollControlsModule, imports: [[CommonModule]] });
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiScrollControlsModule, decorators: [{
|
15
|
-
type: NgModule,
|
16
|
-
args: [{
|
17
|
-
imports: [CommonModule],
|
18
|
-
declarations: [
|
19
|
-
TuiScrollbarDirective,
|
20
|
-
TuiScrollControlsComponent,
|
21
|
-
TuiScrollRefDirective,
|
22
|
-
],
|
23
|
-
exports: [TuiScrollControlsComponent, TuiScrollRefDirective],
|
24
|
-
}]
|
25
|
-
}] });
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2Nyb2xsLWNvbnRyb2xzLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9jb21wb25lbnRzL3Njcm9sbC1jb250cm9scy9zY3JvbGwtY29udHJvbHMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBRXZDLE9BQU8sRUFBQywwQkFBMEIsRUFBQyxNQUFNLDZCQUE2QixDQUFDO0FBQ3ZFLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQzdELE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHVCQUF1QixDQUFDOztBQVc1RCxNQUFNLE9BQU8sdUJBQXVCOztxSEFBdkIsdUJBQXVCO3NIQUF2Qix1QkFBdUIsaUJBTjVCLHFCQUFxQjtRQUNyQiwwQkFBMEI7UUFDMUIscUJBQXFCLGFBSmYsWUFBWSxhQU1aLDBCQUEwQixFQUFFLHFCQUFxQjtzSEFFbEQsdUJBQXVCLFlBUnZCLENBQUMsWUFBWSxDQUFDOzRGQVFkLHVCQUF1QjtrQkFUbkMsUUFBUTttQkFBQztvQkFDTixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFlBQVksRUFBRTt3QkFDVixxQkFBcUI7d0JBQ3JCLDBCQUEwQjt3QkFDMUIscUJBQXFCO3FCQUN4QjtvQkFDRCxPQUFPLEVBQUUsQ0FBQywwQkFBMEIsRUFBRSxxQkFBcUIsQ0FBQztpQkFDL0QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQge1R1aVNjcm9sbENvbnRyb2xzQ29tcG9uZW50fSBmcm9tICcuL3Njcm9sbC1jb250cm9scy5jb21wb25lbnQnO1xuaW1wb3J0IHtUdWlTY3JvbGxSZWZEaXJlY3RpdmV9IGZyb20gJy4vc2Nyb2xsLXJlZi5kaXJlY3RpdmUnO1xuaW1wb3J0IHtUdWlTY3JvbGxiYXJEaXJlY3RpdmV9IGZyb20gJy4vc2Nyb2xsYmFyLmRpcmVjdGl2ZSc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gICAgZGVjbGFyYXRpb25zOiBbXG4gICAgICAgIFR1aVNjcm9sbGJhckRpcmVjdGl2ZSxcbiAgICAgICAgVHVpU2Nyb2xsQ29udHJvbHNDb21wb25lbnQsXG4gICAgICAgIFR1aVNjcm9sbFJlZkRpcmVjdGl2ZSxcbiAgICBdLFxuICAgIGV4cG9ydHM6IFtUdWlTY3JvbGxDb250cm9sc0NvbXBvbmVudCwgVHVpU2Nyb2xsUmVmRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgVHVpU2Nyb2xsQ29udHJvbHNNb2R1bGUge31cbiJdfQ==
|
@@ -1,26 +0,0 @@
|
|
1
|
-
import { Directive, ElementRef } from '@angular/core';
|
2
|
-
import { TUI_SCROLL_REF } from '@taiga-ui/cdk/tokens';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export const SCROLL_REF_SELECTOR = '[tuiScrollRef]';
|
5
|
-
export class TuiScrollRefDirective {
|
6
|
-
}
|
7
|
-
TuiScrollRefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiScrollRefDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
8
|
-
TuiScrollRefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: TuiScrollRefDirective, selector: "[tuiScrollRef]", providers: [
|
9
|
-
{
|
10
|
-
provide: TUI_SCROLL_REF,
|
11
|
-
useExisting: ElementRef,
|
12
|
-
},
|
13
|
-
], ngImport: i0 });
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TuiScrollRefDirective, decorators: [{
|
15
|
-
type: Directive,
|
16
|
-
args: [{
|
17
|
-
selector: SCROLL_REF_SELECTOR,
|
18
|
-
providers: [
|
19
|
-
{
|
20
|
-
provide: TUI_SCROLL_REF,
|
21
|
-
useExisting: ElementRef,
|
22
|
-
},
|
23
|
-
],
|
24
|
-
}]
|
25
|
-
}] });
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2Nyb2xsLXJlZi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jZGsvY29tcG9uZW50cy9zY3JvbGwtY29udHJvbHMvc2Nyb2xsLXJlZi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxVQUFVLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFDLGNBQWMsRUFBQyxNQUFNLHNCQUFzQixDQUFDOztBQUVwRCxNQUFNLENBQUMsTUFBTSxtQkFBbUIsR0FBRyxnQkFBZ0IsQ0FBQztBQVdwRCxNQUFNLE9BQU8scUJBQXFCOzttSEFBckIscUJBQXFCO3VHQUFyQixxQkFBcUIseUNBUG5CO1FBQ1A7WUFDSSxPQUFPLEVBQUUsY0FBYztZQUN2QixXQUFXLEVBQUUsVUFBVTtTQUMxQjtLQUNKOzRGQUVRLHFCQUFxQjtrQkFUakMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsbUJBQW1CO29CQUM3QixTQUFTLEVBQUU7d0JBQ1A7NEJBQ0ksT0FBTyxFQUFFLGNBQWM7NEJBQ3ZCLFdBQVcsRUFBRSxVQUFVO3lCQUMxQjtxQkFDSjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBFbGVtZW50UmVmfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VFVJX1NDUk9MTF9SRUZ9IGZyb20gJ0B0YWlnYS11aS9jZGsvdG9rZW5zJztcblxuZXhwb3J0IGNvbnN0IFNDUk9MTF9SRUZfU0VMRUNUT1IgPSAnW3R1aVNjcm9sbFJlZl0nO1xuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogU0NST0xMX1JFRl9TRUxFQ1RPUixcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAge1xuICAgICAgICAgICAgcHJvdmlkZTogVFVJX1NDUk9MTF9SRUYsXG4gICAgICAgICAgICB1c2VFeGlzdGluZzogRWxlbWVudFJlZixcbiAgICAgICAgfSxcbiAgICBdLFxufSlcbmV4cG9ydCBjbGFzcyBUdWlTY3JvbGxSZWZEaXJlY3RpdmUge31cbiJdfQ==
|