carriera-intern-components 1.1.194 → 1.1.196

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.
@@ -1,6 +1,5 @@
1
1
  import { eAlignment } from '../../enums';
2
2
  import { eGeneralActions } from '../../enums/general-actions.enum';
3
- import { NgbTooltip } from '@ng-bootstrap/ng-bootstrap';
4
3
  import { Clipboard } from '@angular/cdk/clipboard';
5
4
  import * as i0 from "@angular/core";
6
5
  export declare class CopyComponent {
@@ -8,13 +7,17 @@ export declare class CopyComponent {
8
7
  value: import("@angular/core").InputSignal<string | undefined>;
9
8
  alignment: import("@angular/core").InputSignal<eAlignment>;
10
9
  copyTooltip: import("@angular/core").InputSignal<string | undefined>;
10
+ copyArea: import("@angular/core").InputSignal<"icon" | "full">;
11
+ icon: import("@angular/core").InputSignal<string | null>;
12
+ iconSize: import("@angular/core").InputSignal<number>;
13
+ iconColor: import("@angular/core").InputSignal<string | null>;
14
+ tooltipClass: import("@angular/core").InputSignal<string | null>;
11
15
  copied: import("@angular/core").WritableSignal<boolean>;
12
16
  eGeneralActions: typeof eGeneralActions;
13
17
  eAlignment: typeof eAlignment;
14
18
  constructor(clipboard: Clipboard);
15
- tooltip: NgbTooltip;
16
19
  onCopy(event: MouseEvent): void;
17
20
  resetCopied(): void;
18
21
  static ɵfac: i0.ɵɵFactoryDeclaration<CopyComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<CopyComponent, "cai-copy", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "copyTooltip": { "alias": "copyTooltip"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<CopyComponent, "cai-copy", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "copyTooltip": { "alias": "copyTooltip"; "required": false; "isSignal": true; }; "copyArea": { "alias": "copyArea"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "iconColor": { "alias": "iconColor"; "required": false; "isSignal": true; }; "tooltipClass": { "alias": "tooltipClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
20
23
  }
@@ -16,6 +16,11 @@ export declare class NumberFormatDirective implements OnInit {
16
16
  * Defaults to true, meaning formatting is active by default.
17
17
  */
18
18
  isNumberFormattingDisabled: import("@angular/core").InputSignal<boolean>;
19
+ /**
20
+ * Input property to enable or disable the number formatting.
21
+ * Defaults to true, meaning formatting is active by default.
22
+ */
23
+ disableDecimals: import("@angular/core").InputSignal<boolean>;
19
24
  prefix: import("@angular/core").InputSignal<string>;
20
25
  /**
21
26
  * Stores the unformatted, "real" numeric value of the input.
@@ -111,5 +116,5 @@ export declare class NumberFormatDirective implements OnInit {
111
116
  */
112
117
  setRealValue(value: string): void;
113
118
  static ɵfac: i0.ɵɵFactoryDeclaration<NumberFormatDirective, never>;
114
- static ɵdir: i0.ɵɵDirectiveDeclaration<NumberFormatDirective, "[appNumberFormat]", never, { "appNumberFormat": { "alias": "appNumberFormat"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "isNumberFormattingDisabled": { "alias": "isNumberFormattingDisabled"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
119
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NumberFormatDirective, "[appNumberFormat]", never, { "appNumberFormat": { "alias": "appNumberFormat"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "isNumberFormattingDisabled": { "alias": "isNumberFormattingDisabled"; "required": false; "isSignal": true; }; "disableDecimals": { "alias": "disableDecimals"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
115
120
  }
@@ -4,7 +4,7 @@ import { PasswordDirective } from './directives/password.directive';
4
4
  import { NumberFormatDirective } from './directives/number-format.directive';
5
5
  import { MaskDirective } from './directives/mask.directive';
6
6
  import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
7
- import { Bank, Broker, CaiInputConfig, Contact, Dispatcher, DropdownOption, LabelColor, LabelOption, Shipper, Dispatch, DropdownArrays, DropdownOptions, TruckType, TrailerType, Hazardous, State, Owner, FuelCard, PMOption, MakeOption, ColorOption, TollOption, TollTransponderOption } from './models';
7
+ import { Bank, Broker, CaiInputConfig, Contact, Dispatcher, DropdownOption, LabelColor, LabelOption, Shipper, Dispatch, DropdownArrays, DropdownOptions, TruckType, TrailerType, Hazardous, State, Owner, FuelCard, PMOption, MakeOption, ColorOption, TollOption, TollTransponderOption, FuelStopStore, Franchise, DropdownGroups } from './models';
8
8
  import * as i0 from "@angular/core";
9
9
  /**
10
10
  * This component is a generic input component that can be used to create various types of inputs.
@@ -38,6 +38,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
38
38
  colorRef: any;
39
39
  makeRef: any;
40
40
  tollRef: any;
41
+ fuelStopTransactionRef: any;
41
42
  pmRef: any;
42
43
  selectedPmRef: any;
43
44
  selectedOwnerRef: any;
@@ -123,6 +124,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
123
124
  * Preselected dropdown option
124
125
  */
125
126
  preselectedUnit: import("@angular/core").InputSignal<string | null>;
127
+ openGroup: import("@angular/core").WritableSignal<number | null>;
126
128
  closing: import("@angular/core").WritableSignal<boolean>;
127
129
  /**
128
130
  * Internal signal to track the disabled state of the input.
@@ -203,6 +205,8 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
203
205
  * An output signal that emits the `optionValue` or `id` of the changed dropdown option.
204
206
  */
205
207
  onSelectionChange: import("@angular/core").OutputEmitterRef<any>;
208
+ onSelectedObject: import("@angular/core").OutputEmitterRef<DropdownOptions | null>;
209
+ onSelectedGroup: import("@angular/core").OutputEmitterRef<Franchise | null>;
206
210
  /**
207
211
  * An output signal that emits when the user clicks on the "CLEAR" button.
208
212
  */
@@ -211,6 +215,12 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
211
215
  * An output signal that emits when the user clicks on the "AUTOFILL" button.
212
216
  */
213
217
  onAutofill: import("@angular/core").OutputEmitterRef<void>;
218
+ /**
219
+ * An output signal that emits when the dropdown is scrolled to the bottom for infinite scroll functionality.
220
+ */
221
+ onScrolledToBottom: import("@angular/core").OutputEmitterRef<void>;
222
+ onScrolledToBottomGroup: import("@angular/core").OutputEmitterRef<void>;
223
+ onSearch: import("@angular/core").OutputEmitterRef<string>;
214
224
  /**
215
225
  * Constructor for the InputComponent.
216
226
  * It injects NgControl to integrate with Angular's forms API.
@@ -343,7 +353,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
343
353
  * @param event - The MouseEvent that initiated the action.
344
354
  */
345
355
  handleAddingOption(event?: MouseEvent): void;
346
- fold(boardId: number, event: MouseEvent): void;
356
+ fold(boardId: number, event: MouseEvent, group?: DropdownGroups): void;
347
357
  handleSelectColor(color: LabelColor, event?: MouseEvent): void;
348
358
  getBrokerProgress(broker: Broker, disable?: boolean): {
349
359
  activePercentageOfPaid: number;
@@ -368,6 +378,13 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
368
378
  castAsMake(value: unknown): MakeOption | null;
369
379
  castAsTollOption(value: unknown): TollOption | null;
370
380
  castAsTollTransponderOption(value: unknown): TollTransponderOption | null;
381
+ castAsFuelStopStore(value: unknown): FuelStopStore | null;
382
+ castAsFranchise(value: unknown): Franchise | null;
383
+ /**
384
+ * Handles infinite scroll event when dropdown is scrolled to bottom
385
+ * Emits an event that parent components can listen to for loading more data
386
+ */
387
+ onDropdownScrolledToBottom(isGroup?: boolean): void;
371
388
  static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, [{ optional: true; self: true; }, null]>;
372
- static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "cai-input", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "preselectedOptions": { "alias": "preselectedOptions"; "required": false; "isSignal": true; }; "labelColors": { "alias": "labelColors"; "required": false; "isSignal": true; }; "hideValidation": { "alias": "hideValidation"; "required": false; "isSignal": true; }; "showNoResults": { "alias": "showNoResults"; "required": false; "isSignal": true; }; "preselectedUnit": { "alias": "preselectedUnit"; "required": false; "isSignal": true; }; }, { "onBlur": "onBlur"; "onFocused": "onFocused"; "onValueChange": "onValueChange"; "onOptionAdded": "onOptionAdded"; "onAdd": "onAdd"; "onSelectionChange": "onSelectionChange"; "onClear": "onClear"; "onAutofill": "onAutofill"; }, never, never, true, never>;
389
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "cai-input", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "preselectedOptions": { "alias": "preselectedOptions"; "required": false; "isSignal": true; }; "labelColors": { "alias": "labelColors"; "required": false; "isSignal": true; }; "hideValidation": { "alias": "hideValidation"; "required": false; "isSignal": true; }; "showNoResults": { "alias": "showNoResults"; "required": false; "isSignal": true; }; "preselectedUnit": { "alias": "preselectedUnit"; "required": false; "isSignal": true; }; }, { "onBlur": "onBlur"; "onFocused": "onFocused"; "onValueChange": "onValueChange"; "onOptionAdded": "onOptionAdded"; "onAdd": "onAdd"; "onSelectionChange": "onSelectionChange"; "onSelectedObject": "onSelectedObject"; "onSelectedGroup": "onSelectedGroup"; "onClear": "onClear"; "onAutofill": "onAutofill"; "onScrolledToBottom": "onScrolledToBottom"; "onScrolledToBottomGroup": "onScrolledToBottomGroup"; "onSearch": "onSearch"; }, never, never, true, never>;
373
390
  }
@@ -60,6 +60,7 @@ export type TruckColor = {
60
60
  export type TruckType = {
61
61
  id: number;
62
62
  companyId?: number | null;
63
+ truckNumber?: string | null;
63
64
  name: string;
64
65
  logoName: string;
65
66
  };
@@ -178,6 +179,7 @@ export type Dispatcher = {
178
179
  fullName: string;
179
180
  avatarFile: AvatarFile | null;
180
181
  departmentId: number | null;
182
+ colorFlag?: ColorFlag | null;
181
183
  };
182
184
  export type TruckOption = {
183
185
  id: number;
@@ -249,3 +251,18 @@ export type TollTransponderOption = {
249
251
  name?: string | null;
250
252
  id?: number;
251
253
  };
254
+ export type Franchise = {
255
+ id: number;
256
+ businessName: string;
257
+ count: number;
258
+ fuelStopStores: FuelStopStore[];
259
+ [key: string]: any;
260
+ };
261
+ export type FuelStopStore = {
262
+ id: number;
263
+ companyId: number;
264
+ businessName: string;
265
+ store: string;
266
+ address: Address;
267
+ [key: string]: any;
268
+ };
@@ -1,4 +1,4 @@
1
- import { Bank, Broker, Contact, DepartmentContactsPair, Dispatch, DispatchBoard, Dispatcher, DropdownOption, LabelOption, Shipper, TrailerOption, TruckOption, Hazardous, State, Owner, FuelCard, PMOption, ColorOption, MakeOption, TollOption, TollTransponderOption } from './dropdown.model';
1
+ import { Bank, Broker, Contact, DepartmentContactsPair, Dispatch, DispatchBoard, Dispatcher, DropdownOption, LabelOption, Shipper, TrailerOption, TruckOption, Hazardous, State, Owner, FuelCard, PMOption, ColorOption, MakeOption, TollOption, TollTransponderOption, Franchise, FuelStopStore } from './dropdown.model';
2
2
  export interface CaiInputConfig {
3
3
  type?: 'text' | 'password' | 'number' | 'account';
4
4
  name?: string;
@@ -12,6 +12,7 @@ export interface CaiInputConfig {
12
12
  dropdownAutocomplete?: boolean;
13
13
  fullState?: boolean;
14
14
  search?: boolean;
15
+ useOutsideSearch?: boolean;
15
16
  add?: boolean;
16
17
  subcontent?: string;
17
18
  textTransform?: 'capitalize' | 'uppercase' | 'lowercase';
@@ -27,6 +28,7 @@ export interface CaiInputConfig {
27
28
  min?: number;
28
29
  max?: number;
29
30
  step?: number | 'automatic';
31
+ disableDecimals?: boolean;
30
32
  prefix?: string;
31
33
  withButtons?: boolean;
32
34
  autocomplete?: string;
@@ -36,6 +38,7 @@ export interface CaiInputConfig {
36
38
  passwordRequirements?: boolean;
37
39
  canOpenModal?: boolean;
38
40
  noSeparator?: boolean;
41
+ squareAvatar?: boolean;
39
42
  optionValue?: string;
40
43
  optionLabel?: string;
41
44
  removable?: boolean;
@@ -49,8 +52,9 @@ export type CustomError = {
49
52
  name: string;
50
53
  message: string | null;
51
54
  };
52
- export declare const DropdownTypes: readonly ["multiple", "dispatch", "ftl-dispatch", "label", "broker", "contact", "shipper", "bank", "dispatcher", "truck", "trailer", "subcontent", "hazardous", "state", "owner", "fuelcard", "pm", "color", "make", "toll"];
55
+ export declare const DropdownTypes: readonly ["multiple", "dispatch", "ftl-dispatch", "label", "broker", "contact", "shipper", "bank", "dispatcher", "truck", "trailer", "subcontent", "hazardous", "state", "owner", "fuelcard", "pm", "color", "make", "toll", "fuel-stop-transaction"];
53
56
  export type DropdownType = (typeof DropdownTypes)[number];
54
- export type DropdownArrays = DropdownOption[] | LabelOption[] | Broker[] | DispatchBoard[] | DepartmentContactsPair[] | Shipper[] | Dispatch[] | Bank[] | Dispatcher[] | TruckOption[] | TrailerOption[] | Hazardous[] | State[] | Owner[] | FuelCard[] | PMOption[] | ColorOption[] | MakeOption[] | TollOption[];
55
- export type DropdownOptions = DropdownOption | LabelOption | Broker | Contact | Shipper | Dispatch | Bank | Dispatcher | TruckOption | TrailerOption | Hazardous | State | Owner | FuelCard | PMOption | ColorOption | MakeOption | TollTransponderOption;
56
- export type DropdownKeys = DropdownOption[keyof DropdownOption] | LabelOption[keyof LabelOption] | Dispatch[keyof Dispatch] | Broker[keyof Broker] | Contact[keyof Contact] | Shipper[keyof Shipper] | Bank[keyof Bank] | Dispatcher[keyof Dispatcher] | TruckOption[keyof TruckOption] | TrailerOption[keyof TrailerOption] | Hazardous[keyof Hazardous] | State[keyof State] | Owner[keyof Owner] | FuelCard[keyof FuelCard] | PMOption[keyof PMOption] | ColorOption[keyof ColorOption] | MakeOption[keyof MakeOption] | TollTransponderOption[keyof TollTransponderOption];
57
+ export type DropdownArrays = DropdownOption[] | LabelOption[] | Broker[] | DispatchBoard[] | DepartmentContactsPair[] | Shipper[] | Dispatch[] | Bank[] | Dispatcher[] | TruckOption[] | TrailerOption[] | Hazardous[] | State[] | Owner[] | FuelCard[] | PMOption[] | ColorOption[] | MakeOption[] | TollOption[] | Franchise[];
58
+ export type DropdownOptions = DropdownOption | LabelOption | Broker | Contact | Shipper | Dispatch | Bank | Dispatcher | TruckOption | TrailerOption | Hazardous | State | Owner | FuelCard | PMOption | ColorOption | MakeOption | TollTransponderOption | FuelStopStore;
59
+ export type DropdownKeys = DropdownOption[keyof DropdownOption] | LabelOption[keyof LabelOption] | Dispatch[keyof Dispatch] | Broker[keyof Broker] | Contact[keyof Contact] | Shipper[keyof Shipper] | Bank[keyof Bank] | Dispatcher[keyof Dispatcher] | TruckOption[keyof TruckOption] | TrailerOption[keyof TrailerOption] | Hazardous[keyof Hazardous] | State[keyof State] | Owner[keyof Owner] | FuelCard[keyof FuelCard] | PMOption[keyof PMOption] | ColorOption[keyof ColorOption] | MakeOption[keyof MakeOption] | TollTransponderOption[keyof TollTransponderOption] | FuelStopStore[keyof FuelStopStore];
60
+ export type DropdownGroups = Franchise;
@@ -3,7 +3,7 @@ import { CaiInputConfig, DropdownArrays } from '../models';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FilterBySearchPipe implements PipeTransform {
5
5
  hasProperty<T extends object>(obj: T, prop: PropertyKey): prop is keyof T;
6
- transform(options: DropdownArrays, value: string | undefined | null, type: CaiInputConfig['dropdown'], shouldSearch?: boolean, foldedBoards?: number[], label?: string): any[];
6
+ transform(options: DropdownArrays, value: string | undefined | null, type: CaiInputConfig['dropdown'], shouldSearch?: boolean, foldedBoards?: number[], label?: string, openGroup?: number | null): any[];
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterBySearchPipe, never>;
8
8
  static ɵpipe: i0.ɵɵPipeDeclaration<FilterBySearchPipe, "filterBySearch", true>;
9
9
  }
@@ -0,0 +1 @@
1
+ export * from './selected-business-field.interface';
@@ -0,0 +1,11 @@
1
+ export interface SelectedBusinessField {
2
+ label?: string;
3
+ id?: number;
4
+ name?: string;
5
+ address?: string;
6
+ phone?: string;
7
+ email?: string;
8
+ isFavorite?: boolean;
9
+ isRequired?: boolean;
10
+ isDisabled?: boolean;
11
+ }
@@ -0,0 +1,12 @@
1
+ import { SelectedBusinessField } from './interfaces';
2
+ import { eAlignment, eGeneralActions } from '../../enums';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SelectedBusinessFieldComponent {
5
+ business: import("@angular/core").InputSignal<SelectedBusinessField>;
6
+ onAction: import("@angular/core").OutputEmitterRef<eGeneralActions>;
7
+ eGeneralActions: typeof eGeneralActions;
8
+ eAlignment: typeof eAlignment;
9
+ handleAction(action: eGeneralActions): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectedBusinessFieldComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectedBusinessFieldComponent, "cai-selected-business-field", never, { "business": { "alias": "business"; "required": false; "isSignal": true; }; }, { "onAction": "onAction"; }, never, never, true, never>;
12
+ }
@@ -1 +1,3 @@
1
1
  export * from './hover-svg-directives';
2
+ export * from './infinite-scroll.directive';
3
+ export * from './intersection-observer.directive';
@@ -0,0 +1,16 @@
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class InfiniteScrollDirective {
4
+ private elementRef;
5
+ scrollThreshold: number;
6
+ debounceTime: number;
7
+ scrolledToBottom: EventEmitter<void>;
8
+ private debounceTimer;
9
+ private isLoading;
10
+ constructor(elementRef: ElementRef);
11
+ onScroll(event: Event): void;
12
+ private checkScrollPosition;
13
+ resetLoadingState(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfiniteScrollDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<InfiniteScrollDirective, "[caiInfiniteScroll]", never, { "scrollThreshold": { "alias": "scrollThreshold"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; }, { "scrolledToBottom": "scrolledToBottom"; }, never, never, true, never>;
16
+ }
@@ -0,0 +1,15 @@
1
+ import { ElementRef, EventEmitter, OnInit, OnDestroy } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IntersectionObserverDirective implements OnInit, OnDestroy {
4
+ private elementRef;
5
+ threshold: number;
6
+ rootMargin: string;
7
+ inView: EventEmitter<boolean>;
8
+ private observer;
9
+ constructor(elementRef: ElementRef);
10
+ ngOnInit(): void;
11
+ ngOnDestroy(): void;
12
+ private createObserver;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<IntersectionObserverDirective, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IntersectionObserverDirective, "[caiIntersectionObserver]", never, { "threshold": { "alias": "threshold"; "required": false; }; "rootMargin": { "alias": "rootMargin"; "required": false; }; }, { "inView": "inView"; }, never, never, true, never>;
15
+ }
@@ -11,7 +11,7 @@ export declare const INPUT_CHARACTER_SETS: {
11
11
  readonly ALPHANUMERIC_WITH_SPACES: string[];
12
12
  readonly EMAIL_SPECIAL: readonly ["@", ".", "-", "_", "+"];
13
13
  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" | "." | "@" | "+" | "-" | "_")[];
14
- readonly SPECIAL_EXCEPT_NAME_FRIENDLY: ("." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "*" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
15
- readonly NAME_CHARACTER_EXCLUSIONS: ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "*" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
16
- readonly SPECIAL: ("." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "*" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
14
+ readonly SPECIAL_EXCEPT_NAME_FRIENDLY: ("*" | "." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
15
+ readonly NAME_CHARACTER_EXCLUSIONS: ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "*" | "." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
16
+ readonly SPECIAL: ("*" | "." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
17
17
  };