carriera-intern-components 1.1.12 → 1.1.14
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/app/components/input-datetime-picker/cai-input-datetime-picker.component.d.ts +103 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/cai-custom-datetime-pickers.component.d.ts +58 -0
- 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
- 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
- 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
- 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
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/config/cai-input.config.d.ts +168 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/config/index.d.ts +1 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-left-string.enum.d.ts +5 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-list-preview-string.enum.d.ts +4 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-main-string.enum.d.ts +5 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-scroll-type-string.enum.d.ts +4 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-string.enum.d.ts +6 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/calendar-type-string.enum.d.ts +3 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/enums/config.enum.d.ts +7 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/models/scroll-change.model.d.ts +6 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/models/scroll-type.model.d.ts +8 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/pipes/calendar-months.pipe.d.ts +9 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/services/calendar-datetime-picker.service.d.ts +19 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/strategy/calendar-strategy.d.ts +30 -0
- package/app/components/input-datetime-picker/components/cai-custom-datetime-pickers/utils/constants/custom-datetime-pickers.constants.d.ts +19 -0
- package/app/components/input-datetime-picker/enums/input-config-name-string.enum.d.ts +7 -0
- package/app/components/input-datetime-picker/pipes/input-clear-class.pipe.d.ts +14 -0
- package/app/components/input-datetime-picker/pipes/input-date-time-container-class.pipe.d.ts +11 -0
- package/app/components/input-datetime-picker/pipes/input-dropdown-arrow-class.pipe.d.ts +11 -0
- package/app/components/input-datetime-picker/pipes/input-placeholder-icon.class.pipe.d.ts +11 -0
- package/app/components/input-datetime-picker/pipes/show-clear.pipe.d.ts +8 -0
- package/app/components/pm/pm.component.d.ts +4 -4
- package/app/directives/hover-svg-directives.d.ts +15 -0
- package/app/directives/index.d.ts +1 -0
- package/app/enums/general-actions.enum.d.ts +58 -0
- package/app/models/pm.model.d.ts +5 -0
- package/fesm2022/carriera-intern-components.mjs +2440 -15
- package/fesm2022/carriera-intern-components.mjs.map +1 -1
- package/package.json +1 -1
- package/public/assets/icons/general/cai-fax.svg +5 -0
- package/public/assets/icons/general/cai-website.svg +3 -0
- package/public/assets/icons/interaction/cai_time.svg +3 -0
- package/public/assets/icons/interaction/cai_x.svg +4 -0
- package/public/assets/json/icons.json +16 -0
- 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 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
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { NgbTooltip } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { PmItem } from '../../models/pm.model';
|
|
3
|
+
import { IPmDropdownAction, PmItem } from '../../models/pm.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PmComponent {
|
|
6
6
|
/**
|
|
@@ -12,7 +12,7 @@ export declare class PmComponent {
|
|
|
12
12
|
* Event emitted when the "Add new" button is clicked.
|
|
13
13
|
* The parent component can listen to this and perform appropriate actions.
|
|
14
14
|
*/
|
|
15
|
-
|
|
15
|
+
dropdownActions: EventEmitter<IPmDropdownAction>;
|
|
16
16
|
/**
|
|
17
17
|
* Boolean signal indicating whether the PM popover is currently visible.
|
|
18
18
|
* Used to apply conditional styling or behavior when the popover is shown or hidden.
|
|
@@ -48,12 +48,12 @@ export declare class PmComponent {
|
|
|
48
48
|
* Called when a PM item is clicked.
|
|
49
49
|
* Sets the `selectedPmItem` with the clicked item's data.
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
onSelectedItem(item: PmItem): void;
|
|
52
52
|
/**
|
|
53
53
|
* Clears the selected PM item.
|
|
54
54
|
* Resets id, title and logoName.
|
|
55
55
|
*/
|
|
56
56
|
onClear(): void;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<PmComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PmComponent, "cai-pm", never, { "items": { "alias": "items"; "required": false; }; }, { "
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmComponent, "cai-pm", never, { "items": { "alias": "items"; "required": false; }; }, { "dropdownActions": "dropdownActions"; }, never, never, true, never>;
|
|
59
59
|
}
|
|
@@ -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
|
+
}
|