@taiga-ui/legacy 4.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +190 -0
- package/README.md +22 -0
- package/classes/abstract-native-select.d.ts +20 -0
- package/classes/abstract-textfield-host.d.ts +19 -0
- package/classes/control.d.ts +59 -0
- package/classes/index.d.ts +8 -0
- package/classes/interactive.d.ts +35 -0
- package/classes/multiple-control.d.ts +11 -0
- package/classes/named-day.d.ts +11 -0
- package/classes/nullable-control.d.ts +10 -0
- package/classes/stringifiable-item.d.ts +11 -0
- package/components/arrow/arrow.component.d.ts +22 -0
- package/components/arrow/arrow.options.d.ts +23 -0
- package/components/arrow/arrow.providers.d.ts +24 -0
- package/components/arrow/index.d.ts +3 -0
- package/components/color-selector/color-edit/color-edit.component.d.ts +21 -0
- package/components/color-selector/color-edit/color-edit.module.d.ts +19 -0
- package/components/color-selector/color-picker/color-picker.component.d.ts +25 -0
- package/components/color-selector/color-picker/color-picker.module.d.ts +13 -0
- package/components/color-selector/color-selector.component.d.ts +55 -0
- package/components/color-selector/color-selector.module.d.ts +23 -0
- package/components/color-selector/flat-picker/flat-picker.component.d.ts +15 -0
- package/components/color-selector/flat-picker/flat-picker.module.d.ts +11 -0
- package/components/color-selector/index.d.ts +15 -0
- package/components/color-selector/linear-multi-picker/linear-multi-picker.component.d.ts +20 -0
- package/components/color-selector/linear-multi-picker/linear-multi-picker.module.d.ts +11 -0
- package/components/color-selector/linear-picker/linear-picker.component.d.ts +13 -0
- package/components/color-selector/linear-picker/linear-picker.module.d.ts +11 -0
- package/components/color-selector/palette/palette.component.d.ts +13 -0
- package/components/color-selector/palette/palette.module.d.ts +12 -0
- package/components/color-selector/services/picker.service.d.ts +11 -0
- package/components/combo-box/combo-box-strict.directive.d.ts +11 -0
- package/components/combo-box/combo-box.component.d.ts +50 -0
- package/components/combo-box/combo-box.directive.d.ts +12 -0
- package/components/combo-box/combo-box.module.d.ts +19 -0
- package/components/combo-box/index.d.ts +4 -0
- package/components/index.d.ts +33 -0
- package/components/input/index.d.ts +3 -0
- package/components/input/input.component.d.ts +30 -0
- package/components/input/input.directive.d.ts +11 -0
- package/components/input/input.module.d.ts +14 -0
- package/components/input-color/index.d.ts +2 -0
- package/components/input-color/input-color.component.d.ts +29 -0
- package/components/input-color/input-color.module.d.ts +16 -0
- package/components/input-copy/index.d.ts +4 -0
- package/components/input-copy/input-copy.component.d.ts +33 -0
- package/components/input-copy/input-copy.directive.d.ts +11 -0
- package/components/input-copy/input-copy.module.d.ts +18 -0
- package/components/input-copy/input-copy.options.d.ts +26 -0
- package/components/input-date/index.d.ts +3 -0
- package/components/input-date/input-date.component.d.ts +64 -0
- package/components/input-date/input-date.directive.d.ts +18 -0
- package/components/input-date/input-date.module.d.ts +23 -0
- package/components/input-date/native-date/native-date.component.d.ts +14 -0
- package/components/input-date-multi/index.d.ts +2 -0
- package/components/input-date-multi/input-date-multi.component.d.ts +69 -0
- package/components/input-date-multi/input-date-multi.module.d.ts +23 -0
- package/components/input-date-range/index.d.ts +3 -0
- package/components/input-date-range/input-date-range.component.d.ts +70 -0
- package/components/input-date-range/input-date-range.directive.d.ts +15 -0
- package/components/input-date-range/input-date-range.module.d.ts +21 -0
- package/components/input-date-time/index.d.ts +3 -0
- package/components/input-date-time/input-date-time.component.d.ts +80 -0
- package/components/input-date-time/input-date-time.directive.d.ts +16 -0
- package/components/input-date-time/input-date-time.module.d.ts +22 -0
- package/components/input-date-time/native-date-time/native-date-time.directive.d.ts +9 -0
- package/components/input-month/index.d.ts +3 -0
- package/components/input-month/input-month.component.d.ts +44 -0
- package/components/input-month/input-month.directive.d.ts +18 -0
- package/components/input-month/input-month.module.d.ts +18 -0
- package/components/input-month-range/index.d.ts +3 -0
- package/components/input-month-range/input-month-range.component.d.ts +38 -0
- package/components/input-month-range/input-month-range.directive.d.ts +18 -0
- package/components/input-month-range/input-month-range.module.d.ts +17 -0
- package/components/input-number/index.d.ts +4 -0
- package/components/input-number/input-number.component.d.ts +62 -0
- package/components/input-number/input-number.directive.d.ts +15 -0
- package/components/input-number/input-number.module.d.ts +17 -0
- package/components/input-number/input-number.options.d.ts +27 -0
- package/components/input-password/index.d.ts +4 -0
- package/components/input-password/input-password.component.d.ts +33 -0
- package/components/input-password/input-password.directive.d.ts +15 -0
- package/components/input-password/input-password.module.d.ts +19 -0
- package/components/input-password/input-password.options.d.ts +25 -0
- package/components/input-phone/index.d.ts +4 -0
- package/components/input-phone/input-phone.component.d.ts +51 -0
- package/components/input-phone/input-phone.directive.d.ts +16 -0
- package/components/input-phone/input-phone.module.d.ts +15 -0
- package/components/input-phone/input-phone.options.d.ts +22 -0
- package/components/input-phone/utils/complete-phone-insertion-preprocessor.d.ts +9 -0
- package/components/input-phone/utils/create-phone-mask-expression.d.ts +7 -0
- package/components/input-phone/utils/index.d.ts +2 -0
- package/components/input-phone-international/index.d.ts +3 -0
- package/components/input-phone-international/input-phone-international.component.d.ts +41 -0
- package/components/input-phone-international/input-phone-international.options.d.ts +22 -0
- package/components/input-phone-international/utils/extract-value-from-event.d.ts +1 -0
- package/components/input-range/index.d.ts +2 -0
- package/components/input-range/input-range.component.d.ts +55 -0
- package/components/input-range/input-range.module.d.ts +18 -0
- package/components/input-slider/index.d.ts +2 -0
- package/components/input-slider/input-slider.component.d.ts +41 -0
- package/components/input-slider/input-slider.module.d.ts +17 -0
- package/components/input-tag/index.d.ts +3 -0
- package/components/input-tag/input-tag.component.d.ts +97 -0
- package/components/input-tag/input-tag.module.d.ts +21 -0
- package/components/input-tag/input-tag.options.d.ts +23 -0
- package/components/input-time/index.d.ts +4 -0
- package/components/input-time/input-time.component.d.ts +63 -0
- package/components/input-time/input-time.directive.d.ts +16 -0
- package/components/input-time/input-time.module.d.ts +22 -0
- package/components/input-time/input-time.options.d.ts +35 -0
- package/components/input-time/native-time/native-time.component.d.ts +12 -0
- package/components/input-year/index.d.ts +3 -0
- package/components/input-year/input-year.component.d.ts +35 -0
- package/components/input-year/input-year.directive.d.ts +13 -0
- package/components/input-year/input-year.module.d.ts +17 -0
- package/components/island/index.d.ts +1 -0
- package/components/island/island.directive.d.ts +19 -0
- package/components/multi-select/hide-selected.pipe.d.ts +11 -0
- package/components/multi-select/index.d.ts +10 -0
- package/components/multi-select/multi-select-group/multi-select-group.component.d.ts +23 -0
- package/components/multi-select/multi-select-group/multi-select-group.directive.d.ts +8 -0
- package/components/multi-select/multi-select.component.d.ts +68 -0
- package/components/multi-select/multi-select.directive.d.ts +17 -0
- package/components/multi-select/multi-select.module.d.ts +30 -0
- package/components/multi-select/multi-select.options.d.ts +23 -0
- package/components/multi-select/native-multi-select/native-multi-select-group.component.d.ts +9 -0
- package/components/multi-select/native-multi-select/native-multi-select.component.d.ts +8 -0
- package/components/multi-select/native-multi-select/native-multi-select.d.ts +11 -0
- package/components/multi-select-option/index.d.ts +2 -0
- package/components/multi-select-option/multi-select-option.component.d.ts +12 -0
- package/components/multi-select-option/multi-select-option.module.d.ts +12 -0
- package/components/primitive-textfield/index.d.ts +7 -0
- package/components/primitive-textfield/primitive-textfield-options.d.ts +22 -0
- package/components/primitive-textfield/primitive-textfield-types.d.ts +14 -0
- package/components/primitive-textfield/primitive-textfield.component.d.ts +74 -0
- package/components/primitive-textfield/primitive-textfield.directive.d.ts +13 -0
- package/components/primitive-textfield/primitive-textfield.module.d.ts +20 -0
- package/components/primitive-textfield/textfield/textfield.component.d.ts +13 -0
- package/components/primitive-textfield/value-decoration/value-decoration.component.d.ts +22 -0
- package/components/select/index.d.ts +6 -0
- package/components/select/native-select/native-select-group.component.d.ts +13 -0
- package/components/select/native-select/native-select.component.d.ts +12 -0
- package/components/select/select.component.d.ts +43 -0
- package/components/select/select.directive.d.ts +15 -0
- package/components/select/select.module.d.ts +23 -0
- package/components/select/select.options.d.ts +22 -0
- package/components/select-option/index.d.ts +2 -0
- package/components/select-option/select-option.component.d.ts +33 -0
- package/components/select-option/select-option.module.d.ts +13 -0
- package/components/sheet/components/sheet/sheet.component.d.ts +31 -0
- package/components/sheet/components/sheet/sheet.providers.d.ts +2 -0
- package/components/sheet/components/sheet-bar/sheet-bar.component.d.ts +10 -0
- package/components/sheet/components/sheet-heading/sheet-heading.component.d.ts +14 -0
- package/components/sheet/components/sheets-host/sheets-host.component.d.ts +15 -0
- package/components/sheet/directives/sheet-close/sheet-close.directive.d.ts +14 -0
- package/components/sheet/directives/sheet-stop/sheet-stop.directive.d.ts +6 -0
- package/components/sheet/directives/sheet-top/sheet-top.directive.d.ts +14 -0
- package/components/sheet/directives/sheet-wrapper/sheet-wrapper.directive.d.ts +17 -0
- package/components/sheet/index.d.ts +14 -0
- package/components/sheet/sheet-options.d.ts +24 -0
- package/components/sheet/sheet-tokens.d.ts +18 -0
- package/components/sheet/sheet.d.ts +19 -0
- package/components/sheet/sheet.directive.d.ts +16 -0
- package/components/sheet/sheet.module.d.ts +23 -0
- package/components/sheet/sheet.service.d.ts +16 -0
- package/components/svg/content-processor.d.ts +18 -0
- package/components/svg/deprecated-icons.d.ts +4 -0
- package/components/svg/index.d.ts +5 -0
- package/components/svg/svg-options.d.ts +44 -0
- package/components/svg/svg.component.d.ts +49 -0
- package/components/svg/svg.service.d.ts +21 -0
- package/components/table-bar/index.d.ts +5 -0
- package/components/table-bar/table-bar.component.d.ts +13 -0
- package/components/table-bar/table-bar.directive.d.ts +7 -0
- package/components/table-bar/table-bar.options.d.ts +14 -0
- package/components/table-bar/table-bars-host.component.d.ts +6 -0
- package/components/table-bar/table-bars.service.d.ts +10 -0
- package/components/tag/index.d.ts +3 -0
- package/components/tag/tag.component.d.ts +43 -0
- package/components/tag/tag.module.d.ts +15 -0
- package/components/tag/tag.options.d.ts +25 -0
- package/components/textarea/index.d.ts +3 -0
- package/components/textarea/textarea.component.d.ts +53 -0
- package/components/textarea/textarea.directive.d.ts +11 -0
- package/components/textarea/textarea.module.d.ts +20 -0
- package/components/tooltip/index.d.ts +2 -0
- package/components/tooltip/tooltip.component.d.ts +15 -0
- package/components/tooltip/tooltip.module.d.ts +15 -0
- package/directives/index.d.ts +5 -0
- package/directives/legacy-dropdown-open-monitor/index.d.ts +1 -0
- package/directives/legacy-dropdown-open-monitor/legacy-dropdown-open-monitor.d.ts +9 -0
- package/directives/textfield-controller/index.d.ts +14 -0
- package/directives/textfield-controller/textfield-appearance.directive.d.ts +14 -0
- package/directives/textfield-controller/textfield-cleaner.directive.d.ts +14 -0
- package/directives/textfield-controller/textfield-controller.module.d.ts +20 -0
- package/directives/textfield-controller/textfield-controller.provider.d.ts +11 -0
- package/directives/textfield-controller/textfield-custom-content.directive.d.ts +15 -0
- package/directives/textfield-controller/textfield-filler.directive.d.ts +14 -0
- package/directives/textfield-controller/textfield-icon-left.directive.d.ts +17 -0
- package/directives/textfield-controller/textfield-icon.directive.d.ts +17 -0
- package/directives/textfield-controller/textfield-label-outside.directive.d.ts +14 -0
- package/directives/textfield-controller/textfield-postfix.directive.d.ts +14 -0
- package/directives/textfield-controller/textfield-prefix.directive.d.ts +14 -0
- package/directives/textfield-controller/textfield-size.directive.d.ts +15 -0
- package/directives/textfield-controller/textfield.controller.d.ts +41 -0
- package/directives/textfield-controller/textfield.options.d.ts +25 -0
- package/directives/unfinished-validator/index.d.ts +2 -0
- package/directives/unfinished-validator/unfinished-validator.directive.d.ts +11 -0
- package/directives/unfinished-validator/unfinished.validator.d.ts +7 -0
- package/directives/value-accessor/index.d.ts +3 -0
- package/directives/value-accessor/value-accessor.directive.d.ts +8 -0
- package/directives/value-accessor/value-accessor.module.d.ts +10 -0
- package/directives/value-accessor/value-accessor.provider.d.ts +5 -0
- package/directives/wrapper/README.md +19 -0
- package/directives/wrapper/index.d.ts +2 -0
- package/directives/wrapper/wrapper.directive.d.ts +21 -0
- package/directives/wrapper/wrapper.module.d.ts +10 -0
- package/esm2022/classes/abstract-native-select.mjs +40 -0
- package/esm2022/classes/abstract-textfield-host.mjs +37 -0
- package/esm2022/classes/control.mjs +176 -0
- package/esm2022/classes/index.mjs +9 -0
- package/esm2022/classes/interactive.mjs +85 -0
- package/esm2022/classes/multiple-control.mjs +21 -0
- package/esm2022/classes/named-day.mjs +14 -0
- package/esm2022/classes/nullable-control.mjs +18 -0
- package/esm2022/classes/stringifiable-item.mjs +14 -0
- package/esm2022/classes/taiga-ui-legacy-classes.mjs +5 -0
- package/esm2022/components/arrow/arrow.component.mjs +48 -0
- package/esm2022/components/arrow/arrow.options.mjs +21 -0
- package/esm2022/components/arrow/arrow.providers.mjs +21 -0
- package/esm2022/components/arrow/index.mjs +4 -0
- package/esm2022/components/arrow/taiga-ui-legacy-components-arrow.mjs +5 -0
- package/esm2022/components/color-selector/color-edit/color-edit.component.mjs +62 -0
- package/esm2022/components/color-selector/color-edit/color-edit.module.mjs +54 -0
- package/esm2022/components/color-selector/color-picker/color-picker.component.mjs +73 -0
- package/esm2022/components/color-selector/color-picker/color-picker.module.mjs +24 -0
- package/esm2022/components/color-selector/color-selector.component.mjs +250 -0
- package/esm2022/components/color-selector/color-selector.module.mjs +66 -0
- package/esm2022/components/color-selector/flat-picker/flat-picker.component.mjs +37 -0
- package/esm2022/components/color-selector/flat-picker/flat-picker.module.mjs +22 -0
- package/esm2022/components/color-selector/index.mjs +16 -0
- package/esm2022/components/color-selector/linear-multi-picker/linear-multi-picker.component.mjs +65 -0
- package/esm2022/components/color-selector/linear-multi-picker/linear-multi-picker.module.mjs +22 -0
- package/esm2022/components/color-selector/linear-picker/linear-picker.component.mjs +34 -0
- package/esm2022/components/color-selector/linear-picker/linear-picker.module.mjs +22 -0
- package/esm2022/components/color-selector/palette/palette.component.mjs +26 -0
- package/esm2022/components/color-selector/palette/palette.module.mjs +24 -0
- package/esm2022/components/color-selector/services/picker.service.mjs +30 -0
- package/esm2022/components/color-selector/taiga-ui-legacy-components-color-selector.mjs +5 -0
- package/esm2022/components/combo-box/combo-box-strict.directive.mjs +32 -0
- package/esm2022/components/combo-box/combo-box.component.mjs +181 -0
- package/esm2022/components/combo-box/combo-box.directive.mjs +26 -0
- package/esm2022/components/combo-box/combo-box.module.mjs +70 -0
- package/esm2022/components/combo-box/index.mjs +5 -0
- package/esm2022/components/combo-box/taiga-ui-legacy-components-combo-box.mjs +5 -0
- package/esm2022/components/index.mjs +34 -0
- package/esm2022/components/input/index.mjs +4 -0
- package/esm2022/components/input/input.component.mjs +92 -0
- package/esm2022/components/input/input.directive.mjs +23 -0
- package/esm2022/components/input/input.module.mjs +33 -0
- package/esm2022/components/input/taiga-ui-legacy-components-input.mjs +5 -0
- package/esm2022/components/input-color/index.mjs +3 -0
- package/esm2022/components/input-color/input-color.component.mjs +85 -0
- package/esm2022/components/input-color/input-color.module.mjs +43 -0
- package/esm2022/components/input-color/taiga-ui-legacy-components-input-color.mjs +5 -0
- package/esm2022/components/input-copy/index.mjs +5 -0
- package/esm2022/components/input-copy/input-copy.component.mjs +106 -0
- package/esm2022/components/input-copy/input-copy.directive.mjs +23 -0
- package/esm2022/components/input-copy/input-copy.module.mjs +55 -0
- package/esm2022/components/input-copy/input-copy.options.mjs +21 -0
- package/esm2022/components/input-copy/taiga-ui-legacy-components-input-copy.mjs +5 -0
- package/esm2022/components/input-date/index.mjs +4 -0
- package/esm2022/components/input-date/input-date.component.mjs +220 -0
- package/esm2022/components/input-date/input-date.directive.mjs +41 -0
- package/esm2022/components/input-date/input-date.module.mjs +74 -0
- package/esm2022/components/input-date/native-date/native-date.component.mjs +51 -0
- package/esm2022/components/input-date/taiga-ui-legacy-components-input-date.mjs +5 -0
- package/esm2022/components/input-date-multi/index.mjs +3 -0
- package/esm2022/components/input-date-multi/input-date-multi.component.mjs +215 -0
- package/esm2022/components/input-date-multi/input-date-multi.module.mjs +70 -0
- package/esm2022/components/input-date-multi/taiga-ui-legacy-components-input-date-multi.mjs +5 -0
- package/esm2022/components/input-date-range/index.mjs +4 -0
- package/esm2022/components/input-date-range/input-date-range.component.mjs +267 -0
- package/esm2022/components/input-date-range/input-date-range.directive.mjs +34 -0
- package/esm2022/components/input-date-range/input-date-range.module.mjs +70 -0
- package/esm2022/components/input-date-range/taiga-ui-legacy-components-input-date-range.mjs +5 -0
- package/esm2022/components/input-date-time/index.mjs +4 -0
- package/esm2022/components/input-date-time/input-date-time.component.mjs +305 -0
- package/esm2022/components/input-date-time/input-date-time.directive.mjs +35 -0
- package/esm2022/components/input-date-time/input-date-time.module.mjs +77 -0
- package/esm2022/components/input-date-time/native-date-time/native-date-time.directive.mjs +44 -0
- package/esm2022/components/input-date-time/taiga-ui-legacy-components-input-date-time.mjs +5 -0
- package/esm2022/components/input-month/index.mjs +4 -0
- package/esm2022/components/input-month/input-month.component.mjs +135 -0
- package/esm2022/components/input-month/input-month.directive.mjs +44 -0
- package/esm2022/components/input-month/input-month.module.mjs +56 -0
- package/esm2022/components/input-month/taiga-ui-legacy-components-input-month.mjs +5 -0
- package/esm2022/components/input-month-range/index.mjs +4 -0
- package/esm2022/components/input-month-range/input-month-range.component.mjs +123 -0
- package/esm2022/components/input-month-range/input-month-range.directive.mjs +50 -0
- package/esm2022/components/input-month-range/input-month-range.module.mjs +52 -0
- package/esm2022/components/input-month-range/taiga-ui-legacy-components-input-month-range.mjs +5 -0
- package/esm2022/components/input-number/index.mjs +5 -0
- package/esm2022/components/input-number/input-number.component.mjs +263 -0
- package/esm2022/components/input-number/input-number.directive.mjs +36 -0
- package/esm2022/components/input-number/input-number.module.mjs +47 -0
- package/esm2022/components/input-number/input-number.options.mjs +26 -0
- package/esm2022/components/input-number/taiga-ui-legacy-components-input-number.mjs +5 -0
- package/esm2022/components/input-password/index.mjs +5 -0
- package/esm2022/components/input-password/input-password.component.mjs +81 -0
- package/esm2022/components/input-password/input-password.directive.mjs +33 -0
- package/esm2022/components/input-password/input-password.module.mjs +59 -0
- package/esm2022/components/input-password/input-password.options.mjs +21 -0
- package/esm2022/components/input-password/taiga-ui-legacy-components-input-password.mjs +5 -0
- package/esm2022/components/input-phone/index.mjs +5 -0
- package/esm2022/components/input-phone/input-phone.component.mjs +220 -0
- package/esm2022/components/input-phone/input-phone.directive.mjs +36 -0
- package/esm2022/components/input-phone/input-phone.module.mjs +47 -0
- package/esm2022/components/input-phone/input-phone.options.mjs +21 -0
- package/esm2022/components/input-phone/taiga-ui-legacy-components-input-phone.mjs +5 -0
- package/esm2022/components/input-phone/utils/complete-phone-insertion-preprocessor.mjs +41 -0
- package/esm2022/components/input-phone/utils/create-phone-mask-expression.mjs +17 -0
- package/esm2022/components/input-phone/utils/index.mjs +3 -0
- package/esm2022/components/input-phone-international/index.mjs +4 -0
- package/esm2022/components/input-phone-international/input-phone-international.component.mjs +184 -0
- package/esm2022/components/input-phone-international/input-phone-international.options.mjs +20 -0
- package/esm2022/components/input-phone-international/taiga-ui-legacy-components-input-phone-international.mjs +5 -0
- package/esm2022/components/input-phone-international/utils/extract-value-from-event.mjs +7 -0
- package/esm2022/components/input-range/index.mjs +3 -0
- package/esm2022/components/input-range/input-range.component.mjs +206 -0
- package/esm2022/components/input-range/input-range.module.mjs +54 -0
- package/esm2022/components/input-range/taiga-ui-legacy-components-input-range.mjs +5 -0
- package/esm2022/components/input-slider/index.mjs +3 -0
- package/esm2022/components/input-slider/input-slider.component.mjs +153 -0
- package/esm2022/components/input-slider/input-slider.module.mjs +47 -0
- package/esm2022/components/input-slider/taiga-ui-legacy-components-input-slider.mjs +5 -0
- package/esm2022/components/input-tag/index.mjs +4 -0
- package/esm2022/components/input-tag/input-tag.component.mjs +418 -0
- package/esm2022/components/input-tag/input-tag.module.mjs +66 -0
- package/esm2022/components/input-tag/input-tag.options.mjs +21 -0
- package/esm2022/components/input-tag/taiga-ui-legacy-components-input-tag.mjs +5 -0
- package/esm2022/components/input-time/index.mjs +5 -0
- package/esm2022/components/input-time/input-time.component.mjs +278 -0
- package/esm2022/components/input-time/input-time.directive.mjs +38 -0
- package/esm2022/components/input-time/input-time.module.mjs +70 -0
- package/esm2022/components/input-time/input-time.options.mjs +31 -0
- package/esm2022/components/input-time/native-time/native-time.component.mjs +67 -0
- package/esm2022/components/input-time/taiga-ui-legacy-components-input-time.mjs +5 -0
- package/esm2022/components/input-year/index.mjs +4 -0
- package/esm2022/components/input-year/input-year.component.mjs +110 -0
- package/esm2022/components/input-year/input-year.directive.mjs +30 -0
- package/esm2022/components/input-year/input-year.module.mjs +52 -0
- package/esm2022/components/input-year/taiga-ui-legacy-components-input-year.mjs +5 -0
- package/esm2022/components/island/index.mjs +2 -0
- package/esm2022/components/island/island.directive.mjs +77 -0
- package/esm2022/components/island/taiga-ui-legacy-components-island.mjs +5 -0
- package/esm2022/components/multi-select/hide-selected.pipe.mjs +43 -0
- package/esm2022/components/multi-select/index.mjs +11 -0
- package/esm2022/components/multi-select/multi-select-group/multi-select-group.component.mjs +99 -0
- package/esm2022/components/multi-select/multi-select-group/multi-select-group.directive.mjs +65 -0
- package/esm2022/components/multi-select/multi-select.component.mjs +207 -0
- package/esm2022/components/multi-select/multi-select.directive.mjs +34 -0
- package/esm2022/components/multi-select/multi-select.module.mjs +114 -0
- package/esm2022/components/multi-select/multi-select.options.mjs +20 -0
- package/esm2022/components/multi-select/native-multi-select/native-multi-select-group.component.mjs +60 -0
- package/esm2022/components/multi-select/native-multi-select/native-multi-select.component.mjs +56 -0
- package/esm2022/components/multi-select/native-multi-select/native-multi-select.mjs +19 -0
- package/esm2022/components/multi-select/taiga-ui-legacy-components-multi-select.mjs +5 -0
- package/esm2022/components/multi-select-option/index.mjs +3 -0
- package/esm2022/components/multi-select-option/multi-select-option.component.mjs +28 -0
- package/esm2022/components/multi-select-option/multi-select-option.module.mjs +23 -0
- package/esm2022/components/multi-select-option/taiga-ui-legacy-components-multi-select-option.mjs +5 -0
- package/esm2022/components/primitive-textfield/index.mjs +8 -0
- package/esm2022/components/primitive-textfield/primitive-textfield-options.mjs +17 -0
- package/esm2022/components/primitive-textfield/primitive-textfield-types.mjs +2 -0
- package/esm2022/components/primitive-textfield/primitive-textfield.component.mjs +253 -0
- package/esm2022/components/primitive-textfield/primitive-textfield.directive.mjs +31 -0
- package/esm2022/components/primitive-textfield/primitive-textfield.module.mjs +65 -0
- package/esm2022/components/primitive-textfield/taiga-ui-legacy-components-primitive-textfield.mjs +5 -0
- package/esm2022/components/primitive-textfield/textfield/textfield.component.mjs +39 -0
- package/esm2022/components/primitive-textfield/value-decoration/value-decoration.component.mjs +71 -0
- package/esm2022/components/select/index.mjs +7 -0
- package/esm2022/components/select/native-select/native-select-group.component.mjs +60 -0
- package/esm2022/components/select/native-select/native-select.component.mjs +56 -0
- package/esm2022/components/select/select.component.mjs +119 -0
- package/esm2022/components/select/select.directive.mjs +32 -0
- package/esm2022/components/select/select.module.mjs +86 -0
- package/esm2022/components/select/select.options.mjs +19 -0
- package/esm2022/components/select/taiga-ui-legacy-components-select.mjs +5 -0
- package/esm2022/components/select-option/index.mjs +3 -0
- package/esm2022/components/select-option/select-option.component.mjs +71 -0
- package/esm2022/components/select-option/select-option.module.mjs +24 -0
- package/esm2022/components/select-option/taiga-ui-legacy-components-select-option.mjs +5 -0
- package/esm2022/components/sheet/components/sheet/sheet.component.mjs +118 -0
- package/esm2022/components/sheet/components/sheet/sheet.providers.mjs +42 -0
- package/esm2022/components/sheet/components/sheet-bar/sheet-bar.component.mjs +27 -0
- package/esm2022/components/sheet/components/sheet-heading/sheet-heading.component.mjs +31 -0
- package/esm2022/components/sheet/components/sheets-host/sheets-host.component.mjs +46 -0
- package/esm2022/components/sheet/directives/sheet-close/sheet-close.directive.mjs +38 -0
- package/esm2022/components/sheet/directives/sheet-stop/sheet-stop.directive.mjs +37 -0
- package/esm2022/components/sheet/directives/sheet-top/sheet-top.directive.mjs +51 -0
- package/esm2022/components/sheet/directives/sheet-wrapper/sheet-wrapper.directive.mjs +76 -0
- package/esm2022/components/sheet/index.mjs +15 -0
- package/esm2022/components/sheet/sheet-options.mjs +21 -0
- package/esm2022/components/sheet/sheet-tokens.mjs +17 -0
- package/esm2022/components/sheet/sheet.directive.mjs +38 -0
- package/esm2022/components/sheet/sheet.mjs +2 -0
- package/esm2022/components/sheet/sheet.module.mjs +74 -0
- package/esm2022/components/sheet/sheet.service.mjs +51 -0
- package/esm2022/components/sheet/taiga-ui-legacy-components-sheet.mjs +5 -0
- package/esm2022/components/svg/content-processor.mjs +40 -0
- package/esm2022/components/svg/deprecated-icons.mjs +62 -0
- package/esm2022/components/svg/index.mjs +6 -0
- package/esm2022/components/svg/svg-options.mjs +76 -0
- package/esm2022/components/svg/svg.component.mjs +149 -0
- package/esm2022/components/svg/svg.service.mjs +64 -0
- package/esm2022/components/svg/taiga-ui-legacy-components-svg.mjs +5 -0
- package/esm2022/components/table-bar/index.mjs +6 -0
- package/esm2022/components/table-bar/table-bar.component.mjs +33 -0
- package/esm2022/components/table-bar/table-bar.directive.mjs +21 -0
- package/esm2022/components/table-bar/table-bar.options.mjs +16 -0
- package/esm2022/components/table-bar/table-bars-host.component.mjs +35 -0
- package/esm2022/components/table-bar/table-bars.service.mjs +21 -0
- package/esm2022/components/table-bar/taiga-ui-legacy-components-table-bar.mjs +5 -0
- package/esm2022/components/tag/index.mjs +4 -0
- package/esm2022/components/tag/tag.component.mjs +174 -0
- package/esm2022/components/tag/tag.module.mjs +41 -0
- package/esm2022/components/tag/tag.options.mjs +22 -0
- package/esm2022/components/tag/taiga-ui-legacy-components-tag.mjs +5 -0
- package/esm2022/components/taiga-ui-legacy-components.mjs +5 -0
- package/esm2022/components/textarea/index.mjs +4 -0
- package/esm2022/components/textarea/taiga-ui-legacy-components-textarea.mjs +5 -0
- package/esm2022/components/textarea/textarea.component.mjs +192 -0
- package/esm2022/components/textarea/textarea.directive.mjs +23 -0
- package/esm2022/components/textarea/textarea.module.mjs +67 -0
- package/esm2022/components/tooltip/index.mjs +3 -0
- package/esm2022/components/tooltip/taiga-ui-legacy-components-tooltip.mjs +5 -0
- package/esm2022/components/tooltip/tooltip.component.mjs +50 -0
- package/esm2022/components/tooltip/tooltip.module.mjs +27 -0
- package/esm2022/directives/index.mjs +6 -0
- package/esm2022/directives/legacy-dropdown-open-monitor/index.mjs +2 -0
- package/esm2022/directives/legacy-dropdown-open-monitor/legacy-dropdown-open-monitor.mjs +40 -0
- package/esm2022/directives/legacy-dropdown-open-monitor/taiga-ui-legacy-directives-legacy-dropdown-open-monitor.mjs +5 -0
- package/esm2022/directives/taiga-ui-legacy-directives.mjs +5 -0
- package/esm2022/directives/textfield-controller/index.mjs +15 -0
- package/esm2022/directives/textfield-controller/taiga-ui-legacy-directives-textfield-controller.mjs +5 -0
- package/esm2022/directives/textfield-controller/textfield-appearance.directive.mjs +37 -0
- package/esm2022/directives/textfield-controller/textfield-cleaner.directive.mjs +31 -0
- package/esm2022/directives/textfield-controller/textfield-controller.module.mjs +75 -0
- package/esm2022/directives/textfield-controller/textfield-controller.provider.mjs +50 -0
- package/esm2022/directives/textfield-controller/textfield-custom-content.directive.mjs +31 -0
- package/esm2022/directives/textfield-controller/textfield-filler.directive.mjs +31 -0
- package/esm2022/directives/textfield-controller/textfield-icon-left.directive.mjs +27 -0
- package/esm2022/directives/textfield-controller/textfield-icon.directive.mjs +27 -0
- package/esm2022/directives/textfield-controller/textfield-label-outside.directive.mjs +35 -0
- package/esm2022/directives/textfield-controller/textfield-postfix.directive.mjs +31 -0
- package/esm2022/directives/textfield-controller/textfield-prefix.directive.mjs +31 -0
- package/esm2022/directives/textfield-controller/textfield-size.directive.mjs +31 -0
- package/esm2022/directives/textfield-controller/textfield.controller.mjs +48 -0
- package/esm2022/directives/textfield-controller/textfield.options.mjs +21 -0
- package/esm2022/directives/unfinished-validator/index.mjs +3 -0
- package/esm2022/directives/unfinished-validator/taiga-ui-legacy-directives-unfinished-validator.mjs +5 -0
- package/esm2022/directives/unfinished-validator/unfinished-validator.directive.mjs +28 -0
- package/esm2022/directives/unfinished-validator/unfinished.validator.mjs +18 -0
- package/esm2022/directives/value-accessor/index.mjs +4 -0
- package/esm2022/directives/value-accessor/taiga-ui-legacy-directives-value-accessor.mjs +5 -0
- package/esm2022/directives/value-accessor/value-accessor.directive.mjs +19 -0
- package/esm2022/directives/value-accessor/value-accessor.module.mjs +20 -0
- package/esm2022/directives/value-accessor/value-accessor.provider.mjs +13 -0
- package/esm2022/directives/wrapper/index.mjs +3 -0
- package/esm2022/directives/wrapper/taiga-ui-legacy-directives-wrapper.mjs +5 -0
- package/esm2022/directives/wrapper/wrapper.directive.mjs +85 -0
- package/esm2022/directives/wrapper/wrapper.module.mjs +20 -0
- package/esm2022/index.mjs +7 -0
- package/esm2022/pipes/format-phone/format-phone.pipe.mjs +53 -0
- package/esm2022/pipes/format-phone/index.mjs +2 -0
- package/esm2022/pipes/format-phone/taiga-ui-legacy-pipes-format-phone.mjs +5 -0
- package/esm2022/pipes/index.mjs +4 -0
- package/esm2022/pipes/iso-to-country-code/index.mjs +2 -0
- package/esm2022/pipes/iso-to-country-code/iso-to-country-code.pipe.mjs +44 -0
- package/esm2022/pipes/iso-to-country-code/taiga-ui-legacy-pipes-iso-to-country-code.mjs +5 -0
- package/esm2022/pipes/taiga-ui-legacy-pipes.mjs +5 -0
- package/esm2022/pipes/to-country-code/index.mjs +2 -0
- package/esm2022/pipes/to-country-code/taiga-ui-legacy-pipes-to-country-code.mjs +5 -0
- package/esm2022/pipes/to-country-code/to-country-code.pipe.mjs +74 -0
- package/esm2022/taiga-ui-legacy.mjs +5 -0
- package/esm2022/tokens/countries-masks.mjs +255 -0
- package/esm2022/tokens/focusable-item-accessor.mjs +14 -0
- package/esm2022/tokens/fonts-ready.mjs +10 -0
- package/esm2022/tokens/icons.mjs +7 -0
- package/esm2022/tokens/index.mjs +15 -0
- package/esm2022/tokens/is-apple.mjs +10 -0
- package/esm2022/tokens/is-chromium.mjs +9 -0
- package/esm2022/tokens/is-firefox.mjs +10 -0
- package/esm2022/tokens/is-stackblitz.mjs +8 -0
- package/esm2022/tokens/month-formatter.mjs +18 -0
- package/esm2022/tokens/sanitizer.mjs +7 -0
- package/esm2022/tokens/taiga-ui-legacy-tokens.mjs +5 -0
- package/esm2022/tokens/textfield-appearance.mjs +8 -0
- package/esm2022/tokens/textfield-host.mjs +14 -0
- package/esm2022/tokens/touch-supported.mjs +8 -0
- package/esm2022/tokens/value-accessor.mjs +7 -0
- package/esm2022/utils/date-mode-maskito-adapter.mjs +9 -0
- package/esm2022/utils/format-phone.mjs +60 -0
- package/esm2022/utils/get-border.mjs +23 -0
- package/esm2022/utils/get-max-allowed-phone-length.mjs +26 -0
- package/esm2022/utils/get-safe-area-size.mjs +18 -0
- package/esm2022/utils/icons-path-factory.mjs +22 -0
- package/esm2022/utils/index.mjs +14 -0
- package/esm2022/utils/is-apple.mjs +9 -0
- package/esm2022/utils/is-presumed-html-string.mjs +8 -0
- package/esm2022/utils/iso-to-country-code.mjs +16 -0
- package/esm2022/utils/not-kz-region.mjs +24 -0
- package/esm2022/utils/process-icon.mjs +34 -0
- package/esm2022/utils/specific-dropdown-controllers.mjs +9 -0
- package/esm2022/utils/status.mjs +2 -0
- package/esm2022/utils/taiga-ui-legacy-utils.mjs +5 -0
- package/fesm2022/taiga-ui-legacy-classes.mjs +391 -0
- package/fesm2022/taiga-ui-legacy-classes.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-arrow.mjs +93 -0
- package/fesm2022/taiga-ui-legacy-components-arrow.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-color-selector.mjs +725 -0
- package/fesm2022/taiga-ui-legacy-components-color-selector.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-combo-box.mjs +294 -0
- package/fesm2022/taiga-ui-legacy-components-combo-box.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-color.mjs +127 -0
- package/fesm2022/taiga-ui-legacy-components-input-color.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-copy.mjs +195 -0
- package/fesm2022/taiga-ui-legacy-components-input-copy.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-date-multi.mjs +283 -0
- package/fesm2022/taiga-ui-legacy-components-input-date-multi.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-date-range.mjs +363 -0
- package/fesm2022/taiga-ui-legacy-components-input-date-range.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-date-time.mjs +447 -0
- package/fesm2022/taiga-ui-legacy-components-input-date-time.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-date.mjs +370 -0
- package/fesm2022/taiga-ui-legacy-components-input-date.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-month-range.mjs +218 -0
- package/fesm2022/taiga-ui-legacy-components-input-month-range.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-month.mjs +228 -0
- package/fesm2022/taiga-ui-legacy-components-input-month.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-number.mjs +363 -0
- package/fesm2022/taiga-ui-legacy-components-input-number.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-password.mjs +185 -0
- package/fesm2022/taiga-ui-legacy-components-input-password.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-phone-international.mjs +214 -0
- package/fesm2022/taiga-ui-legacy-components-input-phone-international.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-phone.mjs +371 -0
- package/fesm2022/taiga-ui-legacy-components-input-phone.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-range.mjs +259 -0
- package/fesm2022/taiga-ui-legacy-components-input-range.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-slider.mjs +198 -0
- package/fesm2022/taiga-ui-legacy-components-input-slider.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-tag.mjs +501 -0
- package/fesm2022/taiga-ui-legacy-components-input-tag.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-time.mjs +465 -0
- package/fesm2022/taiga-ui-legacy-components-input-time.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input-year.mjs +185 -0
- package/fesm2022/taiga-ui-legacy-components-input-year.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-input.mjs +141 -0
- package/fesm2022/taiga-ui-legacy-components-input.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-island.mjs +83 -0
- package/fesm2022/taiga-ui-legacy-components-island.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-multi-select-option.mjs +53 -0
- package/fesm2022/taiga-ui-legacy-components-multi-select-option.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-multi-select.mjs +644 -0
- package/fesm2022/taiga-ui-legacy-components-multi-select.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-primitive-textfield.mjs +455 -0
- package/fesm2022/taiga-ui-legacy-components-primitive-textfield.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-select-option.mjs +97 -0
- package/fesm2022/taiga-ui-legacy-components-select-option.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-select.mjs +339 -0
- package/fesm2022/taiga-ui-legacy-components-select.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-sheet.mjs +564 -0
- package/fesm2022/taiga-ui-legacy-components-sheet.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-svg.mjs +379 -0
- package/fesm2022/taiga-ui-legacy-components-svg.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-table-bar.mjs +115 -0
- package/fesm2022/taiga-ui-legacy-components-table-bar.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-tag.mjs +238 -0
- package/fesm2022/taiga-ui-legacy-components-tag.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-textarea.mjs +276 -0
- package/fesm2022/taiga-ui-legacy-components-textarea.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components-tooltip.mjs +77 -0
- package/fesm2022/taiga-ui-legacy-components-tooltip.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-components.mjs +38 -0
- package/fesm2022/taiga-ui-legacy-components.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-directives-legacy-dropdown-open-monitor.mjs +46 -0
- package/fesm2022/taiga-ui-legacy-directives-legacy-dropdown-open-monitor.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-directives-textfield-controller.mjs +440 -0
- package/fesm2022/taiga-ui-legacy-directives-textfield-controller.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-directives-unfinished-validator.mjs +50 -0
- package/fesm2022/taiga-ui-legacy-directives-unfinished-validator.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-directives-value-accessor.mjs +52 -0
- package/fesm2022/taiga-ui-legacy-directives-value-accessor.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-directives-wrapper.mjs +107 -0
- package/fesm2022/taiga-ui-legacy-directives-wrapper.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-directives.mjs +10 -0
- package/fesm2022/taiga-ui-legacy-directives.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-pipes-format-phone.mjs +59 -0
- package/fesm2022/taiga-ui-legacy-pipes-format-phone.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-pipes-iso-to-country-code.mjs +50 -0
- package/fesm2022/taiga-ui-legacy-pipes-iso-to-country-code.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-pipes-to-country-code.mjs +80 -0
- package/fesm2022/taiga-ui-legacy-pipes-to-country-code.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-pipes.mjs +8 -0
- package/fesm2022/taiga-ui-legacy-pipes.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-tokens.mjs +368 -0
- package/fesm2022/taiga-ui-legacy-tokens.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy-utils.mjs +264 -0
- package/fesm2022/taiga-ui-legacy-utils.mjs.map +1 -0
- package/fesm2022/taiga-ui-legacy.mjs +11 -0
- package/fesm2022/taiga-ui-legacy.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/package.json +315 -0
- package/pipes/format-phone/format-phone.pipe.d.ts +37 -0
- package/pipes/format-phone/index.d.ts +1 -0
- package/pipes/index.d.ts +3 -0
- package/pipes/iso-to-country-code/index.d.ts +1 -0
- package/pipes/iso-to-country-code/iso-to-country-code.pipe.d.ts +30 -0
- package/pipes/to-country-code/index.d.ts +1 -0
- package/pipes/to-country-code/to-country-code.pipe.d.ts +38 -0
- package/styles/mixins/mixins.less +245 -0
- package/styles/mixins/mixins.scss +230 -0
- package/styles/mixins/textfield.less +315 -0
- package/styles/mixins/textfield.scss +306 -0
- package/styles/taiga-ui-local.less +3 -0
- package/styles/taiga-ui-local.scss +3 -0
- package/tokens/countries-masks.d.ts +8 -0
- package/tokens/focusable-item-accessor.d.ts +26 -0
- package/tokens/fonts-ready.d.ts +6 -0
- package/tokens/icons.d.ts +5 -0
- package/tokens/index.d.ts +14 -0
- package/tokens/is-apple.d.ts +5 -0
- package/tokens/is-chromium.d.ts +5 -0
- package/tokens/is-firefox.d.ts +5 -0
- package/tokens/is-stackblitz.d.ts +4 -0
- package/tokens/month-formatter.d.ts +11 -0
- package/tokens/sanitizer.d.ts +7 -0
- package/tokens/textfield-appearance.d.ts +6 -0
- package/tokens/textfield-host.d.ts +24 -0
- package/tokens/touch-supported.d.ts +4 -0
- package/tokens/value-accessor.d.ts +7 -0
- package/utils/date-mode-maskito-adapter.d.ts +6 -0
- package/utils/format-phone.d.ts +30 -0
- package/utils/get-border.d.ts +5 -0
- package/utils/get-max-allowed-phone-length.d.ts +24 -0
- package/utils/get-safe-area-size.d.ts +7 -0
- package/utils/icons-path-factory.d.ts +13 -0
- package/utils/index.d.ts +13 -0
- package/utils/is-apple.d.ts +4 -0
- package/utils/is-presumed-html-string.d.ts +4 -0
- package/utils/iso-to-country-code.d.ts +13 -0
- package/utils/not-kz-region.d.ts +20 -0
- package/utils/process-icon.d.ts +4 -0
- package/utils/specific-dropdown-controllers.d.ts +4 -0
- package/utils/status.d.ts +4 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./color-selector.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@taiga-ui/core/components/button";
|
|
5
|
+
import * as i4 from "@taiga-ui/legacy/components/svg";
|
|
6
|
+
import * as i5 from "./color-picker/color-picker.module";
|
|
7
|
+
import * as i6 from "./linear-multi-picker/linear-multi-picker.module";
|
|
8
|
+
import * as i7 from "@taiga-ui/cdk/directives/active-zone";
|
|
9
|
+
import * as i8 from "./color-edit/color-edit.module";
|
|
10
|
+
import * as i9 from "@taiga-ui/core/components/group";
|
|
11
|
+
import * as i10 from "./palette/palette.module";
|
|
12
|
+
import * as i11 from "@taiga-ui/kit/directives/chevron";
|
|
13
|
+
import * as i12 from "@taiga-ui/core/components/icon";
|
|
14
|
+
import * as i13 from "@taiga-ui/core/directives/hint";
|
|
15
|
+
import * as i14 from "@taiga-ui/core/components/data-list";
|
|
16
|
+
/**
|
|
17
|
+
* @deprecated: drop in v5.0
|
|
18
|
+
*/
|
|
19
|
+
export declare class TuiColorSelectorModule {
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiColorSelectorModule, never>;
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiColorSelectorModule, [typeof i1.TuiColorSelectorComponent], [typeof i2.CommonModule, typeof i3.TuiButton, typeof i4.TuiSvgComponent, typeof i5.TuiColorPickerModule, typeof i6.TuiLinearMultiPickerModule, typeof i7.TuiActiveZone, typeof i8.TuiColorEditModule, typeof i9.TuiGroup, typeof i10.TuiPaletteModule, typeof i11.TuiChevron, typeof i12.TuiIcon, typeof i13.TuiHintComponent, typeof i13.TuiHintDirective, typeof i13.TuiHintOptionsDirective, typeof i13.TuiHintUnstyled, typeof i13.TuiHintDriver, typeof i13.TuiHintPosition, typeof i13.TuiHintHover, typeof i13.TuiHintDescribe, typeof i13.TuiHintHost, typeof i13.TuiHintManual, typeof i13.TuiHintPointer, typeof i14.TuiDataListComponent, typeof i14.TuiDataListDirective, typeof i14.TuiOption, typeof i14.TuiOptGroup], [typeof i1.TuiColorSelectorComponent, typeof i13.TuiHintComponent, typeof i13.TuiHintDirective, typeof i13.TuiHintOptionsDirective, typeof i13.TuiHintUnstyled, typeof i13.TuiHintDriver, typeof i13.TuiHintPosition, typeof i13.TuiHintHover, typeof i13.TuiHintDescribe, typeof i13.TuiHintHost, typeof i13.TuiHintManual, typeof i13.TuiHintPointer, typeof i14.TuiDataListComponent, typeof i14.TuiDataListDirective, typeof i14.TuiOption, typeof i14.TuiOptGroup]>;
|
|
22
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiColorSelectorModule>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import type { TuiPoint } from '@taiga-ui/core/types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiFlatPickerComponent {
|
|
8
|
+
value: TuiPoint;
|
|
9
|
+
readonly valueChange: EventEmitter<[number, number]>;
|
|
10
|
+
constructor();
|
|
11
|
+
get left(): number;
|
|
12
|
+
get top(): number;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiFlatPickerComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiFlatPickerComponent, "tui-flat-picker", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./flat-picker.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiFlatPickerModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiFlatPickerModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiFlatPickerModule, [typeof i1.TuiFlatPickerComponent], [typeof i2.CommonModule], [typeof i1.TuiFlatPickerComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiFlatPickerModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from './color-edit/color-edit.component';
|
|
2
|
+
export * from './color-edit/color-edit.module';
|
|
3
|
+
export * from './color-picker/color-picker.component';
|
|
4
|
+
export * from './color-picker/color-picker.module';
|
|
5
|
+
export * from './color-selector.component';
|
|
6
|
+
export * from './color-selector.module';
|
|
7
|
+
export * from './flat-picker/flat-picker.component';
|
|
8
|
+
export * from './flat-picker/flat-picker.module';
|
|
9
|
+
export * from './linear-multi-picker/linear-multi-picker.component';
|
|
10
|
+
export * from './linear-multi-picker/linear-multi-picker.module';
|
|
11
|
+
export * from './linear-picker/linear-picker.component';
|
|
12
|
+
export * from './linear-picker/linear-picker.module';
|
|
13
|
+
export * from './palette/palette.component';
|
|
14
|
+
export * from './palette/palette.module';
|
|
15
|
+
export * from './services/picker.service';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated: drop in v5.0
|
|
5
|
+
*/
|
|
6
|
+
export declare class TuiLinearMultiPickerComponent {
|
|
7
|
+
value: number[];
|
|
8
|
+
readonly valueChange: EventEmitter<number[]>;
|
|
9
|
+
readonly indexChange: EventEmitter<number>;
|
|
10
|
+
index: number;
|
|
11
|
+
constructor();
|
|
12
|
+
onMouseUp(): void;
|
|
13
|
+
onMouseDown(index: number): void;
|
|
14
|
+
onClick(index: number): void;
|
|
15
|
+
private onPicker;
|
|
16
|
+
private updateIndex;
|
|
17
|
+
private updateValue;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiLinearMultiPickerComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiLinearMultiPickerComponent, "tui-linear-multi-picker", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "indexChange": "indexChange"; }, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./linear-multi-picker.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiLinearMultiPickerModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiLinearMultiPickerModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiLinearMultiPickerModule, [typeof i1.TuiLinearMultiPickerComponent], [typeof i2.CommonModule], [typeof i1.TuiLinearMultiPickerComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiLinearMultiPickerModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated: drop in v5.0
|
|
5
|
+
*/
|
|
6
|
+
export declare class TuiLinearPickerComponent {
|
|
7
|
+
value: number;
|
|
8
|
+
readonly valueChange: EventEmitter<number>;
|
|
9
|
+
constructor();
|
|
10
|
+
get left(): number;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiLinearPickerComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiLinearPickerComponent, "tui-linear-picker", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./linear-picker.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiLinearPickerModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiLinearPickerModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiLinearPickerModule, [typeof i1.TuiLinearPickerComponent], [typeof i2.CommonModule], [typeof i1.TuiLinearPickerComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiLinearPickerModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { KeyValue } from '@angular/common';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiPaletteComponent {
|
|
8
|
+
colors: ReadonlyMap<string, string>;
|
|
9
|
+
readonly selectedColor: EventEmitter<string>;
|
|
10
|
+
originalOrder: (_a: KeyValue<string, string>, _b: KeyValue<string, string>) => number;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPaletteComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiPaletteComponent, "tui-palette", never, { "colors": { "alias": "colors"; "required": false; }; }, { "selectedColor": "selectedColor"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./palette.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@taiga-ui/core/directives/hint";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated: drop in v5.0
|
|
7
|
+
*/
|
|
8
|
+
export declare class TuiPaletteModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPaletteModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiPaletteModule, [typeof i1.TuiPaletteComponent], [typeof i2.CommonModule, typeof i3.TuiHintComponent, typeof i3.TuiHintDirective, typeof i3.TuiHintOptionsDirective, typeof i3.TuiHintUnstyled, typeof i3.TuiHintDriver, typeof i3.TuiHintPosition, typeof i3.TuiHintHover, typeof i3.TuiHintDescribe, typeof i3.TuiHintHost, typeof i3.TuiHintManual, typeof i3.TuiHintPointer], [typeof i1.TuiPaletteComponent, typeof i3.TuiHintComponent, typeof i3.TuiHintDirective, typeof i3.TuiHintOptionsDirective, typeof i3.TuiHintUnstyled, typeof i3.TuiHintDriver, typeof i3.TuiHintPosition, typeof i3.TuiHintHover, typeof i3.TuiHintDescribe, typeof i3.TuiHintHost, typeof i3.TuiHintManual, typeof i3.TuiHintPointer]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiPaletteModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { TuiPoint } from '@taiga-ui/core/types';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiPickerService extends Observable<TuiPoint> {
|
|
8
|
+
constructor();
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPickerService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TuiPickerService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated: drop in v5.0
|
|
4
|
+
*/
|
|
5
|
+
export declare class TuiComboBoxStrictDirective<T> {
|
|
6
|
+
private readonly comboBox;
|
|
7
|
+
strict: boolean;
|
|
8
|
+
protected onInput(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiComboBoxStrictDirective<any>, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiComboBoxStrictDirective<any>, "tui-combo-box[strict]", never, { "strict": { "alias": "strict"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import type { TuiActiveZone } from '@taiga-ui/cdk/directives/active-zone';
|
|
3
|
+
import type { TuiContext, TuiStringMatcher } from '@taiga-ui/cdk/types';
|
|
4
|
+
import type { TuiDataListHost } from '@taiga-ui/core/components/data-list';
|
|
5
|
+
import type { TuiSizeL, TuiSizeM, TuiSizeS, TuiValueContentContext } from '@taiga-ui/core/types';
|
|
6
|
+
import type { TuiItemsHandlers } from '@taiga-ui/kit/tokens';
|
|
7
|
+
import { AbstractTuiNullableControl } from '@taiga-ui/legacy/classes';
|
|
8
|
+
import type { TuiFocusableElementAccessor } from '@taiga-ui/legacy/tokens';
|
|
9
|
+
import type { PolymorpheusContent } from '@taiga-ui/polymorpheus';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated: drop in v5.0
|
|
13
|
+
*/
|
|
14
|
+
export declare class TuiComboBoxComponent<T> extends AbstractTuiNullableControl<T> implements TuiFocusableElementAccessor, TuiDataListHost<T> {
|
|
15
|
+
private readonly accessor?;
|
|
16
|
+
private readonly dropdown?;
|
|
17
|
+
private readonly textfield?;
|
|
18
|
+
private readonly arrowMode;
|
|
19
|
+
private readonly itemsHandlers;
|
|
20
|
+
private readonly textfieldSize;
|
|
21
|
+
protected readonly datalist: PolymorpheusContent<TuiContext<TuiActiveZone>>;
|
|
22
|
+
stringify: TuiItemsHandlers<T>['stringify'];
|
|
23
|
+
strictMatcher: TuiStringMatcher<T> | null;
|
|
24
|
+
identityMatcher: TuiItemsHandlers<T>['identityMatcher'];
|
|
25
|
+
valueContent: PolymorpheusContent<TuiValueContentContext<T>>;
|
|
26
|
+
strict: boolean;
|
|
27
|
+
search: string | null;
|
|
28
|
+
readonly searchChange: EventEmitter<string | null>;
|
|
29
|
+
open: boolean;
|
|
30
|
+
get size(): TuiSizeL | TuiSizeS;
|
|
31
|
+
get nativeFocusableElement(): HTMLInputElement | null;
|
|
32
|
+
get focused(): boolean;
|
|
33
|
+
get nativeValue(): string;
|
|
34
|
+
checkOption(option: T): void;
|
|
35
|
+
handleOption(item: T): void;
|
|
36
|
+
onValueChange(value: string): void;
|
|
37
|
+
toggle(): void;
|
|
38
|
+
protected get arrow(): PolymorpheusContent<TuiContext<TuiSizeL | TuiSizeM | TuiSizeS>>;
|
|
39
|
+
protected get showValueTemplate(): boolean;
|
|
40
|
+
protected get computedContent(): PolymorpheusContent<TuiValueContentContext<T>>;
|
|
41
|
+
protected onActiveZone(active: boolean): void;
|
|
42
|
+
protected onFieldKeyDownEnter(event: Event): void;
|
|
43
|
+
private isStrictMatch;
|
|
44
|
+
private close;
|
|
45
|
+
private updateSearch;
|
|
46
|
+
private setNativeValue;
|
|
47
|
+
private focusInput;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiComboBoxComponent<any>, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiComboBoxComponent<any>, "tui-combo-box", never, { "stringify": { "alias": "stringify"; "required": false; }; "strictMatcher": { "alias": "strictMatcher"; "required": false; }; "identityMatcher": { "alias": "identityMatcher"; "required": false; }; "valueContent": { "alias": "valueContent"; "required": false; }; "strict": { "alias": "strict"; "required": false; }; "search": { "alias": "search"; "required": false; }; }, { "searchChange": "searchChange"; }, ["accessor", "datalist"], ["*", "input"], false, never>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AbstractTuiTextfieldHost } from '@taiga-ui/legacy/classes';
|
|
2
|
+
import type { TuiComboBoxComponent } from './combo-box.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiComboBoxDirective extends AbstractTuiTextfieldHost<TuiComboBoxComponent<unknown>> {
|
|
8
|
+
get value(): string;
|
|
9
|
+
onValueChange(value: string): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiComboBoxDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiComboBoxDirective, "tui-combo-box", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./combo-box.component";
|
|
3
|
+
import * as i2 from "./combo-box-strict.directive";
|
|
4
|
+
import * as i3 from "./combo-box.directive";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@taiga-ui/polymorpheus";
|
|
7
|
+
import * as i6 from "@taiga-ui/legacy/components/primitive-textfield";
|
|
8
|
+
import * as i7 from "@taiga-ui/legacy/components/select-option";
|
|
9
|
+
import * as i8 from "@taiga-ui/legacy/components/arrow";
|
|
10
|
+
import * as i9 from "@taiga-ui/legacy/directives";
|
|
11
|
+
import * as i10 from "@taiga-ui/core/directives/dropdown";
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated: drop in v5.0
|
|
14
|
+
*/
|
|
15
|
+
export declare class TuiComboBoxModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiComboBoxModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiComboBoxModule, [typeof i1.TuiComboBoxComponent, typeof i2.TuiComboBoxStrictDirective, typeof i3.TuiComboBoxDirective], [typeof i4.CommonModule, typeof i5.PolymorpheusOutlet, typeof i5.PolymorpheusTemplate, typeof i6.TuiPrimitiveTextfieldModule, typeof i7.TuiSelectOptionModule, typeof i8.TuiArrowComponent, typeof i9.TuiWrapperModule, typeof i9.TuiTextfieldControllerModule, typeof i9.TuiLegacyDropdownOpenMonitorDirective, typeof i10.TuiDropdownOptionsDirective, typeof i10.TuiDropdownDriverDirective, typeof i10.TuiDropdownDirective, typeof i10.TuiDropdownComponent, typeof i10.TuiDropdownOpen, typeof i10.TuiDropdownPortal, typeof i10.TuiDropdownManual, typeof i10.TuiDropdownHover, typeof i10.TuiDropdownContext, typeof i10.TuiDropdownPosition, typeof i10.TuiDropdownPositionSided, typeof i10.TuiDropdownSelection], [typeof i1.TuiComboBoxComponent, typeof i2.TuiComboBoxStrictDirective, typeof i3.TuiComboBoxDirective, typeof i6.TuiTextfieldComponent, typeof i10.TuiDropdownOptionsDirective, typeof i10.TuiDropdownDriverDirective, typeof i10.TuiDropdownDirective, typeof i10.TuiDropdownComponent, typeof i10.TuiDropdownOpen, typeof i10.TuiDropdownPortal, typeof i10.TuiDropdownManual, typeof i10.TuiDropdownHover, typeof i10.TuiDropdownContext, typeof i10.TuiDropdownPosition, typeof i10.TuiDropdownPositionSided, typeof i10.TuiDropdownSelection]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiComboBoxModule>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export * from '@taiga-ui/legacy/components/arrow';
|
|
2
|
+
export * from '@taiga-ui/legacy/components/color-selector';
|
|
3
|
+
export * from '@taiga-ui/legacy/components/combo-box';
|
|
4
|
+
export * from '@taiga-ui/legacy/components/input';
|
|
5
|
+
export * from '@taiga-ui/legacy/components/input-color';
|
|
6
|
+
export * from '@taiga-ui/legacy/components/input-copy';
|
|
7
|
+
export * from '@taiga-ui/legacy/components/input-date';
|
|
8
|
+
export * from '@taiga-ui/legacy/components/input-date-multi';
|
|
9
|
+
export * from '@taiga-ui/legacy/components/input-date-range';
|
|
10
|
+
export * from '@taiga-ui/legacy/components/input-date-time';
|
|
11
|
+
export * from '@taiga-ui/legacy/components/input-month';
|
|
12
|
+
export * from '@taiga-ui/legacy/components/input-month-range';
|
|
13
|
+
export * from '@taiga-ui/legacy/components/input-number';
|
|
14
|
+
export * from '@taiga-ui/legacy/components/input-password';
|
|
15
|
+
export * from '@taiga-ui/legacy/components/input-phone';
|
|
16
|
+
export * from '@taiga-ui/legacy/components/input-phone-international';
|
|
17
|
+
export * from '@taiga-ui/legacy/components/input-range';
|
|
18
|
+
export * from '@taiga-ui/legacy/components/input-slider';
|
|
19
|
+
export * from '@taiga-ui/legacy/components/input-tag';
|
|
20
|
+
export * from '@taiga-ui/legacy/components/input-time';
|
|
21
|
+
export * from '@taiga-ui/legacy/components/input-year';
|
|
22
|
+
export * from '@taiga-ui/legacy/components/island';
|
|
23
|
+
export * from '@taiga-ui/legacy/components/multi-select';
|
|
24
|
+
export * from '@taiga-ui/legacy/components/multi-select-option';
|
|
25
|
+
export * from '@taiga-ui/legacy/components/primitive-textfield';
|
|
26
|
+
export * from '@taiga-ui/legacy/components/select';
|
|
27
|
+
export * from '@taiga-ui/legacy/components/select-option';
|
|
28
|
+
export * from '@taiga-ui/legacy/components/sheet';
|
|
29
|
+
export * from '@taiga-ui/legacy/components/svg';
|
|
30
|
+
export * from '@taiga-ui/legacy/components/table-bar';
|
|
31
|
+
export * from '@taiga-ui/legacy/components/tag';
|
|
32
|
+
export * from '@taiga-ui/legacy/components/textarea';
|
|
33
|
+
export * from '@taiga-ui/legacy/components/tooltip';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { TuiActiveZone } from '@taiga-ui/cdk/directives/active-zone';
|
|
2
|
+
import type { TuiContext } from '@taiga-ui/cdk/types';
|
|
3
|
+
import type { TuiDataListHost } from '@taiga-ui/core/components/data-list';
|
|
4
|
+
import type { TuiSizeL, TuiSizeS } from '@taiga-ui/core/types';
|
|
5
|
+
import { AbstractTuiControl } from '@taiga-ui/legacy/classes';
|
|
6
|
+
import type { TuiFocusableElementAccessor } from '@taiga-ui/legacy/tokens';
|
|
7
|
+
import type { PolymorpheusContent } from '@taiga-ui/polymorpheus';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated: drop in v5.0
|
|
11
|
+
*/
|
|
12
|
+
export declare class TuiInputComponent extends AbstractTuiControl<string> implements TuiFocusableElementAccessor, TuiDataListHost<string> {
|
|
13
|
+
private readonly dropdown?;
|
|
14
|
+
private readonly textfield?;
|
|
15
|
+
private readonly textfieldSize;
|
|
16
|
+
protected readonly datalist: PolymorpheusContent<TuiContext<TuiActiveZone>>;
|
|
17
|
+
open: boolean;
|
|
18
|
+
get size(): TuiSizeL | TuiSizeS;
|
|
19
|
+
get nativeFocusableElement(): HTMLInputElement | null;
|
|
20
|
+
get focused(): boolean;
|
|
21
|
+
handleOption(item: unknown): void;
|
|
22
|
+
onValueChange(value: string): void;
|
|
23
|
+
protected get canOpen(): boolean;
|
|
24
|
+
protected onActiveZone(active: boolean): void;
|
|
25
|
+
protected getFallbackValue(): string;
|
|
26
|
+
private focusInput;
|
|
27
|
+
private setNativeValue;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiInputComponent, "tui-input", never, {}, {}, ["datalist"], ["*", "input"], false, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AbstractTuiTextfieldHost } from '@taiga-ui/legacy/classes';
|
|
2
|
+
import type { TuiInputComponent } from './input.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiInputDirective extends AbstractTuiTextfieldHost<TuiInputComponent> {
|
|
8
|
+
onValueChange(value: string): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiInputDirective, "tui-input", never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./input.component";
|
|
3
|
+
import * as i2 from "./input.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@taiga-ui/legacy/components/primitive-textfield";
|
|
6
|
+
import * as i5 from "@taiga-ui/core/directives/dropdown";
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated: drop in v5.0
|
|
9
|
+
*/
|
|
10
|
+
export declare class TuiInputModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiInputModule, [typeof i1.TuiInputComponent, typeof i2.TuiInputDirective], [typeof i3.CommonModule, typeof i4.TuiPrimitiveTextfieldModule, typeof i5.TuiDropdownOptionsDirective, typeof i5.TuiDropdownDriverDirective, typeof i5.TuiDropdownDirective, typeof i5.TuiDropdownComponent, typeof i5.TuiDropdownOpen, typeof i5.TuiDropdownPortal, typeof i5.TuiDropdownManual, typeof i5.TuiDropdownHover, typeof i5.TuiDropdownContext, typeof i5.TuiDropdownPosition, typeof i5.TuiDropdownPositionSided, typeof i5.TuiDropdownSelection], [typeof i1.TuiInputComponent, typeof i2.TuiInputDirective, typeof i4.TuiTextfieldComponent, typeof i5.TuiDropdownOptionsDirective, typeof i5.TuiDropdownDriverDirective, typeof i5.TuiDropdownDirective, typeof i5.TuiDropdownComponent, typeof i5.TuiDropdownOpen, typeof i5.TuiDropdownPortal, typeof i5.TuiDropdownManual, typeof i5.TuiDropdownHover, typeof i5.TuiDropdownContext, typeof i5.TuiDropdownPosition, typeof i5.TuiDropdownPositionSided, typeof i5.TuiDropdownSelection]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiInputModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { SafeStyle } from '@angular/platform-browser';
|
|
2
|
+
import type { MaskitoOptions } from '@maskito/core';
|
|
3
|
+
import { AbstractTuiControl } from '@taiga-ui/legacy/classes';
|
|
4
|
+
import type { TuiFocusableElementAccessor, TuiNativeFocusableElement } from '@taiga-ui/legacy/tokens';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
type MaskMode = 'gradient' | 'hex' | 'rgb';
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated: drop in v5.0
|
|
9
|
+
*/
|
|
10
|
+
export declare class TuiInputColorComponent extends AbstractTuiControl<string> implements TuiFocusableElementAccessor {
|
|
11
|
+
private readonly textfield?;
|
|
12
|
+
private readonly domSanitizer;
|
|
13
|
+
colors: ReadonlyMap<string, string>;
|
|
14
|
+
open: boolean;
|
|
15
|
+
get focused(): boolean;
|
|
16
|
+
get nativeFocusableElement(): TuiNativeFocusableElement | null;
|
|
17
|
+
get background(): SafeStyle;
|
|
18
|
+
get mode(): MaskMode;
|
|
19
|
+
onClick(): void;
|
|
20
|
+
maskitoOptions(mode: MaskMode): MaskitoOptions | null;
|
|
21
|
+
/** deprecated use 'value' setter */
|
|
22
|
+
onValueChange(textValue: string): void;
|
|
23
|
+
onFocused(focused: boolean): void;
|
|
24
|
+
protected getFallbackValue(): string;
|
|
25
|
+
private sanitize;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputColorComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiInputColorComponent, "tui-input-color", never, { "colors": { "alias": "colors"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./input-color.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@taiga-ui/legacy/components/primitive-textfield";
|
|
5
|
+
import * as i4 from "@taiga-ui/legacy/directives/textfield-controller";
|
|
6
|
+
import * as i5 from "@taiga-ui/legacy/components/color-selector";
|
|
7
|
+
import * as i6 from "@maskito/angular";
|
|
8
|
+
import * as i7 from "@taiga-ui/core/directives/dropdown";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated: drop in v5.0
|
|
11
|
+
*/
|
|
12
|
+
export declare class TuiInputColorModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputColorModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiInputColorModule, [typeof i1.TuiInputColorComponent], [typeof i2.CommonModule, typeof i3.TuiPrimitiveTextfieldModule, typeof i4.TuiTextfieldControllerModule, typeof i5.TuiColorSelectorModule, typeof i6.MaskitoModule, typeof i7.TuiDropdownOptionsDirective, typeof i7.TuiDropdownDriverDirective, typeof i7.TuiDropdownDirective, typeof i7.TuiDropdownComponent, typeof i7.TuiDropdownOpen, typeof i7.TuiDropdownPortal, typeof i7.TuiDropdownManual, typeof i7.TuiDropdownHover, typeof i7.TuiDropdownContext, typeof i7.TuiDropdownPosition, typeof i7.TuiDropdownPositionSided, typeof i7.TuiDropdownSelection], [typeof i1.TuiInputColorComponent, typeof i7.TuiDropdownOptionsDirective, typeof i7.TuiDropdownDriverDirective, typeof i7.TuiDropdownDirective, typeof i7.TuiDropdownComponent, typeof i7.TuiDropdownOpen, typeof i7.TuiDropdownPortal, typeof i7.TuiDropdownManual, typeof i7.TuiDropdownHover, typeof i7.TuiDropdownContext, typeof i7.TuiDropdownPosition, typeof i7.TuiDropdownPositionSided, typeof i7.TuiDropdownSelection]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiInputColorModule>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { TuiHintDirection } from '@taiga-ui/core/directives/hint';
|
|
2
|
+
import type { TuiSizeL, TuiSizeS } from '@taiga-ui/core/types';
|
|
3
|
+
import { AbstractTuiControl } from '@taiga-ui/legacy/classes';
|
|
4
|
+
import type { TuiFocusableElementAccessor, TuiNativeFocusableElement } from '@taiga-ui/legacy/tokens';
|
|
5
|
+
import type { PolymorpheusContent } from '@taiga-ui/polymorpheus';
|
|
6
|
+
import type { Observable } from 'rxjs';
|
|
7
|
+
import type { TuiInputCopyOptions } from './input-copy.options';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated: drop in v5.0
|
|
11
|
+
*/
|
|
12
|
+
export declare class TuiInputCopyComponent extends AbstractTuiControl<string> implements TuiFocusableElementAccessor {
|
|
13
|
+
private readonly textfield?;
|
|
14
|
+
private readonly copied$;
|
|
15
|
+
private readonly doc;
|
|
16
|
+
private readonly copyTexts$;
|
|
17
|
+
private readonly options;
|
|
18
|
+
private readonly textfieldSize;
|
|
19
|
+
successMessage: PolymorpheusContent;
|
|
20
|
+
messageDirection: TuiHintDirection;
|
|
21
|
+
messageAppearance: string;
|
|
22
|
+
get nativeFocusableElement(): TuiNativeFocusableElement | null;
|
|
23
|
+
get focused(): boolean;
|
|
24
|
+
onValueChange(value: string): void;
|
|
25
|
+
protected get size(): TuiSizeL | TuiSizeS;
|
|
26
|
+
protected get hintText$(): Observable<PolymorpheusContent>;
|
|
27
|
+
protected get icon(): TuiInputCopyOptions['icon'];
|
|
28
|
+
protected onFocused(focused: boolean): void;
|
|
29
|
+
protected copy(): void;
|
|
30
|
+
protected getFallbackValue(): string;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputCopyComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiInputCopyComponent, "tui-input-copy", never, { "successMessage": { "alias": "successMessage"; "required": false; }; "messageDirection": { "alias": "messageDirection"; "required": false; }; "messageAppearance": { "alias": "messageAppearance"; "required": false; }; }, {}, never, ["*", "input"], false, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AbstractTuiTextfieldHost } from '@taiga-ui/legacy/classes';
|
|
2
|
+
import type { TuiInputCopyComponent } from './input-copy.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiInputCopyDirective extends AbstractTuiTextfieldHost<TuiInputCopyComponent> {
|
|
8
|
+
onValueChange(value: string): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputCopyDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiInputCopyDirective, "tui-input-copy", never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./input-copy.component";
|
|
3
|
+
import * as i2 from "./input-copy.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@taiga-ui/polymorpheus";
|
|
6
|
+
import * as i5 from "@taiga-ui/legacy/components/primitive-textfield";
|
|
7
|
+
import * as i6 from "@taiga-ui/legacy/directives";
|
|
8
|
+
import * as i7 from "@taiga-ui/core/directives/appearance";
|
|
9
|
+
import * as i8 from "@taiga-ui/core/components/icon";
|
|
10
|
+
import * as i9 from "@taiga-ui/core/directives/hint";
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated: drop in v5.0
|
|
13
|
+
*/
|
|
14
|
+
export declare class TuiInputCopyModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputCopyModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiInputCopyModule, [typeof i1.TuiInputCopyComponent, typeof i2.TuiInputCopyDirective], [typeof i3.CommonModule, typeof i4.PolymorpheusOutlet, typeof i4.PolymorpheusTemplate, typeof i5.TuiPrimitiveTextfieldModule, typeof i6.TuiTextfieldControllerModule, typeof i7.TuiAppearance, typeof i8.TuiIcon, typeof i9.TuiHintComponent, typeof i9.TuiHintDirective, typeof i9.TuiHintOptionsDirective, typeof i9.TuiHintUnstyled, typeof i9.TuiHintDriver, typeof i9.TuiHintPosition, typeof i9.TuiHintHover, typeof i9.TuiHintDescribe, typeof i9.TuiHintHost, typeof i9.TuiHintManual, typeof i9.TuiHintPointer], [typeof i1.TuiInputCopyComponent, typeof i2.TuiInputCopyDirective, typeof i5.TuiTextfieldComponent, typeof i9.TuiHintComponent, typeof i9.TuiHintDirective, typeof i9.TuiHintOptionsDirective, typeof i9.TuiHintUnstyled, typeof i9.TuiHintDriver, typeof i9.TuiHintPosition, typeof i9.TuiHintHover, typeof i9.TuiHintDescribe, typeof i9.TuiHintHost, typeof i9.TuiHintManual, typeof i9.TuiHintPointer]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiInputCopyModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { Provider } from '@angular/core';
|
|
2
|
+
import type { TuiContext } from '@taiga-ui/cdk/types';
|
|
3
|
+
import type { TuiHintDirection } from '@taiga-ui/core/directives/hint';
|
|
4
|
+
import type { TuiSizeL, TuiSizeS } from '@taiga-ui/core/types';
|
|
5
|
+
import type { PolymorpheusContent } from '@taiga-ui/polymorpheus';
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated: drop in v5.0
|
|
8
|
+
*/
|
|
9
|
+
export interface TuiInputCopyOptions {
|
|
10
|
+
readonly icon: PolymorpheusContent<TuiContext<TuiSizeL | TuiSizeS>>;
|
|
11
|
+
readonly messageAppearance: string;
|
|
12
|
+
readonly messageDirection: TuiHintDirection;
|
|
13
|
+
readonly successMessage: PolymorpheusContent;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @deprecated: drop in v5.0
|
|
17
|
+
*/
|
|
18
|
+
export declare const TUI_INPUT_COPY_DEFAULT_OPTIONS: TuiInputCopyOptions;
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated: drop in v5.0
|
|
21
|
+
*/
|
|
22
|
+
export declare const TUI_INPUT_COPY_OPTIONS: import("@angular/core").InjectionToken<TuiInputCopyOptions>;
|
|
23
|
+
/**
|
|
24
|
+
* @deprecated: drop in v5.0
|
|
25
|
+
*/
|
|
26
|
+
export declare function tuiInputCopyOptionsProvider(options: Partial<TuiInputCopyOptions>): Provider;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import type { MaskitoOptions } from '@maskito/core';
|
|
2
|
+
import type { TuiDateMode } from '@taiga-ui/cdk/date-time';
|
|
3
|
+
import { TuiDay, TuiMonth } from '@taiga-ui/cdk/date-time';
|
|
4
|
+
import type { TuiActiveZone } from '@taiga-ui/cdk/directives/active-zone';
|
|
5
|
+
import type { TuiBooleanHandler, TuiContext } from '@taiga-ui/cdk/types';
|
|
6
|
+
import type { TuiMarkerHandler } from '@taiga-ui/core/components/calendar';
|
|
7
|
+
import type { TuiSizeL, TuiSizeS } from '@taiga-ui/core/types';
|
|
8
|
+
import type { TuiInputDateOptions } from '@taiga-ui/kit/tokens';
|
|
9
|
+
import type { TuiNamedDay } from '@taiga-ui/legacy/classes';
|
|
10
|
+
import { AbstractTuiNullableControl } from '@taiga-ui/legacy/classes';
|
|
11
|
+
import type { TuiFocusableElementAccessor } from '@taiga-ui/legacy/tokens';
|
|
12
|
+
import type { Observable } from 'rxjs';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated: drop in v5.0
|
|
16
|
+
*/
|
|
17
|
+
export declare class TuiInputDateComponent extends AbstractTuiNullableControl<TuiDay> implements TuiFocusableElementAccessor {
|
|
18
|
+
private readonly textfield?;
|
|
19
|
+
private readonly options;
|
|
20
|
+
private readonly textfieldSize;
|
|
21
|
+
private readonly mobileCalendar;
|
|
22
|
+
private month;
|
|
23
|
+
min: TuiDay | null;
|
|
24
|
+
max: TuiDay | null;
|
|
25
|
+
disabledItemHandler: TuiBooleanHandler<TuiDay>;
|
|
26
|
+
markerHandler: TuiMarkerHandler | null;
|
|
27
|
+
items: readonly TuiNamedDay[];
|
|
28
|
+
defaultActiveYearMonth: TuiMonth;
|
|
29
|
+
dateFormat: import("@taiga-ui/core/tokens").TuiDateFormatSettings;
|
|
30
|
+
protected open: boolean;
|
|
31
|
+
protected readonly dateTexts$: Observable<Record<TuiDateMode, string>>;
|
|
32
|
+
protected readonly valueTransformer: import("@taiga-ui/cdk/classes").TuiValueTransformer<TuiDay | null, unknown> | null;
|
|
33
|
+
protected readonly isMobile: boolean;
|
|
34
|
+
protected readonly type: TuiContext<TuiActiveZone>;
|
|
35
|
+
protected readonly filler$: Observable<string>;
|
|
36
|
+
protected readonly dateFormat$: import("rxjs").Subscription;
|
|
37
|
+
get computedMin(): TuiDay;
|
|
38
|
+
get computedMax(): TuiDay;
|
|
39
|
+
get nativeFocusableElement(): HTMLInputElement | null;
|
|
40
|
+
get focused(): boolean;
|
|
41
|
+
get nativeValue(): string;
|
|
42
|
+
set nativeValue(value: string);
|
|
43
|
+
get computedValue(): string;
|
|
44
|
+
onValueChange(value: string): void;
|
|
45
|
+
setDisabledState(): void;
|
|
46
|
+
writeValue(value: TuiDay | null): void;
|
|
47
|
+
protected get size(): TuiSizeL | TuiSizeS;
|
|
48
|
+
protected get nativePicker(): boolean;
|
|
49
|
+
protected get calendarIcon(): TuiInputDateOptions['icon'];
|
|
50
|
+
protected get computedActiveYearMonth(): TuiMonth;
|
|
51
|
+
protected get computedMask(): MaskitoOptions;
|
|
52
|
+
protected get activeItem(): TuiNamedDay | null;
|
|
53
|
+
protected onClick(): void;
|
|
54
|
+
protected getComputedFiller(filler: string): string;
|
|
55
|
+
protected onIconClick(): void;
|
|
56
|
+
protected onDayClick(value: TuiDay): void;
|
|
57
|
+
protected onMonthChange(month: TuiMonth): void;
|
|
58
|
+
protected onOpenChange(open: boolean): void;
|
|
59
|
+
protected onFocused(focused: boolean): void;
|
|
60
|
+
protected valueIdenticalComparator(oldValue: TuiDay | null, newValue: TuiDay | null): boolean;
|
|
61
|
+
private computeMaskOptions;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputDateComponent, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiInputDateComponent, "tui-input-date:not([multiple])", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabledItemHandler": { "alias": "disabledItemHandler"; "required": false; }; "markerHandler": { "alias": "markerHandler"; "required": false; }; "items": { "alias": "items"; "required": false; }; "defaultActiveYearMonth": { "alias": "defaultActiveYearMonth"; "required": false; }; }, {}, never, ["*", "input"], false, never>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { TuiDay } from '@taiga-ui/cdk/date-time';
|
|
2
|
+
import type { TuiDateFormatSettings } from '@taiga-ui/core/tokens';
|
|
3
|
+
import { AbstractTuiTextfieldHost } from '@taiga-ui/legacy/classes';
|
|
4
|
+
import type { TuiInputDateComponent } from './input-date.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated: drop in v5.0
|
|
8
|
+
*/
|
|
9
|
+
export declare class TuiInputDateDirective extends AbstractTuiTextfieldHost<TuiInputDateComponent> {
|
|
10
|
+
get value(): string;
|
|
11
|
+
get max(): TuiDay;
|
|
12
|
+
get min(): TuiDay;
|
|
13
|
+
get format(): TuiDateFormatSettings;
|
|
14
|
+
onValueChange(value: string): void;
|
|
15
|
+
process(input: HTMLInputElement): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiInputDateDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiInputDateDirective, "tui-input-date:not([multiple])", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|