@agorapulse/ui-components 16.2.23 → 16.3.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.
Files changed (102) hide show
  1. package/agorapulse-ui-components-16.3.0.tgz +0 -0
  2. package/autocomplete/autocomplete.component.d.ts +3 -3
  3. package/esm2022/autocomplete/autocomplete.component.mjs +21 -8
  4. package/esm2022/form-field/agorapulse-ui-components-form-field.mjs +5 -0
  5. package/esm2022/form-field/form-field.component.mjs +11 -0
  6. package/esm2022/form-field/public_api.mjs +2 -0
  7. package/esm2022/form-message/agorapulse-ui-components-form-message.mjs +5 -0
  8. package/esm2022/form-message/form-message.component.mjs +34 -0
  9. package/esm2022/form-message/public_api.mjs +2 -0
  10. package/esm2022/index.mjs +4 -4
  11. package/esm2022/input/input.directive.mjs +19 -0
  12. package/esm2022/input/public_api.mjs +2 -2
  13. package/esm2022/input-group/agorapulse-ui-components-input-group.mjs +5 -0
  14. package/esm2022/input-group/input-group.component.mjs +14 -0
  15. package/esm2022/input-group/public_api.mjs +2 -0
  16. package/esm2022/labels/label.component.mjs +3 -3
  17. package/esm2022/legacy/input/agorapulse-ui-components-legacy-input.mjs +5 -0
  18. package/esm2022/{input → legacy/input}/input.component.mjs +4 -1
  19. package/esm2022/legacy/input/public_api.mjs +2 -0
  20. package/esm2022/legacy/select/agorapulse-ui-components-legacy-select.mjs +5 -0
  21. package/esm2022/legacy/select/public_api.mjs +2 -0
  22. package/esm2022/{select → legacy/select}/select.component.mjs +5 -2
  23. package/esm2022/legacy/textarea/agorapulse-ui-components-legacy-textarea.mjs +5 -0
  24. package/esm2022/legacy/textarea/public_api.mjs +2 -0
  25. package/esm2022/{textarea → legacy/textarea}/textarea.component.mjs +4 -1
  26. package/esm2022/select/ap-select.module.mjs +72 -0
  27. package/esm2022/select/dropdown-group-item/dropdown-group-item.component.mjs +52 -0
  28. package/esm2022/select/dropdown-item-multiple-one-line/dropdown-item-multiple-one-line.component.mjs +61 -0
  29. package/esm2022/select/dropdown-item-multiple-two-lines/dropdown-item-multiple-two-lines.component.mjs +65 -0
  30. package/esm2022/select/dropdown-item-single-one-line/dropdown-item-single-one-line.component.mjs +39 -0
  31. package/esm2022/select/dropdown-item-single-two-lines/dropdown-item-single-two-lines.component.mjs +43 -0
  32. package/esm2022/select/dropdown-search-form/dropdown-search-form.component.mjs +77 -0
  33. package/esm2022/select/public_api.mjs +13 -2
  34. package/esm2022/select/select-base.directive.mjs +69 -0
  35. package/esm2022/select/select-label-multiple/select-label-multiple.component.mjs +111 -0
  36. package/esm2022/select/select-label-single/select-label-single.component.mjs +27 -0
  37. package/esm2022/select/select-multiple.directive.mjs +34 -0
  38. package/esm2022/select/select-single.directive.mjs +34 -0
  39. package/esm2022/textarea/public_api.mjs +2 -2
  40. package/esm2022/textarea/textarea.directive.mjs +40 -0
  41. package/fesm2022/agorapulse-ui-components-autocomplete.mjs +20 -7
  42. package/fesm2022/agorapulse-ui-components-autocomplete.mjs.map +1 -1
  43. package/fesm2022/agorapulse-ui-components-form-field.mjs +18 -0
  44. package/fesm2022/agorapulse-ui-components-form-field.mjs.map +1 -0
  45. package/fesm2022/agorapulse-ui-components-form-message.mjs +41 -0
  46. package/fesm2022/agorapulse-ui-components-form-message.mjs.map +1 -0
  47. package/fesm2022/agorapulse-ui-components-input-group.mjs +21 -0
  48. package/fesm2022/agorapulse-ui-components-input-group.mjs.map +1 -0
  49. package/fesm2022/agorapulse-ui-components-input.mjs +16 -184
  50. package/fesm2022/agorapulse-ui-components-input.mjs.map +1 -1
  51. package/fesm2022/agorapulse-ui-components-labels.mjs +2 -2
  52. package/fesm2022/agorapulse-ui-components-labels.mjs.map +1 -1
  53. package/fesm2022/agorapulse-ui-components-legacy-input.mjs +197 -0
  54. package/fesm2022/agorapulse-ui-components-legacy-input.mjs.map +1 -0
  55. package/fesm2022/agorapulse-ui-components-legacy-select.mjs +460 -0
  56. package/fesm2022/agorapulse-ui-components-legacy-select.mjs.map +1 -0
  57. package/fesm2022/agorapulse-ui-components-legacy-textarea.mjs +162 -0
  58. package/fesm2022/agorapulse-ui-components-legacy-textarea.mjs.map +1 -0
  59. package/fesm2022/agorapulse-ui-components-select.mjs +562 -395
  60. package/fesm2022/agorapulse-ui-components-select.mjs.map +1 -1
  61. package/fesm2022/agorapulse-ui-components-textarea.mjs +29 -141
  62. package/fesm2022/agorapulse-ui-components-textarea.mjs.map +1 -1
  63. package/fesm2022/agorapulse-ui-components.mjs +3 -3
  64. package/fesm2022/agorapulse-ui-components.mjs.map +1 -1
  65. package/form-field/form-field.component.d.ts +5 -0
  66. package/form-field/index.d.ts +5 -0
  67. package/form-field/public_api.d.ts +1 -0
  68. package/form-message/form-message.component.d.ts +12 -0
  69. package/form-message/index.d.ts +5 -0
  70. package/form-message/public_api.d.ts +1 -0
  71. package/index.d.ts +3 -3
  72. package/input/input.directive.d.ts +7 -0
  73. package/input/public_api.d.ts +1 -1
  74. package/input-group/index.d.ts +5 -0
  75. package/input-group/input-group.component.d.ts +6 -0
  76. package/input-group/public_api.d.ts +1 -0
  77. package/legacy/input/index.d.ts +5 -0
  78. package/{input → legacy/input}/input.component.d.ts +3 -0
  79. package/legacy/input/public_api.d.ts +1 -0
  80. package/legacy/select/index.d.ts +5 -0
  81. package/legacy/select/public_api.d.ts +1 -0
  82. package/{select → legacy/select}/select.component.d.ts +4 -1
  83. package/legacy/textarea/index.d.ts +5 -0
  84. package/legacy/textarea/public_api.d.ts +1 -0
  85. package/{textarea → legacy/textarea}/textarea.component.d.ts +3 -0
  86. package/package.json +37 -1
  87. package/select/ap-select.module.d.ts +16 -0
  88. package/select/dropdown-group-item/dropdown-group-item.component.d.ts +16 -0
  89. package/select/dropdown-item-multiple-one-line/dropdown-item-multiple-one-line.component.d.ts +20 -0
  90. package/select/dropdown-item-multiple-two-lines/dropdown-item-multiple-two-lines.component.d.ts +21 -0
  91. package/select/dropdown-item-single-one-line/dropdown-item-single-one-line.component.d.ts +12 -0
  92. package/select/dropdown-item-single-two-lines/dropdown-item-single-two-lines.component.d.ts +13 -0
  93. package/select/dropdown-search-form/dropdown-search-form.component.d.ts +22 -0
  94. package/select/public_api.d.ts +12 -1
  95. package/select/select-base.directive.d.ts +18 -0
  96. package/select/select-label-multiple/select-label-multiple.component.d.ts +29 -0
  97. package/select/select-label-single/select-label-single.component.d.ts +8 -0
  98. package/select/select-multiple.directive.d.ts +10 -0
  99. package/select/select-single.directive.d.ts +10 -0
  100. package/textarea/public_api.d.ts +1 -1
  101. package/textarea/textarea.directive.d.ts +11 -0
  102. package/agorapulse-ui-components-16.2.23.tgz +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"agorapulse-ui-components.mjs","sources":["../../../libs/ui-components/src/lib/agorapulse-ui-components.module.ts","../../../libs/ui-components/index.ts","../../../libs/ui-components/agorapulse-ui-components.ts"],"sourcesContent":["// Modules\nimport { AddCommentComponent } from '@agorapulse/ui-components/add-comment';\nimport { AvatarComponent } from '@agorapulse/ui-components/avatar';\nimport { ConfirmModalComponent } from '@agorapulse/ui-components/confirm-modal';\nimport { DatepickerComponent } from '@agorapulse/ui-components/datepicker';\nimport {\n AutosizeTextareaDirective,\n DefaultImageDirective,\n EllipsisDirective,\n EqualValidatorDirective,\n FrozenGifDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n} from '@agorapulse/ui-components/directives';\nimport { DotsStepperComponent } from '@agorapulse/ui-components/dots-stepper';\nimport { InfoboxComponent } from '@agorapulse/ui-components/infobox';\nimport { LabelComponent, LabelListComponent } from '@agorapulse/ui-components/labels';\nimport { LabelsSelectorComponent } from '@agorapulse/ui-components/labels-selector';\nimport { MediaDisplayOverlayDialogComponent } from '@agorapulse/ui-components/media-display-overlay';\nimport { ModalComponent } from '@agorapulse/ui-components/modal';\nimport { DayDisabledPipe, NeoDatepickerComponent } from '@agorapulse/ui-components/neo-datepicker';\nimport { NotificationComponent } from '@agorapulse/ui-components/notification';\nimport { PaginatorButtonComponent, PaginatorComponent } from '@agorapulse/ui-components/paginator';\nimport { PasswordInputComponent } from '@agorapulse/ui-components/password-input';\nimport { PopmenuModule } from '@agorapulse/ui-components/popmenu';\nimport { SlideToggleComponent } from '@agorapulse/ui-components/slide-toggle';\nimport { SnackbarsThreadComponent } from '@agorapulse/ui-components/snackbars-thread';\nimport { StepperComponent } from '@agorapulse/ui-components/stepper';\nimport { TooltipDirective } from '@agorapulse/ui-components/tooltip';\nimport { NgModule } from '@angular/core';\nimport { MAT_TABS_CONFIG } from '@angular/material/tabs';\n\n/**\n * @deprecated for better tree-shaking, use standalone component import instead\n */\n@NgModule({\n declarations: [],\n imports: [\n // Components\n AvatarComponent,\n StepperComponent,\n ConfirmModalComponent,\n DatepickerComponent,\n DotsStepperComponent,\n EllipsisDirective,\n InfoboxComponent,\n LabelListComponent,\n LabelsSelectorComponent,\n NeoDatepickerComponent,\n MediaDisplayOverlayDialogComponent,\n ModalComponent,\n PasswordInputComponent,\n LabelComponent,\n NotificationComponent,\n PaginatorComponent,\n PaginatorButtonComponent,\n SlideToggleComponent,\n SnackbarsThreadComponent,\n // Directives\n DefaultImageDirective,\n FrozenGifDirective,\n SlideToggleComponent,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n TooltipDirective,\n AddCommentComponent,\n AutosizeTextareaDirective,\n // Pipes\n DayDisabledPipe,\n ],\n exports: [\n // Components\n AddCommentComponent,\n AvatarComponent,\n StepperComponent,\n ConfirmModalComponent,\n DatepickerComponent,\n NeoDatepickerComponent,\n DotsStepperComponent,\n EllipsisDirective,\n InfoboxComponent,\n LabelComponent,\n LabelListComponent,\n MediaDisplayOverlayDialogComponent,\n ModalComponent,\n PasswordInputComponent,\n LabelsSelectorComponent,\n NotificationComponent,\n PaginatorComponent,\n PaginatorButtonComponent,\n SlideToggleComponent,\n SnackbarsThreadComponent,\n // Pipes\n DayDisabledPipe,\n // Directives\n AutosizeTextareaDirective,\n DefaultImageDirective,\n FrozenGifDirective,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n TooltipDirective,\n // Modules\n PopmenuModule,\n ],\n providers: [\n // Disable ripple effect\n // {provide: MAT_RIPPLE_GLOBAL_OPTIONS, useValue: {disabled: true}},\n // Disable tabs animation\n { provide: MAT_TABS_CONFIG, useValue: { animationDuration: '0ms' } },\n ],\n})\nexport class AgorapulseUiComponentsModule {}\n","/*\n * Public API Surface of ui\n */\n\n// Module\nexport { AgorapulseUiComponentsModule } from './src/lib/agorapulse-ui-components.module';\nexport { PopmenuModule } from '@agorapulse/ui-components/popmenu';\n\n// Directive\nexport {\n AutosizeTextareaDirective,\n DefaultImageDirective,\n EllipsisDirective,\n FrozenGifDirective,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n} from '@agorapulse/ui-components/directives';\nexport { PopmenuDirective } from '@agorapulse/ui-components/popmenu';\nexport { TooltipDirective } from '@agorapulse/ui-components/tooltip';\n\n// Component\nexport { AddCommentComponent } from '@agorapulse/ui-components/add-comment';\nexport { AvatarComponent } from '@agorapulse/ui-components/avatar';\nexport { StepperComponent } from '@agorapulse/ui-components/stepper';\nexport { ConfirmModalComponent } from '@agorapulse/ui-components/confirm-modal';\nexport { DatepickerComponent, DatepickerMode, I18nDatePicker, Period } from '@agorapulse/ui-components/datepicker';\nexport {\n NeoDatepickerComponent,\n NeoDatePickerStartsOn,\n NeoDatePickerMode,\n NeoDatePickerLocale,\n DayDisabledPipe,\n} from '@agorapulse/ui-components/neo-datepicker';\nexport { DotsStepperComponent } from '@agorapulse/ui-components/dots-stepper';\nexport { InfoboxComponent } from '@agorapulse/ui-components/infobox';\nexport { LabelComponent } from '@agorapulse/ui-components/labels';\nexport { LabelListComponent } from '@agorapulse/ui-components/labels';\nexport { LabelsSelectorComponent } from '@agorapulse/ui-components/labels-selector';\nexport { MediaDisplayOverlayDialogComponent } from '@agorapulse/ui-components/media-display-overlay';\nexport { ModalComponent, ModalConfig } from '@agorapulse/ui-components/modal';\nexport { PaginatorComponent } from '@agorapulse/ui-components/paginator';\nexport { PasswordInputComponent } from '@agorapulse/ui-components/password-input';\nexport { PopmenuComponent } from '@agorapulse/ui-components/popmenu';\nexport { NotificationComponent } from '@agorapulse/ui-components/notification';\nexport { PaginatorButtonComponent } from '@agorapulse/ui-components/paginator';\nexport { SlideToggleComponent } from '@agorapulse/ui-components/slide-toggle';\nexport { SnackbarsThreadComponent } from '@agorapulse/ui-components/snackbars-thread';\nexport { CheckboxComponent } from '@agorapulse/ui-components/checkbox';\nexport { IconButtonComponent } from '@agorapulse/ui-components/icon-button';\nexport { ToggleComponent } from '@agorapulse/ui-components/toggle';\nexport { ButtonComponent } from '@agorapulse/ui-components/button';\nexport { SocialButtonComponent } from '@agorapulse/ui-components/social-button';\nexport { RadioComponent } from '@agorapulse/ui-components/radio';\nexport { TagComponent } from '@agorapulse/ui-components/tag';\nexport { BadgeComponent } from '@agorapulse/ui-components/badge';\nexport { CounterComponent } from '@agorapulse/ui-components/counter';\nexport { StatusComponent } from '@agorapulse/ui-components/status';\nexport { StatusCardComponent, StatusCardActor } from '@agorapulse/ui-components/status-card';\nexport { InputComponent } from '@agorapulse/ui-components/input';\nexport { SelectComponent } from '@agorapulse/ui-components/select';\nexport { AutocompleteComponent } from '@agorapulse/ui-components/autocomplete';\nexport { TextareaComponent } from '@agorapulse/ui-components/textarea';\n\n// Service\nexport { SnackbarsThreadService } from '@agorapulse/ui-components/snackbars-thread';\n\n// Model\nexport { Step } from '@agorapulse/ui-components/stepper';\nexport { ConfirmModalTexts } from '@agorapulse/ui-components/confirm-modal';\nexport {\n generateCodeStatus,\n CodeStatus,\n SnackbarsThreadBase,\n SnackbarTypeValues,\n externalSnackbarTypeAllowed,\n} from '@agorapulse/ui-components/snackbars-thread';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"agorapulse-ui-components.mjs","sources":["../../../libs/ui-components/src/lib/agorapulse-ui-components.module.ts","../../../libs/ui-components/index.ts","../../../libs/ui-components/agorapulse-ui-components.ts"],"sourcesContent":["// Modules\nimport { AddCommentComponent } from '@agorapulse/ui-components/add-comment';\nimport { AvatarComponent } from '@agorapulse/ui-components/avatar';\nimport { ConfirmModalComponent } from '@agorapulse/ui-components/confirm-modal';\nimport { DatepickerComponent } from '@agorapulse/ui-components/datepicker';\nimport {\n AutosizeTextareaDirective,\n DefaultImageDirective,\n EllipsisDirective,\n EqualValidatorDirective,\n FrozenGifDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n} from '@agorapulse/ui-components/directives';\nimport { DotsStepperComponent } from '@agorapulse/ui-components/dots-stepper';\nimport { InfoboxComponent } from '@agorapulse/ui-components/infobox';\nimport { LabelComponent, LabelListComponent } from '@agorapulse/ui-components/labels';\nimport { LabelsSelectorComponent } from '@agorapulse/ui-components/labels-selector';\nimport { MediaDisplayOverlayDialogComponent } from '@agorapulse/ui-components/media-display-overlay';\nimport { ModalComponent } from '@agorapulse/ui-components/modal';\nimport { DayDisabledPipe, NeoDatepickerComponent } from '@agorapulse/ui-components/neo-datepicker';\nimport { NotificationComponent } from '@agorapulse/ui-components/notification';\nimport { PaginatorButtonComponent, PaginatorComponent } from '@agorapulse/ui-components/paginator';\nimport { PasswordInputComponent } from '@agorapulse/ui-components/password-input';\nimport { PopmenuModule } from '@agorapulse/ui-components/popmenu';\nimport { SlideToggleComponent } from '@agorapulse/ui-components/slide-toggle';\nimport { SnackbarsThreadComponent } from '@agorapulse/ui-components/snackbars-thread';\nimport { StepperComponent } from '@agorapulse/ui-components/stepper';\nimport { TooltipDirective } from '@agorapulse/ui-components/tooltip';\nimport { NgModule } from '@angular/core';\nimport { MAT_TABS_CONFIG } from '@angular/material/tabs';\n\n/**\n * @deprecated for better tree-shaking, use standalone component import instead\n */\n@NgModule({\n declarations: [],\n imports: [\n // Components\n AvatarComponent,\n StepperComponent,\n ConfirmModalComponent,\n DatepickerComponent,\n DotsStepperComponent,\n EllipsisDirective,\n InfoboxComponent,\n LabelListComponent,\n LabelsSelectorComponent,\n NeoDatepickerComponent,\n MediaDisplayOverlayDialogComponent,\n ModalComponent,\n PasswordInputComponent,\n LabelComponent,\n NotificationComponent,\n PaginatorComponent,\n PaginatorButtonComponent,\n SlideToggleComponent,\n SnackbarsThreadComponent,\n // Directives\n DefaultImageDirective,\n FrozenGifDirective,\n SlideToggleComponent,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n TooltipDirective,\n AddCommentComponent,\n AutosizeTextareaDirective,\n // Pipes\n DayDisabledPipe,\n ],\n exports: [\n // Components\n AddCommentComponent,\n AvatarComponent,\n StepperComponent,\n ConfirmModalComponent,\n DatepickerComponent,\n NeoDatepickerComponent,\n DotsStepperComponent,\n EllipsisDirective,\n InfoboxComponent,\n LabelComponent,\n LabelListComponent,\n MediaDisplayOverlayDialogComponent,\n ModalComponent,\n PasswordInputComponent,\n LabelsSelectorComponent,\n NotificationComponent,\n PaginatorComponent,\n PaginatorButtonComponent,\n SlideToggleComponent,\n SnackbarsThreadComponent,\n // Pipes\n DayDisabledPipe,\n // Directives\n AutosizeTextareaDirective,\n DefaultImageDirective,\n FrozenGifDirective,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n TooltipDirective,\n // Modules\n PopmenuModule,\n ],\n providers: [\n // Disable ripple effect\n // {provide: MAT_RIPPLE_GLOBAL_OPTIONS, useValue: {disabled: true}},\n // Disable tabs animation\n { provide: MAT_TABS_CONFIG, useValue: { animationDuration: '0ms' } },\n ],\n})\nexport class AgorapulseUiComponentsModule {}\n","/*\n * Public API Surface of ui\n */\n\n// Module\nexport { AgorapulseUiComponentsModule } from './src/lib/agorapulse-ui-components.module';\nexport { PopmenuModule } from '@agorapulse/ui-components/popmenu';\n\n// Directive\nexport {\n AutosizeTextareaDirective,\n DefaultImageDirective,\n EllipsisDirective,\n FrozenGifDirective,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n} from '@agorapulse/ui-components/directives';\nexport { PopmenuDirective } from '@agorapulse/ui-components/popmenu';\nexport { TooltipDirective } from '@agorapulse/ui-components/tooltip';\n\n// Component\nexport { AddCommentComponent } from '@agorapulse/ui-components/add-comment';\nexport { AvatarComponent } from '@agorapulse/ui-components/avatar';\nexport { StepperComponent } from '@agorapulse/ui-components/stepper';\nexport { ConfirmModalComponent } from '@agorapulse/ui-components/confirm-modal';\nexport { DatepickerComponent, DatepickerMode, I18nDatePicker, Period } from '@agorapulse/ui-components/datepicker';\nexport {\n NeoDatepickerComponent,\n NeoDatePickerStartsOn,\n NeoDatePickerMode,\n NeoDatePickerLocale,\n DayDisabledPipe,\n} from '@agorapulse/ui-components/neo-datepicker';\nexport { DotsStepperComponent } from '@agorapulse/ui-components/dots-stepper';\nexport { InfoboxComponent } from '@agorapulse/ui-components/infobox';\nexport { LabelComponent } from '@agorapulse/ui-components/labels';\nexport { LabelListComponent } from '@agorapulse/ui-components/labels';\nexport { LabelsSelectorComponent } from '@agorapulse/ui-components/labels-selector';\nexport { MediaDisplayOverlayDialogComponent } from '@agorapulse/ui-components/media-display-overlay';\nexport { ModalComponent, ModalConfig } from '@agorapulse/ui-components/modal';\nexport { PaginatorComponent } from '@agorapulse/ui-components/paginator';\nexport { PasswordInputComponent } from '@agorapulse/ui-components/password-input';\nexport { PopmenuComponent } from '@agorapulse/ui-components/popmenu';\nexport { NotificationComponent } from '@agorapulse/ui-components/notification';\nexport { PaginatorButtonComponent } from '@agorapulse/ui-components/paginator';\nexport { SlideToggleComponent } from '@agorapulse/ui-components/slide-toggle';\nexport { SnackbarsThreadComponent } from '@agorapulse/ui-components/snackbars-thread';\nexport { CheckboxComponent } from '@agorapulse/ui-components/checkbox';\nexport { IconButtonComponent } from '@agorapulse/ui-components/icon-button';\nexport { ToggleComponent } from '@agorapulse/ui-components/toggle';\nexport { ButtonComponent } from '@agorapulse/ui-components/button';\nexport { SocialButtonComponent } from '@agorapulse/ui-components/social-button';\nexport { RadioComponent } from '@agorapulse/ui-components/radio';\nexport { TagComponent } from '@agorapulse/ui-components/tag';\nexport { BadgeComponent } from '@agorapulse/ui-components/badge';\nexport { CounterComponent } from '@agorapulse/ui-components/counter';\nexport { StatusComponent } from '@agorapulse/ui-components/status';\nexport { StatusCardComponent, StatusCardActor } from '@agorapulse/ui-components/status-card';\nexport { InputComponent } from '@agorapulse/ui-components/legacy/input';\nexport { SelectComponent } from '@agorapulse/ui-components/legacy/select';\nexport { AutocompleteComponent } from '@agorapulse/ui-components/autocomplete';\nexport { TextareaComponent } from '@agorapulse/ui-components/legacy/textarea';\n\n// Service\nexport { SnackbarsThreadService } from '@agorapulse/ui-components/snackbars-thread';\n\n// Model\nexport { Step } from '@agorapulse/ui-components/stepper';\nexport { ConfirmModalTexts } from '@agorapulse/ui-components/confirm-modal';\nexport {\n generateCodeStatus,\n CodeStatus,\n SnackbarsThreadBase,\n SnackbarTypeValues,\n externalSnackbarTypeAllowed,\n} from '@agorapulse/ui-components/snackbars-thread';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FormFieldComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "ap-form-field", never, {}, {}, never, ["label", "*", "ap-form-message"], true, never>;
5
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/form-field" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './form-field.component';
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ export type MessageType = 'error' | 'success';
3
+ export declare class FormMessageComponent {
4
+ set messageType(messageType: MessageType);
5
+ message: string;
6
+ messageTypeSignal: import("@angular/core").WritableSignal<MessageType>;
7
+ symbolIdSignal: import("@angular/core").Signal<"alert-circle" | "check-circle">;
8
+ private symbolRegistry;
9
+ constructor();
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormMessageComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormMessageComponent, "ap-form-message", never, { "messageType": { "alias": "messageType"; "required": true; }; "message": { "alias": "message"; "required": true; }; }, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/form-message" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './form-message.component';
package/index.d.ts CHANGED
@@ -34,10 +34,10 @@ export { BadgeComponent } from '@agorapulse/ui-components/badge';
34
34
  export { CounterComponent } from '@agorapulse/ui-components/counter';
35
35
  export { StatusComponent } from '@agorapulse/ui-components/status';
36
36
  export { StatusCardComponent, StatusCardActor } from '@agorapulse/ui-components/status-card';
37
- export { InputComponent } from '@agorapulse/ui-components/input';
38
- export { SelectComponent } from '@agorapulse/ui-components/select';
37
+ export { InputComponent } from '@agorapulse/ui-components/legacy/input';
38
+ export { SelectComponent } from '@agorapulse/ui-components/legacy/select';
39
39
  export { AutocompleteComponent } from '@agorapulse/ui-components/autocomplete';
40
- export { TextareaComponent } from '@agorapulse/ui-components/textarea';
40
+ export { TextareaComponent } from '@agorapulse/ui-components/legacy/textarea';
41
41
  export { SnackbarsThreadService } from '@agorapulse/ui-components/snackbars-thread';
42
42
  export { Step } from '@agorapulse/ui-components/stepper';
43
43
  export { ConfirmModalTexts } from '@agorapulse/ui-components/confirm-modal';
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class InputDirective {
3
+ private elementRef;
4
+ input: HTMLInputElement;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputDirective, never>;
6
+ static ɵdir: i0.ɵɵDirectiveDeclaration<InputDirective, "[apInput]", never, {}, {}, never, never, true, never>;
7
+ }
@@ -1 +1 @@
1
- export * from './input.component';
1
+ export { InputDirective } from './input.directive';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/input-group" />
5
+ export * from './public_api';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class InputGroupComponent {
3
+ symbolPosition: 'left' | 'right';
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputGroupComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputGroupComponent, "ap-input-group", never, { "symbolPosition": { "alias": "symbolPosition"; "required": false; }; }, {}, never, ["ap-symbol", "input[apInput]"], true, never>;
6
+ }
@@ -0,0 +1 @@
1
+ export * from './input-group.component';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/legacy/input" />
5
+ export * from './public_api';
@@ -8,6 +8,9 @@ export declare const AP_INPUT_CONTROL_VALUE_ACCESSOR: {
8
8
  useExisting: import("@angular/core").Type<any>;
9
9
  multi: boolean;
10
10
  };
11
+ /**
12
+ * @deprecated use native input with directive apInput, ap-input-group and ap-form-field instead
13
+ */
11
14
  export declare class InputComponent implements OnInit, AfterViewInit, ControlValueAccessor {
12
15
  readonly elementRef: ElementRef;
13
16
  readonly symbolRegistry: SymbolRegistry;
@@ -0,0 +1 @@
1
+ export * from './input.component';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/legacy/select" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './select.component';
@@ -1,4 +1,4 @@
1
- import { InputComponent } from '@agorapulse/ui-components/input';
1
+ import { InputComponent } from '@agorapulse/ui-components/legacy/input';
2
2
  import { AfterViewInit, ElementRef, EventEmitter, OnInit, Provider, TemplateRef } from '@angular/core';
3
3
  import { ControlValueAccessor } from '@angular/forms';
4
4
  import { NgOption, NgSelectComponent } from '@ng-select/ng-select';
@@ -6,6 +6,9 @@ import { Observable } from 'rxjs';
6
6
  import * as i0 from "@angular/core";
7
7
  export type DisplayType = 'text' | 'label' | 'tag' | 'withAvatar';
8
8
  export declare const SELECT_VALUE_ACCESSOR: Provider;
9
+ /**
10
+ * @deprecated use NgSelectComponent with directive apSelectSingle or apSelectMultiple
11
+ */
9
12
  export declare class SelectComponent<T extends Record<string, unknown> | string> implements OnInit, AfterViewInit, ControlValueAccessor {
10
13
  private symbolRegistry;
11
14
  private destroyRef;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@agorapulse/ui-components/legacy/textarea" />
5
+ export * from './public_api';
@@ -0,0 +1 @@
1
+ export * from './textarea.component';
@@ -7,6 +7,9 @@ export declare const AP_TEXTAREA_CONTROL_VALUE_ACCESSOR: {
7
7
  useExisting: import("@angular/core").Type<any>;
8
8
  multi: boolean;
9
9
  };
10
+ /**
11
+ * @deprecated use native textarea with directive apTextarea and ap-form-field instead
12
+ */
10
13
  export declare class TextareaComponent implements OnInit, AfterViewInit, ControlValueAccessor {
11
14
  readonly elementRef: ElementRef;
12
15
  readonly symbolRegistry: SymbolRegistry;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agorapulse/ui-components",
3
3
  "description": "Agorapulse UI Components Library",
4
- "version": "16.2.23",
4
+ "version": "16.3.0",
5
5
  "author": "Benoit Hediard",
6
6
  "repository": {
7
7
  "type": "git",
@@ -103,6 +103,18 @@
103
103
  "esm": "./esm2022/dots-stepper/agorapulse-ui-components-dots-stepper.mjs",
104
104
  "default": "./fesm2022/agorapulse-ui-components-dots-stepper.mjs"
105
105
  },
106
+ "./form-field": {
107
+ "types": "./form-field/index.d.ts",
108
+ "esm2022": "./esm2022/form-field/agorapulse-ui-components-form-field.mjs",
109
+ "esm": "./esm2022/form-field/agorapulse-ui-components-form-field.mjs",
110
+ "default": "./fesm2022/agorapulse-ui-components-form-field.mjs"
111
+ },
112
+ "./form-message": {
113
+ "types": "./form-message/index.d.ts",
114
+ "esm2022": "./esm2022/form-message/agorapulse-ui-components-form-message.mjs",
115
+ "esm": "./esm2022/form-message/agorapulse-ui-components-form-message.mjs",
116
+ "default": "./fesm2022/agorapulse-ui-components-form-message.mjs"
117
+ },
106
118
  "./icon-button": {
107
119
  "types": "./icon-button/index.d.ts",
108
120
  "esm2022": "./esm2022/icon-button/agorapulse-ui-components-icon-button.mjs",
@@ -121,6 +133,12 @@
121
133
  "esm": "./esm2022/input/agorapulse-ui-components-input.mjs",
122
134
  "default": "./fesm2022/agorapulse-ui-components-input.mjs"
123
135
  },
136
+ "./input-group": {
137
+ "types": "./input-group/index.d.ts",
138
+ "esm2022": "./esm2022/input-group/agorapulse-ui-components-input-group.mjs",
139
+ "esm": "./esm2022/input-group/agorapulse-ui-components-input-group.mjs",
140
+ "default": "./fesm2022/agorapulse-ui-components-input-group.mjs"
141
+ },
124
142
  "./labels": {
125
143
  "types": "./labels/index.d.ts",
126
144
  "esm2022": "./esm2022/labels/agorapulse-ui-components-labels.mjs",
@@ -264,6 +282,24 @@
264
282
  "esm2022": "./esm2022/tooltip/agorapulse-ui-components-tooltip.mjs",
265
283
  "esm": "./esm2022/tooltip/agorapulse-ui-components-tooltip.mjs",
266
284
  "default": "./fesm2022/agorapulse-ui-components-tooltip.mjs"
285
+ },
286
+ "./legacy/input": {
287
+ "types": "./legacy/input/index.d.ts",
288
+ "esm2022": "./esm2022/legacy/input/agorapulse-ui-components-legacy-input.mjs",
289
+ "esm": "./esm2022/legacy/input/agorapulse-ui-components-legacy-input.mjs",
290
+ "default": "./fesm2022/agorapulse-ui-components-legacy-input.mjs"
291
+ },
292
+ "./legacy/select": {
293
+ "types": "./legacy/select/index.d.ts",
294
+ "esm2022": "./esm2022/legacy/select/agorapulse-ui-components-legacy-select.mjs",
295
+ "esm": "./esm2022/legacy/select/agorapulse-ui-components-legacy-select.mjs",
296
+ "default": "./fesm2022/agorapulse-ui-components-legacy-select.mjs"
297
+ },
298
+ "./legacy/textarea": {
299
+ "types": "./legacy/textarea/index.d.ts",
300
+ "esm2022": "./esm2022/legacy/textarea/agorapulse-ui-components-legacy-textarea.mjs",
301
+ "esm": "./esm2022/legacy/textarea/agorapulse-ui-components-legacy-textarea.mjs",
302
+ "default": "./fesm2022/agorapulse-ui-components-legacy-textarea.mjs"
267
303
  }
268
304
  },
269
305
  "sideEffects": false,
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./select-multiple.directive";
3
+ import * as i2 from "./select-single.directive";
4
+ import * as i3 from "./dropdown-item-single-one-line/dropdown-item-single-one-line.component";
5
+ import * as i4 from "./dropdown-item-single-two-lines/dropdown-item-single-two-lines.component";
6
+ import * as i5 from "./dropdown-item-multiple-one-line/dropdown-item-multiple-one-line.component";
7
+ import * as i6 from "./dropdown-item-multiple-two-lines/dropdown-item-multiple-two-lines.component";
8
+ import * as i7 from "./select-label-single/select-label-single.component";
9
+ import * as i8 from "./select-label-multiple/select-label-multiple.component";
10
+ import * as i9 from "./dropdown-search-form/dropdown-search-form.component";
11
+ import * as i10 from "./dropdown-group-item/dropdown-group-item.component";
12
+ export declare class ApSelectModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApSelectModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ApSelectModule, never, [typeof i1.SelectMultipleDirective, typeof i2.SelectSingleDirective, typeof i3.DropdownItemSingleOneLineComponent, typeof i4.DropdownItemSingleTwoLinesComponent, typeof i5.DropdownItemMultipleOneLineComponent, typeof i6.DropdownItemMultipleTwoLinesComponent, typeof i7.SelectLabelSingleComponent, typeof i8.SelectLabelMultipleComponent, typeof i9.DropdownSearchFormComponent, typeof i10.DropdownGroupItemComponent], [typeof i1.SelectMultipleDirective, typeof i2.SelectSingleDirective, typeof i3.DropdownItemSingleOneLineComponent, typeof i4.DropdownItemSingleTwoLinesComponent, typeof i5.DropdownItemMultipleOneLineComponent, typeof i6.DropdownItemMultipleTwoLinesComponent, typeof i7.SelectLabelSingleComponent, typeof i8.SelectLabelMultipleComponent, typeof i9.DropdownSearchFormComponent, typeof i10.DropdownGroupItemComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<ApSelectModule>;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { NgOption, NgSelectComponent } from '@ng-select/ng-select';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DropdownGroupItemComponent {
4
+ groupLabel: string;
5
+ groupTag?: string;
6
+ selectableGroup: boolean;
7
+ children: NgOption[];
8
+ select: NgSelectComponent;
9
+ disabled: boolean;
10
+ disabledTooltip?: string;
11
+ isGroupIntermediate(): boolean;
12
+ isGroupChecked(): boolean;
13
+ isGroupDisabled(): boolean;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownGroupItemComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownGroupItemComponent, "ap-dropdown-group-item", never, { "groupLabel": { "alias": "groupLabel"; "required": true; }; "groupTag": { "alias": "groupTag"; "required": false; }; "selectableGroup": { "alias": "selectableGroup"; "required": false; }; "children": { "alias": "children"; "required": true; }; "select": { "alias": "select"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "disabledTooltip": { "alias": "disabledTooltip"; "required": false; }; }, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,20 @@
1
+ import { CheckboxComponent } from '@agorapulse/ui-components/checkbox';
2
+ import { EventEmitter } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DropdownItemMultipleOneLineComponent {
5
+ text: string;
6
+ selected: boolean;
7
+ htmlId: string;
8
+ disabled: boolean;
9
+ avatarUrl?: string;
10
+ disabledTooltip?: string;
11
+ badgeText?: string;
12
+ dividerEnabled: boolean;
13
+ onlyEnabled: boolean;
14
+ onlyText?: string;
15
+ selectOnly: EventEmitter<void>;
16
+ checkbox: CheckboxComponent;
17
+ onSelectOnly(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemMultipleOneLineComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemMultipleOneLineComponent, "ap-dropdown-item-multiple-one-line", never, { "text": { "alias": "text"; "required": true; }; "selected": { "alias": "selected"; "required": true; }; "htmlId": { "alias": "htmlId"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "avatarUrl": { "alias": "avatarUrl"; "required": false; }; "disabledTooltip": { "alias": "disabledTooltip"; "required": false; }; "badgeText": { "alias": "badgeText"; "required": false; }; "dividerEnabled": { "alias": "dividerEnabled"; "required": false; }; "onlyEnabled": { "alias": "onlyEnabled"; "required": false; }; "onlyText": { "alias": "onlyText"; "required": false; }; }, { "selectOnly": "selectOnly"; }, never, never, true, never>;
20
+ }
@@ -0,0 +1,21 @@
1
+ import { CheckboxComponent } from '@agorapulse/ui-components/checkbox';
2
+ import { EventEmitter } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DropdownItemMultipleTwoLinesComponent {
5
+ text: string;
6
+ caption: string;
7
+ selected: boolean;
8
+ htmlId: string;
9
+ disabled: boolean;
10
+ avatarUrl?: string;
11
+ disabledTooltip?: string;
12
+ badgeText?: string;
13
+ dividerEnabled: boolean;
14
+ onlyEnabled: boolean;
15
+ onlyText?: string;
16
+ selectOnly: EventEmitter<void>;
17
+ checkbox: CheckboxComponent;
18
+ onSelectOnly(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemMultipleTwoLinesComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemMultipleTwoLinesComponent, "ap-dropdown-item-multiple-two-lines", never, { "text": { "alias": "text"; "required": true; }; "caption": { "alias": "caption"; "required": true; }; "selected": { "alias": "selected"; "required": true; }; "htmlId": { "alias": "htmlId"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "avatarUrl": { "alias": "avatarUrl"; "required": false; }; "disabledTooltip": { "alias": "disabledTooltip"; "required": false; }; "badgeText": { "alias": "badgeText"; "required": false; }; "dividerEnabled": { "alias": "dividerEnabled"; "required": false; }; "onlyEnabled": { "alias": "onlyEnabled"; "required": false; }; "onlyText": { "alias": "onlyText"; "required": false; }; }, { "selectOnly": "selectOnly"; }, never, never, true, never>;
21
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DropdownItemSingleOneLineComponent {
3
+ text: string;
4
+ selected: boolean;
5
+ disabled: boolean;
6
+ avatarUrl?: string;
7
+ disabledTooltip?: string;
8
+ badgeText?: string;
9
+ dividerEnabled: boolean;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemSingleOneLineComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemSingleOneLineComponent, "ap-dropdown-item-single-one-line", never, { "text": { "alias": "text"; "required": true; }; "selected": { "alias": "selected"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "avatarUrl": { "alias": "avatarUrl"; "required": false; }; "disabledTooltip": { "alias": "disabledTooltip"; "required": false; }; "badgeText": { "alias": "badgeText"; "required": false; }; "dividerEnabled": { "alias": "dividerEnabled"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DropdownItemSingleTwoLinesComponent {
3
+ text: string;
4
+ caption: string;
5
+ selected: boolean;
6
+ disabled: boolean;
7
+ avatarUrl?: string;
8
+ disabledTooltip?: string;
9
+ badgeText?: string;
10
+ dividerEnabled: boolean;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemSingleTwoLinesComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemSingleTwoLinesComponent, "ap-dropdown-item-single-two-lines", never, { "text": { "alias": "text"; "required": true; }; "caption": { "alias": "caption"; "required": true; }; "selected": { "alias": "selected"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "avatarUrl": { "alias": "avatarUrl"; "required": false; }; "disabledTooltip": { "alias": "disabledTooltip"; "required": false; }; "badgeText": { "alias": "badgeText"; "required": false; }; "dividerEnabled": { "alias": "dividerEnabled"; "required": false; }; }, {}, never, never, true, never>;
13
+ }
@@ -0,0 +1,22 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter, TemplateRef } from '@angular/core';
2
+ import { NgSelectComponent } from '@ng-select/ng-select';
3
+ import { BehaviorSubject } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DropdownSearchFormComponent implements AfterViewInit {
6
+ searchPlaceholder: string;
7
+ createNewEnabled: boolean;
8
+ createText: string;
9
+ select: NgSelectComponent;
10
+ inputSearch: ElementRef<HTMLInputElement>;
11
+ notFoundTpl: TemplateRef<any>;
12
+ loadingTpl: TemplateRef<any>;
13
+ createNewTpl: TemplateRef<any>;
14
+ createNew: EventEmitter<string>;
15
+ searchTermSignal: import("@angular/core").WritableSignal<string>;
16
+ searchTerm$: BehaviorSubject<string>;
17
+ constructor();
18
+ ngAfterViewInit(): void;
19
+ onCreateNew(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownSearchFormComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownSearchFormComponent, "ap-dropdown-search-form", never, { "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "createNewEnabled": { "alias": "createNewEnabled"; "required": false; }; "createText": { "alias": "createText"; "required": false; }; "select": { "alias": "select"; "required": true; }; }, { "createNew": "createNew"; }, never, never, true, never>;
22
+ }
@@ -1 +1,12 @@
1
- export * from './select.component';
1
+ export { ApSelectModule } from './ap-select.module';
2
+ export { DropdownGroupItemComponent } from './dropdown-group-item/dropdown-group-item.component';
3
+ export { DropdownItemMultipleOneLineComponent } from './dropdown-item-multiple-one-line/dropdown-item-multiple-one-line.component';
4
+ export { DropdownItemMultipleTwoLinesComponent } from './dropdown-item-multiple-two-lines/dropdown-item-multiple-two-lines.component';
5
+ export { DropdownItemSingleOneLineComponent } from './dropdown-item-single-one-line/dropdown-item-single-one-line.component';
6
+ export { DropdownItemSingleTwoLinesComponent } from './dropdown-item-single-two-lines/dropdown-item-single-two-lines.component';
7
+ export { DropdownSearchFormComponent } from './dropdown-search-form/dropdown-search-form.component';
8
+ export { SelectBaseDirective } from './select-base.directive';
9
+ export { SelectLabelMultipleComponent } from './select-label-multiple/select-label-multiple.component';
10
+ export { SelectLabelSingleComponent } from './select-label-single/select-label-single.component';
11
+ export { SelectMultipleDirective } from './select-multiple.directive';
12
+ export { SelectSingleDirective } from './select-single.directive';
@@ -0,0 +1,18 @@
1
+ import { AfterViewInit, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SelectBaseDirective implements OnInit, AfterViewInit {
4
+ inlineLabel?: string;
5
+ symbolId?: string;
6
+ private readonly selectComponent;
7
+ private el;
8
+ private renderer;
9
+ private viewContainerRef;
10
+ private symbolRegistry;
11
+ constructor();
12
+ ngOnInit(): void;
13
+ ngAfterViewInit(): void;
14
+ private addInlineSymbol;
15
+ private addInlineLabel;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectBaseDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectBaseDirective, "ng-select[apSelect]", never, { "inlineLabel": { "alias": "inlineLabel"; "required": false; }; "symbolId": { "alias": "symbolId"; "required": false; }; }, {}, never, never, true, never>;
18
+ }
@@ -0,0 +1,29 @@
1
+ import { AfterViewInit, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SelectLabelMultipleComponent implements AfterViewInit {
4
+ set _displayType(displayType: 'tag' | 'label');
5
+ set _selectedItems(selectedItems: any[]);
6
+ set _bindLabel(bindLabel: string);
7
+ set _bindValue(bindValue: string);
8
+ set _bindAvatarUrl(bindAvatarUrl: string);
9
+ removeItem: EventEmitter<any>;
10
+ private elementRef;
11
+ private injector;
12
+ displayTypeSignal: import("@angular/core").WritableSignal<"label" | "tag">;
13
+ selectedItemsSignal: import("@angular/core").WritableSignal<any[]>;
14
+ bindLabelSignal: import("@angular/core").WritableSignal<string>;
15
+ bindValueSignal: import("@angular/core").WritableSignal<string>;
16
+ bindAvatarUrlSignal: import("@angular/core").WritableSignal<string>;
17
+ selectedLabels: import("@angular/core").Signal<{
18
+ label: any;
19
+ avatarUrl: any;
20
+ value: any;
21
+ }[]>;
22
+ valueContainerWidth: import("@angular/core").WritableSignal<number>;
23
+ hiddenCountSignal: import("@angular/core").WritableSignal<number>;
24
+ trackByItem: (_: number, item: any) => any;
25
+ ngAfterViewInit(): void;
26
+ calculateResponsiveLabels(containerWidth: number, selectedValues: any[]): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectLabelMultipleComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectLabelMultipleComponent, "ap-select-label-multiple", never, { "_displayType": { "alias": "displayType"; "required": false; }; "_selectedItems": { "alias": "selectedItems"; "required": true; }; "_bindLabel": { "alias": "bindLabel"; "required": false; }; "_bindValue": { "alias": "bindValue"; "required": false; }; "_bindAvatarUrl": { "alias": "bindAvatarUrl"; "required": false; }; }, { "removeItem": "removeItem"; }, never, never, true, never>;
29
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class SelectLabelSingleComponent {
3
+ displayType: 'text' | 'withAvatar' | 'tag' | 'label';
4
+ label: string;
5
+ avatarUrl?: string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectLabelSingleComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectLabelSingleComponent, "ap-select-label-single", never, { "displayType": { "alias": "displayType"; "required": false; }; "label": { "alias": "label"; "required": true; }; "avatarUrl": { "alias": "avatarUrl"; "required": false; }; }, {}, never, never, true, never>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./select-base.directive";
4
+ export declare class SelectMultipleDirective implements AfterViewInit {
5
+ private readonly selectComponent;
6
+ constructor();
7
+ ngAfterViewInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectMultipleDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectMultipleDirective, "ng-select[apSelectMultiple]", never, {}, {}, never, never, true, [{ directive: typeof i1.SelectBaseDirective; inputs: { "inlineLabel": "inlineLabel"; "symbolId": "symbolId"; }; outputs: {}; }]>;
10
+ }
@@ -0,0 +1,10 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./select-base.directive";
4
+ export declare class SelectSingleDirective implements AfterViewInit {
5
+ private readonly selectComponent;
6
+ constructor();
7
+ ngAfterViewInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectSingleDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectSingleDirective, "ng-select[apSelectSingle]", never, {}, {}, never, never, true, [{ directive: typeof i1.SelectBaseDirective; inputs: { "inlineLabel": "inlineLabel"; "symbolId": "symbolId"; }; outputs: {}; }]>;
10
+ }
@@ -1 +1 @@
1
- export * from './textarea.component';
1
+ export { TextareaDirective } from './textarea.directive';
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@agorapulse/ui-components/input";
3
+ export declare class TextareaDirective {
4
+ resizable: boolean;
5
+ private elementRef;
6
+ private renderer;
7
+ constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextareaDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TextareaDirective, "[apTextarea]", never, { "resizable": { "alias": "resizable"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.InputDirective; inputs: {}; outputs: {}; }]>;
10
+ static ngAcceptInputType_resizable: unknown;
11
+ }