@allsorter/ui-components 0.0.361 → 0.0.363

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 (51) hide show
  1. package/fesm2022/allsorter-ui-components.mjs +4051 -120
  2. package/fesm2022/allsorter-ui-components.mjs.map +1 -1
  3. package/lib/action-bar-wrapper/action-bar-wrapper.component.d.ts +36 -0
  4. package/lib/ai-apply-bar/ai-apply-bar.component.d.ts +31 -0
  5. package/lib/app-toolbar/app-toolbar.component.d.ts +38 -0
  6. package/lib/app-toolbar-right/app-toolbar-right.component.d.ts +50 -0
  7. package/lib/app-toolbar-right/app-toolbar-right.module.d.ts +11 -0
  8. package/lib/button/button.component.d.ts +39 -18
  9. package/lib/candidate-section/candidate-section.component.d.ts +20 -0
  10. package/lib/candidate-section/candidate-section.module.d.ts +9 -0
  11. package/lib/checkbox/checkbox.component.d.ts +6 -2
  12. package/lib/checkbox/checkbox.module.d.ts +2 -1
  13. package/lib/custom-editor/bullet-utils.d.ts +31 -0
  14. package/lib/custom-editor/custom-editor-demo.component.d.ts +5 -0
  15. package/lib/custom-editor/custom-editor.component.d.ts +104 -0
  16. package/lib/custom-editor/custom-editor.module.d.ts +7 -0
  17. package/lib/custom-editor/table/table.component.d.ts +21 -0
  18. package/lib/date-range/date-range.component.d.ts +55 -0
  19. package/lib/date-range/date-range.module.d.ts +15 -0
  20. package/lib/experience-section/experience-section.component.d.ts +71 -0
  21. package/lib/experience-section/experience-section.module.d.ts +8 -0
  22. package/lib/field-placeholder/field-placeholder.component.d.ts +41 -0
  23. package/lib/field-placeholder/field-placeholder.module.d.ts +9 -0
  24. package/lib/general-container/colors.constants.d.ts +44 -0
  25. package/lib/general-container/general-container.component.d.ts +31 -0
  26. package/lib/general-container/general-container.module.d.ts +7 -0
  27. package/lib/icon-button/icon-button.component.d.ts +32 -0
  28. package/lib/input/input.component.d.ts +18 -3
  29. package/lib/input/input.module.d.ts +10 -2
  30. package/lib/loader/loader.component.d.ts +7 -3
  31. package/lib/new-typography/new-typography.component.d.ts +36 -0
  32. package/lib/radio/radio.component.d.ts +6 -2
  33. package/lib/radio/radio.module.d.ts +2 -1
  34. package/lib/responsive-columns/responsive-columns.component.d.ts +32 -0
  35. package/lib/responsive-columns/responsive-columns.module.d.ts +8 -0
  36. package/lib/responsive-layout/responsive-layout.component.d.ts +44 -0
  37. package/lib/responsive-layout/responsive-layout.module.d.ts +8 -0
  38. package/lib/resume-entries/resume-entries.component.d.ts +72 -0
  39. package/lib/resume-entries/resume-entries.module.d.ts +8 -0
  40. package/lib/resume-header/resume-header.component.d.ts +26 -3
  41. package/lib/shared-popup-modal/shared-popup-modal.component.d.ts +59 -0
  42. package/lib/shared-popup-modal/shared-popup-modal.module.d.ts +11 -0
  43. package/lib/slide-toggle/slide-toggle.component.d.ts +5 -2
  44. package/lib/slide-toggle/slide-toggle.module.d.ts +2 -1
  45. package/lib/tabs/tabs.component.d.ts +21 -0
  46. package/lib/tabs/tabs.module.d.ts +7 -0
  47. package/lib/toggle-buttons/toggle-buttons.component.d.ts +3 -1
  48. package/lib/tooltip/tooltip.component.d.ts +14 -0
  49. package/lib/tooltip/tooltip.module.d.ts +9 -0
  50. package/package.json +1 -1
  51. package/public-api.d.ts +29 -0
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./resume-entries.component";
4
+ export declare class ResumeEntriesModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResumeEntriesModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ResumeEntriesModule, never, [typeof i1.CommonModule, typeof i2.ResumeEntriesComponent], [typeof i2.ResumeEntriesComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ResumeEntriesModule>;
8
+ }
@@ -1,10 +1,13 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { EventEmitter, OnInit, OnDestroy, AfterViewInit, ElementRef } from '@angular/core';
2
+ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
2
3
  import { EyeIconConfig, HeaderButton, InputHandlersConfig, SectionCheckboxConfig } from './resume-header.model';
3
4
  import * as i0 from "@angular/core";
4
- export declare class ResumeHeaderComponent {
5
+ export declare class ResumeHeaderComponent implements OnInit, OnDestroy, AfterViewInit {
6
+ private sanitizer;
5
7
  hideTimeout: any;
6
8
  isMenuVisible: boolean;
7
9
  isEducationHidden: boolean;
10
+ private resizeListener?;
8
11
  hiddenSection: {
9
12
  headerSectionHidden: boolean;
10
13
  };
@@ -30,8 +33,28 @@ export declare class ResumeHeaderComponent {
30
33
  showSection: boolean;
31
34
  sectionToggled: EventEmitter<boolean>;
32
35
  borderColor: string;
36
+ dataTestId?: string;
37
+ showPopOutPanel: boolean;
38
+ popOutMessage: string;
39
+ popOutButtonLabel: string;
40
+ popOutButtonIcon: string;
41
+ popOutButtonTooltip: string;
42
+ popOutButtonTooltipPosition: 'above' | 'below' | 'left' | 'right';
43
+ popOutButtonClick: EventEmitter<void>;
44
+ showPopOut: boolean;
45
+ inputWidth: number;
46
+ maxContainerWidth: number;
47
+ textInputSection?: ElementRef<HTMLInputElement>;
48
+ constructor(sanitizer: DomSanitizer);
33
49
  toggleAccordion(accordionItem: any): void;
34
50
  ngOnInit(): void;
51
+ ngAfterViewInit(): void;
52
+ private checkPopOutVisibility;
53
+ dismissPopOut(): void;
54
+ get sanitizedMessage(): SafeHtml;
55
+ calculateMaxContainerWidth(): void;
56
+ adjustInputWidth(event: Event): void;
57
+ ngOnDestroy(): void;
35
58
  checkScreenSize(): void;
36
59
  showMenu(): void;
37
60
  startHideTimeout(): void;
@@ -39,5 +62,5 @@ export declare class ResumeHeaderComponent {
39
62
  onButtonClick(btn: any): void;
40
63
  onDropdownSelect(btn: any, value: any): void;
41
64
  static ɵfac: i0.ɵɵFactoryDeclaration<ResumeHeaderComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<ResumeHeaderComponent, "al-resume-header", never, { "hiddenSection": { "alias": "hiddenSection"; "required": false; }; "isLargeScreen": { "alias": "isLargeScreen"; "required": false; }; "inputHandlers": { "alias": "inputHandlers"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "checkboxConfig": { "alias": "checkboxConfig"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "buttonConfig": { "alias": "buttonConfig"; "required": false; }; "configEyeToggle": { "alias": "configEyeToggle"; "required": false; }; "accordionItem": { "alias": "accordionItem"; "required": false; }; "toggleEditIcon": { "alias": "toggleEditIcon"; "required": false; }; "showSection": { "alias": "showSection"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; }, { "focusField": "focusField"; "blurField": "blurField"; "enterKeyPressed": "enterKeyPressed"; "checkedCheckBoxChange": "checkedCheckBoxChange"; "buttonClicked": "buttonClicked"; "showHideToggleSection": "showHideToggleSection"; "sectionToggled": "sectionToggled"; }, never, never, true, never>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResumeHeaderComponent, "al-resume-header", never, { "hiddenSection": { "alias": "hiddenSection"; "required": false; }; "isLargeScreen": { "alias": "isLargeScreen"; "required": false; }; "inputHandlers": { "alias": "inputHandlers"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "checkboxConfig": { "alias": "checkboxConfig"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "buttonConfig": { "alias": "buttonConfig"; "required": false; }; "configEyeToggle": { "alias": "configEyeToggle"; "required": false; }; "accordionItem": { "alias": "accordionItem"; "required": false; }; "toggleEditIcon": { "alias": "toggleEditIcon"; "required": false; }; "showSection": { "alias": "showSection"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "dataTestId": { "alias": "dataTestId"; "required": false; }; "showPopOutPanel": { "alias": "showPopOutPanel"; "required": false; }; "popOutMessage": { "alias": "popOutMessage"; "required": false; }; "popOutButtonLabel": { "alias": "popOutButtonLabel"; "required": false; }; "popOutButtonIcon": { "alias": "popOutButtonIcon"; "required": false; }; "popOutButtonTooltip": { "alias": "popOutButtonTooltip"; "required": false; }; "popOutButtonTooltipPosition": { "alias": "popOutButtonTooltipPosition"; "required": false; }; }, { "focusField": "focusField"; "blurField": "blurField"; "enterKeyPressed": "enterKeyPressed"; "checkedCheckBoxChange": "checkedCheckBoxChange"; "buttonClicked": "buttonClicked"; "showHideToggleSection": "showHideToggleSection"; "sectionToggled": "sectionToggled"; "popOutButtonClick": "popOutButtonClick"; }, never, never, true, never>;
43
66
  }
@@ -0,0 +1,59 @@
1
+ import { EventEmitter, AfterContentInit, ElementRef } from '@angular/core';
2
+ import { MatDialogRef } from '@angular/material/dialog';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ModalComponent implements AfterContentInit {
5
+ dialogRef: MatDialogRef<ModalComponent>;
6
+ private elementRef;
7
+ titleText: string;
8
+ userMessage: string;
9
+ leftIcon: string;
10
+ rightIcon: string;
11
+ closeIcon: boolean;
12
+ showHeader: boolean;
13
+ cancelLabel: string;
14
+ submitLabel: string;
15
+ cancelCategory: string;
16
+ submitCategory: string;
17
+ buttonSize: string;
18
+ cancelIcon: string;
19
+ submitIcon: string;
20
+ showCancelButton: boolean;
21
+ showSubmitButton: boolean;
22
+ showFooter: boolean;
23
+ buttonAlignment: 'left' | 'center' | 'right';
24
+ messageAlignment: 'left' | 'center' | 'right';
25
+ useCustomHeader: boolean;
26
+ customHeaderTitle: string;
27
+ customHeaderDescription: string;
28
+ customHeaderIcon: string;
29
+ customActionLabel: string;
30
+ customActionIcon: string;
31
+ customActionRightIcon: string;
32
+ templatingGuidePrefix: string;
33
+ templatingGuideLabel: string;
34
+ templatingGuideHref: string;
35
+ modalType: 'generic' | 'feedback';
36
+ feedbackVariant: 'success' | 'warning' | 'error';
37
+ feedbackIcon: string;
38
+ cancel: EventEmitter<void>;
39
+ submit: EventEmitter<void>;
40
+ close: EventEmitter<void>;
41
+ requestTemplate: EventEmitter<void>;
42
+ onHover: EventEmitter<Event>;
43
+ onMouseLeave: EventEmitter<Event>;
44
+ optionSelect: EventEmitter<any>;
45
+ hasProjectedContent: boolean;
46
+ constructor(dialogRef: MatDialogRef<ModalComponent>, elementRef: ElementRef);
47
+ get isGenericModal(): boolean;
48
+ get showCancelAction(): boolean;
49
+ get showSubmitAction(): boolean;
50
+ get isSuccessNoHeaderModal(): boolean;
51
+ getDefaultMessage(): string;
52
+ ngAfterContentInit(): void;
53
+ onCancel(): void;
54
+ onSubmit(): void;
55
+ onRequestTemplate(): void;
56
+ onClose(): void;
57
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, [{ optional: true; }, null]>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "al-modal", never, { "titleText": { "alias": "titleText"; "required": false; }; "userMessage": { "alias": "userMessage"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "closeIcon": { "alias": "closeIcon"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "submitLabel": { "alias": "submitLabel"; "required": false; }; "cancelCategory": { "alias": "cancelCategory"; "required": false; }; "submitCategory": { "alias": "submitCategory"; "required": false; }; "buttonSize": { "alias": "buttonSize"; "required": false; }; "cancelIcon": { "alias": "cancelIcon"; "required": false; }; "submitIcon": { "alias": "submitIcon"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "showSubmitButton": { "alias": "showSubmitButton"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "buttonAlignment": { "alias": "buttonAlignment"; "required": false; }; "messageAlignment": { "alias": "messageAlignment"; "required": false; }; "useCustomHeader": { "alias": "useCustomHeader"; "required": false; }; "customHeaderTitle": { "alias": "customHeaderTitle"; "required": false; }; "customHeaderDescription": { "alias": "customHeaderDescription"; "required": false; }; "customHeaderIcon": { "alias": "customHeaderIcon"; "required": false; }; "customActionLabel": { "alias": "customActionLabel"; "required": false; }; "customActionIcon": { "alias": "customActionIcon"; "required": false; }; "customActionRightIcon": { "alias": "customActionRightIcon"; "required": false; }; "templatingGuidePrefix": { "alias": "templatingGuidePrefix"; "required": false; }; "templatingGuideLabel": { "alias": "templatingGuideLabel"; "required": false; }; "templatingGuideHref": { "alias": "templatingGuideHref"; "required": false; }; "modalType": { "alias": "modalType"; "required": false; }; "feedbackVariant": { "alias": "feedbackVariant"; "required": false; }; "feedbackIcon": { "alias": "feedbackIcon"; "required": false; }; }, { "cancel": "cancel"; "submit": "submit"; "close": "close"; "requestTemplate": "requestTemplate"; "onHover": "onHover"; "onMouseLeave": "onMouseLeave"; "optionSelect": "optionSelect"; }, never, ["*"], true, never>;
59
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@angular/material/dialog";
4
+ import * as i3 from "@angular/material/button";
5
+ import * as i4 from "@angular/material/icon";
6
+ import * as i5 from "./shared-popup-modal.component";
7
+ export declare class SharedPopupModalModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SharedPopupModalModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPopupModalModule, never, [typeof i1.CommonModule, typeof i2.MatDialogModule, typeof i3.MatButtonModule, typeof i4.MatIconModule, typeof i5.ModalComponent], [typeof i5.ModalComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<SharedPopupModalModule>;
11
+ }
@@ -7,7 +7,7 @@ export declare class SlideToggleComponent implements ControlValueAccessor, After
7
7
  disabled: boolean;
8
8
  name: string;
9
9
  required: boolean;
10
- color: 'primary' | 'accent' | 'warn';
10
+ color: 'primary' | 'green' | 'error';
11
11
  labelText: string;
12
12
  helperTextLabel: string;
13
13
  showLabels: boolean;
@@ -15,6 +15,9 @@ export declare class SlideToggleComponent implements ControlValueAccessor, After
15
15
  offIcon: string;
16
16
  showIcons: boolean;
17
17
  size: 'small' | 'medium' | 'large';
18
+ dataTestId: string;
19
+ tooltip: string;
20
+ tooltipPosition: 'right' | 'left' | 'above' | 'below' | 'before' | 'after';
18
21
  change: EventEmitter<boolean>;
19
22
  focus: EventEmitter<FocusEvent>;
20
23
  blur: EventEmitter<FocusEvent>;
@@ -33,5 +36,5 @@ export declare class SlideToggleComponent implements ControlValueAccessor, After
33
36
  setIcon(): void;
34
37
  private updateIcon;
35
38
  static ɵfac: i0.ɵɵFactoryDeclaration<SlideToggleComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<SlideToggleComponent, "al-slide-toggle", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "color": { "alias": "color"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "helperTextLabel": { "alias": "helperTextLabel"; "required": false; }; "showLabels": { "alias": "showLabels"; "required": false; }; "onIcon": { "alias": "onIcon"; "required": false; }; "offIcon": { "alias": "offIcon"; "required": false; }; "showIcons": { "alias": "showIcons"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "change": "change"; "focus": "focus"; "blur": "blur"; }, never, ["*"], true, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<SlideToggleComponent, "al-slide-toggle", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "color": { "alias": "color"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "helperTextLabel": { "alias": "helperTextLabel"; "required": false; }; "showLabels": { "alias": "showLabels"; "required": false; }; "onIcon": { "alias": "onIcon"; "required": false; }; "offIcon": { "alias": "offIcon"; "required": false; }; "showIcons": { "alias": "showIcons"; "required": false; }; "size": { "alias": "size"; "required": false; }; "dataTestId": { "alias": "dataTestId"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; }, { "change": "change"; "focus": "focus"; "blur": "blur"; }, never, ["*"], true, never>;
37
40
  }
@@ -1,8 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "@angular/common";
3
3
  import * as i2 from "./slide-toggle.component";
4
+ import * as i3 from "@angular/material/tooltip";
4
5
  export declare class SlideToggleModule {
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<SlideToggleModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<SlideToggleModule, never, [typeof i1.CommonModule, typeof i2.SlideToggleComponent], [typeof i2.SlideToggleComponent]>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SlideToggleModule, never, [typeof i1.CommonModule, typeof i2.SlideToggleComponent, typeof i3.MatTooltipModule], [typeof i2.SlideToggleComponent]>;
7
8
  static ɵinj: i0.ɵɵInjectorDeclaration<SlideToggleModule>;
8
9
  }
@@ -0,0 +1,21 @@
1
+ import { QueryList, AfterContentInit, TemplateRef, AfterViewInit, ChangeDetectorRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AlTabComponent implements AfterViewInit {
4
+ label: string;
5
+ selected: boolean;
6
+ templateRef: TemplateRef<any>;
7
+ ngAfterViewInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AlTabComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<AlTabComponent, "al-tab", never, { "label": { "alias": "label"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, ["*"], true, never>;
10
+ }
11
+ export declare class TabsComponent implements AfterContentInit, AfterViewInit {
12
+ private cdr;
13
+ tabComponents: QueryList<AlTabComponent>;
14
+ selectedIndex: number;
15
+ size: 'small' | 'medium' | 'large';
16
+ constructor(cdr: ChangeDetectorRef);
17
+ ngAfterContentInit(): void;
18
+ ngAfterViewInit(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "al-tabs", never, { "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, ["tabComponents"], never, true, never>;
21
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tabs.component";
3
+ export declare class TabsModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TabsModule, never, [typeof i1.TabsComponent], [typeof i1.TabsComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<TabsModule>;
7
+ }
@@ -5,6 +5,7 @@ export interface ToggleButton {
5
5
  label?: string;
6
6
  icon?: string;
7
7
  disabled?: boolean;
8
+ dataTestId?: string;
8
9
  }
9
10
  export declare class ToggleButtonsComponent {
10
11
  buttons: ToggleButton[];
@@ -14,6 +15,7 @@ export declare class ToggleButtonsComponent {
14
15
  type: 'default' | 'text-only' | 'icon-only';
15
16
  multiple: boolean;
16
17
  vertical: boolean;
18
+ dataTestId: string;
17
19
  selectionChange: EventEmitter<string>;
18
20
  buttonClick: EventEmitter<ToggleButton>;
19
21
  onSelectionChange(value: string): void;
@@ -21,5 +23,5 @@ export declare class ToggleButtonsComponent {
21
23
  getSizeClass(): string;
22
24
  computeGap(button: ToggleButton): number;
23
25
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonsComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonsComponent, "al-toggle-buttons", never, { "buttons": { "alias": "buttons"; "required": false; }; "selectedId": { "alias": "selectedId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, { "selectionChange": "selectionChange"; "buttonClick": "buttonClick"; }, never, never, true, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonsComponent, "al-toggle-buttons", never, { "buttons": { "alias": "buttons"; "required": false; }; "selectedId": { "alias": "selectedId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "dataTestId": { "alias": "dataTestId"; "required": false; }; }, { "selectionChange": "selectionChange"; "buttonClick": "buttonClick"; }, never, never, true, never>;
25
27
  }
@@ -0,0 +1,14 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TooltipComponent {
4
+ message: string;
5
+ header: string;
6
+ body: string;
7
+ position: 'left' | 'right' | 'above' | 'below' | 'before' | 'after';
8
+ disabled: boolean;
9
+ dataTestId: string;
10
+ tooltipContent?: TemplateRef<any>;
11
+ getTooltipContent(): string;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "al-tooltip", never, { "message": { "alias": "message"; "required": false; }; "header": { "alias": "header"; "required": false; }; "body": { "alias": "body"; "required": false; }; "position": { "alias": "position"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dataTestId": { "alias": "dataTestId"; "required": false; }; }, {}, ["tooltipContent"], ["*"], true, never>;
14
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@angular/material/tooltip";
4
+ import * as i3 from "./tooltip.component";
5
+ export declare class TooltipModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, never, [typeof i1.CommonModule, typeof i2.MatTooltipModule, typeof i3.TooltipComponent], [typeof i3.TooltipComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<TooltipModule>;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allsorter/ui-components",
3
- "version": "0.0.361",
3
+ "version": "0.0.363",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.0.0",
6
6
  "@angular/core": "^18.0.0"
package/public-api.d.ts CHANGED
@@ -8,6 +8,8 @@ export * from './lib/resume-header/resume-header.component';
8
8
  export * from './lib/resume-header/resume-header.module';
9
9
  export * from './lib/loader/loader.component';
10
10
  export * from './lib/loader/loader.module';
11
+ export * from './lib/candidate-section/candidate-section.component';
12
+ export * from './lib/candidate-section/candidate-section.module';
11
13
  export * from './lib/checkbox/checkbox.component';
12
14
  export * from './lib/checkbox/checkbox.module';
13
15
  export * from './lib/radio/radio.component';
@@ -16,3 +18,30 @@ export * from './lib/toggle-buttons/toggle-buttons.component';
16
18
  export * from './lib/toggle-buttons/toggle-buttons.module';
17
19
  export * from './lib/slide-toggle/slide-toggle.component';
18
20
  export * from './lib/slide-toggle/slide-toggle.module';
21
+ export * from './lib/ai-apply-bar/ai-apply-bar.component';
22
+ export * from './lib/action-bar-wrapper/action-bar-wrapper.component';
23
+ export * from './lib/responsive-layout/responsive-layout.component';
24
+ export * from './lib/responsive-layout/responsive-layout.module';
25
+ export * from './lib/custom-editor/custom-editor.component';
26
+ export * from './lib/custom-editor/custom-editor.module';
27
+ export * from './lib/custom-editor/custom-editor-demo.component';
28
+ export * from './lib/icon-button/icon-button.component';
29
+ export * from './lib/date-range/date-range.component';
30
+ export * from './lib/date-range/date-range.module';
31
+ export * from './lib/tabs/tabs.component';
32
+ export * from './lib/tabs/tabs.module';
33
+ export * from './lib/shared-popup-modal/shared-popup-modal.component';
34
+ export * from './lib/shared-popup-modal/shared-popup-modal.module';
35
+ export * from './lib/tooltip/tooltip.component';
36
+ export * from './lib/tooltip/tooltip.module';
37
+ export * from './lib/new-typography/new-typography.component';
38
+ export * from './lib/field-placeholder/field-placeholder.component';
39
+ export * from './lib/field-placeholder/field-placeholder.module';
40
+ export * from './lib/responsive-columns/responsive-columns.component';
41
+ export * from './lib/responsive-columns/responsive-columns.module';
42
+ export * from './lib/resume-entries/resume-entries.component';
43
+ export * from './lib/resume-entries/resume-entries.module';
44
+ export * from './lib/experience-section/experience-section.component';
45
+ export * from './lib/experience-section/experience-section.module';
46
+ export * from './lib/general-container/general-container.component';
47
+ export * from './lib/general-container/general-container.module';