@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,8 @@
|
|
|
1
|
+
import { AbstractTuiNativeMultiSelect } from './native-multi-select';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TuiNativeMultiSelectComponent<T> extends AbstractTuiNativeMultiSelect<T> {
|
|
4
|
+
items: readonly T[] | null;
|
|
5
|
+
protected onValueChange(selectedOptions: HTMLSelectElement['selectedOptions']): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiNativeMultiSelectComponent<any>, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiNativeMultiSelectComponent<any>, "select[multiple][tuiSelect]:not([labels])", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { TuiMapper } from '@taiga-ui/cdk/types';
|
|
2
|
+
import type { TuiItemsHandlers } from '@taiga-ui/kit/tokens';
|
|
3
|
+
import { AbstractTuiNativeSelect } from '@taiga-ui/legacy/classes';
|
|
4
|
+
import type { TuiMultiSelectDirective } from '../multi-select.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare abstract class AbstractTuiNativeMultiSelect<T> extends AbstractTuiNativeSelect<TuiMultiSelectDirective<T>, T> {
|
|
7
|
+
protected get stringify(): TuiItemsHandlers<T>['stringify'];
|
|
8
|
+
protected selectedMapper: TuiMapper<[T, ...any[]], boolean>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractTuiNativeMultiSelect<any>, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractTuiNativeMultiSelect<any>, never, never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { TuiSizeS } from '@taiga-ui/core/types';
|
|
2
|
+
import { TuiSelectOptionComponent } from '@taiga-ui/legacy/components/select-option';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiMultiSelectOptionComponent<T extends any[]> extends TuiSelectOptionComponent<T> {
|
|
8
|
+
protected get size(): TuiSizeS;
|
|
9
|
+
protected get selected(): boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiMultiSelectOptionComponent<any>, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiMultiSelectOptionComponent<any>, "tui-multi-select-option", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./multi-select-option.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@taiga-ui/kit/components/checkbox";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated: drop in v5.0
|
|
7
|
+
*/
|
|
8
|
+
export declare class TuiMultiSelectOptionModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiMultiSelectOptionModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiMultiSelectOptionModule, [typeof i1.TuiMultiSelectOptionComponent], [typeof i2.CommonModule, typeof i3.TuiCheckbox], [typeof i1.TuiMultiSelectOptionComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiMultiSelectOptionModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './primitive-textfield.component';
|
|
2
|
+
export * from './primitive-textfield.directive';
|
|
3
|
+
export * from './primitive-textfield.module';
|
|
4
|
+
export * from './primitive-textfield-options';
|
|
5
|
+
export * from './primitive-textfield-types';
|
|
6
|
+
export * from './textfield/textfield.component';
|
|
7
|
+
export * from './value-decoration/value-decoration.component';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { TuiTextfieldOptions } from '@taiga-ui/legacy/directives';
|
|
2
|
+
import { tuiTextfieldOptionsProvider } from '@taiga-ui/legacy/directives';
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated:
|
|
5
|
+
* use {@link TuiTextfieldOptions}
|
|
6
|
+
*/
|
|
7
|
+
export type TuiPrimitiveTextfieldOptions = TuiTextfieldOptions;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated:
|
|
10
|
+
* use {@link TUI_TEXTFIELD_DEFAULT_OPTIONS}
|
|
11
|
+
*/
|
|
12
|
+
export declare const TUI_PRIMITIVE_TEXTFIELD_DEFAULT_OPTIONS: TuiPrimitiveTextfieldOptions;
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated:
|
|
15
|
+
* use {@link TUI_TEXTFIELD_OPTIONS}
|
|
16
|
+
*/
|
|
17
|
+
export declare const TUI_PRIMITIVE_TEXTFIELD_OPTIONS: import("@angular/core").InjectionToken<TuiTextfieldOptions>;
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated:
|
|
20
|
+
* use {@link tuiTextfieldOptionsProvider}
|
|
21
|
+
*/
|
|
22
|
+
export declare const tuiPrimitiveTextfieldOptionsProvider: typeof tuiTextfieldOptionsProvider;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { AbstractTuiInteractive } from '@taiga-ui/legacy/classes';
|
|
2
|
+
import type { TuiFocusableElementAccessor } from '@taiga-ui/legacy/tokens';
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated: drop in v5.0
|
|
5
|
+
*/
|
|
6
|
+
export type TuiPrimitiveTextfield = AbstractTuiInteractive & TuiFocusableElementAccessor & {
|
|
7
|
+
appearance: string;
|
|
8
|
+
filler: string;
|
|
9
|
+
nativeFocusableElement: HTMLInputElement | null;
|
|
10
|
+
postfix: string;
|
|
11
|
+
prefix: string;
|
|
12
|
+
readOnly: boolean;
|
|
13
|
+
value: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import type { QueryList } from '@angular/core';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import type { TuiContext } from '@taiga-ui/cdk/types';
|
|
4
|
+
import { TuiHintOptionsDirective } from '@taiga-ui/core/directives/hint';
|
|
5
|
+
import type { TuiSizeL, TuiSizeS } from '@taiga-ui/core/types';
|
|
6
|
+
import { AbstractTuiInteractive } from '@taiga-ui/legacy/classes';
|
|
7
|
+
import type { PolymorpheusContent } from '@taiga-ui/polymorpheus';
|
|
8
|
+
import type { Observable } from 'rxjs';
|
|
9
|
+
import type { TuiPrimitiveTextfield } from './primitive-textfield-types';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated: drop in v5.0
|
|
13
|
+
*/
|
|
14
|
+
export declare const TUI_ICON_START_PADDINGS: Record<TuiSizeL | TuiSizeS, number>;
|
|
15
|
+
/**
|
|
16
|
+
* @deprecated: use `tui-textfield` instead of `tui-primitive-textfield`
|
|
17
|
+
*/
|
|
18
|
+
export declare class TuiPrimitiveTextfieldComponent extends AbstractTuiInteractive implements TuiPrimitiveTextfield {
|
|
19
|
+
private readonly focusableElement?;
|
|
20
|
+
private readonly legacyOptions;
|
|
21
|
+
private readonly el;
|
|
22
|
+
protected readonly content?: QueryList<unknown>;
|
|
23
|
+
protected readonly options: import("@taiga-ui/core/components/textfield").TuiTextfieldOptions;
|
|
24
|
+
protected readonly controller: import("@taiga-ui/legacy/directives").TuiTextfieldController;
|
|
25
|
+
protected readonly hintOptions: TuiHintOptionsDirective | null;
|
|
26
|
+
protected autofilled: boolean;
|
|
27
|
+
editable: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* @deprecated:
|
|
30
|
+
* use `tuiTextfieldOptionsProvider({iconCleaner: `@tui.chevron-up`})`
|
|
31
|
+
*/
|
|
32
|
+
iconCleaner: PolymorpheusContent<TuiContext<"m" | "l" | "s">>;
|
|
33
|
+
readOnly: boolean;
|
|
34
|
+
invalid: boolean;
|
|
35
|
+
disabled: boolean;
|
|
36
|
+
value: string;
|
|
37
|
+
readonly valueChange: EventEmitter<string>;
|
|
38
|
+
get prefix(): string;
|
|
39
|
+
get postfix(): string;
|
|
40
|
+
get filler(): string;
|
|
41
|
+
get nativeFocusableElement(): HTMLInputElement | null;
|
|
42
|
+
get focused(): boolean;
|
|
43
|
+
get appearance(): string;
|
|
44
|
+
onModelChange(value: string): void;
|
|
45
|
+
protected get size(): TuiSizeL | TuiSizeS;
|
|
46
|
+
protected get computedInvalid(): boolean;
|
|
47
|
+
protected get inputHidden(): boolean;
|
|
48
|
+
protected get borderStart(): number;
|
|
49
|
+
protected get borderEnd(): number;
|
|
50
|
+
protected get hasValue(): boolean;
|
|
51
|
+
protected get hasCleaner(): boolean;
|
|
52
|
+
protected get hasTooltip(): boolean;
|
|
53
|
+
protected get hasCustomContent(): boolean;
|
|
54
|
+
protected get placeholderVisible(): boolean;
|
|
55
|
+
protected get hasPlaceholder(): boolean;
|
|
56
|
+
protected get placeholderRaised(): boolean;
|
|
57
|
+
protected get iconContent(): PolymorpheusContent<TuiContext<TuiSizeL | TuiSizeS>>;
|
|
58
|
+
protected get iconLeftContent(): PolymorpheusContent<TuiContext<TuiSizeL | TuiSizeS>>;
|
|
59
|
+
protected get showHint(): boolean;
|
|
60
|
+
protected get name(): 'ccexpiryyear' | null;
|
|
61
|
+
protected get computedId(): string;
|
|
62
|
+
protected onFocused(focused: boolean): void;
|
|
63
|
+
protected getIndent$(element: HTMLElement): Observable<number>;
|
|
64
|
+
protected clear(): void;
|
|
65
|
+
protected onMouseDown(event: MouseEvent): void;
|
|
66
|
+
protected onAutofilled(autofilled: boolean): void;
|
|
67
|
+
protected detectRetargetFromLabel(event: Event): void;
|
|
68
|
+
private get iconPaddingLeft();
|
|
69
|
+
private get placeholderRaisable();
|
|
70
|
+
private updateAutofilled;
|
|
71
|
+
private updateValue;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPrimitiveTextfieldComponent, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiPrimitiveTextfieldComponent, "tui-primitive-textfield", never, { "editable": { "alias": "editable"; "required": false; }; "iconCleaner": { "alias": "iconCleaner"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, ["content"], ["input", "select", "tuiContent", "*"], false, never>;
|
|
74
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AbstractTuiTextfieldHost } from '@taiga-ui/legacy/classes';
|
|
2
|
+
import { TuiPrimitiveTextfieldComponent } from './primitive-textfield.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: use `tui-textfield` instead of `tui-primitive-textfield`
|
|
6
|
+
*/
|
|
7
|
+
export declare class TuiPrimitiveTextfieldDirective extends AbstractTuiTextfieldHost<any> {
|
|
8
|
+
protected readonly host: TuiPrimitiveTextfieldComponent;
|
|
9
|
+
get readOnly(): boolean;
|
|
10
|
+
onValueChange(value: string): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPrimitiveTextfieldDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiPrimitiveTextfieldDirective, "tui-primitive-textfield", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./primitive-textfield.component";
|
|
3
|
+
import * as i2 from "./primitive-textfield.directive";
|
|
4
|
+
import * as i3 from "./textfield/textfield.component";
|
|
5
|
+
import * as i4 from "./value-decoration/value-decoration.component";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
import * as i6 from "@angular/forms";
|
|
8
|
+
import * as i7 from "@taiga-ui/polymorpheus";
|
|
9
|
+
import * as i8 from "@taiga-ui/legacy/directives/wrapper";
|
|
10
|
+
import * as i9 from "@taiga-ui/legacy/components/tooltip";
|
|
11
|
+
import * as i10 from "@taiga-ui/core/components/icon";
|
|
12
|
+
import * as i11 from "@taiga-ui/core/directives/appearance";
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated: drop in v5.0
|
|
15
|
+
*/
|
|
16
|
+
export declare class TuiPrimitiveTextfieldModule {
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiPrimitiveTextfieldModule, never>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiPrimitiveTextfieldModule, [typeof i1.TuiPrimitiveTextfieldComponent, typeof i2.TuiPrimitiveTextfieldDirective, typeof i3.TuiTextfieldComponent, typeof i4.TuiValueDecorationComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.PolymorpheusOutlet, typeof i7.PolymorpheusTemplate, typeof i8.TuiWrapperModule, typeof i9.TuiTooltipModule, typeof i10.TuiIcon, typeof i11.TuiAppearance], [typeof i1.TuiPrimitiveTextfieldComponent, typeof i2.TuiPrimitiveTextfieldDirective, typeof i3.TuiTextfieldComponent]>;
|
|
19
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiPrimitiveTextfieldModule>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { TuiTextfieldHost } from '@taiga-ui/legacy/tokens';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TuiTextfieldComponent {
|
|
4
|
+
private readonly el;
|
|
5
|
+
private readonly idService;
|
|
6
|
+
protected readonly controller: import("@taiga-ui/legacy/directives").TuiTextfieldController;
|
|
7
|
+
protected readonly host: TuiTextfieldHost;
|
|
8
|
+
constructor();
|
|
9
|
+
protected get id(): string;
|
|
10
|
+
protected get inputMode(): string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiTextfieldComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiTextfieldComponent, "input[tuiTextfieldLegacy], textarea[tuiTextfieldLegacy]", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { DoCheck } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TuiValueDecorationComponent implements DoCheck {
|
|
4
|
+
private readonly pre?;
|
|
5
|
+
private readonly textfield;
|
|
6
|
+
private readonly fontsReady$;
|
|
7
|
+
private readonly prefix$;
|
|
8
|
+
readonly pre$: import("rxjs").Observable<number>;
|
|
9
|
+
ngDoCheck(): void;
|
|
10
|
+
protected get isContextTable(): boolean;
|
|
11
|
+
protected get filler(): string;
|
|
12
|
+
protected get value(): string;
|
|
13
|
+
protected get prefix(): string;
|
|
14
|
+
protected get postfix(): string;
|
|
15
|
+
private get placeholder();
|
|
16
|
+
private get exampleText();
|
|
17
|
+
private get decorationsVisible();
|
|
18
|
+
private get focused();
|
|
19
|
+
private get computedPostfix();
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiValueDecorationComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiValueDecorationComponent, "tui-value-decoration", never, {}, {}, never, never, false, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { TuiItemsHandlers } from '@taiga-ui/kit/tokens';
|
|
2
|
+
import { AbstractTuiNativeSelect } from '@taiga-ui/legacy/classes';
|
|
3
|
+
import type { TuiSelectDirective } from '../select.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TuiNativeSelectGroupComponent<T> extends AbstractTuiNativeSelect<TuiSelectDirective, T> {
|
|
6
|
+
items: readonly T[][] | null;
|
|
7
|
+
labels: readonly string[];
|
|
8
|
+
protected get stringify(): TuiItemsHandlers<T>['stringify'];
|
|
9
|
+
protected selected(option: T): boolean;
|
|
10
|
+
protected onValueChange(index: number): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiNativeSelectGroupComponent<any>, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiNativeSelectGroupComponent<any>, "select[tuiSelect][labels]:not([multiple])", never, { "items": { "alias": "items"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { TuiItemsHandlers } from '@taiga-ui/kit/tokens';
|
|
2
|
+
import { AbstractTuiNativeSelect } from '@taiga-ui/legacy/classes';
|
|
3
|
+
import type { TuiSelectDirective } from '../select.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TuiNativeSelectComponent<T> extends AbstractTuiNativeSelect<TuiSelectDirective, T> {
|
|
6
|
+
items: readonly T[] | null;
|
|
7
|
+
protected get stringify(): TuiItemsHandlers<T>['stringify'];
|
|
8
|
+
protected selected(option: T): boolean;
|
|
9
|
+
protected onValueChange(index: number): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiNativeSelectComponent<any>, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiNativeSelectComponent<any>, "select[tuiSelect]:not([labels]):not([multiple])", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
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, TuiSizeM, TuiSizeS, TuiValueContentContext } from '@taiga-ui/core/types';
|
|
5
|
+
import type { TuiItemsHandlers } from '@taiga-ui/kit/tokens';
|
|
6
|
+
import { AbstractTuiNullableControl } from '@taiga-ui/legacy/classes';
|
|
7
|
+
import type { TuiFocusableElementAccessor } from '@taiga-ui/legacy/tokens';
|
|
8
|
+
import type { PolymorpheusContent } from '@taiga-ui/polymorpheus';
|
|
9
|
+
import type { TuiSelectOptions } from './select.options';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated: drop in v5.0
|
|
13
|
+
*/
|
|
14
|
+
export declare class TuiSelectComponent<T> extends AbstractTuiNullableControl<T> implements TuiFocusableElementAccessor, TuiDataListHost<T> {
|
|
15
|
+
private readonly textfield?;
|
|
16
|
+
private readonly dropdown?;
|
|
17
|
+
private readonly nativeSelect?;
|
|
18
|
+
private readonly itemsHandlers;
|
|
19
|
+
private readonly textfieldCleaner;
|
|
20
|
+
private readonly textfieldSize;
|
|
21
|
+
private readonly arrowMode;
|
|
22
|
+
private readonly options;
|
|
23
|
+
protected readonly datalist: PolymorpheusContent<TuiContext<TuiActiveZone>>;
|
|
24
|
+
protected readonly isMobile: boolean;
|
|
25
|
+
protected open: boolean;
|
|
26
|
+
stringify: TuiItemsHandlers<T>['stringify'];
|
|
27
|
+
identityMatcher: TuiItemsHandlers<T>['identityMatcher'];
|
|
28
|
+
valueContent: TuiSelectOptions<T>['valueContent'];
|
|
29
|
+
get size(): TuiSizeL | TuiSizeS;
|
|
30
|
+
get nativeFocusableElement(): HTMLInputElement | null;
|
|
31
|
+
get focused(): boolean;
|
|
32
|
+
get computedValue(): string;
|
|
33
|
+
onValueChange(value: T): void;
|
|
34
|
+
handleOption(option: T): void;
|
|
35
|
+
protected get arrow(): PolymorpheusContent<TuiContext<TuiSizeL | TuiSizeM | TuiSizeS>>;
|
|
36
|
+
protected get nativeDropdownMode(): boolean;
|
|
37
|
+
protected get computedContent(): PolymorpheusContent<TuiValueContentContext<T>>;
|
|
38
|
+
protected onActiveZone(active: boolean): void;
|
|
39
|
+
protected onKeyDownDelete(): void;
|
|
40
|
+
private focusInput;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSelectComponent<any>, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSelectComponent<any>, "tui-select", never, { "stringify": { "alias": "stringify"; "required": false; }; "identityMatcher": { "alias": "identityMatcher"; "required": false; }; "valueContent": { "alias": "valueContent"; "required": false; }; }, {}, ["nativeSelect", "datalist"], ["*", "input", "select"], false, never>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { TuiItemsHandlers } from '@taiga-ui/kit/tokens';
|
|
2
|
+
import { AbstractTuiTextfieldHost } from '@taiga-ui/legacy/classes';
|
|
3
|
+
import type { TuiSelectComponent } from './select.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated: drop in v5.0
|
|
7
|
+
*/
|
|
8
|
+
export declare class TuiSelectDirective extends AbstractTuiTextfieldHost<TuiSelectComponent<unknown>> {
|
|
9
|
+
get readOnly(): boolean;
|
|
10
|
+
get value(): string;
|
|
11
|
+
get stringify(): TuiItemsHandlers<unknown>['stringify'];
|
|
12
|
+
onValueChange(value: unknown): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSelectDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSelectDirective, "tui-select", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./select.component";
|
|
3
|
+
import * as i2 from "./select.directive";
|
|
4
|
+
import * as i3 from "./native-select/native-select.component";
|
|
5
|
+
import * as i4 from "./native-select/native-select-group.component";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
import * as i6 from "@taiga-ui/polymorpheus";
|
|
8
|
+
import * as i7 from "@taiga-ui/legacy/components/primitive-textfield";
|
|
9
|
+
import * as i8 from "@taiga-ui/legacy/components/select-option";
|
|
10
|
+
import * as i9 from "@taiga-ui/legacy/components/arrow";
|
|
11
|
+
import * as i10 from "@taiga-ui/legacy/directives";
|
|
12
|
+
import * as i11 from "@taiga-ui/kit/pipes/stringify-content";
|
|
13
|
+
import * as i12 from "@taiga-ui/core/directives/dropdown";
|
|
14
|
+
import * as i13 from "@taiga-ui/core/components/data-list";
|
|
15
|
+
import * as i14 from "@taiga-ui/kit/components/data-list-wrapper";
|
|
16
|
+
/**
|
|
17
|
+
* @deprecated: drop in v5.0
|
|
18
|
+
*/
|
|
19
|
+
export declare class TuiSelectModule {
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSelectModule, never>;
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiSelectModule, [typeof i1.TuiSelectComponent, typeof i2.TuiSelectDirective, typeof i3.TuiNativeSelectComponent, typeof i4.TuiNativeSelectGroupComponent], [typeof i5.CommonModule, typeof i6.PolymorpheusOutlet, typeof i6.PolymorpheusTemplate, typeof i7.TuiPrimitiveTextfieldModule, typeof i8.TuiSelectOptionModule, typeof i9.TuiArrowComponent, typeof i10.TuiWrapperModule, typeof i10.TuiTextfieldControllerModule, typeof i11.TuiStringifyContentPipe, typeof i10.TuiLegacyDropdownOpenMonitorDirective, typeof i12.TuiDropdownOptionsDirective, typeof i12.TuiDropdownDriverDirective, typeof i12.TuiDropdownDirective, typeof i12.TuiDropdownComponent, typeof i12.TuiDropdownOpen, typeof i12.TuiDropdownPortal, typeof i12.TuiDropdownManual, typeof i12.TuiDropdownHover, typeof i12.TuiDropdownContext, typeof i12.TuiDropdownPosition, typeof i12.TuiDropdownPositionSided, typeof i12.TuiDropdownSelection, typeof i13.TuiDataListComponent, typeof i13.TuiDataListDirective, typeof i13.TuiOption, typeof i13.TuiOptGroup, typeof i14.TuiDataListWrapperComponent, typeof i14.TuiDataListGroupWrapperComponent, typeof i13.TuiDataListDirective], [typeof i1.TuiSelectComponent, typeof i2.TuiSelectDirective, typeof i7.TuiTextfieldComponent, typeof i3.TuiNativeSelectComponent, typeof i4.TuiNativeSelectGroupComponent, typeof i12.TuiDropdownOptionsDirective, typeof i12.TuiDropdownDriverDirective, typeof i12.TuiDropdownDirective, typeof i12.TuiDropdownComponent, typeof i12.TuiDropdownOpen, typeof i12.TuiDropdownPortal, typeof i12.TuiDropdownManual, typeof i12.TuiDropdownHover, typeof i12.TuiDropdownContext, typeof i12.TuiDropdownPosition, typeof i12.TuiDropdownPositionSided, typeof i12.TuiDropdownSelection, typeof i13.TuiDataListComponent, typeof i13.TuiDataListDirective, typeof i13.TuiOption, typeof i13.TuiOptGroup, typeof i14.TuiDataListWrapperComponent, typeof i14.TuiDataListGroupWrapperComponent, typeof i13.TuiDataListDirective]>;
|
|
22
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiSelectModule>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { Provider } from '@angular/core';
|
|
2
|
+
import type { TuiValueContentContext } from '@taiga-ui/core/types';
|
|
3
|
+
import type { PolymorpheusContent } from '@taiga-ui/polymorpheus';
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: drop in v5.0
|
|
6
|
+
*/
|
|
7
|
+
export interface TuiSelectOptions<T> {
|
|
8
|
+
readonly valueContent: PolymorpheusContent<TuiValueContentContext<T>>;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated: drop in v5.0
|
|
12
|
+
*/
|
|
13
|
+
export declare const TUI_SELECT_DEFAULT_OPTIONS: TuiSelectOptions<unknown>;
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated: drop in v5.0
|
|
16
|
+
* Default parameters for Select component
|
|
17
|
+
*/
|
|
18
|
+
export declare const TUI_SELECT_OPTIONS: import("@angular/core").InjectionToken<TuiSelectOptions<unknown>>;
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated: drop in v5.0
|
|
21
|
+
*/
|
|
22
|
+
export declare function tuiSelectOptionsProvider<T>(options: Partial<TuiSelectOptions<T>>): Provider;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { DoCheck, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { NgControl } from '@angular/forms';
|
|
3
|
+
import type { TuiContext, TuiIdentityMatcher } from '@taiga-ui/cdk/types';
|
|
4
|
+
import { TuiDataListComponent, TuiOption } from '@taiga-ui/core/components/data-list';
|
|
5
|
+
import { AbstractTuiControl } from '@taiga-ui/legacy/classes';
|
|
6
|
+
import { PolymorpheusComponent } from '@taiga-ui/polymorpheus';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated: drop in v5.0
|
|
10
|
+
*/
|
|
11
|
+
export declare class TuiSelectOptionComponent<T> implements OnInit, DoCheck {
|
|
12
|
+
private readonly host;
|
|
13
|
+
private readonly el;
|
|
14
|
+
private readonly changeDetection$;
|
|
15
|
+
protected readonly abstractControl: AbstractTuiControl<any> | null;
|
|
16
|
+
protected readonly control: NgControl;
|
|
17
|
+
protected readonly option: TuiOption<any>;
|
|
18
|
+
protected readonly dataList: TuiDataListComponent<any> | null;
|
|
19
|
+
protected readonly icons: import("@taiga-ui/core/tokens").TuiCommonIcons;
|
|
20
|
+
protected readonly context: TuiContext<TemplateRef<Record<string, unknown>>>;
|
|
21
|
+
protected readonly selected$: import("rxjs").Observable<boolean>;
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
ngDoCheck(): void;
|
|
24
|
+
protected get value(): T | null;
|
|
25
|
+
protected get matcher(): TuiIdentityMatcher<T>;
|
|
26
|
+
protected get selected(): boolean;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSelectOptionComponent<any>, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSelectOptionComponent<any>, "tui-select-option", never, {}, {}, never, never, false, never>;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated: drop in v5.0
|
|
32
|
+
*/
|
|
33
|
+
export declare const TUI_SELECT_OPTION: PolymorpheusComponent<TuiSelectOptionComponent<unknown>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./select-option.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@taiga-ui/core/components/scrollbar";
|
|
5
|
+
import * as i4 from "@taiga-ui/core/components/icon";
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated: drop in v5.0
|
|
8
|
+
*/
|
|
9
|
+
export declare class TuiSelectOptionModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSelectOptionModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TuiSelectOptionModule, [typeof i1.TuiSelectOptionComponent], [typeof i2.CommonModule, typeof i3.TuiScrollIntoView, typeof i4.TuiIcon], [typeof i1.TuiSelectOptionComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TuiSelectOptionModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { AfterViewInit } from '@angular/core';
|
|
2
|
+
import type { TuiSheet, TuiSheetRequiredProps } from '../../sheet';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TuiSheetComponent<T> implements TuiSheetRequiredProps<T>, AfterViewInit {
|
|
5
|
+
private readonly sheet?;
|
|
6
|
+
private readonly content?;
|
|
7
|
+
private readonly stopsRefs;
|
|
8
|
+
private readonly destroyRef;
|
|
9
|
+
private readonly scroll$;
|
|
10
|
+
private readonly el;
|
|
11
|
+
private readonly zone;
|
|
12
|
+
protected id: string;
|
|
13
|
+
protected readonly isIos: boolean;
|
|
14
|
+
protected readonly moreWord$: import("rxjs").Observable<string>;
|
|
15
|
+
protected readonly stuck$: import("rxjs").Observable<boolean>;
|
|
16
|
+
protected readonly stuck$$: import("rxjs").Subscription;
|
|
17
|
+
item: TuiSheet<T>;
|
|
18
|
+
get context(): TuiSheet<T>;
|
|
19
|
+
get stops(): readonly number[];
|
|
20
|
+
get imageStop(): number;
|
|
21
|
+
get imageHeight(): number;
|
|
22
|
+
ngAfterViewInit(): void;
|
|
23
|
+
protected onId(id: string): void;
|
|
24
|
+
protected scrollTo(top?: number): void;
|
|
25
|
+
protected close(): void;
|
|
26
|
+
private get contentTop();
|
|
27
|
+
private get sheetTop();
|
|
28
|
+
private getStops;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetComponent<any>, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetComponent<any>, "tui-sheet", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TuiSheetBarComponent {
|
|
3
|
+
private readonly sheet;
|
|
4
|
+
private readonly scroll$;
|
|
5
|
+
private readonly zone;
|
|
6
|
+
protected readonly rotate$: import("rxjs").Observable<number>;
|
|
7
|
+
private get stop();
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetBarComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetBarComponent, "tui-sheet-bar", never, {}, {}, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { AfterViewInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare const TUI_SHEET_CLOSE = "tui-sheet-close";
|
|
4
|
+
export declare const TUI_SHEET_ID = "tui-sheet-id";
|
|
5
|
+
export declare class TuiSheetHeadingComponent implements AfterViewInit {
|
|
6
|
+
private readonly el;
|
|
7
|
+
protected readonly closeWord$: import("rxjs").Observable<string>;
|
|
8
|
+
protected readonly icons: import("@taiga-ui/core/tokens").TuiCommonIcons;
|
|
9
|
+
protected readonly id: string;
|
|
10
|
+
ngAfterViewInit(): void;
|
|
11
|
+
protected onClick(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetHeadingComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetHeadingComponent, "[tuiSheetHeading]", never, {}, {}, never, ["*"], false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { OnInit } from '@angular/core';
|
|
2
|
+
import type { TuiSheet } from '../../sheet';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TuiSheetsHostComponent implements OnInit {
|
|
5
|
+
private readonly service;
|
|
6
|
+
private readonly destroyRef;
|
|
7
|
+
private readonly cdr;
|
|
8
|
+
protected readonly height$: import("rxjs").Observable<number>;
|
|
9
|
+
protected sheets: ReadonlyArray<TuiSheet<any>>;
|
|
10
|
+
protected readonly options: import("@angular/animations").AnimationOptions;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
protected close({ closeable, $implicit }: TuiSheet<unknown>): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetsHostComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiSheetsHostComponent, "tui-sheets-host", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TuiSheetCloseDirective {
|
|
4
|
+
private readonly zone;
|
|
5
|
+
private readonly dragged$;
|
|
6
|
+
private readonly scroll$;
|
|
7
|
+
private readonly win;
|
|
8
|
+
private readonly el;
|
|
9
|
+
private readonly sheet;
|
|
10
|
+
readonly close: Observable<unknown>;
|
|
11
|
+
private shouldClose;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetCloseDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetCloseDirective, "tui-sheet[close]", never, {}, { "close": "close"; }, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TuiSheetStopDirective {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetStopDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetStopDirective, "[tuiSheetStop]", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TuiSheetTopDirective {
|
|
3
|
+
private readonly scroll$;
|
|
4
|
+
private readonly component;
|
|
5
|
+
private readonly win;
|
|
6
|
+
private readonly el;
|
|
7
|
+
protected readonly rounded$: import("rxjs").Subscription;
|
|
8
|
+
protected readonly transform$: import("rxjs").Subscription;
|
|
9
|
+
protected readonly clickthrough$: import("rxjs").Subscription;
|
|
10
|
+
stop: number;
|
|
11
|
+
private getY;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetTopDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetTopDirective, "[tuiSheetTop]", never, { "stop": { "alias": "tuiSheetTop"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TuiSheetWrapperDirective {
|
|
4
|
+
private readonly sheet?;
|
|
5
|
+
private readonly dragged$;
|
|
6
|
+
private readonly scroll$;
|
|
7
|
+
private readonly zone;
|
|
8
|
+
private readonly win;
|
|
9
|
+
tuiSheetWrapper: number;
|
|
10
|
+
get overlay$(): Observable<boolean>;
|
|
11
|
+
get visible$(): Observable<boolean>;
|
|
12
|
+
get height$(): Observable<number | null>;
|
|
13
|
+
private getHeight;
|
|
14
|
+
private withImage;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TuiSheetWrapperDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiSheetWrapperDirective, "[tuiSheetWrapper]", ["tuiSheetWrapper"], { "tuiSheetWrapper": { "alias": "tuiSheetWrapper"; "required": false; }; }, {}, ["sheet", "dragged$", "scroll$"], never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from './components/sheet/sheet.component';
|
|
2
|
+
export * from './components/sheet/sheet.providers';
|
|
3
|
+
export * from './components/sheet-bar/sheet-bar.component';
|
|
4
|
+
export * from './components/sheet-heading/sheet-heading.component';
|
|
5
|
+
export * from './components/sheets-host/sheets-host.component';
|
|
6
|
+
export * from './directives/sheet-close/sheet-close.directive';
|
|
7
|
+
export * from './directives/sheet-stop/sheet-stop.directive';
|
|
8
|
+
export * from './directives/sheet-top/sheet-top.directive';
|
|
9
|
+
export * from './directives/sheet-wrapper/sheet-wrapper.directive';
|
|
10
|
+
export * from './sheet';
|
|
11
|
+
export * from './sheet.directive';
|
|
12
|
+
export * from './sheet.module';
|
|
13
|
+
export * from './sheet.service';
|
|
14
|
+
export * from './sheet-options';
|