@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
@@ -0,0 +1,37 @@
|
|
1
|
+
// TODO: change type in v4.0
|
2
|
+
// eslint-disable-next-line no-restricted-syntax
|
3
|
+
var TuiDayOfWeek;
|
4
|
+
(function (TuiDayOfWeek) {
|
5
|
+
TuiDayOfWeek[TuiDayOfWeek["Sunday"] = 0] = "Sunday";
|
6
|
+
TuiDayOfWeek[TuiDayOfWeek["Monday"] = 1] = "Monday";
|
7
|
+
TuiDayOfWeek[TuiDayOfWeek["Tuesday"] = 2] = "Tuesday";
|
8
|
+
TuiDayOfWeek[TuiDayOfWeek["Wednesday"] = 3] = "Wednesday";
|
9
|
+
TuiDayOfWeek[TuiDayOfWeek["Thursday"] = 4] = "Thursday";
|
10
|
+
TuiDayOfWeek[TuiDayOfWeek["Friday"] = 5] = "Friday";
|
11
|
+
TuiDayOfWeek[TuiDayOfWeek["Saturday"] = 6] = "Saturday";
|
12
|
+
})(TuiDayOfWeek || (TuiDayOfWeek = {}));
|
13
|
+
|
14
|
+
// TODO: change type in v4.0
|
15
|
+
// eslint-disable-next-line no-restricted-syntax
|
16
|
+
var TuiMonthNumber;
|
17
|
+
(function (TuiMonthNumber) {
|
18
|
+
TuiMonthNumber[TuiMonthNumber["January"] = 0] = "January";
|
19
|
+
TuiMonthNumber[TuiMonthNumber["February"] = 1] = "February";
|
20
|
+
TuiMonthNumber[TuiMonthNumber["March"] = 2] = "March";
|
21
|
+
TuiMonthNumber[TuiMonthNumber["April"] = 3] = "April";
|
22
|
+
TuiMonthNumber[TuiMonthNumber["May"] = 4] = "May";
|
23
|
+
TuiMonthNumber[TuiMonthNumber["June"] = 5] = "June";
|
24
|
+
TuiMonthNumber[TuiMonthNumber["July"] = 6] = "July";
|
25
|
+
TuiMonthNumber[TuiMonthNumber["August"] = 7] = "August";
|
26
|
+
TuiMonthNumber[TuiMonthNumber["September"] = 8] = "September";
|
27
|
+
TuiMonthNumber[TuiMonthNumber["October"] = 9] = "October";
|
28
|
+
TuiMonthNumber[TuiMonthNumber["November"] = 10] = "November";
|
29
|
+
TuiMonthNumber[TuiMonthNumber["December"] = 11] = "December";
|
30
|
+
})(TuiMonthNumber || (TuiMonthNumber = {}));
|
31
|
+
|
32
|
+
/**
|
33
|
+
* Generated bundle index. Do not edit.
|
34
|
+
*/
|
35
|
+
|
36
|
+
export { TuiDayOfWeek, TuiMonthNumber };
|
37
|
+
//# sourceMappingURL=taiga-ui-cdk-enums.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-enums.mjs","sources":["../../../projects/cdk/enums/day-of-week.ts","../../../projects/cdk/enums/month-number.ts","../../../projects/cdk/enums/taiga-ui-cdk-enums.ts"],"sourcesContent":["// TODO: change type in v4.0\n// eslint-disable-next-line no-restricted-syntax\nexport enum TuiDayOfWeek {\n Sunday,\n Monday,\n Tuesday,\n Wednesday,\n Thursday,\n Friday,\n Saturday,\n}\n","// TODO: change type in v4.0\n// eslint-disable-next-line no-restricted-syntax\nexport enum TuiMonthNumber {\n January,\n February,\n March,\n April,\n May,\n June,\n July,\n August,\n September,\n October,\n November,\n December,\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAA;AACA;AACY,IAAA,aAQX;AARD,CAAA,UAAY,YAAY,EAAA;IACpB,YAAA,CAAA,YAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAM,CAAA;IACN,YAAA,CAAA,YAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAM,CAAA;IACN,YAAA,CAAA,YAAA,CAAA,SAAA,CAAA,GAAA,CAAA,CAAA,GAAA,SAAO,CAAA;IACP,YAAA,CAAA,YAAA,CAAA,WAAA,CAAA,GAAA,CAAA,CAAA,GAAA,WAAS,CAAA;IACT,YAAA,CAAA,YAAA,CAAA,UAAA,CAAA,GAAA,CAAA,CAAA,GAAA,UAAQ,CAAA;IACR,YAAA,CAAA,YAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAM,CAAA;IACN,YAAA,CAAA,YAAA,CAAA,UAAA,CAAA,GAAA,CAAA,CAAA,GAAA,UAAQ,CAAA;AACZ,CAAC,EARW,YAAY,KAAZ,YAAY,GAQvB,EAAA,CAAA,CAAA;;ACVD;AACA;AACY,IAAA,eAaX;AAbD,CAAA,UAAY,cAAc,EAAA;IACtB,cAAA,CAAA,cAAA,CAAA,SAAA,CAAA,GAAA,CAAA,CAAA,GAAA,SAAO,CAAA;IACP,cAAA,CAAA,cAAA,CAAA,UAAA,CAAA,GAAA,CAAA,CAAA,GAAA,UAAQ,CAAA;IACR,cAAA,CAAA,cAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAK,CAAA;IACL,cAAA,CAAA,cAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAK,CAAA;IACL,cAAA,CAAA,cAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,GAAA,KAAG,CAAA;IACH,cAAA,CAAA,cAAA,CAAA,MAAA,CAAA,GAAA,CAAA,CAAA,GAAA,MAAI,CAAA;IACJ,cAAA,CAAA,cAAA,CAAA,MAAA,CAAA,GAAA,CAAA,CAAA,GAAA,MAAI,CAAA;IACJ,cAAA,CAAA,cAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAM,CAAA;IACN,cAAA,CAAA,cAAA,CAAA,WAAA,CAAA,GAAA,CAAA,CAAA,GAAA,WAAS,CAAA;IACT,cAAA,CAAA,cAAA,CAAA,SAAA,CAAA,GAAA,CAAA,CAAA,GAAA,SAAO,CAAA;IACP,cAAA,CAAA,cAAA,CAAA,UAAA,CAAA,GAAA,EAAA,CAAA,GAAA,UAAQ,CAAA;IACR,cAAA,CAAA,cAAA,CAAA,UAAA,CAAA,GAAA,EAAA,CAAA,GAAA,UAAQ,CAAA;AACZ,CAAC,EAbW,cAAc,KAAd,cAAc,GAazB,EAAA,CAAA,CAAA;;ACfD;;AAEG;;;;"}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
class TuiComputedDocumentException extends Error {
|
2
|
+
constructor() {
|
3
|
+
super(ngDevMode ? `Only use computedDocument after load event` : ``);
|
4
|
+
}
|
5
|
+
}
|
6
|
+
|
7
|
+
class TuiDocumentSelectionException extends Error {
|
8
|
+
constructor() {
|
9
|
+
super(ngDevMode ? `Failed to get document selection` : ``);
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
class TuiInvalidDayException extends Error {
|
14
|
+
constructor(day) {
|
15
|
+
super(ngDevMode ? `Invalid day: ${day}` : ``);
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
class TuiInvalidMonthException extends Error {
|
20
|
+
constructor(month) {
|
21
|
+
super(ngDevMode ? `Invalid month: ${month}` : ``);
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
class TuiInvalidYearException extends Error {
|
26
|
+
constructor(year) {
|
27
|
+
super(ngDevMode ? `Invalid year: ${year}` : ``);
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
class TuiNoHostException extends Error {
|
32
|
+
constructor() {
|
33
|
+
super(ngDevMode ? `Portals cannot be used without TuiPortalHostComponent` : ``);
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
class TuiOwnerDocumentException extends Error {
|
38
|
+
constructor() {
|
39
|
+
super(ngDevMode ? `Element does not have ownerDocument` : ``);
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
class TuiPureException extends Error {
|
44
|
+
constructor() {
|
45
|
+
super(ngDevMode ? `tuiPure can only be used with functions or getters` : ``);
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
class TuiTableSortKeyException extends Error {
|
50
|
+
constructor() {
|
51
|
+
super(ngDevMode ? `Trying to sort with no key` : ``);
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
class TuiTsParserException extends Error {
|
56
|
+
constructor() {
|
57
|
+
super(ngDevMode ? `TsFileParser: 1 component/module per ts-file` : ``);
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
class TuiValueChangesException extends Error {
|
62
|
+
constructor() {
|
63
|
+
super(ngDevMode ? `Control does not have valueChanges` : ``);
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
class TuiValuePresentException extends Error {
|
68
|
+
constructor() {
|
69
|
+
super(ngDevMode ? `Value must present` : ``);
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
class TuiXmlParsingException extends Error {
|
74
|
+
constructor() {
|
75
|
+
super(ngDevMode ? `Error parsing XML string` : ``);
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
/**
|
80
|
+
* Generated bundle index. Do not edit.
|
81
|
+
*/
|
82
|
+
|
83
|
+
export { TuiComputedDocumentException, TuiDocumentSelectionException, TuiInvalidDayException, TuiInvalidMonthException, TuiInvalidYearException, TuiNoHostException, TuiOwnerDocumentException, TuiPureException, TuiTableSortKeyException, TuiTsParserException, TuiValueChangesException, TuiValuePresentException, TuiXmlParsingException };
|
84
|
+
//# sourceMappingURL=taiga-ui-cdk-exceptions.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-exceptions.mjs","sources":["../../../projects/cdk/exceptions/computed-document.exception.ts","../../../projects/cdk/exceptions/document-selection.exception.ts","../../../projects/cdk/exceptions/invalid-day.exception.ts","../../../projects/cdk/exceptions/invalid-month.exception.ts","../../../projects/cdk/exceptions/invalid-year.exception.ts","../../../projects/cdk/exceptions/no-host.exception.ts","../../../projects/cdk/exceptions/owner-document.exception.ts","../../../projects/cdk/exceptions/pure.exception.ts","../../../projects/cdk/exceptions/table-sort-key.exception.ts","../../../projects/cdk/exceptions/ts-parser.exception.ts","../../../projects/cdk/exceptions/value-changes.exception.ts","../../../projects/cdk/exceptions/value-present.exception.ts","../../../projects/cdk/exceptions/xml-parsing.exception.ts","../../../projects/cdk/exceptions/taiga-ui-cdk-exceptions.ts"],"sourcesContent":["export class TuiComputedDocumentException extends Error {\n constructor() {\n super(ngDevMode ? `Only use computedDocument after load event` : ``);\n }\n}\n","export class TuiDocumentSelectionException extends Error {\n constructor() {\n super(ngDevMode ? `Failed to get document selection` : ``);\n }\n}\n","export class TuiInvalidDayException extends Error {\n constructor(day: number) {\n super(ngDevMode ? `Invalid day: ${day}` : ``);\n }\n}\n","export class TuiInvalidMonthException extends Error {\n constructor(month: number) {\n super(ngDevMode ? `Invalid month: ${month}` : ``);\n }\n}\n","export class TuiInvalidYearException extends Error {\n constructor(year: number) {\n super(ngDevMode ? `Invalid year: ${year}` : ``);\n }\n}\n","export class TuiNoHostException extends Error {\n constructor() {\n super(ngDevMode ? `Portals cannot be used without TuiPortalHostComponent` : ``);\n }\n}\n","export class TuiOwnerDocumentException extends Error {\n constructor() {\n super(ngDevMode ? `Element does not have ownerDocument` : ``);\n }\n}\n","export class TuiPureException extends Error {\n constructor() {\n super(ngDevMode ? `tuiPure can only be used with functions or getters` : ``);\n }\n}\n","export class TuiTableSortKeyException extends Error {\n constructor() {\n super(ngDevMode ? `Trying to sort with no key` : ``);\n }\n}\n","export class TuiTsParserException extends Error {\n constructor() {\n super(ngDevMode ? `TsFileParser: 1 component/module per ts-file` : ``);\n }\n}\n","export class TuiValueChangesException extends Error {\n constructor() {\n super(ngDevMode ? `Control does not have valueChanges` : ``);\n }\n}\n","export class TuiValuePresentException extends Error {\n constructor() {\n super(ngDevMode ? `Value must present` : ``);\n }\n}\n","export class TuiXmlParsingException extends Error {\n constructor() {\n super(ngDevMode ? `Error parsing XML string` : ``);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAM,MAAO,4BAA6B,SAAQ,KAAK,CAAA;AACnD,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAA4C,0CAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KACxE;AACJ;;ACJK,MAAO,6BAA8B,SAAQ,KAAK,CAAA;AACpD,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAAkC,gCAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KAC9D;AACJ;;ACJK,MAAO,sBAAuB,SAAQ,KAAK,CAAA;AAC7C,IAAA,WAAA,CAAY,GAAW,EAAA;AACnB,QAAA,KAAK,CAAC,SAAS,GAAG,CAAA,aAAA,EAAgB,GAAG,CAAA,CAAE,GAAG,CAAA,CAAE,CAAC,CAAC;KACjD;AACJ;;ACJK,MAAO,wBAAyB,SAAQ,KAAK,CAAA;AAC/C,IAAA,WAAA,CAAY,KAAa,EAAA;AACrB,QAAA,KAAK,CAAC,SAAS,GAAG,CAAA,eAAA,EAAkB,KAAK,CAAA,CAAE,GAAG,CAAA,CAAE,CAAC,CAAC;KACrD;AACJ;;ACJK,MAAO,uBAAwB,SAAQ,KAAK,CAAA;AAC9C,IAAA,WAAA,CAAY,IAAY,EAAA;AACpB,QAAA,KAAK,CAAC,SAAS,GAAG,CAAA,cAAA,EAAiB,IAAI,CAAA,CAAE,GAAG,CAAA,CAAE,CAAC,CAAC;KACnD;AACJ;;ACJK,MAAO,kBAAmB,SAAQ,KAAK,CAAA;AACzC,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAAuD,qDAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KACnF;AACJ;;ACJK,MAAO,yBAA0B,SAAQ,KAAK,CAAA;AAChD,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAAqC,mCAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KACjE;AACJ;;ACJK,MAAO,gBAAiB,SAAQ,KAAK,CAAA;AACvC,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAAoD,kDAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KAChF;AACJ;;ACJK,MAAO,wBAAyB,SAAQ,KAAK,CAAA;AAC/C,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAA4B,0BAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KACxD;AACJ;;ACJK,MAAO,oBAAqB,SAAQ,KAAK,CAAA;AAC3C,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAA8C,4CAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KAC1E;AACJ;;ACJK,MAAO,wBAAyB,SAAQ,KAAK,CAAA;AAC/C,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAAoC,kCAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KAChE;AACJ;;ACJK,MAAO,wBAAyB,SAAQ,KAAK,CAAA;AAC/C,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAAoB,kBAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KAChD;AACJ;;ACJK,MAAO,sBAAuB,SAAQ,KAAK,CAAA;AAC7C,IAAA,WAAA,GAAA;QACI,KAAK,CAAC,SAAS,GAAG,CAA0B,wBAAA,CAAA,GAAG,CAAE,CAAA,CAAC,CAAC;KACtD;AACJ;;ACJD;;AAEG;;;;"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-interfaces.mjs","sources":["../../../projects/cdk/interfaces/taiga-ui-cdk-interfaces.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAA;;AAEG"}
|
@@ -0,0 +1,171 @@
|
|
1
|
+
import { TuiValueChangesException, TuiOwnerDocumentException, TuiValuePresentException } from '@taiga-ui/cdk/exceptions';
|
2
|
+
import { Observable, startWith, fromEvent, merge, concat, take, map, endWith, takeWhile, repeat, pipe, switchMap, timer, distinctUntilChanged, shareReplay, filter, ignoreElements, withLatestFrom, EMPTY, tap } from 'rxjs';
|
3
|
+
import { tuiIsPresent, tuiGetOriginalArrayFromQueryList } from '@taiga-ui/cdk/utils/miscellaneous';
|
4
|
+
import { ALWAYS_FALSE_HANDLER } from '@taiga-ui/cdk/constants';
|
5
|
+
import { tuiIsFalsy } from '@taiga-ui/cdk/utils';
|
6
|
+
import { tuiIsNativeFocused } from '@taiga-ui/cdk/utils/focus';
|
7
|
+
|
8
|
+
/**
|
9
|
+
* Turns AbstractControl/Abstract-control-directive valueChanges into ReplaySubject(1)
|
10
|
+
*/
|
11
|
+
function tuiControlValue(control) {
|
12
|
+
return new Observable(subscriber => {
|
13
|
+
if (!control.valueChanges) {
|
14
|
+
throw new TuiValueChangesException();
|
15
|
+
}
|
16
|
+
control.valueChanges.pipe(startWith(control.value)).subscribe(subscriber);
|
17
|
+
});
|
18
|
+
}
|
19
|
+
|
20
|
+
function tuiTypedFromEvent(target, event, options = {}) {
|
21
|
+
/**
|
22
|
+
* @note:
|
23
|
+
* in RxJS 7 type signature `TuiTypedEventTarget<E>` !== `HasEventTargetAddRemove<E>`
|
24
|
+
*/
|
25
|
+
return fromEvent(target, event, options);
|
26
|
+
}
|
27
|
+
|
28
|
+
/**
|
29
|
+
* Letting go of the mouse after it was pressed
|
30
|
+
* @param target
|
31
|
+
*/
|
32
|
+
function tuiMouseDragFinishFrom(target) {
|
33
|
+
return merge(tuiTypedFromEvent(target, `mouseup`), tuiTypedFromEvent(target, `dragend`));
|
34
|
+
}
|
35
|
+
|
36
|
+
// TODO: change type in v4.0
|
37
|
+
// eslint-disable-next-line no-restricted-syntax
|
38
|
+
var TuiDragStage;
|
39
|
+
(function (TuiDragStage) {
|
40
|
+
TuiDragStage[TuiDragStage["Start"] = 0] = "Start";
|
41
|
+
TuiDragStage[TuiDragStage["Continues"] = 1] = "Continues";
|
42
|
+
TuiDragStage[TuiDragStage["End"] = 2] = "End";
|
43
|
+
})(TuiDragStage || (TuiDragStage = {}));
|
44
|
+
class TuiDragState {
|
45
|
+
constructor(stage, event) {
|
46
|
+
this.stage = stage;
|
47
|
+
this.event = event;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
function tuiDragAndDropFrom(element) {
|
51
|
+
const { ownerDocument } = element;
|
52
|
+
if (!ownerDocument) {
|
53
|
+
throw new TuiOwnerDocumentException();
|
54
|
+
}
|
55
|
+
return concat(tuiTypedFromEvent(element, `mousedown`).pipe(take(1), map(event => new TuiDragState(TuiDragStage.Start, event))), merge(tuiTypedFromEvent(ownerDocument, `mousemove`).pipe(map(event => new TuiDragState(TuiDragStage.Continues, event))), tuiMouseDragFinishFrom(ownerDocument).pipe(take(1), map(event => new TuiDragState(TuiDragStage.End, event)), endWith(null))).pipe(takeWhile(tuiIsPresent))).pipe(repeat());
|
56
|
+
}
|
57
|
+
|
58
|
+
/**
|
59
|
+
* Operator to set lifespan after which current value is considered obsolete
|
60
|
+
*/
|
61
|
+
function tuiIsAlive(lifespan = 0) {
|
62
|
+
return pipe(switchMap(() => timer(lifespan).pipe(map(ALWAYS_FALSE_HANDLER), startWith(true))), distinctUntilChanged());
|
63
|
+
}
|
64
|
+
|
65
|
+
let documentMouseUpIsAlive$;
|
66
|
+
let documentMouseDownIsAlive$;
|
67
|
+
function tuiFocusVisibleObservable(element) {
|
68
|
+
const elementBlur$ = tuiTypedFromEvent(element, `blur`);
|
69
|
+
const { ownerDocument } = element;
|
70
|
+
if (!ownerDocument) {
|
71
|
+
throw new TuiOwnerDocumentException();
|
72
|
+
}
|
73
|
+
if (!documentMouseDownIsAlive$ || !documentMouseUpIsAlive$) {
|
74
|
+
documentMouseUpIsAlive$ = tuiTypedFromEvent(ownerDocument, `mouseup`, {
|
75
|
+
capture: true,
|
76
|
+
}).pipe(tuiIsAlive(), startWith(false), shareReplay({ bufferSize: 1, refCount: true }));
|
77
|
+
documentMouseDownIsAlive$ = tuiTypedFromEvent(ownerDocument, `mousedown`, {
|
78
|
+
capture: true,
|
79
|
+
}).pipe(tuiIsAlive(), startWith(false), shareReplay({ bufferSize: 1, refCount: true }));
|
80
|
+
}
|
81
|
+
return merge(
|
82
|
+
// focus events excluding ones that came right after mouse action
|
83
|
+
concat(tuiTypedFromEvent(element, `focus`).pipe(take(1)),
|
84
|
+
// filtering out blur events when element remains focused so that we ignore browser tab focus loss
|
85
|
+
elementBlur$.pipe(filter(() => !tuiIsNativeFocused(element)), take(1), ignoreElements())).pipe(repeat(), withLatestFrom(documentMouseDownIsAlive$, documentMouseUpIsAlive$, (_event, elementActual, documentActual) => elementActual || documentActual), filter(tuiIsFalsy))).pipe(switchMap(() => elementBlur$.pipe(map(ALWAYS_FALSE_HANDLER), take(1), startWith(true))), distinctUntilChanged());
|
86
|
+
}
|
87
|
+
|
88
|
+
function tuiIfMap(project, predicate = Boolean) {
|
89
|
+
return pipe(switchMap(value => (predicate(value) ? project(value) : EMPTY)));
|
90
|
+
}
|
91
|
+
|
92
|
+
function tuiIsObserved(observable) {
|
93
|
+
var _a;
|
94
|
+
return `observed` in observable
|
95
|
+
? observable.observed
|
96
|
+
: !!((_a = observable === null || observable === void 0 ? void 0 : observable.observers) === null || _a === void 0 ? void 0 : _a.length);
|
97
|
+
}
|
98
|
+
|
99
|
+
/**
|
100
|
+
* Converts changes observable of a QueryList to an Observable of arrays
|
101
|
+
*/
|
102
|
+
function tuiQueryListChanges(queryList) {
|
103
|
+
return queryList.changes.pipe(startWith(null), map(() => tuiGetOriginalArrayFromQueryList(queryList)));
|
104
|
+
}
|
105
|
+
/**
|
106
|
+
* @deprecated An alias, use {@link tuiQueryListChanges} instead
|
107
|
+
*/
|
108
|
+
const tuiItemsQueryListObservable = tuiQueryListChanges;
|
109
|
+
|
110
|
+
function tuiMustBePresent() {
|
111
|
+
return map(value => {
|
112
|
+
if (!tuiIsPresent(value)) {
|
113
|
+
throw new TuiValuePresentException();
|
114
|
+
}
|
115
|
+
return value;
|
116
|
+
});
|
117
|
+
}
|
118
|
+
|
119
|
+
function tuiPressedObservable(element, { onlyTrusted } = { onlyTrusted: true }) {
|
120
|
+
const { ownerDocument } = element;
|
121
|
+
if (!ownerDocument) {
|
122
|
+
throw new TuiOwnerDocumentException();
|
123
|
+
}
|
124
|
+
return tuiTypedFromEvent(element, `mousedown`).pipe(filter(({ isTrusted }) => isTrusted || !onlyTrusted), switchMap(() => tuiMouseDragFinishFrom(ownerDocument).pipe(map(ALWAYS_FALSE_HANDLER), take(1), startWith(true))));
|
125
|
+
}
|
126
|
+
|
127
|
+
function tuiPreventDefault() {
|
128
|
+
return tap(event => event.preventDefault());
|
129
|
+
}
|
130
|
+
|
131
|
+
/**
|
132
|
+
* Normalizes scroll event in case element is `html` (document.documentElement)
|
133
|
+
*/
|
134
|
+
function tuiScrollFrom(element) {
|
135
|
+
return tuiTypedFromEvent(element === element.ownerDocument.documentElement
|
136
|
+
? element.ownerDocument
|
137
|
+
: element, `scroll`);
|
138
|
+
}
|
139
|
+
|
140
|
+
function tuiStopPropagation() {
|
141
|
+
return tap(e => {
|
142
|
+
e.stopPropagation();
|
143
|
+
});
|
144
|
+
}
|
145
|
+
|
146
|
+
function tuiWatch(cdr) {
|
147
|
+
return tap(() => {
|
148
|
+
cdr.markForCheck();
|
149
|
+
});
|
150
|
+
}
|
151
|
+
|
152
|
+
function tuiZonefull(zone) {
|
153
|
+
return source => new Observable(subscriber => source.subscribe({
|
154
|
+
next: value => zone.run(() => subscriber.next(value)),
|
155
|
+
error: (error) => zone.run(() => subscriber.error(error)),
|
156
|
+
complete: () => zone.run(() => subscriber.complete()),
|
157
|
+
}));
|
158
|
+
}
|
159
|
+
function tuiZonefree(zone) {
|
160
|
+
return source => new Observable(subscriber => zone.runOutsideAngular(() => source.subscribe(subscriber)));
|
161
|
+
}
|
162
|
+
function tuiZoneOptimized(zone) {
|
163
|
+
return pipe(tuiZonefree(zone), tuiZonefull(zone));
|
164
|
+
}
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Generated bundle index. Do not edit.
|
168
|
+
*/
|
169
|
+
|
170
|
+
export { TuiDragStage, TuiDragState, tuiControlValue, tuiDragAndDropFrom, tuiFocusVisibleObservable, tuiIfMap, tuiIsAlive, tuiIsObserved, tuiItemsQueryListObservable, tuiMouseDragFinishFrom, tuiMustBePresent, tuiPressedObservable, tuiPreventDefault, tuiQueryListChanges, tuiScrollFrom, tuiStopPropagation, tuiTypedFromEvent, tuiWatch, tuiZoneOptimized, tuiZonefree, tuiZonefull };
|
171
|
+
//# sourceMappingURL=taiga-ui-cdk-observables.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-observables.mjs","sources":["../../../projects/cdk/observables/control-value.ts","../../../projects/cdk/observables/typed-from-event.ts","../../../projects/cdk/observables/mouse-drag-finish-from.ts","../../../projects/cdk/observables/drag-and-drop-from.ts","../../../projects/cdk/observables/is-alive.ts","../../../projects/cdk/observables/focus-visible-observable.ts","../../../projects/cdk/observables/if-map.ts","../../../projects/cdk/observables/is-observed.ts","../../../projects/cdk/observables/items-query-list-observable.ts","../../../projects/cdk/observables/must-be-present.ts","../../../projects/cdk/observables/pressed-observable.ts","../../../projects/cdk/observables/prevent-default.ts","../../../projects/cdk/observables/scroll-from.ts","../../../projects/cdk/observables/stop-propagation.ts","../../../projects/cdk/observables/watch.ts","../../../projects/cdk/observables/zone-free.ts","../../../projects/cdk/observables/taiga-ui-cdk-observables.ts"],"sourcesContent":["import {AbstractControl, AbstractControlDirective} from '@angular/forms';\nimport {TuiValueChangesException} from '@taiga-ui/cdk/exceptions';\nimport {Observable, startWith} from 'rxjs';\n\n/**\n * Turns AbstractControl/Abstract-control-directive valueChanges into ReplaySubject(1)\n */\nexport function tuiControlValue<T>(\n control: AbstractControl | AbstractControlDirective,\n): Observable<T> {\n return new Observable(subscriber => {\n if (!control.valueChanges) {\n throw new TuiValueChangesException();\n }\n\n control.valueChanges.pipe(startWith(control.value)).subscribe(subscriber);\n });\n}\n","import {TuiEventWith, TuiTypedEventTarget} from '@taiga-ui/cdk/types';\nimport {fromEvent, Observable} from 'rxjs';\n\nexport function tuiTypedFromEvent<E extends keyof WindowEventMap>(\n target: Window,\n event: E,\n options?: AddEventListenerOptions,\n): Observable<TuiEventWith<WindowEventMap[E], typeof target>>;\n\nexport function tuiTypedFromEvent<E extends keyof DocumentEventMap>(\n target: Document,\n event: E,\n options?: AddEventListenerOptions,\n): Observable<TuiEventWith<DocumentEventMap[E], typeof target>>;\n\nexport function tuiTypedFromEvent<T extends Element, E extends keyof HTMLElementEventMap>(\n target: T,\n event: E,\n options?: AddEventListenerOptions,\n): Observable<TuiEventWith<HTMLElementEventMap[E], typeof target>>;\n\nexport function tuiTypedFromEvent<\n E extends Event,\n T extends TuiTypedEventTarget<TuiEventWith<E, T>>,\n>(\n target: T,\n event: string,\n options?: AddEventListenerOptions,\n): Observable<TuiEventWith<E, T>>;\n\nexport function tuiTypedFromEvent<E extends Event>(\n target: TuiTypedEventTarget<E>,\n event: string,\n options?: AddEventListenerOptions,\n): Observable<E>;\n\nexport function tuiTypedFromEvent<E extends Event>(\n target: TuiTypedEventTarget<E>,\n event: string,\n options: AddEventListenerOptions = {},\n): Observable<E> {\n /**\n * @note:\n * in RxJS 7 type signature `TuiTypedEventTarget<E>` !== `HasEventTargetAddRemove<E>`\n */\n return fromEvent<E>(target as any, event, options) as unknown as Observable<E>;\n}\n","import {TuiEventWith, TuiTypedEventTarget} from '@taiga-ui/cdk/types';\nimport {merge, Observable} from 'rxjs';\n\nimport {tuiTypedFromEvent} from './typed-from-event';\n\n/**\n * Letting go of the mouse after it was pressed\n * @param target\n */\nexport function tuiMouseDragFinishFrom<\n T extends TuiTypedEventTarget<TuiEventWith<DragEvent, T>>,\n>(target: Exclude<T, null>): Observable<TuiEventWith<MouseEvent, T>> {\n return merge(\n tuiTypedFromEvent(target, `mouseup`),\n tuiTypedFromEvent(target, `dragend`),\n );\n}\n","import {TuiOwnerDocumentException} from '@taiga-ui/cdk/exceptions';\nimport {tuiIsPresent} from '@taiga-ui/cdk/utils/miscellaneous';\nimport {concat, endWith, map, merge, Observable, repeat, take, takeWhile} from 'rxjs';\n\nimport {tuiMouseDragFinishFrom} from './mouse-drag-finish-from';\nimport {tuiTypedFromEvent} from './typed-from-event';\n\n// TODO: change type in v4.0\n// eslint-disable-next-line no-restricted-syntax\nexport enum TuiDragStage {\n Start,\n Continues,\n End,\n}\n\nexport class TuiDragState {\n constructor(\n readonly stage: TuiDragStage,\n readonly event: MouseEvent,\n ) {}\n}\n\nexport function tuiDragAndDropFrom(element: Element): Observable<TuiDragState> {\n const {ownerDocument} = element;\n\n if (!ownerDocument) {\n throw new TuiOwnerDocumentException();\n }\n\n return concat(\n tuiTypedFromEvent(element, `mousedown`).pipe(\n take(1),\n map(event => new TuiDragState(TuiDragStage.Start, event)),\n ),\n merge(\n tuiTypedFromEvent(ownerDocument, `mousemove`).pipe(\n map(event => new TuiDragState(TuiDragStage.Continues, event)),\n ),\n tuiMouseDragFinishFrom(ownerDocument).pipe(\n take(1),\n map(event => new TuiDragState(TuiDragStage.End, event)),\n endWith(null),\n ),\n ).pipe(takeWhile(tuiIsPresent)),\n ).pipe(repeat());\n}\n","import {ALWAYS_FALSE_HANDLER} from '@taiga-ui/cdk/constants';\nimport {\n distinctUntilChanged,\n map,\n OperatorFunction,\n pipe,\n startWith,\n switchMap,\n timer,\n} from 'rxjs';\n\n/**\n * Operator to set lifespan after which current value is considered obsolete\n */\nexport function tuiIsAlive(lifespan: number = 0): OperatorFunction<unknown, boolean> {\n return pipe(\n switchMap(() => timer(lifespan).pipe(map(ALWAYS_FALSE_HANDLER), startWith(true))),\n distinctUntilChanged(),\n );\n}\n","import {ALWAYS_FALSE_HANDLER} from '@taiga-ui/cdk/constants';\nimport {TuiOwnerDocumentException} from '@taiga-ui/cdk/exceptions';\nimport {tuiIsFalsy} from '@taiga-ui/cdk/utils';\nimport {tuiIsNativeFocused} from '@taiga-ui/cdk/utils/focus';\nimport {\n concat,\n distinctUntilChanged,\n filter,\n ignoreElements,\n map,\n merge,\n Observable,\n repeat,\n shareReplay,\n startWith,\n switchMap,\n take,\n withLatestFrom,\n} from 'rxjs';\n\nimport {tuiIsAlive} from './is-alive';\nimport {tuiTypedFromEvent} from './typed-from-event';\n\nlet documentMouseUpIsAlive$: Observable<boolean>;\nlet documentMouseDownIsAlive$: Observable<boolean>;\n\nexport function tuiFocusVisibleObservable(element: Element): Observable<boolean> {\n const elementBlur$ = tuiTypedFromEvent(element, `blur`);\n const {ownerDocument} = element;\n\n if (!ownerDocument) {\n throw new TuiOwnerDocumentException();\n }\n\n if (!documentMouseDownIsAlive$ || !documentMouseUpIsAlive$) {\n documentMouseUpIsAlive$ = tuiTypedFromEvent(ownerDocument, `mouseup`, {\n capture: true,\n }).pipe(\n tuiIsAlive(),\n startWith(false),\n shareReplay({bufferSize: 1, refCount: true}),\n );\n documentMouseDownIsAlive$ = tuiTypedFromEvent(ownerDocument, `mousedown`, {\n capture: true,\n }).pipe(\n tuiIsAlive(),\n startWith(false),\n shareReplay({bufferSize: 1, refCount: true}),\n );\n }\n\n return merge(\n // focus events excluding ones that came right after mouse action\n concat(\n tuiTypedFromEvent(element, `focus`).pipe(take(1)),\n // filtering out blur events when element remains focused so that we ignore browser tab focus loss\n elementBlur$.pipe(\n filter(() => !tuiIsNativeFocused(element)),\n take(1),\n ignoreElements(),\n ),\n ).pipe(\n repeat(),\n withLatestFrom(\n documentMouseDownIsAlive$,\n documentMouseUpIsAlive$,\n (_event, elementActual, documentActual) =>\n elementActual || documentActual,\n ),\n filter(tuiIsFalsy),\n ),\n ).pipe(\n switchMap(() =>\n elementBlur$.pipe(map(ALWAYS_FALSE_HANDLER), take(1), startWith(true)),\n ),\n distinctUntilChanged(),\n );\n}\n","import {TuiBooleanHandler} from '@taiga-ui/cdk/types';\nimport {EMPTY, Observable, OperatorFunction, pipe, switchMap} from 'rxjs';\n\nexport function tuiIfMap<T, G>(\n project: (value: T) => Observable<G>,\n predicate: TuiBooleanHandler<T> = Boolean,\n): OperatorFunction<T, G> {\n return pipe(switchMap(value => (predicate(value) ? project(value) : EMPTY)));\n}\n","import {Observer, Subject} from 'rxjs';\n\n/* In RxJS 7 All subjects now have an observed property */\ntype SubjectRxJS7plus<T> = Subject<T> & {observed: boolean};\n\n/* In RxJS 8 `observers` will be removed */\ntype SubjectRxJS6<T> = Subject<T> & {observers: Array<Observer<T>>};\n\nexport function tuiIsObserved<T>(observable: Subject<T>): boolean {\n return `observed` in observable\n ? (observable as SubjectRxJS7plus<T>).observed\n : !!(observable as SubjectRxJS6<T>)?.observers?.length;\n}\n","import {QueryList} from '@angular/core';\nimport {tuiGetOriginalArrayFromQueryList} from '@taiga-ui/cdk/utils/miscellaneous';\nimport {map, Observable, startWith} from 'rxjs';\n\n/**\n * Converts changes observable of a QueryList to an Observable of arrays\n */\nexport function tuiQueryListChanges<T>(\n queryList: QueryList<T>,\n): Observable<readonly T[]> {\n return queryList.changes.pipe(\n startWith(null),\n map(() => tuiGetOriginalArrayFromQueryList(queryList)),\n );\n}\n\n/**\n * @deprecated An alias, use {@link tuiQueryListChanges} instead\n */\nexport const tuiItemsQueryListObservable = tuiQueryListChanges;\n","import {TuiValuePresentException} from '@taiga-ui/cdk/exceptions';\nimport {tuiIsPresent} from '@taiga-ui/cdk/utils/miscellaneous';\nimport {map, OperatorFunction} from 'rxjs';\n\nexport function tuiMustBePresent<T>(): OperatorFunction<T | null | undefined, T> {\n return map(value => {\n if (!tuiIsPresent(value)) {\n throw new TuiValuePresentException();\n }\n\n return value;\n });\n}\n","import {ALWAYS_FALSE_HANDLER} from '@taiga-ui/cdk/constants';\nimport {TuiOwnerDocumentException} from '@taiga-ui/cdk/exceptions';\nimport {filter, map, Observable, startWith, switchMap, take} from 'rxjs';\n\nimport {tuiMouseDragFinishFrom} from './mouse-drag-finish-from';\nimport {tuiTypedFromEvent} from './typed-from-event';\n\nexport interface TuiPressedObservableOptions {\n onlyTrusted: boolean;\n}\n\nexport function tuiPressedObservable(\n element: Element,\n {onlyTrusted}: TuiPressedObservableOptions = {onlyTrusted: true},\n): Observable<boolean> {\n const {ownerDocument} = element;\n\n if (!ownerDocument) {\n throw new TuiOwnerDocumentException();\n }\n\n return tuiTypedFromEvent(element, `mousedown`).pipe(\n filter(({isTrusted}) => isTrusted || !onlyTrusted),\n switchMap(() =>\n tuiMouseDragFinishFrom(ownerDocument).pipe(\n map(ALWAYS_FALSE_HANDLER),\n take(1),\n startWith(true),\n ),\n ),\n );\n}\n","import {MonoTypeOperatorFunction, tap} from 'rxjs';\n\nexport function tuiPreventDefault<T extends Event>(): MonoTypeOperatorFunction<T> {\n return tap(event => event.preventDefault());\n}\n","import {Observable} from 'rxjs';\n\nimport {tuiTypedFromEvent} from './typed-from-event';\n\n/**\n * Normalizes scroll event in case element is `html` (document.documentElement)\n */\nexport function tuiScrollFrom(element: Element): Observable<Event> {\n return tuiTypedFromEvent(\n element === element.ownerDocument.documentElement\n ? element.ownerDocument\n : element,\n `scroll`,\n );\n}\n","import {MonoTypeOperatorFunction, tap} from 'rxjs';\n\nexport function tuiStopPropagation<T extends Event>(): MonoTypeOperatorFunction<T> {\n return tap(e => {\n e.stopPropagation();\n });\n}\n","import {ChangeDetectorRef} from '@angular/core';\nimport {MonoTypeOperatorFunction, tap} from 'rxjs';\n\nexport function tuiWatch<T>(cdr: ChangeDetectorRef): MonoTypeOperatorFunction<T> {\n return tap(() => {\n cdr.markForCheck();\n });\n}\n","import {NgZone} from '@angular/core';\nimport {MonoTypeOperatorFunction, Observable, pipe} from 'rxjs';\n\nexport function tuiZonefull<T>(zone: NgZone): MonoTypeOperatorFunction<T> {\n return source =>\n new Observable(subscriber =>\n source.subscribe({\n next: value => zone.run(() => subscriber.next(value)),\n error: (error: unknown) => zone.run(() => subscriber.error(error)),\n complete: () => zone.run(() => subscriber.complete()),\n }),\n );\n}\n\nexport function tuiZonefree<T>(zone: NgZone): MonoTypeOperatorFunction<T> {\n return source =>\n new Observable(subscriber =>\n zone.runOutsideAngular(() => source.subscribe(subscriber)),\n );\n}\n\nexport function tuiZoneOptimized<T>(zone: NgZone): MonoTypeOperatorFunction<T> {\n return pipe(tuiZonefree(zone), tuiZonefull(zone));\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;AAIA;;AAEG;AACG,SAAU,eAAe,CAC3B,OAAmD,EAAA;AAEnD,IAAA,OAAO,IAAI,UAAU,CAAC,UAAU,IAAG;AAC/B,QAAA,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE;YACvB,MAAM,IAAI,wBAAwB,EAAE,CAAC;AACxC,SAAA;AAED,QAAA,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;AAC9E,KAAC,CAAC,CAAC;AACP;;ACmBM,SAAU,iBAAiB,CAC7B,MAA8B,EAC9B,KAAa,EACb,UAAmC,EAAE,EAAA;AAErC;;;AAGG;IACH,OAAO,SAAS,CAAI,MAAa,EAAE,KAAK,EAAE,OAAO,CAA6B,CAAC;AACnF;;ACzCA;;;AAGG;AACG,SAAU,sBAAsB,CAEpC,MAAwB,EAAA;AACtB,IAAA,OAAO,KAAK,CACR,iBAAiB,CAAC,MAAM,EAAE,CAAS,OAAA,CAAA,CAAC,EACpC,iBAAiB,CAAC,MAAM,EAAE,CAAS,OAAA,CAAA,CAAC,CACvC,CAAC;AACN;;ACTA;AACA;AACY,IAAA,aAIX;AAJD,CAAA,UAAY,YAAY,EAAA;IACpB,YAAA,CAAA,YAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAK,CAAA;IACL,YAAA,CAAA,YAAA,CAAA,WAAA,CAAA,GAAA,CAAA,CAAA,GAAA,WAAS,CAAA;IACT,YAAA,CAAA,YAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,GAAA,KAAG,CAAA;AACP,CAAC,EAJW,YAAY,KAAZ,YAAY,GAIvB,EAAA,CAAA,CAAA,CAAA;MAEY,YAAY,CAAA;IACrB,WACa,CAAA,KAAmB,EACnB,KAAiB,EAAA;AADjB,QAAA,IAAK,CAAA,KAAA,GAAL,KAAK,CAAc;AACnB,QAAA,IAAK,CAAA,KAAA,GAAL,KAAK,CAAY;KAC1B;AACP,CAAA;AAEK,SAAU,kBAAkB,CAAC,OAAgB,EAAA;AAC/C,IAAA,MAAM,EAAC,aAAa,EAAC,GAAG,OAAO,CAAC;IAEhC,IAAI,CAAC,aAAa,EAAE;QAChB,MAAM,IAAI,yBAAyB,EAAE,CAAC;AACzC,KAAA;IAED,OAAO,MAAM,CACT,iBAAiB,CAAC,OAAO,EAAE,CAAW,SAAA,CAAA,CAAC,CAAC,IAAI,CACxC,IAAI,CAAC,CAAC,CAAC,EACP,GAAG,CAAC,KAAK,IAAI,IAAI,YAAY,CAAC,YAAY,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAC5D,EACD,KAAK,CACD,iBAAiB,CAAC,aAAa,EAAE,CAAA,SAAA,CAAW,CAAC,CAAC,IAAI,CAC9C,GAAG,CAAC,KAAK,IAAI,IAAI,YAAY,CAAC,YAAY,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC,CAChE,EACD,sBAAsB,CAAC,aAAa,CAAC,CAAC,IAAI,CACtC,IAAI,CAAC,CAAC,CAAC,EACP,GAAG,CAAC,KAAK,IAAI,IAAI,YAAY,CAAC,YAAY,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,EACvD,OAAO,CAAC,IAAI,CAAC,CAChB,CACJ,CAAC,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,CAClC,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;AACrB;;AClCA;;AAEG;AACa,SAAA,UAAU,CAAC,QAAA,GAAmB,CAAC,EAAA;AAC3C,IAAA,OAAO,IAAI,CACP,SAAS,CAAC,MAAM,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,oBAAoB,CAAC,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,EACjF,oBAAoB,EAAE,CACzB,CAAC;AACN;;ACIA,IAAI,uBAA4C,CAAC;AACjD,IAAI,yBAA8C,CAAC;AAE7C,SAAU,yBAAyB,CAAC,OAAgB,EAAA;IACtD,MAAM,YAAY,GAAG,iBAAiB,CAAC,OAAO,EAAE,CAAA,IAAA,CAAM,CAAC,CAAC;AACxD,IAAA,MAAM,EAAC,aAAa,EAAC,GAAG,OAAO,CAAC;IAEhC,IAAI,CAAC,aAAa,EAAE;QAChB,MAAM,IAAI,yBAAyB,EAAE,CAAC;AACzC,KAAA;AAED,IAAA,IAAI,CAAC,yBAAyB,IAAI,CAAC,uBAAuB,EAAE;AACxD,QAAA,uBAAuB,GAAG,iBAAiB,CAAC,aAAa,EAAE,SAAS,EAAE;AAClE,YAAA,OAAO,EAAE,IAAI;SAChB,CAAC,CAAC,IAAI,CACH,UAAU,EAAE,EACZ,SAAS,CAAC,KAAK,CAAC,EAChB,WAAW,CAAC,EAAC,UAAU,EAAE,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAC,CAAC,CAC/C,CAAC;AACF,QAAA,yBAAyB,GAAG,iBAAiB,CAAC,aAAa,EAAE,WAAW,EAAE;AACtE,YAAA,OAAO,EAAE,IAAI;SAChB,CAAC,CAAC,IAAI,CACH,UAAU,EAAE,EACZ,SAAS,CAAC,KAAK,CAAC,EAChB,WAAW,CAAC,EAAC,UAAU,EAAE,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAC,CAAC,CAC/C,CAAC;AACL,KAAA;AAED,IAAA,OAAO,KAAK;;AAER,IAAA,MAAM,CACF,iBAAiB,CAAC,OAAO,EAAE,CAAO,KAAA,CAAA,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;AAEjD,IAAA,YAAY,CAAC,IAAI,CACb,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,EAC1C,IAAI,CAAC,CAAC,CAAC,EACP,cAAc,EAAE,CACnB,CACJ,CAAC,IAAI,CACF,MAAM,EAAE,EACR,cAAc,CACV,yBAAyB,EACzB,uBAAuB,EACvB,CAAC,MAAM,EAAE,aAAa,EAAE,cAAc,KAClC,aAAa,IAAI,cAAc,CACtC,EACD,MAAM,CAAC,UAAU,CAAC,CACrB,CACJ,CAAC,IAAI,CACF,SAAS,CAAC,MACN,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,oBAAoB,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC,CACzE,EACD,oBAAoB,EAAE,CACzB,CAAC;AACN;;SC1EgB,QAAQ,CACpB,OAAoC,EACpC,YAAkC,OAAO,EAAA;IAEzC,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,KAAK,SAAS,CAAC,KAAK,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;AACjF;;ACAM,SAAU,aAAa,CAAI,UAAsB,EAAA;;IACnD,OAAO,CAAA,QAAA,CAAU,IAAI,UAAU;UACxB,UAAkC,CAAC,QAAQ;AAC9C,UAAE,CAAC,EAAE,MAAA,UAA8B,KAAA,IAAA,IAA9B,UAA8B,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAA9B,UAA8B,CAAE,SAAS,MAAE,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,EAAA,CAAA,MAAM,CAAA,CAAC;AAC/D;;ACRA;;AAEG;AACG,SAAU,mBAAmB,CAC/B,SAAuB,EAAA;IAEvB,OAAO,SAAS,CAAC,OAAO,CAAC,IAAI,CACzB,SAAS,CAAC,IAAI,CAAC,EACf,GAAG,CAAC,MAAM,gCAAgC,CAAC,SAAS,CAAC,CAAC,CACzD,CAAC;AACN,CAAC;AAED;;AAEG;AACI,MAAM,2BAA2B,GAAG;;SCf3B,gBAAgB,GAAA;AAC5B,IAAA,OAAO,GAAG,CAAC,KAAK,IAAG;AACf,QAAA,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE;YACtB,MAAM,IAAI,wBAAwB,EAAE,CAAC;AACxC,SAAA;AAED,QAAA,OAAO,KAAK,CAAC;AACjB,KAAC,CAAC,CAAC;AACP;;ACDgB,SAAA,oBAAoB,CAChC,OAAgB,EAChB,EAAC,WAAW,EAAA,GAAiC,EAAC,WAAW,EAAE,IAAI,EAAC,EAAA;AAEhE,IAAA,MAAM,EAAC,aAAa,EAAC,GAAG,OAAO,CAAC;IAEhC,IAAI,CAAC,aAAa,EAAE;QAChB,MAAM,IAAI,yBAAyB,EAAE,CAAC;AACzC,KAAA;IAED,OAAO,iBAAiB,CAAC,OAAO,EAAE,CAAA,SAAA,CAAW,CAAC,CAAC,IAAI,CAC/C,MAAM,CAAC,CAAC,EAAC,SAAS,EAAC,KAAK,SAAS,IAAI,CAAC,WAAW,CAAC,EAClD,SAAS,CAAC,MACN,sBAAsB,CAAC,aAAa,CAAC,CAAC,IAAI,CACtC,GAAG,CAAC,oBAAoB,CAAC,EACzB,IAAI,CAAC,CAAC,CAAC,EACP,SAAS,CAAC,IAAI,CAAC,CAClB,CACJ,CACJ,CAAC;AACN;;SC7BgB,iBAAiB,GAAA;IAC7B,OAAO,GAAG,CAAC,KAAK,IAAI,KAAK,CAAC,cAAc,EAAE,CAAC,CAAC;AAChD;;ACAA;;AAEG;AACG,SAAU,aAAa,CAAC,OAAgB,EAAA;IAC1C,OAAO,iBAAiB,CACpB,OAAO,KAAK,OAAO,CAAC,aAAa,CAAC,eAAe;UAC3C,OAAO,CAAC,aAAa;AACvB,UAAE,OAAO,EACb,CAAA,MAAA,CAAQ,CACX,CAAC;AACN;;SCZgB,kBAAkB,GAAA;AAC9B,IAAA,OAAO,GAAG,CAAC,CAAC,IAAG;QACX,CAAC,CAAC,eAAe,EAAE,CAAC;AACxB,KAAC,CAAC,CAAC;AACP;;ACHM,SAAU,QAAQ,CAAI,GAAsB,EAAA;IAC9C,OAAO,GAAG,CAAC,MAAK;QACZ,GAAG,CAAC,YAAY,EAAE,CAAC;AACvB,KAAC,CAAC,CAAC;AACP;;ACJM,SAAU,WAAW,CAAI,IAAY,EAAA;AACvC,IAAA,OAAO,MAAM,IACT,IAAI,UAAU,CAAC,UAAU,IACrB,MAAM,CAAC,SAAS,CAAC;AACb,QAAA,IAAI,EAAE,KAAK,IAAI,IAAI,CAAC,GAAG,CAAC,MAAM,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;AACrD,QAAA,KAAK,EAAE,CAAC,KAAc,KAAK,IAAI,CAAC,GAAG,CAAC,MAAM,UAAU,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;AAClE,QAAA,QAAQ,EAAE,MAAM,IAAI,CAAC,GAAG,CAAC,MAAM,UAAU,CAAC,QAAQ,EAAE,CAAC;AACxD,KAAA,CAAC,CACL,CAAC;AACV,CAAC;AAEK,SAAU,WAAW,CAAI,IAAY,EAAA;IACvC,OAAO,MAAM,IACT,IAAI,UAAU,CAAC,UAAU,IACrB,IAAI,CAAC,iBAAiB,CAAC,MAAM,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAC7D,CAAC;AACV,CAAC;AAEK,SAAU,gBAAgB,CAAI,IAAY,EAAA;AAC5C,IAAA,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;AACtD;;ACvBA;;AAEG;;;;"}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import * as i0 from '@angular/core';
|
2
|
+
import { Pipe, NgModule } from '@angular/core';
|
3
|
+
|
4
|
+
class TuiFilterPipe {
|
5
|
+
transform(items, matcher, ...args) {
|
6
|
+
return items.filter(item => matcher(item, ...args));
|
7
|
+
}
|
8
|
+
}
|
9
|
+
TuiFilterPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiFilterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
10
|
+
TuiFilterPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiFilterPipe, name: "tuiFilter" });
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiFilterPipe, decorators: [{
|
12
|
+
type: Pipe,
|
13
|
+
args: [{ name: `tuiFilter` }]
|
14
|
+
}] });
|
15
|
+
|
16
|
+
class TuiFilterPipeModule {
|
17
|
+
}
|
18
|
+
TuiFilterPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiFilterPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
19
|
+
TuiFilterPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiFilterPipeModule, declarations: [TuiFilterPipe], exports: [TuiFilterPipe] });
|
20
|
+
TuiFilterPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiFilterPipeModule });
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiFilterPipeModule, decorators: [{
|
22
|
+
type: NgModule,
|
23
|
+
args: [{
|
24
|
+
declarations: [TuiFilterPipe],
|
25
|
+
exports: [TuiFilterPipe],
|
26
|
+
}]
|
27
|
+
}] });
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Generated bundle index. Do not edit.
|
31
|
+
*/
|
32
|
+
|
33
|
+
export { TuiFilterPipe, TuiFilterPipeModule };
|
34
|
+
//# sourceMappingURL=taiga-ui-cdk-pipes-filter.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-pipes-filter.mjs","sources":["../../../projects/cdk/pipes/filter/filter.pipe.ts","../../../projects/cdk/pipes/filter/filter.module.ts","../../../projects/cdk/pipes/filter/taiga-ui-cdk-pipes-filter.ts"],"sourcesContent":["import {Pipe, PipeTransform} from '@angular/core';\nimport {TuiMatcher, TuiTypedMatcher} from '@taiga-ui/cdk/types';\n\n@Pipe({name: `tuiFilter`})\nexport class TuiFilterPipe implements PipeTransform {\n /**\n * Filters an array through a matcher function using additional arguments\n *\n * @param items array\n * @param matcher method for filtering\n * @param args arbitrary number of additional arguments\n */\n transform<T>(items: readonly T[], matcher: TuiMatcher<T>, ...args: any[]): T[];\n transform<T, U extends unknown[]>(\n items: readonly T[],\n matcher: TuiTypedMatcher<[T, ...U]>,\n ...args: U\n ): T[] {\n return items.filter(item => matcher(item, ...args));\n }\n}\n","import {NgModule} from '@angular/core';\n\nimport {TuiFilterPipe} from './filter.pipe';\n\n@NgModule({\n declarations: [TuiFilterPipe],\n exports: [TuiFilterPipe],\n})\nexport class TuiFilterPipeModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;MAIa,aAAa,CAAA;AAStB,IAAA,SAAS,CACL,KAAmB,EACnB,OAAmC,EACnC,GAAG,IAAO,EAAA;AAEV,QAAA,OAAO,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;KACvD;;2GAfQ,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;yGAAb,aAAa,EAAA,IAAA,EAAA,WAAA,EAAA,CAAA,CAAA;4FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBADzB,IAAI;mBAAC,EAAC,IAAI,EAAE,CAAA,SAAA,CAAW,EAAC,CAAA;;;MCKZ,mBAAmB,CAAA;;iHAAnB,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;kHAAnB,mBAAmB,EAAA,YAAA,EAAA,CAHb,aAAa,CAAA,EAAA,OAAA,EAAA,CAClB,aAAa,CAAA,EAAA,CAAA,CAAA;kHAEd,mBAAmB,EAAA,CAAA,CAAA;4FAAnB,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAJ/B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,aAAa,CAAC;oBAC7B,OAAO,EAAE,CAAC,aAAa,CAAC;iBAC3B,CAAA;;;ACPD;;AAEG;;;;"}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import * as i0 from '@angular/core';
|
2
|
+
import { Pipe, NgModule } from '@angular/core';
|
3
|
+
import { tuiIsPresent } from '@taiga-ui/cdk/utils';
|
4
|
+
|
5
|
+
class TuiIsPresentPipe {
|
6
|
+
transform(value) {
|
7
|
+
return tuiIsPresent(value);
|
8
|
+
}
|
9
|
+
}
|
10
|
+
TuiIsPresentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiIsPresentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
11
|
+
TuiIsPresentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiIsPresentPipe, name: "tuiIsPresent" });
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiIsPresentPipe, decorators: [{
|
13
|
+
type: Pipe,
|
14
|
+
args: [{ name: `tuiIsPresent` }]
|
15
|
+
}] });
|
16
|
+
|
17
|
+
class TuiIsPresentPipeModule {
|
18
|
+
}
|
19
|
+
TuiIsPresentPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiIsPresentPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
20
|
+
TuiIsPresentPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiIsPresentPipeModule, declarations: [TuiIsPresentPipe], exports: [TuiIsPresentPipe] });
|
21
|
+
TuiIsPresentPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiIsPresentPipeModule });
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiIsPresentPipeModule, decorators: [{
|
23
|
+
type: NgModule,
|
24
|
+
args: [{
|
25
|
+
declarations: [TuiIsPresentPipe],
|
26
|
+
exports: [TuiIsPresentPipe],
|
27
|
+
}]
|
28
|
+
}] });
|
29
|
+
|
30
|
+
/**
|
31
|
+
* Generated bundle index. Do not edit.
|
32
|
+
*/
|
33
|
+
|
34
|
+
export { TuiIsPresentPipe, TuiIsPresentPipeModule };
|
35
|
+
//# sourceMappingURL=taiga-ui-cdk-pipes-is-present.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-pipes-is-present.mjs","sources":["../../../projects/cdk/pipes/is-present/is-present.pipe.ts","../../../projects/cdk/pipes/is-present/is-present.module.ts","../../../projects/cdk/pipes/is-present/taiga-ui-cdk-pipes-is-present.ts"],"sourcesContent":["import {Pipe, PipeTransform} from '@angular/core';\nimport {tuiIsPresent} from '@taiga-ui/cdk/utils';\n\n@Pipe({name: `tuiIsPresent`})\nexport class TuiIsPresentPipe implements PipeTransform {\n transform<T>(value?: T | null): value is T {\n return tuiIsPresent(value);\n }\n}\n","import {NgModule} from '@angular/core';\n\nimport {TuiIsPresentPipe} from './is-present.pipe';\n\n@NgModule({\n declarations: [TuiIsPresentPipe],\n exports: [TuiIsPresentPipe],\n})\nexport class TuiIsPresentPipeModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;MAIa,gBAAgB,CAAA;AACzB,IAAA,SAAS,CAAI,KAAgB,EAAA;AACzB,QAAA,OAAO,YAAY,CAAC,KAAK,CAAC,CAAC;KAC9B;;8GAHQ,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;4GAAhB,gBAAgB,EAAA,IAAA,EAAA,cAAA,EAAA,CAAA,CAAA;4FAAhB,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAD5B,IAAI;mBAAC,EAAC,IAAI,EAAE,CAAA,YAAA,CAAc,EAAC,CAAA;;;MCKf,sBAAsB,CAAA;;oHAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;qHAAtB,sBAAsB,EAAA,YAAA,EAAA,CAHhB,gBAAgB,CAAA,EAAA,OAAA,EAAA,CACrB,gBAAgB,CAAA,EAAA,CAAA,CAAA;qHAEjB,sBAAsB,EAAA,CAAA,CAAA;4FAAtB,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAJlC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,gBAAgB,CAAC;oBAChC,OAAO,EAAE,CAAC,gBAAgB,CAAC;iBAC9B,CAAA;;;ACPD;;AAEG;;;;"}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import * as i0 from '@angular/core';
|
2
|
+
import { Pipe, NgModule } from '@angular/core';
|
3
|
+
|
4
|
+
class TuiKeysPipe {
|
5
|
+
transform(object) {
|
6
|
+
return Object.keys(object);
|
7
|
+
}
|
8
|
+
}
|
9
|
+
TuiKeysPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiKeysPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
10
|
+
TuiKeysPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiKeysPipe, name: "tuiKeys" });
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiKeysPipe, decorators: [{
|
12
|
+
type: Pipe,
|
13
|
+
args: [{ name: `tuiKeys` }]
|
14
|
+
}] });
|
15
|
+
|
16
|
+
class TuiKeysPipeModule {
|
17
|
+
}
|
18
|
+
TuiKeysPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiKeysPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
19
|
+
TuiKeysPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiKeysPipeModule, declarations: [TuiKeysPipe], exports: [TuiKeysPipe] });
|
20
|
+
TuiKeysPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiKeysPipeModule });
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiKeysPipeModule, decorators: [{
|
22
|
+
type: NgModule,
|
23
|
+
args: [{
|
24
|
+
declarations: [TuiKeysPipe],
|
25
|
+
exports: [TuiKeysPipe],
|
26
|
+
}]
|
27
|
+
}] });
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Generated bundle index. Do not edit.
|
31
|
+
*/
|
32
|
+
|
33
|
+
export { TuiKeysPipe, TuiKeysPipeModule };
|
34
|
+
//# sourceMappingURL=taiga-ui-cdk-pipes-keys.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-pipes-keys.mjs","sources":["../../../projects/cdk/pipes/keys/keys.pipe.ts","../../../projects/cdk/pipes/keys/keys.module.ts","../../../projects/cdk/pipes/keys/taiga-ui-cdk-pipes-keys.ts"],"sourcesContent":["import {Pipe, PipeTransform} from '@angular/core';\n\n@Pipe({name: `tuiKeys`})\nexport class TuiKeysPipe implements PipeTransform {\n transform(object: Record<any, any>): string[] {\n return Object.keys(object);\n }\n}\n","import {NgModule} from '@angular/core';\n\nimport {TuiKeysPipe} from './keys.pipe';\n\n@NgModule({\n declarations: [TuiKeysPipe],\n exports: [TuiKeysPipe],\n})\nexport class TuiKeysPipeModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;MAGa,WAAW,CAAA;AACpB,IAAA,SAAS,CAAC,MAAwB,EAAA;AAC9B,QAAA,OAAO,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC9B;;yGAHQ,WAAW,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;uGAAX,WAAW,EAAA,IAAA,EAAA,SAAA,EAAA,CAAA,CAAA;4FAAX,WAAW,EAAA,UAAA,EAAA,CAAA;kBADvB,IAAI;mBAAC,EAAC,IAAI,EAAE,CAAA,OAAA,CAAS,EAAC,CAAA;;;MCMV,iBAAiB,CAAA;;+GAAjB,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;gHAAjB,iBAAiB,EAAA,YAAA,EAAA,CAHX,WAAW,CAAA,EAAA,OAAA,EAAA,CAChB,WAAW,CAAA,EAAA,CAAA,CAAA;gHAEZ,iBAAiB,EAAA,CAAA,CAAA;4FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAJ7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,WAAW,CAAC;oBAC3B,OAAO,EAAE,CAAC,WAAW,CAAC;iBACzB,CAAA;;;ACPD;;AAEG;;;;"}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import * as i0 from '@angular/core';
|
2
|
+
import { Pipe, NgModule } from '@angular/core';
|
3
|
+
|
4
|
+
class TuiMapperPipe {
|
5
|
+
transform(value, mapper, ...args) {
|
6
|
+
return mapper(value, ...args);
|
7
|
+
}
|
8
|
+
}
|
9
|
+
TuiMapperPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiMapperPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
10
|
+
TuiMapperPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiMapperPipe, name: "tuiMapper" });
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiMapperPipe, decorators: [{
|
12
|
+
type: Pipe,
|
13
|
+
args: [{ name: `tuiMapper` }]
|
14
|
+
}] });
|
15
|
+
|
16
|
+
class TuiMapperPipeModule {
|
17
|
+
}
|
18
|
+
TuiMapperPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiMapperPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
19
|
+
TuiMapperPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiMapperPipeModule, declarations: [TuiMapperPipe], exports: [TuiMapperPipe] });
|
20
|
+
TuiMapperPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiMapperPipeModule });
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiMapperPipeModule, decorators: [{
|
22
|
+
type: NgModule,
|
23
|
+
args: [{
|
24
|
+
declarations: [TuiMapperPipe],
|
25
|
+
exports: [TuiMapperPipe],
|
26
|
+
}]
|
27
|
+
}] });
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Generated bundle index. Do not edit.
|
31
|
+
*/
|
32
|
+
|
33
|
+
export { TuiMapperPipe, TuiMapperPipeModule };
|
34
|
+
//# sourceMappingURL=taiga-ui-cdk-pipes-mapper.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-pipes-mapper.mjs","sources":["../../../projects/cdk/pipes/mapper/mapper.pipe.ts","../../../projects/cdk/pipes/mapper/mapper.module.ts","../../../projects/cdk/pipes/mapper/taiga-ui-cdk-pipes-mapper.ts"],"sourcesContent":["import {Pipe, PipeTransform} from '@angular/core';\nimport {TuiMapper, TuiTypedMapper} from '@taiga-ui/cdk/types';\n\n@Pipe({name: `tuiMapper`})\nexport class TuiMapperPipe implements PipeTransform {\n /**\n * Maps object to an arbitrary result through a mapper function\n *\n * @param value an item to transform\n * @param mapper a mapping function\n * @param args arbitrary number of additional arguments\n */\n transform<T, G>(value: T, mapper: TuiMapper<T, G>, ...args: any[]): G;\n transform<T extends unknown[], U, G>(\n value: U,\n mapper: TuiTypedMapper<[U, ...T], G>,\n ...args: T\n ): G {\n return mapper(value, ...args);\n }\n}\n","import {NgModule} from '@angular/core';\n\nimport {TuiMapperPipe} from './mapper.pipe';\n\n@NgModule({\n declarations: [TuiMapperPipe],\n exports: [TuiMapperPipe],\n})\nexport class TuiMapperPipeModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;MAIa,aAAa,CAAA;AAStB,IAAA,SAAS,CACL,KAAQ,EACR,MAAoC,EACpC,GAAG,IAAO,EAAA;AAEV,QAAA,OAAO,MAAM,CAAC,KAAK,EAAE,GAAG,IAAI,CAAC,CAAC;KACjC;;2GAfQ,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;yGAAb,aAAa,EAAA,IAAA,EAAA,WAAA,EAAA,CAAA,CAAA;4FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBADzB,IAAI;mBAAC,EAAC,IAAI,EAAE,CAAA,SAAA,CAAW,EAAC,CAAA;;;MCKZ,mBAAmB,CAAA;;iHAAnB,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;kHAAnB,mBAAmB,EAAA,YAAA,EAAA,CAHb,aAAa,CAAA,EAAA,OAAA,EAAA,CAClB,aAAa,CAAA,EAAA,CAAA,CAAA;kHAEd,mBAAmB,EAAA,CAAA,CAAA;4FAAnB,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAJ/B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,aAAa,CAAC;oBAC7B,OAAO,EAAE,CAAC,aAAa,CAAC;iBAC3B,CAAA;;;ACPD;;AAEG;;;;"}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
import * as i0 from '@angular/core';
|
2
|
+
import { Pipe, NgModule } from '@angular/core';
|
3
|
+
|
4
|
+
class TuiReplacePipe {
|
5
|
+
transform(value, search, replaceValue) {
|
6
|
+
var _a;
|
7
|
+
return ((_a = value === null || value === void 0 ? void 0 : value.replace(search,
|
8
|
+
// TS bug: https://github.com/microsoft/TypeScript/issues/22378
|
9
|
+
replaceValue)) !== null && _a !== void 0 ? _a : ``);
|
10
|
+
}
|
11
|
+
}
|
12
|
+
TuiReplacePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiReplacePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
13
|
+
TuiReplacePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiReplacePipe, name: "tuiReplace" });
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiReplacePipe, decorators: [{
|
15
|
+
type: Pipe,
|
16
|
+
args: [{ name: `tuiReplace` }]
|
17
|
+
}] });
|
18
|
+
|
19
|
+
class TuiReplacePipeModule {
|
20
|
+
}
|
21
|
+
TuiReplacePipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiReplacePipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
22
|
+
TuiReplacePipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TuiReplacePipeModule, declarations: [TuiReplacePipe], exports: [TuiReplacePipe] });
|
23
|
+
TuiReplacePipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiReplacePipeModule });
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TuiReplacePipeModule, decorators: [{
|
25
|
+
type: NgModule,
|
26
|
+
args: [{
|
27
|
+
declarations: [TuiReplacePipe],
|
28
|
+
exports: [TuiReplacePipe],
|
29
|
+
}]
|
30
|
+
}] });
|
31
|
+
|
32
|
+
/**
|
33
|
+
* Generated bundle index. Do not edit.
|
34
|
+
*/
|
35
|
+
|
36
|
+
export { TuiReplacePipe, TuiReplacePipeModule };
|
37
|
+
//# sourceMappingURL=taiga-ui-cdk-pipes-replace.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-pipes-replace.mjs","sources":["../../../projects/cdk/pipes/replace/replace.pipe.ts","../../../projects/cdk/pipes/replace/replace.module.ts","../../../projects/cdk/pipes/replace/taiga-ui-cdk-pipes-replace.ts"],"sourcesContent":["import {Pipe, PipeTransform} from '@angular/core';\n\n@Pipe({name: `tuiReplace`})\nexport class TuiReplacePipe implements PipeTransform {\n transform(\n value: string | null | undefined,\n search: RegExp | string,\n replaceValue: string | ((substring: string, ...args: any[]) => string),\n ): string {\n return (\n value?.replace(\n search,\n // TS bug: https://github.com/microsoft/TypeScript/issues/22378\n replaceValue as unknown as string,\n ) ?? ``\n );\n }\n}\n","import {NgModule} from '@angular/core';\n\nimport {TuiReplacePipe} from './replace.pipe';\n\n@NgModule({\n declarations: [TuiReplacePipe],\n exports: [TuiReplacePipe],\n})\nexport class TuiReplacePipeModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;MAGa,cAAc,CAAA;AACvB,IAAA,SAAS,CACL,KAAgC,EAChC,MAAuB,EACvB,YAAsE,EAAA;;QAEtE,QACI,CAAA,EAAA,GAAA,KAAK,KAAL,IAAA,IAAA,KAAK,uBAAL,KAAK,CAAE,OAAO,CACV,MAAM;;AAEN,QAAA,YAAiC,CACpC,MAAA,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,EAAA,GAAI,CAAE,CAAA,EACT;KACL;;4GAbQ,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;0GAAd,cAAc,EAAA,IAAA,EAAA,YAAA,EAAA,CAAA,CAAA;4FAAd,cAAc,EAAA,UAAA,EAAA,CAAA;kBAD1B,IAAI;mBAAC,EAAC,IAAI,EAAE,CAAA,UAAA,CAAY,EAAC,CAAA;;;MCMb,oBAAoB,CAAA;;kHAApB,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;mHAApB,oBAAoB,EAAA,YAAA,EAAA,CAHd,cAAc,CAAA,EAAA,OAAA,EAAA,CACnB,cAAc,CAAA,EAAA,CAAA,CAAA;mHAEf,oBAAoB,EAAA,CAAA,CAAA;4FAApB,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAJhC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,cAAc,CAAC;oBAC9B,OAAO,EAAE,CAAC,cAAc,CAAC;iBAC5B,CAAA;;;ACPD;;AAEG;;;;"}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
export * from '@taiga-ui/cdk/pipes/filter';
|
2
|
+
export * from '@taiga-ui/cdk/pipes/is-present';
|
3
|
+
export * from '@taiga-ui/cdk/pipes/keys';
|
4
|
+
export * from '@taiga-ui/cdk/pipes/mapper';
|
5
|
+
export * from '@taiga-ui/cdk/pipes/replace';
|
6
|
+
|
7
|
+
/**
|
8
|
+
* Generated bundle index. Do not edit.
|
9
|
+
*/
|
10
|
+
//# sourceMappingURL=taiga-ui-cdk-pipes.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-pipes.mjs","sources":["../../../projects/cdk/pipes/taiga-ui-cdk-pipes.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAAA;;AAEG"}
|