carriera-intern-components 1.1.12 → 1.1.13

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 (40) hide show
  1. package/app/components/avatar/avatar.component.d.ts +1 -1
  2. package/app/components/input-datetime-picker/cai-input-datetime-picker.component.d.ts +103 -0
  3. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/cai-custom-datetime-pickers.component.d.ts +58 -0
  4. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/components/cai-custom-datetime-pickers-calendar-dates-main/cai-custom-datetime-pickers-calendar-dates-main.component.d.ts +41 -0
  5. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/components/cai-custom-datetime-pickers-calendar-days/cai-custom-datetime-pickers-calendar-days.component.d.ts +26 -0
  6. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/components/cai-custom-datetime-pickers-calendar-left/cai-custom-datetime-pickers-calendar-left.component.d.ts +30 -0
  7. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/components/cai-custom-datetime-pickers-date-calendars/cai-custom-datetime-pickers-date-calendars.component.d.ts +38 -0
  8. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/config/cai-input.config.d.ts +168 -0
  9. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/config/index.d.ts +1 -0
  10. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-left-string.enum.d.ts +5 -0
  11. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-list-preview-string.enum.d.ts +4 -0
  12. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-main-string.enum.d.ts +5 -0
  13. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-scroll-type-string.enum.d.ts +4 -0
  14. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-string.enum.d.ts +6 -0
  15. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-type-string.enum.d.ts +3 -0
  16. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/config.enum.d.ts +7 -0
  17. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/models/scroll-change.model.d.ts +6 -0
  18. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/models/scroll-type.model.d.ts +8 -0
  19. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/pipes/calendar-months.pipe.d.ts +9 -0
  20. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/services/calendar-datetime-picker.service.d.ts +19 -0
  21. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/strategy/calendar-strategy.d.ts +30 -0
  22. package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/utils/constants/custom-datetime-pickers.constants.d.ts +19 -0
  23. package/app/components/input-datetime-picker/enums/input-config-name-string.enum.d.ts +7 -0
  24. package/app/components/input-datetime-picker/pipes/input-clear-class.pipe.d.ts +14 -0
  25. package/app/components/input-datetime-picker/pipes/input-date-time-container-class.pipe.d.ts +11 -0
  26. package/app/components/input-datetime-picker/pipes/input-dropdown-arrow-class.pipe.d.ts +11 -0
  27. package/app/components/input-datetime-picker/pipes/input-placeholder-icon.class.pipe.d.ts +11 -0
  28. package/app/components/input-datetime-picker/pipes/show-clear.pipe.d.ts +8 -0
  29. package/app/directives/hover-svg-directives.d.ts +15 -0
  30. package/app/directives/index.d.ts +1 -0
  31. package/app/enums/general-actions.enum.d.ts +58 -0
  32. package/fesm2022/carriera-intern-components.mjs +2432 -9
  33. package/fesm2022/carriera-intern-components.mjs.map +1 -1
  34. package/package.json +1 -1
  35. package/public/assets/icons/general/cai-fax.svg +5 -0
  36. package/public/assets/icons/general/cai-website.svg +3 -0
  37. package/public/assets/icons/interaction/cai_time.svg +3 -0
  38. package/public/assets/icons/interaction/cai_x.svg +4 -0
  39. package/public/assets/json/icons.json +16 -0
  40. package/public-api.d.ts +1 -0
@@ -0,0 +1,11 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { ICaInput } from '../components/cai-custom-datetime-pickers/config';
4
+ import * as i0 from "@angular/core";
5
+ export declare class InputDateTimeContainerClassPipe implements PipeTransform {
6
+ transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, inputConfig: ICaInput, value: string, isDisabledInput?: boolean, invalid?: boolean, isTouchedInput?: boolean): {
7
+ [key: string]: boolean | undefined | null | string;
8
+ };
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputDateTimeContainerClassPipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDeclaration<InputDateTimeContainerClassPipe, "inputDateTimeContainerClass", true>;
11
+ }
@@ -0,0 +1,11 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { ICaInput } from '../components/cai-custom-datetime-pickers/config';
4
+ import * as i0 from "@angular/core";
5
+ export declare class InputDropdownArrowClassPipe implements PipeTransform {
6
+ transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, inputConfig: ICaInput, isTouchedInput: boolean, value: string): {
7
+ [key: string]: boolean | undefined;
8
+ };
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownArrowClassPipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownArrowClassPipe, "inputDropdownArrowClass", true>;
11
+ }
@@ -0,0 +1,11 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import { AbstractControl } from "@angular/forms";
3
+ import { ICaInput } from "../components/cai-custom-datetime-pickers/config";
4
+ import * as i0 from "@angular/core";
5
+ export declare class InputPlaceholderIconClassPipe implements PipeTransform {
6
+ transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, inputConfig: ICaInput, selectedDropdownLabelColor: any | null, isTouchedInput: boolean, isEditInput: boolean, value: string): {
7
+ [key: string]: boolean | undefined;
8
+ };
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputPlaceholderIconClassPipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDeclaration<InputPlaceholderIconClassPipe, "inputPlaceholderIconClass", true>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import { ICaInput } from "../components/cai-custom-datetime-pickers/config";
3
+ import * as i0 from "@angular/core";
4
+ export declare class ShowClearPipe implements PipeTransform {
5
+ transform(inputConfig: ICaInput, disabled?: boolean): boolean | undefined;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShowClearPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<ShowClearPipe, "showClear", true>;
8
+ }
@@ -0,0 +1,15 @@
1
+ import { ElementRef, Renderer2 } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class HoverSvgDirective {
4
+ private elRef;
5
+ private renderer2;
6
+ set fill(value: string | null | undefined);
7
+ set fillHover(value: string | null | undefined);
8
+ _fill: string;
9
+ _fillHover: string;
10
+ constructor(elRef: ElementRef, renderer2: Renderer2);
11
+ onMouseOver(): void;
12
+ onMouseLeave(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<HoverSvgDirective, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HoverSvgDirective, "[appHoverSvg]", never, { "fill": { "alias": "fill"; "required": false; }; "fillHover": { "alias": "fillHover"; "required": false; }; }, {}, never, never, true, never>;
15
+ }
@@ -0,0 +1 @@
1
+ export * from './hover-svg-directives';
@@ -0,0 +1,58 @@
1
+ export declare enum eGeneralActions {
2
+ ADD = "Add",
3
+ ADD_LOWERCASE = "add",
4
+ ADD_NEW_ITEM = "Add New Item",
5
+ UPDATE = "Update",
6
+ UPDATE_LOWERCASE = "update",
7
+ DELETE = "Delete",
8
+ DELETE_LOWERCASE = "delete",
9
+ EDIT = "Edit",
10
+ EDIT_LOWERCASE = "edit",
11
+ EDIT_UPPERCASE = "EDIT",
12
+ SAVE = "Save",
13
+ SAVE_LOWERCASE = "save",
14
+ CANCEL = "Cancel",
15
+ CANCEL_LOWERCASE = "cancel",
16
+ ENTER = "Enter",
17
+ ESCAPE = "Escape",
18
+ CONFIRM = "Confirm",
19
+ CONFIRM_LOWERCASE = "confirm",
20
+ SET = "Set",
21
+ SET_LOWERCASE = "set",
22
+ REMOVE = "Remove",
23
+ REMOVE_LOWERCASE = "remove",
24
+ SELECT = "Select",
25
+ SELECT_LOWERCASE = "select",
26
+ SEARCH = "Search",
27
+ SEARCH_LOWERCASE = "search",
28
+ SELECT_ALL = "Select All",
29
+ SELECT_REMAINING = "Select Remaining",
30
+ CLEAR_SELECTED = "Clear Selected",
31
+ ACTIVATE = "Activate",
32
+ ACTIVATE_LOWERCASE = "activate",
33
+ DEACTIVATE = "deactivate",
34
+ DEACTIVATE_LOWERCASE = "deactivate",
35
+ CLOSE = "Close",
36
+ CLOSE_LOWERCASE = "close",
37
+ CLOSE_UPPERCASE = "CLOSE",
38
+ OPEN = "Open",
39
+ OPEN_LOWERCASE = "open",
40
+ NEXT = "Next",
41
+ NEXT_LOWERCASE = "next",
42
+ PREVIOUS = "Previous",
43
+ PREVIOUS_LOWERCASE = "previous",
44
+ CLEAR = "Clear",
45
+ CLEAR_LOWERCASE = "clear",
46
+ CLEAR_ALL = "Clear All",
47
+ SHOW_MORE = "show more",
48
+ OPEN_MODAL = "open-modal",
49
+ EXPAND = "Expand",
50
+ EXPAND_LOWERCASE = "expand",
51
+ EXPAND_UPPERCASE = "EXPAND",
52
+ COLLAPSE = "Collapse",
53
+ COLLAPSE_LOWERCASE = "collapse",
54
+ COLLAPSE_UPPERCASE = "COLLAPSE",
55
+ SORT_BY = "Sort By",
56
+ COPY = "Copy",
57
+ COPIED = "Copied"
58
+ }