carriera-intern-components 1.1.35 → 1.1.37
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/avatar/avatar.component.d.ts +1 -1
- package/app/components/avatar/models/avatar.model.d.ts +1 -1
- package/app/components/pm/pm.component.d.ts +10 -2
- package/app/utils/constants/input-character-sets.constants.d.ts +3 -3
- package/fesm2022/carriera-intern-components.mjs +35 -18
- package/fesm2022/carriera-intern-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ export declare class AvatarComponent {
|
|
|
14
14
|
* The size of the avatar in pixels.
|
|
15
15
|
* @type {Size}
|
|
16
16
|
*/
|
|
17
|
-
size: import("@angular/core").InputSignal<
|
|
17
|
+
size: import("@angular/core").InputSignal<18 | 22 | 32 | 74 | 160 | 28>;
|
|
18
18
|
/**
|
|
19
19
|
* Whether the avatar should be rounded or not.
|
|
20
20
|
* @type {boolean}
|
|
@@ -23,6 +23,6 @@ export type ColorFlag = {
|
|
|
23
23
|
};
|
|
24
24
|
declare const colors: readonly ["Blue", "Green", "Red", "Yellow", "Purple", "Gold", "Light Green", "Orange", "Light Blue", "Pink", "Brown", "Gray", "Lime", "Navy", "Azure", "Magenta"];
|
|
25
25
|
export type AvatarColor = (typeof colors)[number];
|
|
26
|
-
declare const sizes: readonly [18, 22, 32, 74, 160];
|
|
26
|
+
declare const sizes: readonly [18, 22, 32, 74, 160, 28];
|
|
27
27
|
export type Size = (typeof sizes)[number];
|
|
28
28
|
export {};
|
|
@@ -21,9 +21,17 @@ export declare class PmComponent implements ControlValueAccessor {
|
|
|
21
21
|
*/
|
|
22
22
|
selectedPmItem: import("@angular/core").WritableSignal<PmItem | null>;
|
|
23
23
|
/**
|
|
24
|
-
* Disabled state for forms integration.
|
|
24
|
+
* Disabled state for forms integration. Strongly depends on isHidden flag.
|
|
25
25
|
*/
|
|
26
26
|
disabled: import("@angular/core").WritableSignal<boolean>;
|
|
27
|
+
/**
|
|
28
|
+
* Custom tooltip message for PM items.
|
|
29
|
+
*/
|
|
30
|
+
customTooltipMessage: import("@angular/core").InputSignal<string>;
|
|
31
|
+
/**
|
|
32
|
+
* Custom flag for showing/hiding the PM component.
|
|
33
|
+
*/
|
|
34
|
+
isHidden: import("@angular/core").InputSignal<boolean>;
|
|
27
35
|
/**
|
|
28
36
|
* Holder for incoming value from writeValue to resolve against items.
|
|
29
37
|
*/
|
|
@@ -72,5 +80,5 @@ export declare class PmComponent implements ControlValueAccessor {
|
|
|
72
80
|
registerOnTouched(fn: () => void): void;
|
|
73
81
|
setDisabledState(isDisabled: boolean): void;
|
|
74
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<PmComponent, [{ optional: true; self: true; }]>;
|
|
75
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PmComponent, "cai-pm", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "onAdd": "onAdd"; "onSelectionChange": "onSelectionChange"; }, never, never, true, never>;
|
|
83
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmComponent, "cai-pm", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "customTooltipMessage": { "alias": "customTooltipMessage"; "required": false; "isSignal": true; }; "isHidden": { "alias": "isHidden"; "required": false; "isSignal": true; }; }, { "onAdd": "onAdd"; "onSelectionChange": "onSelectionChange"; }, never, never, true, never>;
|
|
76
84
|
}
|
|
@@ -12,7 +12,7 @@ export declare const INPUT_CHARACTER_SETS: {
|
|
|
12
12
|
readonly ALPHANUMERIC_WITH_SPACES: string[];
|
|
13
13
|
readonly EMAIL_SPECIAL: readonly ["@", ".", "-", "_", "+"];
|
|
14
14
|
readonly EMAIL_CHARACTERS: ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "." | "@" | "+" | "-" | "_")[];
|
|
15
|
-
readonly SPECIAL_EXCEPT_NAME_FRIENDLY: ("
|
|
16
|
-
readonly NAME_CHARACTER_EXCLUSIONS: ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "
|
|
17
|
-
readonly SPECIAL: ("
|
|
15
|
+
readonly SPECIAL_EXCEPT_NAME_FRIENDLY: ("." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "*" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
|
|
16
|
+
readonly NAME_CHARACTER_EXCLUSIONS: ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "*" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
|
|
17
|
+
readonly SPECIAL: ("." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "*" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
|
|
18
18
|
};
|